summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-04-22 21:32:33 +0200
committerSébastien Helleu <flashcode@flashtux.org>2023-04-26 21:08:16 +0200
commitd35218e9917389ca50b6064bc2b4f0fbfb23d614 (patch)
tree47d179b749c2ba8db739ad9fd0a9010ea57f3c4f
parentc12b7ffd3ea81480fb33bb1b2ef062e0ba87b1ad (diff)
downloadweechat-d35218e9917389ca50b6064bc2b4f0fbfb23d614.zip
irc: change default colors (issue #1920)
Default values changed: - irc.color.reason_quit: default -> 244 - irc.color.topic_new: white -> 36 - irc.color.topic_old: default -> 244
-rw-r--r--src/plugins/irc/irc-config.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c
index 458833ceb..6e4be1606 100644
--- a/src/plugins/irc/irc-config.c
+++ b/src/plugins/irc/irc-config.c
@@ -3624,7 +3624,7 @@ irc_config_init ()
irc_config_file, irc_config_section_color,
"reason_quit", "color",
N_("color for reason in part/quit messages"),
- NULL, -1, 0, "default", NULL, 0,
+ NULL, -1, 0, "244", NULL, 0,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
irc_config_color_topic_current = weechat_config_new_option (
irc_config_file, irc_config_section_color,
@@ -3637,13 +3637,13 @@ irc_config_init ()
irc_config_file, irc_config_section_color,
"topic_new", "color",
N_("color for new channel topic (when topic is changed)"),
- NULL, -1, 0, "white", NULL, 0,
+ NULL, -1, 0, "36", NULL, 0,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
irc_config_color_topic_old = weechat_config_new_option (
irc_config_file, irc_config_section_color,
"topic_old", "color",
N_("color for old channel topic (when topic is changed)"),
- NULL, -1, 0, "default", NULL, 0,
+ NULL, -1, 0, "244", NULL, 0,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
}