diff options
author | rxi <rxi@users.noreply.github.com> | 2020-05-17 22:24:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-17 22:24:43 +0100 |
commit | 213c0c6ab9fffda88d2fcc216529fee37933f449 (patch) | |
tree | 20e8f17e21b322d464b50d04ffeb5eeeb2f47faf | |
parent | b20d75fef9b13918f35e5934f4e04e477cae437f (diff) | |
parent | 308b14b0ac72446e2de3dbedfd5dab1c34659923 (diff) | |
download | lite-xl-colors-213c0c6ab9fffda88d2fcc216529fee37933f449.tar.gz lite-xl-colors-213c0c6ab9fffda88d2fcc216529fee37933f449.zip |
Merge pull request #4 from liqube/master
Added Liqube Dark Code based theme
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | colors/liqube.lua | 32 |
2 files changed, 34 insertions, 1 deletions
@@ -13,9 +13,10 @@ Theme | Preview ------|----------------------------------------- [`dracula`](colors/dracula.lua?raw=1) | ![dracula_preview](https://user-images.githubusercontent.com/3920290/81507632-9ead7780-92f6-11ea-85e9-7cfb9ffa97ae.png) [`gruvbox_dark`](colors/gruvbox_dark.lua?raw=1) | ![gruvbox_dark_preview](https://user-images.githubusercontent.com/57670615/81137677-94bdfa00-8f2d-11ea-9224-3d70a5ec3101.png) +[`liqube`](colors/liqube.lua?raw=1) | ![liqube_preview](https://user-images.githubusercontent.com/49284552/82159394-0c751880-988e-11ea-963d-7a25497a8fee.png) [`monodark`](colors/monodark.lua?raw=1) | ![monodark_preview](https://user-images.githubusercontent.com/3920290/80304201-62353400-87ac-11ea-9b13-9ca1b9db0f99.png) [`monokai`](colors/monokai.lua?raw=1) | ![monokai_preview](https://user-images.githubusercontent.com/3920290/80307643-43419c80-87c2-11ea-9f04-580d6acf6252.png) -[`winter`](colors/winter.lua?raw=1) |![winter_preview](https://user-images.githubusercontent.com/3920290/80304194-5c3f5300-87ac-11ea-9acf-33892579093e.png) +[`winter`](colors/winter.lua?raw=1) | ![winter_preview](https://user-images.githubusercontent.com/3920290/80304194-5c3f5300-87ac-11ea-9acf-33892579093e.png) ## Light diff --git a/colors/liqube.lua b/colors/liqube.lua new file mode 100644 index 0000000..6e7f95c --- /dev/null +++ b/colors/liqube.lua @@ -0,0 +1,32 @@ +-- Liqube Dark Code for Lite <liqube.com> + +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#13171e" } +style.background2 = { common.color "#21252b" } +style.background3 = { common.color "#21252b" } +style.text = { common.color "#abb2bf" } +style.caret = { common.color "#abb2bf" } +style.accent = { common.color "#ffffff" } +style.dim = { common.color "#545e70" } +style.divider = { common.color "#242223" } +style.selection = { common.color "#3e4451" } +style.line_number = { common.color "#323641" } +style.line_number2 = { common.color "#596275" } +style.line_highlight = { common.color "#1c1f25" } +style.scrollbar = { common.color "#3d3f43" } +style.scrollbar2 = { common.color "#595b5f" } +style.guide = { common.color "#1c1f25" } -- indentguide + +style.syntax["normal"] = { common.color "#abb2bf" } +style.syntax["symbol"] = { common.color "#71a9d7" } +style.syntax["comment"] = { common.color "#5c6370" } +style.syntax["keyword"] = { common.color "#98c875" } +style.syntax["keyword2"] = { common.color "#ffffff" } +style.syntax["number"] = { common.color "#ffffff" } +style.syntax["literal"] = { common.color "#ea5964" } +style.syntax["string"] = { common.color "#ea5964" } +style.syntax["operator"] = { common.color "#657085" } +style.syntax["function"] = { common.color "#ffffff" } +style.syntax["preprocessor"] = { common.color "#98c875" } -- thinking ahead |