summaryrefslogtreecommitdiffstats
path: root/example/themes/example.kdl
blob: 2a6569dda6a61487c01c2c84deab559d2792008a (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
// This file shows how to write a theme file
// using `gruvbox` theme.

themes {
	// example of how to set a theme in RGB format
	gruvbox-light {
		fg 60 56 54
        bg 251 82 75
        black 40 40 40
        red 205 75 69
        green 152 151 26
        yellow 215 153 33
        blue 69 133 136
        magenta 177 98 134
        cyan 104 157 106
        white 213 196 161
        orange 214 93 14
	}

	// example of how to set a theme in HEX format
	gruvbox-dark {
		fg "#D5C4A1"
		bg "#282828"
		black "#3C3836"
		red "#CC241D"
		green "#98971A"
		yellow "#D79921"
		blue "#3C8588"
		magenta "#B16286"
		cyan "#689D6A"
		white "#FBF1C7"
		orange "#D65D0E"
	}
}