diff options
author | Jipok <braaga@inbox.ru> | 2020-11-06 20:05:36 +0500 |
---|---|---|
committer | Jipok <braaga@inbox.ru> | 2020-11-06 20:05:36 +0500 |
commit | 3afc058c1babd9beef9c37623f6a70e0b09496fc (patch) | |
tree | 905224bc7d961268bfef7599595205f18cf5772d | |
parent | 29e6ed3e5813bfc78e6a745fee2d71220be7d146 (diff) | |
download | lite-xl-colors-3afc058c1babd9beef9c37623f6a70e0b09496fc.tar.gz lite-xl-colors-3afc058c1babd9beef9c37623f6a70e0b09496fc.zip |
Highlight operator highlighting in vscode-dark
-rw-r--r-- | colors/vscode-dark.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/colors/vscode-dark.lua b/colors/vscode-dark.lua index fb7d658..0b8d108 100644 --- a/colors/vscode-dark.lua +++ b/colors/vscode-dark.lua @@ -27,7 +27,7 @@ style.syntax["keyword2"] = { common.color "#C586C0" } -- self, int float style.syntax["number"] = { common.color "#B5CEA8" } style.syntax["literal"] = { common.color "#569CD6" } style.syntax["string"] = { common.color "#CE9178" } -style.syntax["operator"] = { common.color "#D4D4D4" } -- = + - / < > +style.syntax["operator"] = { common.color "#8590A5"} -- = + - / < > style.syntax["function"] = { common.color "#DCDCAA" } -- PLUGINS |