diff options
author | smezzy <yagamiztc123@gmail.com> | 2024-02-27 00:30:09 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-27 04:30:09 +0100 |
commit | 110f08e0c639ade10c0f9793de4249593f6da2d0 (patch) | |
tree | cbd863e7c15ec71d4e19cc133832036d1592b8d1 | |
parent | ad3b0530fddee83d392226881b31a524173e53a6 (diff) | |
download | lite-xl-colors-110f08e0c639ade10c0f9793de4249593f6da2d0.tar.gz lite-xl-colors-110f08e0c639ade10c0f9793de4249593f6da2d0.zip |
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
-rw-r--r-- | colors/focus.lua | 32 | ||||
-rw-r--r-- | manifest.json | 33 |
2 files changed, 54 insertions, 11 deletions
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 @@ -36,6 +36,17 @@ ] }, { + "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", "name" : "betelgeuse", @@ -179,6 +190,17 @@ "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", "name" : "github", @@ -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" } ] } |