From d7872cf3bf37a67e2ed1ba700168fefdcfa1b69b Mon Sep 17 00:00:00 2001 From: NATrimmer Date: Tue, 10 Oct 2023 12:51:37 -0700 Subject: Flexoki light and dark themes --- colors/flexoki_dark.lua | 31 +++++++++++++++++++++++++++++++ colors/flexoki_light.lua | 32 ++++++++++++++++++++++++++++++++ previews/flexoki_dark.svg | 19 +++++++++++++++++++ previews/flexoki_light.svg | 17 +++++++++++++++++ 4 files changed, 99 insertions(+) create mode 100644 colors/flexoki_dark.lua create mode 100644 colors/flexoki_light.lua create mode 100644 previews/flexoki_dark.svg create mode 100644 previews/flexoki_light.svg diff --git a/colors/flexoki_dark.lua b/colors/flexoki_dark.lua new file mode 100644 index 0000000..ad9b1bb --- /dev/null +++ b/colors/flexoki_dark.lua @@ -0,0 +1,31 @@ +-- Flexoki dark theme by Steph Ango (kepano), https://stephango.com/flexoki +-- Ported by chambored, https://github.com/chambored + +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#100F0F" } +style.background2 = { common.color "#1C1B1A" } +style.background3 = { common.color "#282726" } +style.text = { common.color "#CECDC3" } +style.caret = { common.color "#CECDC3" } +style.accent = { common.color "#205EA6" } -- blue +style.dim = { common.color "#CECDC3" } +style.divider = { common.color "#403E3C" } -- ui-3 +style.selection = { common.color "#343331" } -- ui-2 +style.line_number = { common.color "#6F6E69" } +style.line_number2 = { common.color "#100F0F" } -- black +style.line_highlight = { common.color "#575653" } -- tx-3 +style.scrollbar = { common.color "#DAD8CE" } -- tx-1 +style.scrollbar2 = { common.color "#878580" } -- tx-2 + +style.syntax["normal"] = { common.color "#282726" } -- ui +style.syntax["symbol"] = { common.color "#5E409D" } -- purple +style.syntax["comment"] = { common.color "#6F6E69" } -- tx-2 +style.syntax["keyword"] = { common.color "#AF3029" } -- red +style.syntax["keyword2"] = { common.color "#205EA6" } -- blue +style.syntax["number"] = { common.color "#66800B" } -- green +style.syntax["literal"] = { common.color "#AD8301" } -- yellow +style.syntax["string"] = { common.color "#BC5215" } -- orange +style.syntax["operator"] = { common.color "#66800B" } -- green +style.syntax["function"] = { common.color "#24837B" } -- cyan diff --git a/colors/flexoki_light.lua b/colors/flexoki_light.lua new file mode 100644 index 0000000..3cbfaf8 --- /dev/null +++ b/colors/flexoki_light.lua @@ -0,0 +1,32 @@ +-- Flexoki light theme by Steph Ango (kepano), https://stephango.com/flexoki +-- Ported by chambored, https://github.com/chambored + +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#FFFCF0" } +style.background2 = { common.color "#F2F0E5" } +style.background3 = { common.color "#E6E4D9" } +style.text = { common.color "#1C1B1A" } +style.caret = { common.color "#1C1B1A" } +style.accent = { common.color "#4385BE" } -- blue +style.dim = { common.color "#1C1B1A" } +style.divider = { common.color "#CECDC3" } -- ui-3 +style.selection = { common.color "#DAD8CE" } -- ui-2 +style.line_number = { common.color "#6F6E69" } -- tx-2 +style.line_number2 = { common.color "#FFFCF0" } -- paper +style.line_highlight = { common.color "#B7B5AC" } -- tx-3 +style.scrollbar = { common.color "#E6E4D9" } -- ui +style.scrollbar2 = { common.color "#B7B5AC" } -- tx-3 + +style.syntax["normal"] = { common.color "#E6E4D9" } -- ui +style.syntax["symbol"] = { common.color "#8B7EC8" } -- purple +style.syntax["comment"] = { common.color "#6F6E69" } -- tx-2 +style.syntax["keyword"] = { common.color "#D14D41" } -- red +style.syntax["keyword2"] = { common.color "#4385BE" } -- blue +style.syntax["number"] = { common.color "#879A39" } -- green +style.syntax["literal"] = { common.color "#D0A215" } -- yellow +style.syntax["string"] = { common.color "#DA702C" } -- orange +style.syntax["operator"] = { common.color "#879A39" } -- green +style.syntax["function"] = { common.color "#3AA99F" } -- cyan + diff --git a/previews/flexoki_dark.svg b/previews/flexoki_dark.svg new file mode 100644 index 0000000..b26e680 --- /dev/null +++ b/previews/flexoki_dark.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/previews/flexoki_light.svg b/previews/flexoki_light.svg new file mode 100644 index 0000000..7c532be --- /dev/null +++ b/previews/flexoki_light.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3 From f569dbc190b9986ec88c2b2160729bed076b2b83 Mon Sep 17 00:00:00 2001 From: NATrimmer Date: Tue, 10 Oct 2023 13:08:12 -0700 Subject: Added flexoki to README --- README.md | 87 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 44 insertions(+), 43 deletions(-) diff --git a/README.md b/README.md index c394bec..e363fb2 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ Color themes for the [Lite XL text editor](https://github.com/lite-xl/lite-xl), To install a color scheme, drop the `.lua` file directly into: -* Linux `~/.config/lite-xl/colors/` -* MacOS `~/.config/lite-xl/colors/` -* Windows `C:\Users\(username)\.config\lite-xl\colors\` +* Linux `~/.config/lite-xl/colors/` +* MacOS `~/.config/lite-xl/colors/` +* Windows `C:\Users\(username)\.config\lite-xl\colors\` Then, add a call to `core.reload_module` to your user module (the gear in the bottom left corner). As an example, if you installed the `github_dark.lua` file into your colors folder, you'd load it with: @@ -25,46 +25,47 @@ embedded in the table.* ## Dark -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) -[`duorand`](colors/duorand.lua?raw=1) | ![duorand_preview](previews/duorand.svg) -[`duotone`](colors/duotone.lua?raw=1) | ![duotone_preview](previews/duotone.svg) -[`everforest`](colors/everforest.lua?raw=1) | ![everforest_preview](previews/everforest.svg) -[`github_dark`](colors/github_dark.lua?raw=1) | ![github_dark_preview](previews/github_dark.svg) -[`github-dark-dimmed`](colors/github-dark-dimmed.lua?raw=1) | ![duotone_preview](previews/github-dark-dimmed.svg) -[`gruvbox_dark`](colors/gruvbox_dark.lua?raw=1) | ![gruvbox_dark_preview](previews/gruvbox_dark.svg) -[`jb-fleet`](colors/jb-fleet.lua?raw=1) | ![jb-fleet_preview](previews/jb-fleet.svg) -[`jellybeans`](colors/jellybeans.lua?raw=1) | ![jellybeans_preview](previews/jellybeans.svg) -[`liqube`](colors/liqube.lua?raw=1) | ![liqube_preview](previews/liqube.svg) -[`mariana`](colors/mariana.lua?raw=1) | ![mariana_preview](previews/mariana.svg) -[`monodark`](colors/monodark.lua?raw=1) | ![monodark_preview](previews/monodark.svg) -[`monokai`](colors/monokai.lua?raw=1) | ![monokai_preview](previews/monokai.svg) -[`monokai-pro-classic`](colors/monokai-pro-classic.lua?raw=1) | ![monokai-pro-classic_preview](previews/monokai-pro-classic.svg) -[`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) -[`rose-pine-moon`](colors/rose-pine-moon.lua?raw=1)| ![rose_pine_review](previews/rose-pine-moon.svg) -[`rose-pine`](colors/rose-pine.lua?raw=1)| ![rose_pine_review](previews/rose-pine.svg) -[`solarized_dark`](colors/solarized_dark.lua?raw=1) | ![solarized_dark_preview](previews/solarized_dark.svg) -[`synthwave`](colors/synthwave.lua?raw=1) | ![synthwave_preview](previews/synthwave.svg) -[`tokyo-night`](colors/tokyo-night.lua?raw=1) | ![tokyo-night_preview](previews/tokyo-night.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) +| 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) | +| [`duorand`](colors/duorand.lua?raw=1) | ![duorand_preview](previews/duorand.svg) | +| [`duotone`](colors/duotone.lua?raw=1) | ![duotone_preview](previews/duotone.svg) | +| [`everforest`](colors/everforest.lua?raw=1) | ![everforest_preview](previews/everforest.svg) | +| [`flexoki_dark`](color/flexoki_dark.lua?raw=1) | ![flexoki_dark_preview](previews/flexoki_dark.svg) | +| [`github_dark`](colors/github_dark.lua?raw=1) | ![github_dark_preview](previews/github_dark.svg) | +| [`github-dark-dimmed`](colors/github-dark-dimmed.lua?raw=1) | ![duotone_preview](previews/github-dark-dimmed.svg) | +| [`gruvbox_dark`](colors/gruvbox_dark.lua?raw=1) | ![gruvbox_dark_preview](previews/gruvbox_dark.svg) | +| [`jb-fleet`](colors/jb-fleet.lua?raw=1) | ![jb-fleet_preview](previews/jb-fleet.svg) | +| [`jellybeans`](colors/jellybeans.lua?raw=1) | ![jellybeans_preview](previews/jellybeans.svg) | +| [`liqube`](colors/liqube.lua?raw=1) | ![liqube_preview](previews/liqube.svg) | +| [`mariana`](colors/mariana.lua?raw=1) | ![mariana_preview](previews/mariana.svg) | +| [`monodark`](colors/monodark.lua?raw=1) | ![monodark_preview](previews/monodark.svg) | +| [`monokai`](colors/monokai.lua?raw=1) | ![monokai_preview](previews/monokai.svg) | +| [`monokai-pro-classic`](colors/monokai-pro-classic.lua?raw=1) | ![monokai-pro-classic_preview](previews/monokai-pro-classic.svg) | +| [`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) | +| [`rose-pine-moon`](colors/rose-pine-moon.lua?raw=1) | ![rose_pine_review](previews/rose-pine-moon.svg) | +| [`rose-pine`](colors/rose-pine.lua?raw=1) | ![rose_pine_review](previews/rose-pine.svg) | +| [`solarized_dark`](colors/solarized_dark.lua?raw=1) | ![solarized_dark_preview](previews/solarized_dark.svg) | +| [`synthwave`](colors/synthwave.lua?raw=1) | ![synthwave_preview](previews/synthwave.svg) | +| [`tokyo-night`](colors/tokyo-night.lua?raw=1) | ![tokyo-night_preview](previews/tokyo-night.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) | ## Light -Theme | Preview -------|----------------------------------------- -[`github`](colors/github.lua?raw=1) | ![github_preview](previews/github.svg) -[`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) -[`rose-pine-dawn`](colors/rose-pine-dawn.lua?raw=1)| ![rose_pine_review](previews/rose-pine-dawn.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) - +| Theme | Preview | +| ----------------------------------------------------- | -------------------------------------------------------- | +| [`flexoki_light`](colors/flexoki_light.lua?raw=1) | ![flexoki_light_preview](previews/flexoki_light.svg) | +| [`github`](colors/github.lua?raw=1) | ![github_preview](previews/github.svg) | +| [`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) | +| [`rose-pine-dawn`](colors/rose-pine-dawn.lua?raw=1) | ![rose_pine_review](previews/rose-pine-dawn.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) | -- cgit v1.2.3 From 826b819b731849779dfeb0144d2372785a318832 Mon Sep 17 00:00:00 2001 From: NATrimmer Date: Tue, 10 Oct 2023 13:10:43 -0700 Subject: Fixed Typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e363fb2..3946c88 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ embedded in the table.* | [`duorand`](colors/duorand.lua?raw=1) | ![duorand_preview](previews/duorand.svg) | | [`duotone`](colors/duotone.lua?raw=1) | ![duotone_preview](previews/duotone.svg) | | [`everforest`](colors/everforest.lua?raw=1) | ![everforest_preview](previews/everforest.svg) | -| [`flexoki_dark`](color/flexoki_dark.lua?raw=1) | ![flexoki_dark_preview](previews/flexoki_dark.svg) | +| [`flexoki_dark`](colors/flexoki_dark.lua?raw=1) | ![flexoki_dark_preview](previews/flexoki_dark.svg) | | [`github_dark`](colors/github_dark.lua?raw=1) | ![github_dark_preview](previews/github_dark.svg) | | [`github-dark-dimmed`](colors/github-dark-dimmed.lua?raw=1) | ![duotone_preview](previews/github-dark-dimmed.svg) | | [`gruvbox_dark`](colors/gruvbox_dark.lua?raw=1) | ![gruvbox_dark_preview](previews/gruvbox_dark.svg) | -- cgit v1.2.3 From 8b1dcff1a0b8bfa91eca3e5d11178b4262dbf1bf Mon Sep 17 00:00:00 2001 From: Adam Harrison Date: Tue, 10 Oct 2023 16:40:52 -0400 Subject: Added in entries to manifest.json. --- manifest.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/manifest.json b/manifest.json index 049745d..5713ea0 100644 --- a/manifest.json +++ b/manifest.json @@ -112,6 +112,28 @@ "type" : "color", "version" : "0.1" }, + { + "id" : "flexoki-dark", + "mod_version" : "3.0.0", + "name" : "flexoki-dark", + "path" : "colors/flexoki_dark.lua", + "tags" : [ + "dark" + ], + "type" : "color", + "version" : "0.1" + }, + { + "id" : "flexoki-light", + "mod_version" : "3.0.0", + "name" : "flexoki-light", + "path" : "colors/flexoki_light.lua", + "tags" : [ + "light" + ], + "type" : "color", + "version" : "0.1" + }, { "id" : "github", "mod_version" : "3.0.0", -- cgit v1.2.3 From 1b3322156d8d0fd87185148a49fd13bad8ab539a Mon Sep 17 00:00:00 2001 From: Adam Harrison Date: Tue, 10 Oct 2023 16:42:31 -0400 Subject: Made things underscores. --- manifest.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index 5713ea0..2e313da 100644 --- a/manifest.json +++ b/manifest.json @@ -113,9 +113,9 @@ "version" : "0.1" }, { - "id" : "flexoki-dark", + "id" : "flexoki_dark", "mod_version" : "3.0.0", - "name" : "flexoki-dark", + "name" : "flexoki_dark", "path" : "colors/flexoki_dark.lua", "tags" : [ "dark" @@ -124,9 +124,9 @@ "version" : "0.1" }, { - "id" : "flexoki-light", + "id" : "flexoki_light", "mod_version" : "3.0.0", - "name" : "flexoki-light", + "name" : "flexoki_light", "path" : "colors/flexoki_light.lua", "tags" : [ "light" -- cgit v1.2.3