diff options
Diffstat (limited to 'colors/oxocarbon-dark.lua')
-rw-r--r-- | colors/oxocarbon-dark.lua | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/colors/oxocarbon-dark.lua b/colors/oxocarbon-dark.lua index 12376c2..3571f39 100644 --- a/colors/oxocarbon-dark.lua +++ b/colors/oxocarbon-dark.lua @@ -34,14 +34,13 @@ style.syntax["literal"] = base04 -- literals style.syntax["string"] = base15 -- 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.bracketmatch_color = base02 - style.guide = base02 -- indentation guide style.guide_highlighting = base02 -- indentation guide @@ -56,6 +55,17 @@ style.divider = base00 -- borders style.line_number = base03 -- inactive style.line_number2 = base04 -- active +style.drag_overlay = { common.color "rgba(255, 255, 255, 0.30)" } +style.drag_overlay_tab = base03 + +style.scrollbar = base01 -- scrollbar button when not interacted +style.scrollbar2 = base03 -- button when you hover over +style.scrollbar_track = base01 -- scrollbar track + +style.nagbar = base10 +style.nagbar_text = base01 +style.nagbar_dim = { common.color "rgba(0, 0, 0, 0.30)" } + -- Evergreen style.syntax["attribute"] = base14 style.syntax["boolean"] = base09 @@ -130,3 +140,9 @@ style.gitstatus_deletion = base10 style.gitdiff_addition = base13 style.gitdiff_modification = base09 style.gitdiff_deletion = base10 + +-- bracketmatch +style.bracketmatch_color = base06 +style.bracketmatch_char_color = base09 +style.bracketmatch_block_color = base03 +style.bracketmatch_frame_color = base06 |