aboutsummaryrefslogtreecommitdiff
path: root/colors
diff options
context:
space:
mode:
authorSeptian Adi <septian.adi@softwareseni.com>2021-03-11 20:33:23 +0700
committerSeptian Adi <septian.adi@softwareseni.com>2021-03-11 20:33:23 +0700
commit12e57056c61474fff21e469735e1d20ef962b174 (patch)
treecb3ff79520e6853137c023c1a1cafe58e2e49691 /colors
parent7af783e8ff7d5c8ae18b7c952629bb361e364d3e (diff)
downloadlite-xl-colors-12e57056c61474fff21e469735e1d20ef962b174.tar.gz
lite-xl-colors-12e57056c61474fff21e469735e1d20ef962b174.zip
Added color theme `only_dark`
Diffstat (limited to 'colors')
-rw-r--r--colors/only_dark.lua31
1 files changed, 31 insertions, 0 deletions
diff --git a/colors/only_dark.lua b/colors/only_dark.lua
new file mode 100644
index 0000000..2c29e9d
--- /dev/null
+++ b/colors/only_dark.lua
@@ -0,0 +1,31 @@
+local style = require "core.style"
+local common = require "core.common"
+
+style.background = { common.color "#242424" }
+style.background2 = { common.color "#252528" }
+style.background3 = { common.color "#44475A" }
+
+style.text = { common.color "#fffff0" }
+style.caret = { common.color "#69FF94" }
+style.accent = { common.color "#ff0fff" }
+
+style.dim = { common.color "#0fffff" }
+style.divider = { common.color "#7b7f8b" }
+style.selection = { common.color "#48484f" }
+style.selectionhighlight = { common.color "#dddeee" }
+style.line_number = { common.color "#525259" }
+style.line_number2 = { common.color "#f6f6e0" }
+style.line_highlight = { common.color "#343438" }
+style.scrollbar = { common.color "#414146" }
+style.scrollbar2 = { common.color "#4b4bff" }
+
+style.syntax["normal"] = { common.color "#e1e1e6" }
+style.syntax["symbol"] = { common.color "#97e1f1" }
+style.syntax["comment"] = { common.color "#676b6f" }
+style.syntax["keyword"] = { common.color "#E58AC9" }
+style.syntax["keyword2"] = { common.color "#F77483" }
+style.syntax["number"] = { common.color "#FFA94D" }
+style.syntax["literal"] = { common.color "#ee6666" }
+style.syntax["string"] = { common.color "#f7c95c" }
+style.syntax["operator"] = { common.color "#93DDFA" }
+style.syntax["function"] = { common.color "#bf9eee" }