diff options
| author | stkhan <personal@slickd.xyz> | 2021-06-05 22:41:19 +0000 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-06-05 22:41:19 +0000 |
| commit | 8e72264916f5ce023a5d0a56cc4a7a384191b08f (patch) | |
| tree | 16e485b8fa6778c3070142b0c88560921d9efaa7 /themes/theme.h | |
| parent | e8b997bf196750fe5ac701c5c9d1ee0336a2a627 (diff) | |
Added more configuration in theme files
Diffstat (limited to 'themes/theme.h')
| -rw-r--r-- | themes/theme.h | 41 |
1 files changed, 39 insertions, 2 deletions
diff --git a/themes/theme.h b/themes/theme.h index dfca57e..f7353de 100644 --- a/themes/theme.h +++ b/themes/theme.h @@ -6,11 +6,48 @@ /* primary color */ -static const char col_cyan[] = "#0a0063"; +static const char col_cyan[] = "#6272a4"; /* secondary colors */ -static const char col_gray1[] = "#222222"; +static const char col_gray1[] = "#282a36"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; + +/* st config */ + +float alpha = 0.9; + + +static const char *colorname[] = { + /* 8 normal colors */ + "#000000", + "#ff5555", + "#50fa7b", + "#f1fa8c", + "#bd93f9", + "#ff79c6", + "#8be9fd", + "#bfbfbf", + + /* 8 bright colors */ + "#4d4d4d", + "#ff6e67", + "#5af78e", + "#f4f99d", + "#caa9fa", + "#ff92d0", + "#9aedfe", + "#e6e6e6", + + [255] = 0, + + /* more colors can be added after 255 to use with DefaultXX */ + "#cccccc", + "#555555", + "#282a36", /* 258 -> bg */ + "#f8f8f2", /* 259 -> fg */ +}; + + |