diff options
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | colors/mariana.lua | 28 | ||||
-rw-r--r-- | colors/monokai-pro-classic.lua | 28 | ||||
-rw-r--r-- | colors/monokai.lua | 38 |
4 files changed, 79 insertions, 21 deletions
@@ -1,4 +1,4 @@ -Color themes for the [lite-xl text editor](https://github.com/lite-xl/lite-xl), originally forked from the [lite colors repository](https://github.com/rxi/lite-colors). +Color themes for the [Lite XL text editor](https://github.com/lite-xl/lite-xl), originally forked from the [lite colors repository](https://github.com/rxi/lite-colors). *Note: if you make a pull request, the relevant table should be updated and kept in alphabetical order. The [`make_preview_image.lua`](make_preview_image.lua) @@ -17,8 +17,10 @@ Theme | Preview [`duotone`](colors/duotone.lua?raw=1) | ![duotone_preview](https://i.imgur.com/ZND82Lv.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) +[`mariana`](colors/mariana.lua?raw=1) | ![mariana_preview](https://i.imgur.com/wizE1ZC.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) +[`monokai`](colors/monokai.lua?raw=1) | ![monokai_preview](https://i.imgur.com/ex2Tb5A.png) +[`monokai-pro-classic`](colors/monokai-pro-classic.lua?raw=1) | ![monokai-pro-classic_preview](https://user-images.githubusercontent.com/3920290/80307643-43419c80-87c2-11ea-9f04-580d6acf6252.png) [`nord`](colors/nord.lua?raw=1) | ![nord_preview](https://user-images.githubusercontent.com/22625346/92419103-6baab180-f139-11ea-8638-d90db10da086.png) [`onedark`](colors/onedark.lua?raw=1) | ![onedark_preview](https://user-images.githubusercontent.com/1702572/147136302-d1179cf6-fafc-4da0-a33b-4041dda7f340.png) [`only_dark`](colors/only_dark.lua?raw=1) | ![only_dark_preview](https://user-images.githubusercontent.com/18345339/110795752-c8825280-82a9-11eb-9d90-e9f8f9c7ebb5.png) diff --git a/colors/mariana.lua b/colors/mariana.lua new file mode 100644 index 0000000..adea00f --- /dev/null +++ b/colors/mariana.lua @@ -0,0 +1,28 @@ +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#303841" } +style.background2 = { common.color "#1d2227" } +style.background3 = { common.color "#1d2227" } +style.text = { common.color "#9ea191" } +style.caret = { common.color "#61efce" } +style.accent = { common.color "#ffd152" } +style.dim = { common.color "#4c5863" } +style.divider = { common.color "#242223" } +style.selection = { common.color "#4c5863" } +style.line_number = { common.color "#bfc5d0" } +style.line_number2 = { common.color "#848b95" } +style.line_highlight = { common.color "#303841" } +style.scrollbar = { common.color "#696f75" } +style.scrollbar2 = { common.color "#444b53" } + +style.syntax["normal"] = { common.color "#d7dde9" } +style.syntax["symbol"] = { common.color "#d8dee9" } +style.syntax["comment"] = { common.color "#a6acb9" } +style.syntax["keyword"] = { common.color "#e55e66" } +style.syntax["keyword2"] = { common.color "#ef6179" } +style.syntax["number"] = { common.color "#ffd152" } +style.syntax["literal"] = { common.color "#e75550" } +style.syntax["string"] = { common.color "#939d5d" } +style.syntax["operator"] = { common.color "#c2674f" } +style.syntax["function"] = { common.color "#6699ca" }
\ No newline at end of file diff --git a/colors/monokai-pro-classic.lua b/colors/monokai-pro-classic.lua new file mode 100644 index 0000000..96446c8 --- /dev/null +++ b/colors/monokai-pro-classic.lua @@ -0,0 +1,28 @@ +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#272822" } +style.background2 = { common.color "#22231C" } +style.background3 = { common.color "#22231C" } +style.text = { common.color "#9ea191" } +style.caret = { common.color "#F8F8F0" } +style.accent = { common.color "#F8F8F2" } +style.dim = { common.color "#5e6052" } +style.divider = { common.color "#1b1c17" } +style.selection = { common.color "#49483E" } +style.line_number = { common.color "#75715E" } +style.line_number2 = { common.color "#d2d0c6" } +style.line_highlight = { common.color "#36372f" } +style.scrollbar = { common.color "#49483E" } +style.scrollbar2 = { common.color "#636254" } + +style.syntax["normal"] = { common.color "#F8F8F2" } +style.syntax["symbol"] = { common.color "#F8F8F2" } +style.syntax["comment"] = { common.color "#75715E" } +style.syntax["keyword"] = { common.color "#F92672" } +style.syntax["keyword2"] = { common.color "#66DAEF" } +style.syntax["number"] = { common.color "#AE81FF" } +style.syntax["literal"] = { common.color "#AE81FF" } +style.syntax["string"] = { common.color "#E6DB74" } +style.syntax["operator"] = { common.color "#F8F8F2" } +style.syntax["function"] = { common.color "#A6E22E" } diff --git a/colors/monokai.lua b/colors/monokai.lua index 96446c8..bbd8d47 100644 --- a/colors/monokai.lua +++ b/colors/monokai.lua @@ -1,28 +1,28 @@ local style = require "core.style" local common = require "core.common" -style.background = { common.color "#272822" } -style.background2 = { common.color "#22231C" } -style.background3 = { common.color "#22231C" } +style.background = { common.color "#282923" } +style.background2 = { common.color "#181915" } +style.background3 = { common.color "#181915" } style.text = { common.color "#9ea191" } -style.caret = { common.color "#F8F8F0" } -style.accent = { common.color "#F8F8F2" } +style.caret = { common.color "#f8f8f2" } +style.accent = { common.color "#f8f8f2" } style.dim = { common.color "#5e6052" } style.divider = { common.color "#1b1c17" } -style.selection = { common.color "#49483E" } -style.line_number = { common.color "#75715E" } +style.selection = { common.color "#3a3a32" } +style.line_number = { common.color "#90918b" } style.line_number2 = { common.color "#d2d0c6" } -style.line_highlight = { common.color "#36372f" } -style.scrollbar = { common.color "#49483E" } -style.scrollbar2 = { common.color "#636254" } +style.line_highlight = { common.color "#282923" } +style.scrollbar = { common.color "#63635f" } +style.scrollbar2 = { common.color "#3d3d38" } -style.syntax["normal"] = { common.color "#F8F8F2" } -style.syntax["symbol"] = { common.color "#F8F8F2" } +style.syntax["normal"] = { common.color "#f8f8f2" } +style.syntax["symbol"] = { common.color "#f8f8f2" } style.syntax["comment"] = { common.color "#75715E" } -style.syntax["keyword"] = { common.color "#F92672" } -style.syntax["keyword2"] = { common.color "#66DAEF" } -style.syntax["number"] = { common.color "#AE81FF" } -style.syntax["literal"] = { common.color "#AE81FF" } -style.syntax["string"] = { common.color "#E6DB74" } -style.syntax["operator"] = { common.color "#F8F8F2" } -style.syntax["function"] = { common.color "#A6E22E" } +style.syntax["keyword"] = { common.color "#f92472" } +style.syntax["keyword2"] = { common.color "#f92472" } +style.syntax["number"] = { common.color "#ac80ff" } +style.syntax["literal"] = { common.color "#e7db74" } +style.syntax["string"] = { common.color "#e7db74" } +style.syntax["operator"] = { common.color "#f92472" } +style.syntax["function"] = { common.color "#5cd5ef" } |