-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththemes.go
82 lines (75 loc) · 1.59 KB
/
themes.go
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package pprinter
type Theme struct {
ColorSuccess string
ColorInfo string
ColorWarn string
ColorError string
}
var (
PastelTheme = Theme{
ColorSuccess: "#27ae60",
ColorInfo: "#3498db",
ColorWarn: "#f39c12",
ColorError: "#c0392b",
}
AyuTheme = Theme{
ColorSuccess: "#b3b846",
ColorInfo: "#66aabb",
ColorWarn: "#d18e44",
ColorError: "#c33e40",
}
AyuLightTheme = Theme{
ColorSuccess: "#a3c08b",
ColorInfo: "#9eb0b7",
ColorWarn: "#d0a176",
ColorError: "#c07e7e",
}
MonokaiTheme = Theme{
ColorSuccess: "#a6e22e",
ColorInfo: "#66d9ef",
ColorWarn: "#fd971f",
ColorError: "#f92672",
}
MonokaiLightTheme = Theme{
ColorSuccess: "#c3e88d",
ColorInfo: "#9cc2d3",
ColorWarn: "#ffb86c",
ColorError: "#ff7b8a",
}
DraculaTheme = Theme{
ColorSuccess: "#50fa7b",
ColorInfo: "#8be9fd",
ColorWarn: "#f1fa8c",
ColorError: "#ff5555",
}
DraculaLightTheme = Theme{
ColorSuccess: "#7aa56c",
ColorInfo: "#85a7db",
ColorWarn: "#d4c36a",
ColorError: "#db615d",
}
SolarizedTheme = Theme{
ColorSuccess: "#859900",
ColorInfo: "#268bd2",
ColorWarn: "#b58900",
ColorError: "#dc322f",
}
SolarizedLightTheme = Theme{
ColorSuccess: "#a6a74f",
ColorInfo: "#7791b3",
ColorWarn: "#c5a632",
ColorError: "#d94c4c",
}
OneDarkTheme = Theme{
ColorSuccess: "#50e3c2",
ColorInfo: "#61afef",
ColorWarn: "#e5c07b",
ColorError: "#ff6c6b",
}
OneDarkLightTheme = Theme{
ColorSuccess: "#6dd3a8",
ColorInfo: "#89a1e2",
ColorWarn: "#e8d39b",
ColorError: "#ff9f9e",
}
)