From 76ed0b52826fce00fd91d363753658b98dbe11e9 Mon Sep 17 00:00:00 2001 From: rototrash Date: Tue, 17 May 2022 11:22:39 +0530 Subject: add jellybeans and tokyo-night colorschemes --- colors/jellybeans.lua | 37 +++++++++++++++++++++++++++++++++++++ colors/tokyo-night.lua | 37 +++++++++++++++++++++++++++++++++++++ previews/jellybeans.svg | 20 ++++++++++++++++++++ previews/tokyo-night.svg | 21 +++++++++++++++++++++ 4 files changed, 115 insertions(+) create mode 100644 colors/jellybeans.lua create mode 100644 colors/tokyo-night.lua create mode 100644 previews/jellybeans.svg create mode 100644 previews/tokyo-night.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 @@ + + + + + + + + + + + + + + + + + + + + \ 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 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3