summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShubham Saini <shubham6405@gmail.com>2020-05-17 19:22:41 +0000
committerShubham Saini <shubham6405@gmail.com>2020-05-17 19:22:41 +0000
commit3f6d58dbc7d131b8c37aa1b37622540db4a85d42 (patch)
treea75e55ff97204f68194419ee1e3af24d8a8bfb64
parent82a6b54af82f546e99bbaf686ae402f03aed70a9 (diff)
changed colorscheme
-rw-r--r--st/config.h40
1 files changed, 21 insertions, 19 deletions
diff --git a/st/config.h b/st/config.h
index 3b87a92..5c0ddbc 100644
--- a/st/config.h
+++ b/st/config.h
@@ -91,31 +91,33 @@ unsigned int tabspaces = 8;
91 91
92/* Terminal colors (16 first used in escape sequence) */ 92/* Terminal colors (16 first used in escape sequence) */
93static const char *colorname[] = { 93static const char *colorname[] = {
94 /* 8 normal colors */ 94 /* 8 normal colors */
95 "black", 95 "#000000",
96 "red3", 96 "#f07178",
97 "green3", 97 "#c3e88d",
98 "yellow3", 98 "#ffcb6b",
99 "blue2", 99 "#82aaff",
100 "magenta3", 100 "#c792ea",
101 "cyan3", 101 "#89ddff",
102 "gray90", 102 "#d0d0d0",
103 103
104 /* 8 bright colors */ 104 /* 8 bright colors */
105 "gray50", 105 "#434758",
106 "red", 106 "#ff8b92",
107 "green", 107 "#ddffa7",
108 "yellow", 108 "#ffe585",
109 "#5c5cff", 109 "#9cc4ff",
110 "magenta", 110 "#e1acff",
111 "cyan", 111 "#a3f7ff",
112 "white", 112 "#ffffff",
113 113
114 [255] = 0, 114 [255] = 0,
115 115
116 /* more colors can be added after 255 to use with DefaultXX */ 116 /* more colors can be added after 255 to use with DefaultXX */
117 "#cccccc", 117 "#282a36",
118 "#555555", 118 "#bbc5ff",
119 "#d7d7d7",
120
119}; 121};
120 122
121 123