diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-04-22 11:49:21 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-04-26 21:08:04 +0200 |
commit | c4c4ae3715de1427414755d6c4334575377a0aae (patch) | |
tree | 0c15131519b5304a0d6a2c55f24793dd160407fb /src/plugins/fset/fset-config.c | |
parent | 5973ceffb82537bc334a26a211d8ceedca71e3f8 (diff) | |
download | weechat-c4c4ae3715de1427414755d6c4334575377a0aae.zip |
fset: change default colors (issue #1920)
Default values changed:
- fset.color.description: default -> 242
- fset.color.description_selected: white -> default
- fset.color.line_marked_bg1: default -> 17
- fset.color.line_marked_bg2: default -> 17
- fset.color.line_selected_bg1: blue -> 24
- fset.color.line_selected_bg2: red -> 24
- fset.color.name_changed: brown -> 185
- fset.color.type: green -> 138
- fset.color.type_selected: lightgreen -> 216
- fset.color.value: cyan -> 38
- fset.color.value_changed: brown -> 185
- fset.color.value_selected: lightcyan -> 80
- fset.format.option2: ${color:darkgray} -> ${color:244}
Diffstat (limited to 'src/plugins/fset/fset-config.c')
-rw-r--r-- | src/plugins/fset/fset-config.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/plugins/fset/fset-config.c b/src/plugins/fset/fset-config.c index 08908d0a0..dfb0c5cc0 100644 --- a/src/plugins/fset/fset-config.c +++ b/src/plugins/fset/fset-config.c @@ -582,7 +582,7 @@ fset_config_init () "formats can be switched with key ctrl-x"), NULL, 0, 0, "${marked} ${name} ${type} ${value2}${newline}" - " ${empty_name} ${_default_value}${color:darkgray} -- " + " ${empty_name} ${_default_value}${color:244} -- " "${min}..${max}${newline}" " ${empty_name} ${description}", NULL, 0, @@ -622,7 +622,7 @@ fset_config_init () fset_config_file, fset_config_section_color, "description", "color", N_("color for description"), - NULL, 0, 0, "default", NULL, 0, + NULL, 0, 0, "242", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); @@ -630,7 +630,7 @@ fset_config_init () fset_config_file, fset_config_section_color, "description_selected", "color", N_("color for description on the selected line"), - NULL, 0, 0, "white", NULL, 0, + NULL, 0, 0, "default", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); @@ -727,7 +727,7 @@ fset_config_init () "line_marked_bg1", "color", N_("background color for a marked line " "(used with the first format, see option fset.format.option1)"), - NULL, 0, 0, "default", NULL, 0, + NULL, 0, 0, "17", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); @@ -736,7 +736,7 @@ fset_config_init () "line_marked_bg2", "color", N_("background color for a marked line " "(used with the second format, see option fset.format.option2)"), - NULL, 0, 0, "default", NULL, 0, + NULL, 0, 0, "17", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); @@ -745,7 +745,7 @@ fset_config_init () "line_selected_bg1", "color", N_("background color for the selected line " "(used with the first format, see option fset.format.option1)"), - NULL, 0, 0, "blue", NULL, 0, + NULL, 0, 0, "24", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); @@ -754,7 +754,7 @@ fset_config_init () "line_selected_bg2", "color", N_("background color for the selected line " "(used with the second format, see option fset.format.option2)"), - NULL, 0, 0, "red", NULL, 0, + NULL, 0, 0, "24", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); @@ -818,7 +818,7 @@ fset_config_init () fset_config_file, fset_config_section_color, "name_changed", "color", N_("color for name if value is changed"), - NULL, 0, 0, "brown", NULL, 0, + NULL, 0, 0, "185", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); @@ -1028,7 +1028,7 @@ fset_config_init () fset_config_file, fset_config_section_color, "type", "color", N_("color for type"), - NULL, 0, 0, "green", NULL, 0, + NULL, 0, 0, "138", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); @@ -1036,7 +1036,7 @@ fset_config_init () fset_config_file, fset_config_section_color, "type_selected", "color", N_("color for type on the selected line"), - NULL, 0, 0, "lightgreen", NULL, 0, + NULL, 0, 0, "216", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); @@ -1061,7 +1061,7 @@ fset_config_init () fset_config_file, fset_config_section_color, "value", "color", N_("color for value"), - NULL, 0, 0, "cyan", NULL, 0, + NULL, 0, 0, "38", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); @@ -1069,7 +1069,7 @@ fset_config_init () fset_config_file, fset_config_section_color, "value_changed", "color", N_("color for value changed (different from default)"), - NULL, 0, 0, "brown", NULL, 0, + NULL, 0, 0, "185", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); @@ -1086,7 +1086,7 @@ fset_config_init () fset_config_file, fset_config_section_color, "value_selected", "color", N_("color for value on the selected line"), - NULL, 0, 0, "lightcyan", NULL, 0, + NULL, 0, 0, "80", NULL, 0, NULL, NULL, NULL, &fset_config_change_color_cb, NULL, NULL, NULL, NULL, NULL); |