diff options
author | Jefferson González <jgmdev@gmail.com> | 2022-02-03 02:43:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-03 02:43:13 -0400 |
commit | 2381109dc61ca8b3ce375004518813f6c3446f98 (patch) | |
tree | 21c66f9da3d771d7e350f5adfed3eb2b66a799cb | |
parent | 1ad71f00cce05924713fb6e59d71089c0c7e6f87 (diff) | |
parent | 89c1020ec77a2c8628a917f405beddcdac49641e (diff) | |
download | lite-xl-colors-2381109dc61ca8b3ce375004518813f6c3446f98.tar.gz lite-xl-colors-2381109dc61ca8b3ce375004518813f6c3446f98.zip |
Merge pull request #7 from Netawa/master
Added c0mfy theme file and pallete to the table
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | colors/c0mfy.lua | 29 |
2 files changed, 30 insertions, 0 deletions
@@ -12,6 +12,7 @@ embedded in the table.* Theme | Preview ------|----------------------------------------- [`cold_lime`](colors/cold_lime.lua?raw=1) | ![cold_lime_preview](https://i.imgur.com/0p3BQCB.png) +[`c0mfy`](colors/c0mfy.lua?raw=1) | ![c0mfy_preview](https://i.imgur.com/hgJ9e75.png) [`dracula`](colors/dracula.lua?raw=1) | ![dracula_preview](https://user-images.githubusercontent.com/3920290/81507632-9ead7780-92f6-11ea-85e9-7cfb9ffa97ae.png) [`duorand`](colors/duorand.lua?raw=1) | ![duorand_preview](https://user-images.githubusercontent.com/2798487/146656427-54a2c372-bc9c-42b6-88c4-9874c85a76ea.png) [`duotone`](colors/duotone.lua?raw=1) | ![duotone_preview](https://i.imgur.com/ZND82Lv.png) diff --git a/colors/c0mfy.lua b/colors/c0mfy.lua new file mode 100644 index 0000000..69a6b93 --- /dev/null +++ b/colors/c0mfy.lua @@ -0,0 +1,29 @@ +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#03071e" } +style.background2 = { common.color "#03071e" } +style.background3 = { common.color "#03071e" } +style.text = { common.color "#ffa848" } +style.caret = { common.color "#ffa848" } +style.accent = { common.color "#ffb86c" } +style.dim = { common.color "#4f526b" } +style.divider = { common.color "#22242e" } +style.selection = { common.color "#4c5163" } +style.line_number = { common.color "#44475a" } +style.line_number2 = { common.color "#717796" } +style.line_highlight = { common.color "#2d303d" } +style.scrollbar = { common.color "#44475a" } +style.scrollbar2 = { common.color "#4c5163" } + +style.syntax = {} +style.syntax["normal"] = { common.color "#f5faff" } +style.syntax["symbol"] = { common.color "#f5faff" } +style.syntax["comment"] = { common.color "#081355" } +style.syntax["keyword"] = { common.color "#fc0fc0" } +style.syntax["keyword2"] = { common.color "#05e6fa" } +style.syntax["number"] = { common.color "#7612c5" } +style.syntax["literal"] = { common.color "#7612c5" } +style.syntax["string"] = { common.color "#fdd017" } +style.syntax["operator"] = { common.color "#fc0fc0" } +style.syntax["function"] = { common.color "#05e6fa" } |