aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkawaii-flesh <kawaiiflesh@yandex.ru>2021-03-16 20:01:22 +0500
committerkawaii-flesh <kawaiiflesh@yandex.ru>2021-03-16 20:01:22 +0500
commit1dee9cbc7acfc709758f5220d4b2ebd061fa59b5 (patch)
treee6b2f3a7f9265745c6b953241315ca8de234e971
parentf8c7a5671d937bc0495d6821b6fa980e442d43c6 (diff)
downloadlite-xl-colors-1dee9cbc7acfc709758f5220d4b2ebd061fa59b5.tar.gz
lite-xl-colors-1dee9cbc7acfc709758f5220d4b2ebd061fa59b5.zip
Added color theme and preview cold_lime
-rw-r--r--README.md1
-rw-r--r--colors/cold_lime.lua28
2 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md
index 5677a69..27685d3 100644
--- a/README.md
+++ b/README.md
@@ -11,6 +11,7 @@ embedded in the table.*
Theme | Preview
------|-----------------------------------------
+[`cold_lime`](colors/cold_lime.lua?raw=1) | ![cold_lime_preview](https://i.imgur.com/0p3BQCB.png)
[`dracula`](colors/dracula.lua?raw=1) | ![dracula_preview](https://user-images.githubusercontent.com/3920290/81507632-9ead7780-92f6-11ea-85e9-7cfb9ffa97ae.png)
[`duorand`](colors/duorand.lua?raw=1) |
[`duotone`](colors/duotone.lua?raw=1) | ![duotone_preview](https://i.imgur.com/ZND82Lv.png)
diff --git a/colors/cold_lime.lua b/colors/cold_lime.lua
new file mode 100644
index 0000000..fd53a30
--- /dev/null
+++ b/colors/cold_lime.lua
@@ -0,0 +1,28 @@
+local style = require "core.style"
+local common = require "core.common"
+
+style.background = { common.color "#073642" }
+style.background2 = { common.color "#073642" }
+style.background3 = { common.color "#073642" }
+style.text = { common.color "#00d1d1" }
+style.caret = { common.color "#f053f3" }
+style.accent = { common.color "#f053f3" }
+style.dim = { common.color "#586e75" }
+style.divider = { common.color "#6c71c4" }
+style.selection = { common.color "#415256" }
+style.line_number = { common.color "#586e75" }
+style.line_number2 = { common.color "#f053f3" }
+style.line_highlight = { common.color "#415256" }
+style.scrollbar = { common.color "#6c71c4" }
+style.scrollbar2 = { common.color "#6c71c4" }
+
+style.syntax["normal"] = { common.color "#00d1d1" }
+style.syntax["symbol"] = { common.color "#00ff7f" }
+style.syntax["comment"] = { common.color "#6c71c4" }
+style.syntax["keyword"] = { common.color "#6c71c4" }
+style.syntax["keyword2"] = { common.color "#6c71c4" }
+style.syntax["number"] = { common.color "#00ff7f" }
+style.syntax["literal"] = { common.color "#1586d2" }
+style.syntax["string"] = { common.color "#f7f97d" }
+style.syntax["operator"] = { common.color "#00ff7f" }
+style.syntax["function"] = { common.color "#55ffff" }