diff options
Diffstat (limited to 'themes')
| -rw-r--r-- | themes/default | 6 | ||||
| -rw-r--r-- | themes/liquid_blue | 44 | ||||
| -rw-r--r-- | themes/nord | 2 |
3 files changed, 48 insertions, 4 deletions
diff --git a/themes/default b/themes/default index b81f7bd..c7f07c9 100644 --- a/themes/default +++ b/themes/default @@ -6,14 +6,14 @@ /* primary color */ -static const char col_cyan[] = "#0a0063"; +static const char col_cyan[] = "#005577"; */ -/* secondary colors */ +/* Secondary color */ static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; -static const char col_gray4[] = "#005577"; +static const char col_gray4[] = "#eeeeee"; /* st config */ diff --git a/themes/liquid_blue b/themes/liquid_blue new file mode 100644 index 0000000..f4f6e47 --- /dev/null +++ b/themes/liquid_blue @@ -0,0 +1,44 @@ +/* Terminal colors (16 first used in escape sequence) */ + +static const char col_cyan[] = "#015188"; + +static const char col_gray1[] = "#080e0d"; +static const char col_gray2[] = "#444444"; +static const char col_gray3[] = "#bbbbbb"; +static const char col_gray4[] = "#eeeeee"; +/* st config */ + +float alpha = 0.6; + + +static const char *colorname[] = { + + /* 8 normal colors */ + "#050704", /* black */ + "#d80e0e", /* red */ + "#06f115", /* green */ + "#d8ff00", /* yellow */ + "#0050d2", /* blue */ + "#802bee", /* magenta */ + "#23f0f2", /* cyan */ + "#cfcfcf", /* white */ + + /* 8 bright colors */ + "#cfcfcf", /* black */ + "#ff2857", /* red */ + "#79fc6a", /* green */ + "#d7ff62", /* yellow */ + "#698eff", /* blue */ + "#a461fb", /* magenta */ + "#91fff5", /* cyan */ + "#ffffff", /* white */ + + [255] = 0, + + /* special colors */ + "#cccccc", + "#555555", + "#000000", /* background */ + "#cfcfcf", /* foreground */ +}; + diff --git a/themes/nord b/themes/nord index 2bf7407..92c2f16 100644 --- a/themes/nord +++ b/themes/nord @@ -17,7 +17,7 @@ static const char col_gray4[] = "#eeeeee"; /* st config */ -float alpha = 1; +float alpha = 4; static const char *colorname[] = { |