summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/wee-config.c10
-rw-r--r--src/plugins/irc/irc-config.c2
-rw-r--r--src/plugins/logger/logger-config.c4
-rw-r--r--src/plugins/script/script-config.c2
4 files changed, 9 insertions, 9 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c
index 8f0485cd4..e8bce7ee8 100644
--- a/src/core/wee-config.c
+++ b/src/core/wee-config.c
@@ -2712,14 +2712,14 @@ config_weechat_init_options ()
"chat_inactive_buffer", "color",
N_("text color for chat when line is inactive (buffer is merged with "
"other buffers and is not selected)"),
- NULL, GUI_COLOR_CHAT_INACTIVE_BUFFER, 0, "darkgray", NULL, 0,
+ NULL, GUI_COLOR_CHAT_INACTIVE_BUFFER, 0, "default", NULL, 0,
NULL, NULL, &config_change_color, NULL, NULL, NULL);
config_color_chat_inactive_window = config_file_new_option (
weechat_config_file, ptr_section,
"chat_inactive_window", "color",
N_("text color for chat when window is inactive (not current selected "
"window)"),
- NULL, GUI_COLOR_CHAT_INACTIVE_WINDOW, 0, "darkgray", NULL, 0,
+ NULL, GUI_COLOR_CHAT_INACTIVE_WINDOW, 0, "default", NULL, 0,
NULL, NULL, &config_change_color, NULL, NULL, NULL);
config_color_chat_nick = config_file_new_option (
weechat_config_file, ptr_section,
@@ -2747,7 +2747,7 @@ config_weechat_init_options ()
weechat_config_file, ptr_section,
"chat_nick_offline", "color",
N_("text color for offline nick (not in nicklist any more)"),
- NULL, GUI_COLOR_CHAT_NICK_OFFLINE, 0, "darkgray", NULL, 0,
+ NULL, GUI_COLOR_CHAT_NICK_OFFLINE, 0, "default", NULL, 0,
NULL, NULL, &config_change_color, NULL, NULL, NULL);
config_color_chat_nick_offline_highlight = config_file_new_option (
weechat_config_file, ptr_section,
@@ -2759,7 +2759,7 @@ config_weechat_init_options ()
weechat_config_file, ptr_section,
"chat_nick_offline_highlight_bg", "color",
N_("background color for offline nick with highlight"),
- NULL, -1, 0, "darkgray", NULL, 0,
+ NULL, -1, 0, "blue", NULL, 0,
NULL, NULL, &config_change_color, NULL, NULL, NULL);
config_color_chat_nick_other = config_file_new_option (
weechat_config_file, ptr_section,
@@ -2810,7 +2810,7 @@ config_weechat_init_options ()
N_("text color for inactive buffer name (before prefix, when many "
"buffers are merged with same number and if buffer is not "
"selected)"),
- NULL, GUI_COLOR_CHAT_PREFIX_BUFFER_INACTIVE_BUFFER, 0, "darkgray", NULL, 0,
+ NULL, GUI_COLOR_CHAT_PREFIX_BUFFER_INACTIVE_BUFFER, 0, "default", NULL, 0,
NULL, NULL, &config_change_color, NULL, NULL, NULL);
config_color_chat_prefix[GUI_CHAT_PREFIX_ERROR] = config_file_new_option (
weechat_config_file, ptr_section,
diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c
index 50e20d2da..494db8184 100644
--- a/src/plugins/irc/irc-config.c
+++ b/src/plugins/irc/irc-config.c
@@ -2701,7 +2701,7 @@ irc_config_init ()
irc_config_file, ptr_section,
"topic_old", "color",
N_("color for old channel topic (when topic is changed)"),
- NULL, -1, 0, "darkgray", NULL, 0, NULL, NULL,
+ NULL, -1, 0, "default", NULL, 0, NULL, NULL,
NULL, NULL, NULL, NULL);
/* network */
diff --git a/src/plugins/logger/logger-config.c b/src/plugins/logger/logger-config.c
index 60b2daf79..366e0cd95 100644
--- a/src/plugins/logger/logger-config.c
+++ b/src/plugins/logger/logger-config.c
@@ -401,12 +401,12 @@ logger_config_init ()
logger_config_file, ptr_section,
"backlog_end", "color",
N_("color for line ending the backlog"),
- NULL, -1, 0, "darkgray", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
+ NULL, -1, 0, "default", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
logger_config_color_backlog_line = weechat_config_new_option (
logger_config_file, ptr_section,
"backlog_line", "color",
N_("color for backlog lines"),
- NULL, -1, 0, "darkgray", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
+ NULL, -1, 0, "default", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
/* file */
ptr_section = weechat_config_new_section (logger_config_file, "file",
diff --git a/src/plugins/script/script-config.c b/src/plugins/script/script-config.c
index 6d40ab6a8..bd61d4cc5 100644
--- a/src/plugins/script/script-config.c
+++ b/src/plugins/script/script-config.c
@@ -578,7 +578,7 @@ script_config_init ()
script_config_file, ptr_section,
"text_delimiters", "color",
N_("text color of delimiters in script buffer"),
- NULL, 0, 0, "darkgray", NULL, 0,
+ NULL, 0, 0, "default", NULL, 0,
NULL, NULL, &script_config_refresh_cb, NULL, NULL, NULL);
script_config_color_text_description = weechat_config_new_option (
script_config_file, ptr_section,