diff options
| author | Marcelo Lira <setanta@gmail.com> | 2025-03-02 03:26:31 -0300 |
|---|---|---|
| committer | Marcelo Lira <setanta@gmail.com> | 2025-03-02 08:31:10 -0300 |
| commit | 5a7af3b20395d082693124f616b6d586919a97e2 (patch) | |
| tree | 1a50e66e479e00ddaf7cb80db980b787fb520c66 | |
| parent | ad7b2dc63b12577f1c67c998490f11a488f60e7e (diff) | |
Moonfly color scheme
https://st.suckless.org/patches/moonfly/
| -rw-r--r-- | config.def.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/config.def.h b/config.def.h index 4a60638..a175b7e 100644 --- a/config.def.h +++ b/config.def.h @@ -105,32 +105,32 @@ float alpha = 0.8; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ - "black", - "red3", - "green3", - "yellow3", - "blue2", - "magenta3", - "cyan3", - "gray90", + [0] = "#323437", + [1] = "#ff5454", + [2] = "#8cc85f", + [3] = "#e3c78a", + [4] = "#80a0ff", + [5] = "#d183e8", + [6] = "#79dac8", + [7] = "#a1aab8", /* 8 bright colors */ - "gray50", - "red", - "green", - "yellow", - "#5c5cff", - "magenta", - "cyan", - "white", + [8] = "#7c8f8f", + [9] = "#ff5189", + [10] = "#36c692", + [11] = "#bfbf97", + [12] = "#74b2ff", + [13] = "#ae81ff", + [14] = "#85dc85", + [15] = "#e2637f", [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ - "#cccccc", - "#555555", - "gray90", /* default foreground colour */ - "black", /* default background colour */ + [256] = "#282a36", + [257] = "#f8f8f2", + [258] = "#080808", + [259] = "#eeeeee", }; @@ -138,8 +138,8 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 258; -unsigned int defaultbg = 259; +unsigned int defaultfg = 259; +unsigned int defaultbg = 258; unsigned int defaultcs = 256; static unsigned int defaultrcs = 257; |
