aboutsummaryrefslogtreecommitdiff
path: root/.cache/wal/colors-wal-st.h
blob: 55463ed4547268d8fc506648dae2e6833df2d382 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const char *colorname[] = {

  /* 8 normal colors */
  [0] = "#141415", /* black   */
  [1] = "#292b37", /* red     */
  [2] = "#3c2a27", /* green   */
  [3] = "#3b3033", /* yellow  */
  [4] = "#3f3330", /* blue    */
  [5] = "#4b4240", /* magenta */
  [6] = "#66615a", /* cyan    */
  [7] = "#c4c4c4", /* white   */

  /* 8 bright colors */
  [8]  = "#4e4e4f",  /* black   */
  [9]  = "#292b37",  /* red     */
  [10] = "#3c2a27", /* green   */
  [11] = "#3b3033", /* yellow  */
  [12] = "#3f3330", /* blue    */
  [13] = "#4b4240", /* magenta */
  [14] = "#66615a", /* cyan    */
  [15] = "#c4c4c4", /* white   */

  /* special colors */
  [256] = "#141415", /* background */
  [257] = "#c4c4c4", /* foreground */
  [258] = "#c4c4c4",     /* cursor */
};

/* Default colors (colorname index)
 * foreground, background, cursor */
 unsigned int defaultbg = 0;
 unsigned int defaultfg = 257;
 unsigned int defaultcs = 258;
 unsigned int defaultrcs= 258;