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[] = {
"#000000", /* base00 */
"#fc5454", /* base08 */
"#54fc54", /* base0B */
"#fcfc54", /* base0A */
"#5454fc", /* base0D */
"#fc54fc", /* base0E */
"#54fcfc", /* base0C */
"#c0c0c0", /* base05 */
"#545454", /* base03 */
"#fc5454", /* base08 */
"#54fc54", /* base0B */
"#fcfc54", /* base0A */
"#5454fc", /* base0D */
"#fc54fc", /* base0E */
"#54fcfc", /* base0C */
"#fcfcfc", /* base07 */
[255] = 0,
"#f0f0f0",
"#181818",
"#f0f0f0",
"#000000",
};
unsigned int defaultfg = 258;
unsigned int defaultbg = 259;
unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257;
|