From 15d68f039ad8eb08adcc70ce867662ee4a2080d5 Mon Sep 17 00:00:00 2001 From: Delta-official Date: Sun, 5 Jun 2022 04:47:51 +0300 Subject: Add Betelgeuse theme --- colors/betelgeuse.lua | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 colors/betelgeuse.lua diff --git a/colors/betelgeuse.lua b/colors/betelgeuse.lua new file mode 100644 index 0000000..f8eb86f --- /dev/null +++ b/colors/betelgeuse.lua @@ -0,0 +1,48 @@ +local style = require "core.style" +local common = require "core.common" + +-- App -- +style.background = { common.color "#222831" } +style.background2 = { common.color "#1e232b" } +style.background3 = { common.color "#1e232b" } +style.text = { common.color "#dfe2e7" } +style.caret = { common.color "#dfe2e7" } +style.accent = { common.color "#e2e4e9" } +style.dim = { common.color "#8893a5" } +style.divider = { common.color "#1e232b" } +style.selection = { common.color "#2c3440" } +style.line_number = { common.color "#8893a5" } +style.line_number2 = { common.color "#8893a5" } +style.line_highlight = { common.color "#242a34" } +style.scrollbar = { common.color "#2c3440" } +style.scrollbar2 = { common.color "#f5ad44" } +style.scrollbar_track = { common.color "#00000000" } +style.nagbar = { common.color "#db504a" } +style.nagbar_text = { common.color "#dfe2e7" } +style.nagbar_dim = { common.color "rgba(0, 0, 0, 0.45)" } +style.drag_overlay = { common.color "#dfe2e733" } +style.drag_overlay_tab = { common.color "#f5ad44" } +style.good = { common.color "#47e2b1" } +style.warn = { common.color "#f5ad44" } +style.error = { common.color "#db504a" } +style.modified = { common.color "#448bf5" } + +-- Syntax -- +style.syntax = {} +style.syntax["normal"] = { common.color "#dfe2e7" } +style.syntax["symbol"] = { common.color "#dfe2e7" } +style.syntax["comment"] = { common.color "#8893a5" } +style.syntax["keyword"] = { common.color "#448bf5" } +style.syntax["keyword2"] = { common.color "#f5ad44" } +style.syntax["number"] = { common.color "#f5ad44" } +style.syntax["literal"] = { common.color "#45e1df" } +style.syntax["string"] = { common.color "#f5ad44" } +style.syntax["operator"] = { common.color "#dfe2e7" } +style.syntax["function"] = { common.color "#f786aa" } + +-- Lint+ -- +style.lint = {} +style.lint["info"] = { common.color "#448bf5" } +style.lint["hint"] = { common.color "#47e2b1" } +style.lint["warning"] = { common.color "#f5ad44" } +style.lint["error"] = { common.color "#db504a" } -- cgit v1.2.3 From a9a1ee42c4db4e44e2b99ddb4518f8b9b1143598 Mon Sep 17 00:00:00 2001 From: Delta-official Date: Sun, 5 Jun 2022 04:48:24 +0300 Subject: Add Betelgeuse preview --- previews/betelgeuse.svg | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 previews/betelgeuse.svg diff --git a/previews/betelgeuse.svg b/previews/betelgeuse.svg new file mode 100644 index 0000000..93fedd4 --- /dev/null +++ b/previews/betelgeuse.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3 From 1b20ce4ae5a40b8a0430dfaee773a4535a2cbec1 Mon Sep 17 00:00:00 2001 From: Delta-official Date: Sun, 5 Jun 2022 01:50:38 +0000 Subject: Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 360c92b..6f33783 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ embedded in the table.* Theme | Preview ------|----------------------------------------- +[`betelgeuse`](colors/betelgeuse.lua?raw=1) | ![betelgeuse_preview](previews/betelgeuse.svg) [`cold_lime`](colors/cold_lime.lua?raw=1) | ![cold_lime_preview](previews/cold_lime.svg) [`c0mfy`](colors/c0mfy.lua?raw=1) | ![c0mfy_preview](previews/c0mfy.svg) [`dracula`](colors/dracula.lua?raw=1) | ![dracula_preview](previews/dracula.svg) @@ -42,4 +43,4 @@ Theme | Preview [`gruvbox_light`](colors/gruvbox_light.lua?raw=1) | ![gruvbox_light_preview](previews/gruvbox_light.svg) [`moe`](colors/moe.lua?raw=1) | ![moe_preview](previews/moe.svg) [`solarized_light`](colors/solarized_light.lua?raw=1) | ![solarized_light_preview](previews/solarized_light.svg) -[`solarobj`](colors/solarobj.lua?raw=1) | ![solarobj_preview](previews/solarobj.svg) \ No newline at end of file +[`solarobj`](colors/solarobj.lua?raw=1) | ![solarobj_preview](previews/solarobj.svg) -- cgit v1.2.3