From 58a359cab61cd9ed292c8cbfa45a88012c7a1b5d Mon Sep 17 00:00:00 2001 From: Chidambaram Nachiappan <60850111+thechidambaram@users.noreply.github.com> Date: Sun, 27 Feb 2022 13:36:26 +0000 Subject: Add 'plasma' color theme --- README.md | 1 + colors/plasma.lua | 29 +++++++++++++++++++++++++++++ previews/plasma.svg | 23 +++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 colors/plasma.lua create mode 100644 previews/plasma.svg diff --git a/README.md b/README.md index 99479a0..a7b3645 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ Theme | Preview [`nord`](colors/nord.lua?raw=1) | ![nord_preview](previews/nord.svg) [`onedark`](colors/onedark.lua?raw=1) | ![onedark_preview](previews/onedark.svg) [`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) [`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/plasma.lua b/colors/plasma.lua new file mode 100644 index 0000000..635572e --- /dev/null +++ b/colors/plasma.lua @@ -0,0 +1,29 @@ +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#222226" } +style.background2 = { common.color "#252528" } +style.background3 = { common.color "#1e1e21" } +style.text = { common.color "#dddddd" } +style.caret = { common.color "#aeafad" } +style.accent = { common.color "#0097fb" } +style.dim = { common.color "#9393a5" } +style.divider = { common.color "#1E1E1E" } +style.selection = { common.color "#264f78" } +style.line_number = { common.color "#858585" } +style.line_number2 = { common.color "#c6c6c6" } +style.line_highlight = { common.color "#2b2b2f"} +style.scrollbar = { common.color "#313136" } +style.scrollbar2 = { common.color "#bfbfbf" } + +style.syntax["normal"] = { common.color "#dddddd" } +style.syntax["symbol"] = { common.color "#e06c75" } +style.syntax["comment"] = { common.color "#c5c5c5" } +style.syntax["keyword"] = { common.color "#61afef" } +style.syntax["keyword2"] = { common.color "#56B6C2" } +style.syntax["number"] = { common.color "#d19a66" } +style.syntax["literal"] = { common.color "#61AFEF" } +style.syntax["string"] = { common.color "#98C379" } +style.syntax["operator"] = { common.color "#dddddd" } +style.syntax["function"] = { common.color "#c678dd" } + diff --git a/previews/plasma.svg b/previews/plasma.svg new file mode 100644 index 0000000..44ae495 --- /dev/null +++ b/previews/plasma.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3