From d35218e9917389ca50b6064bc2b4f0fbfb23d614 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 22 Apr 2023 21:32:33 +0200 Subject: [PATCH] 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 --- src/plugins/irc/irc-config.c | 6 +++--- 1 file 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); }