diff options
author | rxi <rxi@users.noreply.github.com> | 2020-05-10 19:44:56 +0100 |
---|---|---|
committer | rxi <rxi@users.noreply.github.com> | 2020-05-10 19:44:56 +0100 |
commit | b20d75fef9b13918f35e5934f4e04e477cae437f (patch) | |
tree | a056e982462f2563c3f355b7065327f460154a1f | |
parent | 4c52ac248639fe0d5e3193901b7df2e8a43ae9ed (diff) | |
download | lite-xl-colors-b20d75fef9b13918f35e5934f4e04e477cae437f.tar.gz lite-xl-colors-b20d75fef9b13918f35e5934f4e04e477cae437f.zip |
More `dracula` color theme tweaks
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | colors/dracula.lua | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -11,7 +11,7 @@ embedded in the table.* Theme | Preview ------|----------------------------------------- -[`dracula`](colors/dracula.lua?raw=1) | ![dracula_preview](https://user-images.githubusercontent.com/3920290/81504252-23d96200-92e0-11ea-9aad-54e93ba3d167.png) +[`dracula`](colors/dracula.lua?raw=1) | ![dracula_preview](https://user-images.githubusercontent.com/3920290/81507632-9ead7780-92f6-11ea-85e9-7cfb9ffa97ae.png) [`gruvbox_dark`](colors/gruvbox_dark.lua?raw=1) | ![gruvbox_dark_preview](https://user-images.githubusercontent.com/57670615/81137677-94bdfa00-8f2d-11ea-9224-3d70a5ec3101.png) [`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) diff --git a/colors/dracula.lua b/colors/dracula.lua index 0e9eaf6..68ab41c 100644 --- a/colors/dracula.lua +++ b/colors/dracula.lua @@ -2,12 +2,12 @@ local style = require "core.style" local common = require "core.common" style.background = { common.color "#282a36" } -style.background2 = { common.color "#242630" } -style.background3 = { common.color "#242630" } +style.background2 = { common.color "#21222b" } +style.background3 = { common.color "#21222b" } style.text = { common.color "#7b81a6" } style.caret = { common.color "#f8f8f0" } style.accent = { common.color "#8be9fd" } -style.dim = { common.color "#6272a4" } +style.dim = { common.color "#4f5873" } style.divider = { common.color "#1f2029" } style.selection = { common.color "#44475a" } style.line_number = { common.color "#53576e" } |