diff options
author | SagXD <95903022+SagXD@users.noreply.github.com> | 2023-10-28 16:16:43 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-28 12:46:43 +0200 |
commit | 8cb27b437536ea85065abdc2269605ffd2b0047c (patch) | |
tree | 824b850b41d1bdc9ae68b751eb87631ffa12af55 /colors/catppuccin-macchiato.lua | |
parent | 26094eea1b513ad2358b32290fd118fc485be17f (diff) | |
download | lite-xl-colors-8cb27b437536ea85065abdc2269605ffd2b0047c.tar.gz lite-xl-colors-8cb27b437536ea85065abdc2269605ffd2b0047c.zip |
Added Catppuccin Themes (#30)
* Added Themes
* Added preview
* Delete previews/catppuccin-mocha_preview.png
* Delete previews/catppuccin-macchiato_preview.png
* Delete previews/catppuccin-frappe_preview.png
* Delete previews/catppuccin-latte_preview.png
* Added Preview
* Update manifest.json
* Update manifest.json
* [CI] Updated README.md.
* Delete previews/catppuccin-frappe.png
* Delete previews/catppuccin-latte.png
* Delete previews/catppuccin-macchiato.png
* Delete previews/catppuccin-mocha.png
* Update manifest.json
* Update manifest.json
* [CI] Updated README.md.
---------
Co-authored-by: Github Actions <>
Diffstat (limited to 'colors/catppuccin-macchiato.lua')
-rw-r--r-- | colors/catppuccin-macchiato.lua | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/colors/catppuccin-macchiato.lua b/colors/catppuccin-macchiato.lua new file mode 100644 index 0000000..4a10116 --- /dev/null +++ b/colors/catppuccin-macchiato.lua @@ -0,0 +1,29 @@ +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#24273a" } +style.background2 = { common.color "#1e2030" } +style.background3 = { common.color "#363a4f" } +style.text = { common.color "#cad3f5" } +style.caret = { common.color "#f4dbd6" } +style.accent = { common.color "#c6a0f6" } +style.dim = { common.color "#b8c0e0" } +style.divider = { common.color "#c6a0f6" } +style.selection = { common.color "#5b6078" } +style.line_number = { common.color "#6e738d" } +style.line_number2 = { common.color "#c6a0f6" } +style.line_highlight = { common.color "#363a4f" } +style.scrollbar = { common.color "#5b6078" } +style.scrollbar2 = { common.color "#6e738d" } +style.scrollbar_track = { common.color "#1e2030" } + +style.syntax["normal"] = { common.color "#ed8796" } +style.syntax["symbol"] = { common.color "#b7bdf8" } +style.syntax["comment"] = { common.color "#6e738d" } +style.syntax["keyword"] = { common.color "#ed8796" } +style.syntax["keyword2"] = { common.color "#076678" } +style.syntax["number"] = { common.color "#f5a97f" } +style.syntax["literal"] = { common.color "#b7bdf8" } +style.syntax["string"] = { common.color "#a6da95" } +style.syntax["operator"] = { common.color "#91d7e3" } +style.syntax["function"] = { common.color "#8aadf4" } |