summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Warchoł <jan.warchol@gmail.com>2023-06-04 18:13:36 +0200
committerGitHub <noreply@github.com>2023-06-04 18:13:36 +0200
commit62bbbfe727e06f3cadcd34ea69028507796c28c3 (patch)
tree9394cd7af5bcfd72a6a50d8438f5b218a4f47579
parent8fff76d24f02014ea2a204621a00b54b7e6d7c22 (diff)
Minor changes in ascii art (#155)
* Make sun in "partly cloudy" less irregular * Make "sunny" more intense I have noticed that when there's a lot of "sunny" and "partly cloudy" in the output, it's not apparent at first sight which is which. This should make the "sunny" icon more intensely yellow, and therefore more discernible. * Make dark grey and dark blue a bit ligther Previous colors were not readable against some background colors, e.g. #0a3947. New colors are more readable but should be still sufficiently darker than the ones used for light clouds (250) and light rain (111).
-rw-r--r--frontends/ascii-art-table.go60
1 files changed, 30 insertions, 30 deletions
diff --git a/frontends/ascii-art-table.go b/frontends/ascii-art-table.go
index 418c163..01a85aa 100644
--- a/frontends/ascii-art-table.go
+++ b/frontends/ascii-art-table.go
@@ -170,30 +170,30 @@ func (c *aatConfig) formatCond(cur []string, cond iface.Cond, current bool) (ret
" ",
},
iface.CodeHeavyRain: {
- "\033[38;5;240;1m .-. \033[0m",
- "\033[38;5;240;1m ( ). \033[0m",
- "\033[38;5;240;1m (___(__) \033[0m",
- "\033[38;5;21;1m ‚ʻ‚ʻ‚ʻ‚ʻ \033[0m",
- "\033[38;5;21;1m ‚ʻ‚ʻ‚ʻ‚ʻ \033[0m",
+ "\033[38;5;244;1m .-. \033[0m",
+ "\033[38;5;244;1m ( ). \033[0m",
+ "\033[38;5;244;1m (___(__) \033[0m",
+ "\033[38;5;33;1m ‚ʻ‚ʻ‚ʻ‚ʻ \033[0m",
+ "\033[38;5;33;1m ‚ʻ‚ʻ‚ʻ‚ʻ \033[0m",
},
iface.CodeHeavyShowers: {
- "\033[38;5;226m _`/\"\"\033[38;5;240;1m.-. \033[0m",
- "\033[38;5;226m ,\\_\033[38;5;240;1m( ). \033[0m",
- "\033[38;5;226m /\033[38;5;240;1m(___(__) \033[0m",
- "\033[38;5;21;1m ‚ʻ‚ʻ‚ʻ‚ʻ \033[0m",
- "\033[38;5;21;1m ‚ʻ‚ʻ‚ʻ‚ʻ \033[0m",
+ "\033[38;5;226m _`/\"\"\033[38;5;244;1m.-. \033[0m",
+ "\033[38;5;226m ,\\_\033[38;5;244;1m( ). \033[0m",
+ "\033[38;5;226m /\033[38;5;244;1m(___(__) \033[0m",
+ "\033[38;5;33;1m ‚ʻ‚ʻ‚ʻ‚ʻ \033[0m",
+ "\033[38;5;33;1m ‚ʻ‚ʻ‚ʻ‚ʻ \033[0m",
},
iface.CodeHeavySnow: {
- "\033[38;5;240;1m .-. \033[0m",
- "\033[38;5;240;1m ( ). \033[0m",
- "\033[38;5;240;1m (___(__) \033[0m",
+ "\033[38;5;244;1m .-. \033[0m",
+ "\033[38;5;244;1m ( ). \033[0m",
+ "\033[38;5;244;1m (___(__) \033[0m",
"\033[38;5;255;1m * * * * \033[0m",
"\033[38;5;255;1m * * * * \033[0m",
},
iface.CodeHeavySnowShowers: {
- "\033[38;5;226m _`/\"\"\033[38;5;240;1m.-. \033[0m",
- "\033[38;5;226m ,\\_\033[38;5;240;1m( ). \033[0m",
- "\033[38;5;226m /\033[38;5;240;1m(___(__) \033[0m",
+ "\033[38;5;226m _`/\"\"\033[38;5;244;1m.-. \033[0m",
+ "\033[38;5;226m ,\\_\033[38;5;244;1m( ). \033[0m",
+ "\033[38;5;226m /\033[38;5;244;1m(___(__) \033[0m",
"\033[38;5;255;1m * * * * \033[0m",
"\033[38;5;255;1m * * * * \033[0m",
},
@@ -240,25 +240,25 @@ func (c *aatConfig) formatCond(cur []string, cond iface.Cond, current bool) (ret
"\033[38;5;255m * * * \033[0m",
},
iface.CodePartlyCloudy: {
- "\033[38;5;226m \\ /\033[0m ",
- "\033[38;5;226m _ /\"\"\033[38;5;250m.-. \033[0m",
+ "\033[38;5;226m \\__/\033[0m ",
+ "\033[38;5;226m __/ \033[38;5;250m.-. \033[0m",
"\033[38;5;226m \\_\033[38;5;250m( ). \033[0m",
"\033[38;5;226m /\033[38;5;250m(___(__) \033[0m",
" ",
},
iface.CodeSunny: {
- "\033[38;5;226m \\ / \033[0m",
- "\033[38;5;226m .-. \033[0m",
+ "\033[38;5;226m \\ . / \033[0m",
+ "\033[38;5;226m - .-. - \033[0m",
"\033[38;5;226m ‒ ( ) ‒ \033[0m",
- "\033[38;5;226m `-᾿ \033[0m",
- "\033[38;5;226m / \\ \033[0m",
+ "\033[38;5;226m . `-᾿ . \033[0m",
+ "\033[38;5;226m / ' \\ \033[0m",
},
iface.CodeThunderyHeavyRain: {
- "\033[38;5;240;1m .-. \033[0m",
- "\033[38;5;240;1m ( ). \033[0m",
- "\033[38;5;240;1m (___(__) \033[0m",
- "\033[38;5;21;1m ‚ʻ\033[38;5;228;5m⚡\033[38;5;21;25mʻ‚\033[38;5;228;5m⚡\033[38;5;21;25m‚ʻ \033[0m",
- "\033[38;5;21;1m ‚ʻ‚ʻ\033[38;5;228;5m⚡\033[38;5;21;25mʻ‚ʻ \033[0m",
+ "\033[38;5;244;1m .-. \033[0m",
+ "\033[38;5;244;1m ( ). \033[0m",
+ "\033[38;5;244;1m (___(__) \033[0m",
+ "\033[38;5;33;1m ‚ʻ\033[38;5;228;5m⚡\033[38;5;33;25mʻ‚\033[38;5;228;5m⚡\033[38;5;33;25m‚ʻ \033[0m",
+ "\033[38;5;33;1m ‚ʻ‚ʻ\033[38;5;228;5m⚡\033[38;5;33;25mʻ‚ʻ \033[0m",
},
iface.CodeThunderyShowers: {
"\033[38;5;226m _`/\"\"\033[38;5;250m.-. \033[0m",
@@ -276,9 +276,9 @@ func (c *aatConfig) formatCond(cur []string, cond iface.Cond, current bool) (ret
},
iface.CodeVeryCloudy: {
" ",
- "\033[38;5;240;1m .--. \033[0m",
- "\033[38;5;240;1m .-( ). \033[0m",
- "\033[38;5;240;1m (___.__)__) \033[0m",
+ "\033[38;5;244;1m .--. \033[0m",
+ "\033[38;5;244;1m .-( ). \033[0m",
+ "\033[38;5;244;1m (___.__)__) \033[0m",
" ",
},
}