This commit is contained in:
a 2024-11-26 03:18:32 -06:00
parent 35ea931e40
commit e8e4ba8995
No known key found for this signature in database
GPG Key ID: 2F22877AA4DFDADB
2 changed files with 5 additions and 5 deletions

View File

@ -185,7 +185,7 @@ static const char *colorname[] = {
[4] = "#7dc1cf", //blue
[5] = "#9b64fb", //magenta
[6] = "#6d878d", //cyan3
[7] = "#dddddd",// gray90
[7] = "#bbbbbb",// gray90
/* 8 bright colors */
[8] = "#735264", //gray50
@ -195,14 +195,14 @@ static const char *colorname[] = {
[12] = "#4e9fb1", // blue
[13] = "#7c1ede", // magenta
[14] = "#42717b", //cyan
[15] = "#dddddd", //white
[15] = "#cccccc", //white
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
[256] = "#ffffff",
[256] = "#dddddd",
[257] = "#555555",
[259] = "#e5dae5", /* default foreground colour */
[259] = "#d5cad5", /* default foreground colour */
[258] = "#151515", /* default background colour */
};

View File

@ -130,7 +130,7 @@
/* This patch adds the option of disabling italic fonts globally.
* https://st.suckless.org/patches/disable_bold_italic_fonts/
*/
#define DISABLE_ITALIC_FONTS_PATCH 0
#define DISABLE_ITALIC_FONTS_PATCH 1
/* This patch adds the option of disabling roman fonts globally.
* https://st.suckless.org/patches/disable_bold_italic_fonts/