diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-04-22 15:00:13 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-04-26 21:08:09 +0200 |
commit | 3f2a377e7a59aa8a49694612c78d00be08bddc12 (patch) | |
tree | df441f3ded6bd86b8f8477aefcf2a20dac221226 | |
parent | 8c9e90524b75e422d9098f33291825880f48ee43 (diff) | |
download | weechat-3f2a377e7a59aa8a49694612c78d00be08bddc12.zip |
script: change default colors (issue #1920)
Default values changed:
- script.color.status_autoloaded: cyan -> 39
- script.color.text_bg_selected: red -> 24
- script.color.text_date: default -> 65
- script.color.text_date_selected: white -> 50
- script.color.text_delimiters: default -> 240
- script.color.text_description: default -> 249
- script.color.text_extension: default -> 242
- script.color.text_extension_selected: white -> 248
- script.color.text_name: cyan -> 73
- script.color.text_name_selected: lightcyan -> 51
- script.color.text_version: magenta -> 180
- script.color.text_version_loaded: default -> 246
- script.color.text_version_selected: lightmagenta -> 224
-rw-r--r-- | src/plugins/script/script-config.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/plugins/script/script-config.c b/src/plugins/script/script-config.c index cf7c16961..647d97176 100644 --- a/src/plugins/script/script-config.c +++ b/src/plugins/script/script-config.c @@ -534,7 +534,7 @@ script_config_init () script_config_file, script_config_section_color, "status_autoloaded", "color", N_("color for status \"autoloaded\" (\"a\")"), - NULL, 0, 0, "cyan", NULL, 0, + NULL, 0, 0, "39", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -606,7 +606,7 @@ script_config_init () script_config_file, script_config_section_color, "text_bg_selected", "color", N_("background color for selected line in script buffer"), - NULL, 0, 0, "red", NULL, 0, + NULL, 0, 0, "24", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -614,7 +614,7 @@ script_config_init () script_config_file, script_config_section_color, "text_date", "color", N_("text color of dates in script buffer"), - NULL, 0, 0, "default", NULL, 0, + NULL, 0, 0, "65", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -622,7 +622,7 @@ script_config_init () script_config_file, script_config_section_color, "text_date_selected", "color", N_("text color of dates for selected line in script buffer"), - NULL, 0, 0, "white", NULL, 0, + NULL, 0, 0, "50", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -630,7 +630,7 @@ script_config_init () script_config_file, script_config_section_color, "text_delimiters", "color", N_("text color of delimiters in script buffer"), - NULL, 0, 0, "default", NULL, 0, + NULL, 0, 0, "240", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -638,7 +638,7 @@ script_config_init () script_config_file, script_config_section_color, "text_description", "color", N_("text color of description in script buffer"), - NULL, 0, 0, "default", NULL, 0, + NULL, 0, 0, "249", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -654,7 +654,7 @@ script_config_init () script_config_file, script_config_section_color, "text_extension", "color", N_("text color of extension in script buffer"), - NULL, 0, 0, "default", NULL, 0, + NULL, 0, 0, "242", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -662,7 +662,7 @@ script_config_init () script_config_file, script_config_section_color, "text_extension_selected", "color", N_("text color of extension for selected line in script buffer"), - NULL, 0, 0, "white", NULL, 0, + NULL, 0, 0, "248", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -670,7 +670,7 @@ script_config_init () script_config_file, script_config_section_color, "text_name", "color", N_("text color of script name in script buffer"), - NULL, 0, 0, "cyan", NULL, 0, + NULL, 0, 0, "73", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -678,7 +678,7 @@ script_config_init () script_config_file, script_config_section_color, "text_name_selected", "color", N_("text color of script name for selected line in script buffer"), - NULL, 0, 0, "lightcyan", NULL, 0, + NULL, 0, 0, "51", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -710,7 +710,7 @@ script_config_init () script_config_file, script_config_section_color, "text_version", "color", N_("text color of version in script buffer"), - NULL, 0, 0, "magenta", NULL, 0, + NULL, 0, 0, "100", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -718,7 +718,7 @@ script_config_init () script_config_file, script_config_section_color, "text_version_loaded", "color", N_("text color of version loaded in script buffer"), - NULL, 0, 0, "default", NULL, 0, + NULL, 0, 0, "246", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); @@ -734,7 +734,7 @@ script_config_init () script_config_file, script_config_section_color, "text_version_selected", "color", N_("text color of version for selected line in script buffer"), - NULL, 0, 0, "lightmagenta", NULL, 0, + NULL, 0, 0, "228", NULL, 0, NULL, NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL, NULL, NULL); |