diff options
| author | aleks <aleks.stier@icloud.com> | 2022-05-31 13:09:47 +0200 |
|---|---|---|
| committer | Marcelo Lira <setanta@gmail.com> | 2025-03-03 16:12:29 -0300 |
| commit | 8c8e1cf95935e3b6bc4d6b79e84d26ed59af7cc8 (patch) | |
| tree | 4122e2d690d46242cbf89aa6825c82d8713150d9 /config.def.h | |
| parent | aaabc50e3267871d1619bfe4f565187f08524a1f (diff) | |
Use nord-theme
*"Inspired by the beauty of the arctic, the colors reflect the cold, yet
harmonious world of ice and the colorfulness of the Aurora Borealis."* -
[Nord Theme](https://www.nordtheme.com/)
The default behaviour of st is to reverse the fore- and background
colors of each selected cell. If you don't want the selection-colors to
be reveresed but instead have fixed fore- and background colors apply on
top of this patch the [selectioncolors](../selectioncolors/)-patch. Then
set the following settings in your config.h:
unsigned int selectionbg = 0;
unsigned int selectionfg = 256;
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 42 |
1 files changed, 20 insertions, 22 deletions
diff --git a/config.def.h b/config.def.h index 98e8aad..b334bf5 100644 --- a/config.def.h +++ b/config.def.h @@ -109,32 +109,30 @@ float alpha = 0.8; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ - [0] = "#323437", - [1] = "#ff5454", - [2] = "#8cc85f", - [3] = "#e3c78a", - [4] = "#80a0ff", - [5] = "#d183e8", - [6] = "#79dac8", - [7] = "#a1aab8", + [0] = "#3b4252", /* black */ + [1] = "#bf616a", /* red */ + [2] = "#a3be8c", /* green */ + [3] = "#ebcb8b", /* yellow */ + [4] = "#81a1c1", /* blue */ + [5] = "#b48ead", /* magenta */ + [6] = "#88c0d0", /* cyan */ + [7] = "#e5e9f0", /* white */ /* 8 bright colors */ - [8] = "#7c8f8f", - [9] = "#ff5189", - [10] = "#36c692", - [11] = "#bfbf97", - [12] = "#74b2ff", - [13] = "#ae81ff", - [14] = "#85dc85", - [15] = "#e2637f", + [8] = "#4c566a", /* black */ + [9] = "#bf616a", /* red */ + [10] = "#a3be8c", /* green */ + [11] = "#ebcb8b", /* yellow */ + [12] = "#81a1c1", /* blue */ + [13] = "#b48ead", /* magenta */ + [14] = "#8fbcbb", /* cyan */ + [15] = "#eceff4", /* white */ [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ - [256] = "#282a36", - [257] = "#f8f8f2", - [258] = "#080808", - [259] = "#eeeeee", + [256] = "#d8dee9", /* default foreground colour */ + [257] = "#2e3440", /* default background colour */ }; @@ -142,8 +140,8 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 259; -unsigned int defaultbg = 258; +unsigned int defaultfg = 256; +unsigned int defaultbg = 257; unsigned int defaultcs = 256; static unsigned int defaultrcs = 257; |
