summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortsxv478 <vt0451@yandex.ru>2023-04-01 02:47:50 +0300
committertsxv478 <vt0451@yandex.ru>2023-04-01 02:47:50 +0300
commit432192b6738948b62ec5b9990b6d67d4e1438e22 (patch)
treebaf6f5568145d4e4d1baad61467a887fde59319f
parent798de34ffce6e79ac566dba3b60644653fe6d8c6 (diff)
tokyonight colors
-rw-r--r--config.def.h29
1 files changed, 27 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index f1998bd..63df3eb 100644
--- a/config.def.h
+++ b/config.def.h
@@ -112,6 +112,7 @@ float alpha = 1.0;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
+ /* gruvbox */
/* 8 normal colors */
"#1d2021",
"#cc241d",
@@ -132,13 +133,37 @@ static const char *colorname[] = {
"#8ec07c",
"#ebdbb2",
+ /* tokyonight */
+ /* 8 normal colors */
+ /* "#15161e", */
+ /* "#f7768e", */
+ /* "#9ece6a", */
+ /* "#e0af68", */
+ /* "#7aa2f7", */
+ /* "#bb9af7", */
+ /* "#7dcfff", */
+ /* "#a9b1d6", */
+
+ /* 8 bright colors */
+ /* "#414868", */
+ /* "#f7768e", */
+ /* "#9ece6a", */
+ /* "#e0af68", */
+ /* "#7aa2f7", */
+ /* "#bb9af7", */
+ /* "#7dcfff", */
+ /* "#c0caf5", */
+
+
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
- "gray90", /* default foreground colour */
- "black", /* default background colour */
+ "#ebdbb2", /* gruvbox foreground colour */
+ "#1d2021", /* gruvbox background colour */
+ "#c0caf5", /* tokyonight foreground colour */
+ "#1a1b26", /* tokyonight background colour */
};