From 110f08e0c639ade10c0f9793de4249593f6da2d0 Mon Sep 17 00:00:00 2001 From: smezzy Date: Tue, 27 Feb 2024 00:30:09 -0300 Subject: add the focus text editor theme (#34) * add the focus text editor theme * sorted manifest.json and changed filename * changed theme name * fuck forgot the comma --- colors/focus.lua | 32 ++++++++++++++++++++++++++++++++ manifest.json | 33 ++++++++++++++++++++++----------- 2 files changed, 54 insertions(+), 11 deletions(-) create mode 100644 colors/focus.lua diff --git a/colors/focus.lua b/colors/focus.lua new file mode 100644 index 0000000..afc7e27 --- /dev/null +++ b/colors/focus.lua @@ -0,0 +1,32 @@ +-- color theme from the focus text editor + +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#15212A" } +style.background2 = { common.color "#10191F" } +style.background3 = { common.color "#18262FAA" } +style.text = { common.color "#BFC9DBFF" } +style.caret = { common.color "#26B2B2FF" } +style.accent = { common.color "#ffffff" } +style.dim = { common.color "#545e70" } +style.divider = { common.color "#21333F" } +style.selection = { common.color "#1C4449" } +style.line_number = { common.color "#87919DFF" } +style.line_number2 = { common.color "#BFC9DBFF" } +style.line_highlight = { common.color "#1C4449" } +style.scrollbar = { common.color "#33CCCC19" } +style.scrollbar2 = { common.color "#33CCCC4C" } +style.scrollbar_track = { common.color "#10191F4C" } +style.guide = { common.color "#1F2F3A" } -- indentguide + +style.syntax["normal"] = { common.color "#82AAA3" } +style.syntax["symbol"] = { common.color "#BFC9DB" } +style.syntax["comment"] = { common.color "#87919D" } +style.syntax["keyword"] = { common.color "#E67D74" } +style.syntax["keyword2"] = { common.color "#ffffff" } +style.syntax["number"] = { common.color "#D699B5" } +style.syntax["literal"] = { common.color "#ea5964" } +style.syntax["string"] = { common.color "#D4BC7D" } +style.syntax["operator"] = { common.color "#E0AD82" } +style.syntax["function"] = { common.color "#D0C5A9" } diff --git a/manifest.json b/manifest.json index 05db282..c93c637 100644 --- a/manifest.json +++ b/manifest.json @@ -35,6 +35,17 @@ "dark" ] }, + { + "id" : "bearded-theme-vivid-black", + "mod_version" : "3.0.0", + "name" : "Bearded Theme Vivid Black", + "path" : "colors/bearded-theme-vivid-black.lua", + "tags" : [ + "dark" + ], + "type" : "color", + "version" : "0.1" + }, { "id" : "betelgeuse", "mod_version" : "3.0.0", @@ -178,6 +189,17 @@ "type" : "color", "version" : "0.1" }, + { + "id" : "focus", + "mod_version" : "3.0.0", + "name" : "focus", + "path" : "colors/focus.lua", + "tags" : [ + "dark" + ], + "type" : "color", + "version" : "0.1" + }, { "id" : "github", "mod_version" : "3.0.0", @@ -507,17 +529,6 @@ ], "type" : "color", "version" : "0.1" - }, - { - "id" : "bearded-theme-vivid-black", - "mod_version" : "3.0.0", - "name" : "Bearded Theme Vivid Black", - "path" : "colors/bearded-theme-vivid-black.lua", - "tags" : [ - "dark" - ], - "type" : "color", - "version" : "0.1" } ] } -- cgit v1.2.3