aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshvith Shetty <ashvithshetty10@gmail.com>2022-02-19 10:32:09 +0530
committerGitHub <noreply@github.com>2022-02-19 10:32:09 +0530
commitc89fbad4ba00ffaa224f65e41f8903a5517f4112 (patch)
tree874bcd62992a1e7cf7ab2e10057f39acf6a4daf9
parentd1a86493510a9160ef95b8cc5152327515a12d10 (diff)
downloadlite-xl-colors-c89fbad4ba00ffaa224f65e41f8903a5517f4112.tar.gz
lite-xl-colors-c89fbad4ba00ffaa224f65e41f8903a5517f4112.zip
Create gruvbox_light.lua
-rw-r--r--colors/gruvbox_light.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/colors/gruvbox_light.lua b/colors/gruvbox_light.lua
new file mode 100644
index 0000000..9a3610c
--- /dev/null
+++ b/colors/gruvbox_light.lua
@@ -0,0 +1,28 @@
+local style = require "core.style"
+local common = require "core.common"
+
+style.background = { common.color "#fbf1c7" }
+style.background2 = { common.color "#f9f5d7" }
+style.background3 = { common.color "#f9f5d7" }
+style.text = { common.color "#928374" }
+style.caret = { common.color "#282828" }
+style.accent = { common.color "#3c3836" }
+style.dim = { common.color "#928374" }
+style.divider = { common.color "#f9f5d7" }
+style.selection = { common.color "#ebdbb2" }
+style.line_number = { common.color "#928374" }
+style.line_number2 = { common.color "#3c3836" }
+style.line_highlight = { common.color "#f2e5bc" }
+style.scrollbar = { common.color "#928374" }
+style.scrollbar2 = { common.color "#282828" }
+
+style.syntax["normal"] = { common.color "#3c3836" }
+style.syntax["symbol"] = { common.color "#3c3836" }
+style.syntax["comment"] = { common.color "#928374" }
+style.syntax["keyword"] = { common.color "#9d0006" }
+style.syntax["keyword2"] = { common.color "#076678" }
+style.syntax["number"] = { common.color "#8f3f71" }
+style.syntax["literal"] = { common.color "#8f3f71" }
+style.syntax["string"] = { common.color "#79740e" }
+style.syntax["operator"] = { common.color "#3c3836" }
+style.syntax["function"] = { common.color "#427b58" }