From 9dc0184c3924627f368e9fe8e2bca59ac91e4ba2 Mon Sep 17 00:00:00 2001 From: Liqube Date: Sun, 17 May 2020 22:23:54 +0200 Subject: liqube dark code style --- colors/liqube.lua | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 colors/liqube.lua 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 + +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 -- cgit v1.2.3 From 308b14b0ac72446e2de3dbedfd5dab1c34659923 Mon Sep 17 00:00:00 2001 From: Thomas Wolf <49284552+liqube@users.noreply.github.com> Date: Sun, 17 May 2020 22:31:58 +0200 Subject: added liqube theme reference --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f677118..d4c488f 100644 --- a/README.md +++ b/README.md @@ -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 -- cgit v1.2.3