diff options
author | Guldoman <giulio.lettieri@gmail.com> | 2022-05-17 08:17:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-17 08:17:18 +0200 |
commit | e5d1c3d5c30bf2f7e1be9cb49674a76a4fceb587 (patch) | |
tree | d1026207080db9b18fe15b13a6db3f242b27a460 | |
parent | 4f2237fb1091095549f12f1e512e6dea5d6c44a2 (diff) | |
parent | b06cc146a6d2ba89ee5d11dc57adc376256b119f (diff) | |
download | lite-xl-colors-e5d1c3d5c30bf2f7e1be9cb49674a76a4fceb587.tar.gz lite-xl-colors-e5d1c3d5c30bf2f7e1be9cb49674a76a4fceb587.zip |
Merge pull request #12 from rototrash/master
Add 'tokyo-night' and 'jellybeans' colorschemes
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | colors/jellybeans.lua | 37 | ||||
-rw-r--r-- | colors/tokyo-night.lua | 37 | ||||
-rw-r--r-- | previews/jellybeans.svg | 20 | ||||
-rw-r--r-- | previews/tokyo-night.svg | 21 |
5 files changed, 117 insertions, 0 deletions
@@ -18,6 +18,7 @@ Theme | Preview [`duotone`](colors/duotone.lua?raw=1) | ![duotone_preview](previews/duotone.svg) [`github-dark-dimmed`](colors/github-dark-dimmed.lua?raw=1) | ![duotone_preview](previews/github-dark-dimmed.svg) [`gruvbox_dark`](colors/gruvbox_dark.lua?raw=1) | ![gruvbox_dark_preview](previews/gruvbox_dark.svg) +[`jellybeans`](colors/jellybeans.lua?raw=1) | ![jellybeans_preview](previews/jellybeans.svg) [`liqube`](colors/liqube.lua?raw=1) | ![liqube_preview](previews/liqube.svg) [`mariana`](colors/mariana.lua?raw=1) | ![mariana_preview](previews/mariana.svg) [`monodark`](colors/monodark.lua?raw=1) | ![monodark_preview](previews/monodark.svg) @@ -28,6 +29,7 @@ Theme | Preview [`only_dark`](colors/only_dark.lua?raw=1) | ![only_dark_preview](previews/only_dark.svg) [`plasma`](colors/plasma.lua?raw=1) | ![plasma_preview](previews/plasma.svg) [`synthwave`](colors/synthwave.lua?raw=1) | ![synthwave_preview](previews/synthwave.svg) +[`tokyo-night`](colors/tokyo-night.lua?raw=1) | ![tokyo-night_preview](previews/tokyo-night.svg) [`vscode-dark`](colors/vscode-dark.lua?raw=1) | ![vscode-dark_preview](previews/vscode-dark.svg) [`winter`](colors/winter.lua?raw=1) | ![winter_preview](previews/winter.svg) [`zenburn`](colors/zenburn.lua?raw=1) | ![zenburn_preview](previews/zenburn.svg) diff --git a/colors/jellybeans.lua b/colors/jellybeans.lua new file mode 100644 index 0000000..9f2cdbc --- /dev/null +++ b/colors/jellybeans.lua @@ -0,0 +1,37 @@ +-- Colors from: https://github.com/nanotech/jellybeans.vim + +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#151515" } +style.background2 = { common.color "#212121" } +style.background3 = { common.color "#212121" } +style.text = { common.color "#e8e8d3" } +style.caret = { common.color "#e8e8d3" } +style.accent = { common.color "#597bc5" } -- Text in autocomplete and command, col(>80) in satusbar +style.dim = { common.color "#888888" } -- Text of nonactive tabs, prefix in log +style.divider = { common.color "#151515" } +style.selection = { common.color "#404040" } +style.line_number = { common.color "#3b3b3b" } +style.line_number2 = { common.color "#888888" } -- Number on line with caret +style.line_highlight = { common.color "#191919"} +style.scrollbar = { common.color "#2e2e2e" } +style.scrollbar2 = { common.color "#3b3b3b" } -- Hovered + +style.syntax["normal"] = { common.color "#6b8b9b" } +style.syntax["symbol"] = { common.color "#e8e8d3" } +style.syntax["comment"] = { common.color "#888888" } +style.syntax["keyword"] = { common.color "#8197bf" } -- local function end, if case +style.syntax["keyword2"] = { common.color "#FFB964" } -- self, int float +style.syntax["number"] = { common.color "#cf6a4c" } +style.syntax["literal"] = { common.color "#8FBFDC" } +style.syntax["string"] = { common.color "#99ad6a" } +style.syntax["operator"] = { common.color "#8FBFDC"} -- = + - / < > +style.syntax["function"] = { common.color "#FAD07A" } + +-- PLUGINS +style.linter_warning = { common.color "#d8ad4c" } -- linter +style.bracketmatch_color = { common.color "#8197bf" } -- bracketmatch +style.guide = { common.color "#3b3b3b" } +style.guide_highlight = { common.color "#5b5b5b" } -- indentguide +style.guide_width = 1 -- indentguide diff --git a/colors/tokyo-night.lua b/colors/tokyo-night.lua new file mode 100644 index 0000000..d68e526 --- /dev/null +++ b/colors/tokyo-night.lua @@ -0,0 +1,37 @@ +-- Colors from: https://github.com/enkia/tokyo-night-vscode-theme + +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#1a1b26" } +style.background2 = { common.color "#16161e" } +style.background3 = { common.color "#24283b" } +style.text = { common.color "#a9b1d6" } +style.caret = { common.color "#a9b1d6" } +style.accent = { common.color "#7aa2f7" } -- Text in autocomplete and command, col(>80) in satusbar +style.dim = { common.color "#565f89" } -- Text of nonactive tabs, prefix in log +style.divider = { common.color "#101014" } +style.selection = { common.color "#282B3C" } +style.line_number = { common.color "#363B54" } +style.line_number2 = { common.color "#737AA2" } -- Number on line with caret +style.line_highlight = { common.color "#1E202E"} +style.scrollbar = { common.color "#24283b" } +style.scrollbar2 = { common.color "#414868" } -- Hovered + +style.syntax["normal"] = { common.color "#9ABDF5" } +style.syntax["symbol"] = { common.color "#c0caf5" } +style.syntax["comment"] = { common.color "#414868" } +style.syntax["keyword"] = { common.color "#bb9af7" } -- local function end, if case +style.syntax["keyword2"] = { common.color "#bb9af7" } -- self, int float +style.syntax["number"] = { common.color "#ff9e64" } +style.syntax["literal"] = { common.color "#c0caf5" } +style.syntax["string"] = { common.color "#9ece6a" } +style.syntax["operator"] = { common.color "#2ac3de"} -- = + - / < > +style.syntax["function"] = { common.color "#7aa2f7" } + +-- PLUGINS +style.linter_warning = { common.color "#e0af68" } -- linter +style.bracketmatch_color = { common.color "#565f89" } -- bracketmatch +style.guide = { common.color "#1E202E" } +style.guide_highlight = { common.color "#363B54" } -- indentguide +style.guide_width = 1 -- indentguide diff --git a/previews/jellybeans.svg b/previews/jellybeans.svg new file mode 100644 index 0000000..0f8aeea --- /dev/null +++ b/previews/jellybeans.svg @@ -0,0 +1,20 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="16" shape-rendering="crispEdges"> +<rect x="0.0" width="11.111111111111" height="16" fill="rgb(21, 21, 21)"></rect> +<rect x="11.111111111111" width="11.111111111111" height="16" fill="rgb(25, 25, 25)"></rect> +<rect x="22.222222222222" width="11.111111111111" height="16" fill="rgb(33, 33, 33)"></rect> +<rect x="33.333333333333" width="11.111111111111" height="16" fill="rgb(46, 46, 46)"></rect> +<rect x="44.444444444444" width="11.111111111111" height="16" fill="rgb(59, 59, 59)"></rect> +<rect x="55.555555555556" width="11.111111111111" height="16" fill="rgb(64, 64, 64)"></rect> +<rect x="66.666666666667" width="11.111111111111" height="16" fill="rgb(91, 91, 91)"></rect> +<rect x="77.777777777778" width="11.111111111111" height="16" fill="rgb(207, 106, 76)"></rect> +<rect x="88.888888888889" width="11.111111111111" height="16" fill="rgb(107, 139, 155)"></rect> +<rect x="100.0" width="11.111111111111" height="16" fill="rgb(136, 136, 136)"></rect> +<rect x="111.11111111111" width="11.111111111111" height="16" fill="rgb(89, 123, 197)"></rect> +<rect x="122.22222222222" width="11.111111111111" height="16" fill="rgb(153, 173, 106)"></rect> +<rect x="133.33333333333" width="11.111111111111" height="16" fill="rgb(216, 173, 76)"></rect> +<rect x="144.44444444444" width="11.111111111111" height="16" fill="rgb(129, 151, 191)"></rect> +<rect x="155.55555555556" width="11.111111111111" height="16" fill="rgb(255, 185, 100)"></rect> +<rect x="166.66666666667" width="11.111111111111" height="16" fill="rgb(143, 191, 220)"></rect> +<rect x="177.77777777778" width="11.111111111111" height="16" fill="rgb(250, 208, 122)"></rect> +<rect x="188.88888888889" width="11.111111111111" height="16" fill="rgb(232, 232, 211)"></rect> +</svg>
\ No newline at end of file diff --git a/previews/tokyo-night.svg b/previews/tokyo-night.svg new file mode 100644 index 0000000..988057d --- /dev/null +++ b/previews/tokyo-night.svg @@ -0,0 +1,21 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="16" shape-rendering="crispEdges"> +<rect x="0.0" width="10.526315789474" height="16" fill="rgb(16, 16, 20)"></rect> +<rect x="10.526315789474" width="10.526315789474" height="16" fill="rgb(22, 22, 30)"></rect> +<rect x="21.052631578947" width="10.526315789474" height="16" fill="rgb(26, 27, 38)"></rect> +<rect x="31.578947368421" width="10.526315789474" height="16" fill="rgb(30, 32, 46)"></rect> +<rect x="42.105263157895" width="10.526315789474" height="16" fill="rgb(36, 40, 59)"></rect> +<rect x="52.631578947368" width="10.526315789474" height="16" fill="rgb(40, 43, 60)"></rect> +<rect x="63.157894736842" width="10.526315789474" height="16" fill="rgb(54, 59, 84)"></rect> +<rect x="73.684210526316" width="10.526315789474" height="16" fill="rgb(65, 72, 104)"></rect> +<rect x="84.210526315789" width="10.526315789474" height="16" fill="rgb(86, 95, 137)"></rect> +<rect x="94.736842105263" width="10.526315789474" height="16" fill="rgb(115, 122, 162)"></rect> +<rect x="105.26315789474" width="10.526315789474" height="16" fill="rgb(42, 195, 222)"></rect> +<rect x="115.78947368421" width="10.526315789474" height="16" fill="rgb(158, 206, 106)"></rect> +<rect x="126.31578947368" width="10.526315789474" height="16" fill="rgb(224, 175, 104)"></rect> +<rect x="136.84210526316" width="10.526315789474" height="16" fill="rgb(255, 158, 100)"></rect> +<rect x="147.36842105263" width="10.526315789474" height="16" fill="rgb(122, 162, 247)"></rect> +<rect x="157.89473684211" width="10.526315789474" height="16" fill="rgb(169, 177, 214)"></rect> +<rect x="168.42105263158" width="10.526315789474" height="16" fill="rgb(187, 154, 247)"></rect> +<rect x="178.94736842105" width="10.526315789474" height="16" fill="rgb(154, 189, 245)"></rect> +<rect x="189.47368421053" width="10.526315789474" height="16" fill="rgb(192, 202, 245)"></rect> +</svg>
\ No newline at end of file |