From 12e57056c61474fff21e469735e1d20ef962b174 Mon Sep 17 00:00:00 2001 From: Septian Adi Date: Thu, 11 Mar 2021 20:33:23 +0700 Subject: Added color theme `only_dark` --- README.md | 1 + colors/only_dark.lua | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 colors/only_dark.lua diff --git a/README.md b/README.md index 60b3e1b..df3a639 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ Theme | Preview [`monodark`](colors/monodark.lua?raw=1) | ![monodark_preview](https://user-images.githubusercontent.com/3920290/80304201-62353400-87ac-11ea-9b13-9ca1b9db0f99.png) [`monokai`](colors/monokai.lua?raw=1) | ![monokai_preview](https://user-images.githubusercontent.com/3920290/80307643-43419c80-87c2-11ea-9f04-580d6acf6252.png) [`nord`](colors/nord.lua?raw=1) | ![nord_preview](https://user-images.githubusercontent.com/22625346/92419103-6baab180-f139-11ea-8638-d90db10da086.png) +[`only_dark`](colors/only_dark.lua?raw=1) | ![only_dark_preview]() [`vscode-dark`](colors/vscode-dark.lua?raw=1) | ![vscode-dark_preview](https://i.imgur.com/GcSGaZc.png) [`winter`](colors/winter.lua?raw=1) | ![winter_preview](https://user-images.githubusercontent.com/3920290/80304194-5c3f5300-87ac-11ea-9acf-33892579093e.png) [`zenburn`](colors/zenburn.lua?raw=1) | ![zenburn_preview](https://i.imgur.com/XUIJwMs.png) diff --git a/colors/only_dark.lua b/colors/only_dark.lua new file mode 100644 index 0000000..2c29e9d --- /dev/null +++ b/colors/only_dark.lua @@ -0,0 +1,31 @@ +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#242424" } +style.background2 = { common.color "#252528" } +style.background3 = { common.color "#44475A" } + +style.text = { common.color "#fffff0" } +style.caret = { common.color "#69FF94" } +style.accent = { common.color "#ff0fff" } + +style.dim = { common.color "#0fffff" } +style.divider = { common.color "#7b7f8b" } +style.selection = { common.color "#48484f" } +style.selectionhighlight = { common.color "#dddeee" } +style.line_number = { common.color "#525259" } +style.line_number2 = { common.color "#f6f6e0" } +style.line_highlight = { common.color "#343438" } +style.scrollbar = { common.color "#414146" } +style.scrollbar2 = { common.color "#4b4bff" } + +style.syntax["normal"] = { common.color "#e1e1e6" } +style.syntax["symbol"] = { common.color "#97e1f1" } +style.syntax["comment"] = { common.color "#676b6f" } +style.syntax["keyword"] = { common.color "#E58AC9" } +style.syntax["keyword2"] = { common.color "#F77483" } +style.syntax["number"] = { common.color "#FFA94D" } +style.syntax["literal"] = { common.color "#ee6666" } +style.syntax["string"] = { common.color "#f7c95c" } +style.syntax["operator"] = { common.color "#93DDFA" } +style.syntax["function"] = { common.color "#bf9eee" } -- cgit v1.2.3 From 69f63057f5c35fee153fcdf273b86f46634bf787 Mon Sep 17 00:00:00 2001 From: Septian Adi Date: Thu, 11 Mar 2021 20:40:01 +0700 Subject: Added preview theme `only_dark` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df3a639..5677a69 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Theme | Preview [`monodark`](colors/monodark.lua?raw=1) | ![monodark_preview](https://user-images.githubusercontent.com/3920290/80304201-62353400-87ac-11ea-9b13-9ca1b9db0f99.png) [`monokai`](colors/monokai.lua?raw=1) | ![monokai_preview](https://user-images.githubusercontent.com/3920290/80307643-43419c80-87c2-11ea-9f04-580d6acf6252.png) [`nord`](colors/nord.lua?raw=1) | ![nord_preview](https://user-images.githubusercontent.com/22625346/92419103-6baab180-f139-11ea-8638-d90db10da086.png) -[`only_dark`](colors/only_dark.lua?raw=1) | ![only_dark_preview]() +[`only_dark`](colors/only_dark.lua?raw=1) | ![only_dark_preview](https://user-images.githubusercontent.com/18345339/110795752-c8825280-82a9-11eb-9d90-e9f8f9c7ebb5.png) [`vscode-dark`](colors/vscode-dark.lua?raw=1) | ![vscode-dark_preview](https://i.imgur.com/GcSGaZc.png) [`winter`](colors/winter.lua?raw=1) | ![winter_preview](https://user-images.githubusercontent.com/3920290/80304194-5c3f5300-87ac-11ea-9acf-33892579093e.png) [`zenburn`](colors/zenburn.lua?raw=1) | ![zenburn_preview](https://i.imgur.com/XUIJwMs.png) -- cgit v1.2.3