7 lines
203 B
C
7 lines
203 B
C
|
static const char *colors[SchemeLast][2] = {
|
||
|
/* fg bg */
|
||
|
[SchemeNorm] = { "#cdd6f4", "#1e1e2e" },
|
||
|
[SchemeSel] = { "#1e1e2e", "#89dceb" },
|
||
|
[SchemeOut] = { "#000000", "#89dceb" },
|
||
|
};
|