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
35
36
37
38
39
40
41
42
43
|
/*
* base16-default-dark-theme.h
*
* Base16: (https://github.com/chriskempson/base16)
*
* Authors:
*
* Scheme: Chris Kempson (http://chriskempson.com)
* Template: Honza Pokorny <me@honza.ca>
*
*/
static const char *colorname[] = {
"#ffffff", /* base00 */
"#cc342b", /* base08 */
"#198844", /* base0B */
"#fba922", /* base0A */
"#3971ed", /* base0D */
"#a36ac7", /* base0E */
"#3971ed", /* base0C */
"#373b41", /* base05 */
"#b4b7b4", /* base00 */
"#cc342b", /* base08 */
"#198844", /* base0B */
"#fba922", /* base0A */
"#3971ed", /* base0D */
"#a36ac7", /* base0E */
"#3971ed", /* base0C */
"#1d1f21", /* base05 */
[255] = 0,
"#373b41",
"#ffffff",
"#373b41",
"#ffffff",
};
unsigned int defaultfg = 258;
unsigned int defaultbg = 259;
unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257;
|