-
Notifications
You must be signed in to change notification settings - Fork 23
/
oxocarbon-light.lua
148 lines (129 loc) · 4.93 KB
/
oxocarbon-light.lua
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
-- Theme by @xStormyy on github
-- Original Color Scheme: https://github.com/nyoom-engineering/oxocarbon
local style = require "core.style"
local common = require "core.common"
local base00 = { common.color "#ffffff" }
local base01 = { common.color "#f2f2f2" }
local base02 = { common.color "#d0d0d0" }
local base03 = { common.color "#161616" }
local base04 = { common.color "#37474F" }
local base05 = { common.color "#90A4AE" }
local base06 = { common.color "#525252" }
local base07 = { common.color "#08bdba" }
local base08 = { common.color "#ff7eb6" }
local base09 = { common.color "#ee5396" }
local base10 = { common.color "#FF6F00" }
local base11 = { common.color "#0f62fe" }
local base12 = { common.color "#673AB7" }
local base13 = { common.color "#42be65" }
local base14 = { common.color "#be95ff" }
local base15 = { common.color "#FFAB91" }
style.background = base00 -- editor
style.syntax["normal"] = base06 -- editor text
style.syntax["symbol"] = base15 -- symbols
style.syntax["comment"] = base03 -- comments
style.syntax["keyword"] = base09 -- keywords like function, local, if, end, in lua
style.syntax["keyword2"] = base09 -- types
-- style.syntax["keyword3"] = { common.color "#FF000FF" } -- absolutely no idea
style.syntax["number"] = base09 -- numbers
style.syntax["literal"] = base04 -- literals
style.syntax["string"] = base14 -- strings
style.syntax["operator"] = base08 -- operators
style.syntax["function"] = base08 -- functions
style.syntax["whitespace"] = base02 -- whitespace
style.caret = base06 -- caret
style.line_highlight = base01 -- editor line highlighting
style.selection = base02 -- editor selection
style.guide = base02 -- indentation guide
style.guide_highlighting = base02 -- indentation guide
-- User Interface
style.background2 = base00 -- sidebar
style.background3 = base00 -- status bar
style.text = base04 -- user interface text
style.accent = style.caret -- accent color
style.divider = base00 -- borders
style.line_number = base03 -- inactive
style.line_number2 = base04 -- active
style.drag_overlay = { common.color "rgba(0, 0, 0, 0.30)" }
style.drag_overlay_tab = base03
style.scrollbar = base02 -- scrollbar button when not interacted
style.scrollbar2 = base02 -- button when you hover over
style.scrollbar_track = base01 -- scrollbar track
style.nagbar = base09
style.nagbar_text = base01
style.nagbar_dim = { common.color "rgba(0, 0, 0, 0.30)" }
-- Evergreen
style.syntax["attribute"] = base14
style.syntax["boolean"] = base09
style.syntax["character"] = base13
style.syntax["comment"] = base03
style.syntax["comment.documentation"] = base04
style.syntax["conditional"] = base09
style.syntax["conditional.ternary"] = base09
style.syntax["constant"] = base04
style.syntax["constant.builtin"] = base07
style.syntax["constructor"] = base09
style.syntax["define"] = base09
style.syntax["exception"] = base09
style.syntax["field"] = base04
style.syntax["float"] = base09
style.syntax["function"] = base12
style.syntax["function.call"] = base08
style.syntax["function.macro"] = base07
style.syntax["include"] = base09
style.syntax["keyword.function"] = base12
style.syntax["keyword.operator"] = base09
style.syntax["keyword.return"] = base09
style.syntax["label"] = base09
style.syntax["method"] = base07
style.syntax["method.call"] = base06
style.syntax["namespace"] = base07
style.syntax["number"] = base09
style.syntax["operator"] = base09
style.syntax["parameter"] = base04
style.syntax["preproc"] = base09
style.syntax["punctuation.delimiter"] = base08
style.syntax["punctuation.brackets"] = base08
style.syntax["punctuation.special"] = base08
style.syntax["repeat"] = base09
style.syntax["storageclass"] = base09
style.syntax["storageclass.lifetime"] = base09
style.syntax["string"] = base14
style.syntax["tag"] = base04
style.syntax["tag.attribute"] = base14
style.syntax["tag.delimiter"] = base14
style.syntax["text.diff.add"] = base07
style.syntax["text.diff.delete"] = base10
style.syntax["type"] = base09
style.syntax["type.builtin"] = base09
style.syntax["type.definition"] = base09 -- unsure
style.syntax["type.qualifier"] = base09 -- unsure
style.syntax["variable"] = base04
style.syntax["variable.builtin"] = base04
style.syntax["error"] = base08
-- lint+
style.lint = {} -- Lint+
style.lint.info = base13 -- Lint+ info
style.lint.hint = base14 -- Lint+ hint
style.lint.warning = base07 -- Lint+ warning
style.lint.error = base10 -- Lint+ error
-- rainbowparen
style.syntax.paren_unbalanced = base10
style.syntax.paren1 = base12
style.syntax.paren2 = base13
style.syntax.paren3 = base09
style.syntax.paren4 = base15
style.syntax.paren5 = base14
-- gitstatus
style.gitstatus_addition = base13
style.gitstatus_modification = base09
style.gitstatus_deletion = base10
-- gitdiff_highlight
style.gitdiff_addition = base13
style.gitdiff_modification = base09
style.gitdiff_deletion = base10
-- bracketmatch
style.bracketmatch_color = base03
style.bracketmatch_char_color = base09
style.bracketmatch_block_color = base05
style.bracketmatch_frame_color = base06