mirror of
https://github.com/tmux/tmux.git
synced 2026-07-03 11:12:33 +08:00
Make the default colours more conservative, its really the greys that
matter.
This commit is contained in:
@@ -586,7 +586,7 @@ const struct options_table_entry options_table[] = {
|
||||
.type = OPTIONS_TABLE_STRING,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.flags = OPTIONS_TABLE_IS_COLOUR,
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},palegreen,green}",
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},darkseagreen,green}",
|
||||
.text = "Dark theme colour for green."
|
||||
},
|
||||
|
||||
@@ -594,7 +594,7 @@ const struct options_table_entry options_table[] = {
|
||||
.type = OPTIONS_TABLE_STRING,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.flags = OPTIONS_TABLE_IS_COLOUR,
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},lightgoldenrod,yellow}",
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},darkkhaki,yellow}",
|
||||
.text = "Dark theme colour for yellow."
|
||||
},
|
||||
|
||||
@@ -602,7 +602,7 @@ const struct options_table_entry options_table[] = {
|
||||
.type = OPTIONS_TABLE_STRING,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.flags = OPTIONS_TABLE_IS_COLOUR,
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},lightsalmon,red}",
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},indianred,red}",
|
||||
.text = "Dark theme colour for red."
|
||||
},
|
||||
|
||||
@@ -610,7 +610,7 @@ const struct options_table_entry options_table[] = {
|
||||
.type = OPTIONS_TABLE_STRING,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.flags = OPTIONS_TABLE_IS_COLOUR,
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},lightskyblue,blue}",
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},skyblue3,blue}",
|
||||
.text = "Dark theme colour for blue."
|
||||
},
|
||||
|
||||
@@ -618,7 +618,7 @@ const struct options_table_entry options_table[] = {
|
||||
.type = OPTIONS_TABLE_STRING,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.flags = OPTIONS_TABLE_IS_COLOUR,
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},aquamarine,cyan}",
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},cadetblue,cyan}",
|
||||
.text = "Dark theme colour for cyan."
|
||||
},
|
||||
|
||||
@@ -626,7 +626,7 @@ const struct options_table_entry options_table[] = {
|
||||
.type = OPTIONS_TABLE_STRING,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.flags = OPTIONS_TABLE_IS_COLOUR,
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},plum,magenta}",
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},mediumpurple,magenta}",
|
||||
.text = "Dark theme colour for magenta."
|
||||
},
|
||||
|
||||
@@ -666,7 +666,7 @@ const struct options_table_entry options_table[] = {
|
||||
.type = OPTIONS_TABLE_STRING,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.flags = OPTIONS_TABLE_IS_COLOUR,
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},forestgreen,green}",
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},seagreen,green}",
|
||||
.text = "Light theme colour for green."
|
||||
},
|
||||
|
||||
@@ -682,7 +682,7 @@ const struct options_table_entry options_table[] = {
|
||||
.type = OPTIONS_TABLE_STRING,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.flags = OPTIONS_TABLE_IS_COLOUR,
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},violetred4,red}",
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},indianred4,red}",
|
||||
.text = "Light theme colour for red."
|
||||
},
|
||||
|
||||
@@ -690,7 +690,7 @@ const struct options_table_entry options_table[] = {
|
||||
.type = OPTIONS_TABLE_STRING,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.flags = OPTIONS_TABLE_IS_COLOUR,
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},royalblue,blue}",
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},steelblue,blue}",
|
||||
.text = "Light theme colour for blue."
|
||||
},
|
||||
|
||||
@@ -706,7 +706,7 @@ const struct options_table_entry options_table[] = {
|
||||
.type = OPTIONS_TABLE_STRING,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.flags = OPTIONS_TABLE_IS_COLOUR,
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},purple,magenta}",
|
||||
.default_str = "#{?#{e|>=:#{client_colours},256},purple4,magenta}",
|
||||
.text = "Light theme colour for magenta."
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user