1
0
mirror of https://github.com/tiyn/st synced 2025-11-18 11:59:45 +01:00

changed bg color

This commit is contained in:
2023-10-22 05:36:11 +02:00
parent 490ff19562
commit 5500f49c69
3 changed files with 473 additions and 2 deletions

View File

@@ -96,7 +96,7 @@ unsigned int tabspaces = 8;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"#1e1e1e",
"#191919",
"#f44747",
"#608b4e",
"#dcdcaa",
@@ -114,7 +114,7 @@ static const char *colorname[] = {
"#d4d4d4",
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#1e1e1e", /* 256 -> bg */
"#191919", /* 256 -> bg */
"#d4d4d4", /* 257 -> fg */
"#a4a4a4", /* 258 -> cursor */
};