From d1a86493510a9160ef95b8cc5152327515a12d10 Mon Sep 17 00:00:00 2001 From: Ashvith Shetty Date: Sat, 19 Feb 2022 10:31:38 +0530 Subject: Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 226189f..de2edd8 100644 --- a/README.md +++ b/README.md @@ -37,3 +37,4 @@ Theme | Preview [`moe`](colors/moe.lua?raw=1) | ![moe_preview](https://i.imgur.com/IGEtafP.png) [`solarized_light`](colors/solarized_light.lua?raw=1) | ![solarized_light_preview](https://user-images.githubusercontent.com/3920290/81503910-233fcc00-92de-11ea-9d6d-0a32212e6f02.png) [`solarobj`](colors/solarobj.lua?raw=1) | ![solarobj_preview](https://i.imgur.com/3EHFlx2.png) +[`gruvbox_light`](colors/gruvbox_light.lua?raw=1) | ![gruvbox_light_preview](https://user-images.githubusercontent.com/9512421/135279380-2d29c6b9-d45b-4cc5-87c8-e8a9d8c7a84b.png) -- cgit v1.2.3 From c89fbad4ba00ffaa224f65e41f8903a5517f4112 Mon Sep 17 00:00:00 2001 From: Ashvith Shetty Date: Sat, 19 Feb 2022 10:32:09 +0530 Subject: Create gruvbox_light.lua --- colors/gruvbox_light.lua | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 colors/gruvbox_light.lua 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" } -- cgit v1.2.3 From e86c03c1b2dd7bc863df51e57ec8e124199af27b Mon Sep 17 00:00:00 2001 From: Ashvith Shetty Date: Sat, 19 Feb 2022 13:21:12 +0530 Subject: Update README.md Move `gruvbox_light` under `github` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index de2edd8..16e1ff7 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Theme | Preview Theme | Preview ------|----------------------------------------- [`github`](colors/github.lua?raw=1) | ![github_preview](https://user-images.githubusercontent.com/3920290/80308013-800e9300-87c4-11ea-88a7-1f56104a7423.png) +[`gruvbox_light`](colors/gruvbox_light.lua?raw=1) | ![gruvbox_light_preview](https://user-images.githubusercontent.com/9512421/135279380-2d29c6b9-d45b-4cc5-87c8-e8a9d8c7a84b.png) [`moe`](colors/moe.lua?raw=1) | ![moe_preview](https://i.imgur.com/IGEtafP.png) [`solarized_light`](colors/solarized_light.lua?raw=1) | ![solarized_light_preview](https://user-images.githubusercontent.com/3920290/81503910-233fcc00-92de-11ea-9d6d-0a32212e6f02.png) [`solarobj`](colors/solarobj.lua?raw=1) | ![solarobj_preview](https://i.imgur.com/3EHFlx2.png) -[`gruvbox_light`](colors/gruvbox_light.lua?raw=1) | ![gruvbox_light_preview](https://user-images.githubusercontent.com/9512421/135279380-2d29c6b9-d45b-4cc5-87c8-e8a9d8c7a84b.png) -- cgit v1.2.3