diff options
author | xStormy <90779060+xStormyy@users.noreply.github.com> | 2024-10-19 18:46:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-19 18:46:17 +0200 |
commit | 52d697dc2b52f1a3d9b7a2cae4e28986e279314e (patch) | |
tree | c0e16a3312f65e19d34869ad52ca82a0513b78a2 /colors/oxocarbon-dark.lua | |
parent | ca5fdce45f1e00df0297c0b94e5388ec89e8fdb4 (diff) | |
download | lite-xl-colors-52d697dc2b52f1a3d9b7a2cae4e28986e279314e.tar.gz lite-xl-colors-52d697dc2b52f1a3d9b7a2cae4e28986e279314e.zip |
Add Oxocarbon Light theme (& small enhancements to Oxocarbon Dark) (#46)
* Add bracketmatch coloring to oxocarbon-dark
* add light version of oxocarbon
* Add oxocarbon light to manifest.json
* added drag_overlay, nagbar and whitespace coloring to oxocarbon-light.lua
* added drag_overlay, nagbar and whitespace coloring to oxocarbon-dark.lua
* darkend background when nagbar in oxocarbon-light.lua
* darkend background when nagbar in oxocarbon-dark.lua
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 |