diff options
author | Jipok <braaga@inbox.ru> | 2020-11-06 02:24:11 +0500 |
---|---|---|
committer | Jipok <braaga@inbox.ru> | 2020-11-06 02:24:11 +0500 |
commit | 29e6ed3e5813bfc78e6a745fee2d71220be7d146 (patch) | |
tree | b7a3e37b1a0d91016de9ae7e8bee9b4e90963911 | |
parent | 4345785c7e23b51c929f38003c8078fb0f78c379 (diff) | |
download | lite-xl-colors-29e6ed3e5813bfc78e6a745fee2d71220be7d146.tar.gz lite-xl-colors-29e6ed3e5813bfc78e6a745fee2d71220be7d146.zip |
Add some plugins support for vscode-dark theme
-rw-r--r-- | colors/vscode-dark.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/colors/vscode-dark.lua b/colors/vscode-dark.lua index d5543b9..fb7d658 100644 --- a/colors/vscode-dark.lua +++ b/colors/vscode-dark.lua @@ -1,3 +1,6 @@ +-- Most of the colors are taken from: +-- https://github.com/microsoft/vscode/tree/master/extensions/theme-defaults/themes + local style = require "core.style" local common = require "core.common" @@ -26,3 +29,9 @@ style.syntax["literal"] = { common.color "#569CD6" } style.syntax["string"] = { common.color "#CE9178" } style.syntax["operator"] = { common.color "#D4D4D4" } -- = + - / < > style.syntax["function"] = { common.color "#DCDCAA" } + +-- PLUGINS +style.linter_warning = { common.color "#B89500" } -- linter +style.bracketmatch_color = { common.color "#76BCFF" } -- bracketmatch +style.guide = { common.color "#404040" } -- indentguide +style.guide_width = 1 -- indentguide |