This commit is contained in:
2026-06-06 20:39:17 -04:00
parent c9b107933a
commit 22d52fbea5
6 changed files with 67 additions and 196 deletions

View File

@@ -102,34 +102,34 @@ char *termname = "st-256color";
unsigned int tabspaces = 8;
/* bg opacity */
float alpha = 0.8;
float alpha = 1;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
[0] = "#000000",
[1] = "#b83019",
[2] = "#51bf37",
[3] = "#c6c43d",
[4] = "#0c24bf",
[5] = "#b93ec1",
[6] = "#53c2c5",
[7] = "#c7c7c7",
[0] = "#141415", /* black -> bg */
[1] = "#d8647e", /* red -> error */
[2] = "#7fa563", /* green -> plus */
[3] = "#f3be7c", /* yellow -> warning */
[4] = "#6e94b2", /* blue -> keyword */
[5] = "#bb9dbd", /* magenta -> parameter */
[6] = "#b4d4cf", /* cyan -> builtin */
[7] = "#cdcdcd", /* white -> fg */
/* 8 bright colors */
[8] = "#676767",
[9] = "#ef766d",
[10] = "#8cf67a",
[11] = "#fefb7e",
[12] = "#6a71f6",
[13] = "#f07ef8",
[14] = "#8ef9fd",
[15] = "#feffff",
[8] = "#606079", /* bright black -> comment */
[9] = "#f3be7c", /* bright red */
[10] = "#9bb4bc", /* bright green -> type */
[11] = "#e8b589", /* bright yellow -> string */
[12] = "#7e98e8", /* bright blue -> hint */
[13] = "#aeaed1", /* bright magenta -> constant */
[14] = "#c3c3d5", /* bright cyan -> property */
[15] = "#ffffff", /* bright white */
/* special colors */
[256] = "#000000", /* background */
[257] = "#f7f7f7", /* foreground */
[258] = "#c7c7c7", /* cursor */
[256] = "#141415", /* background */
[257] = "#cdcdcd", /* foreground */
[258] = "#878787", /* cursor */
};
/*