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-frappe.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-frappe.lua')
-rw-r--r-- | colors/catppuccin-frappe.lua | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/colors/catppuccin-frappe.lua b/colors/catppuccin-frappe.lua new file mode 100644 index 0000000..38c693b --- /dev/null +++ b/colors/catppuccin-frappe.lua @@ -0,0 +1,29 @@ +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#303446" } +style.background2 = { common.color "#292c3c" } +style.background3 = { common.color "#414559" } +style.text = { common.color "#c6d0f5" } +style.caret = { common.color "#f2d5cf" } +style.accent = { common.color "#ca9ee6" } +style.dim = { common.color "#b5bfe2" } +style.divider = { common.color "#ca9ee6" } +style.selection = { common.color "#626880" } +style.line_number = { common.color "#737994" } +style.line_number2 = { common.color "#ca9ee6" } +style.line_highlight = { common.color "#414559" } +style.scrollbar = { common.color "#626880" } +style.scrollbar2 = { common.color "#737994" } +style.scrollbar_track = { common.color "#292c3c" } + +style.syntax["normal"] = { common.color "#e78284" } +style.syntax["symbol"] = { common.color "#babbf1" } +style.syntax["comment"] = { common.color "#737994" } +style.syntax["keyword"] = { common.color "#e78284" } +style.syntax["keyword2"] = { common.color "#e78284" } +style.syntax["number"] = { common.color "#ef9f76" } +style.syntax["literal"] = { common.color "#babbf1" } +style.syntax["string"] = { common.color "#a6d189" } +style.syntax["operator"] = { common.color "#99d1db" } +style.syntax["function"] = { common.color "#8caaee" } |