dot_testing/builds/st/colors.h
randomuser bc7140f9e4 Add 'builds/st/' from commit '6094c5f5dd44fb1890ad080082f54c55b0ec0b98'
git-subtree-dir: builds/st
git-subtree-mainline: b40f7c6df8
git-subtree-split: 6094c5f5dd
2024-03-24 20:36:40 -05:00

29 lines
436 B
C

/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"#161510",
"#a32810",
"#727a18",
"#a37720",
"#3d6266",
"#7a4955",
"#557a55",
"#8e8463",
/* 8 bright colors */
"#4c4635",
"#cc3214",
"#8e991e",
"#cc9528",
"#4c7b7f",
"#995b6b",
"#6b996b",
"#ccbc8e",
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
};