Adjusted hex themes for new gutter diff colors (#4990)

* added 2 themes

* diff feature fixes

adjusted the skin to better work with the new diff coloring features

propagates to child skins like
- hex_toxic

* fine tuning so it all is a bit softer

* fine tuning to be softer

* added new version, lavender
pull/5003/head
PORTALSURFER 2 years ago committed by GitHub
parent 326a0dab06
commit e9d0645f66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,31 @@
inherits = "hex_steel"
[palette]
t1 = "#0e0e0d"
t2 = "#121311"
t3 = "#2b3444" #
t4 = "#61586f"
t5 = "#686e73"
t6 = "#878480"
t7 = "#897dca"
t8 = "#7b89a3"
t9 = "#bcb6ba"
t10 = "#9db2b8"
t11 = "#a0c7cf"
highlight = "#ff2e5f"
highlight_two = "#0affa9"
highlight_three = "#29bbff"
black = "#000000"
selection = "#290019"
comment = "#9aacfe"
comment_doc = "#0affa9"
error = "#ff0900"
warning = "#ffbf00"
display = "#57ff89"
info = "#dad7d5"
#

@ -1,5 +1,5 @@
"comment" = { fg = "highlight_three" } "comment" = { fg = "comment" }
"comment.block.documentation" = { bg = "t4", modifiers = ["italic"] } "comment.block.documentation" = { bg = "comment_doc", modifiers = ["italic"] }
"constant" = { fg = "t11" } "constant" = { fg = "t11" }
"function" = { fg = "t10" } "function" = { fg = "t10" }
@ -20,18 +20,19 @@
"variable" = { fg = "t4" } "variable" = { fg = "t4" }
"label" = { fg = "t4" } "label" = { fg = "t4" }
"diff.plus" = { fg = "t4" } "diff.plus" = { fg = "diff_plus" }
"diff.delta" = { fg = "t4" } "diff.delta" = { fg = "diff_delta" }
"diff.minus" = { fg = "t4" } "diff.delta.moved" = { fg = "diff_delta_moved" }
"diff.minus" = { fg = "diff_minus" }
"ui.cursor.insert" = { fg = "t2", bg = "highlight" } "ui.cursor.insert" = { fg = "t2", bg = "highlight" }
"ui.cursor.select" = { fg = "t2", bg = "highlight_two" } "ui.cursor.select" = { fg = "t2", bg = "highlight_two" }
"ui.cursor" = { fg = "t1", bg = "highlight_three" } "ui.cursor" = { fg = "t1", bg = "highlight_three" }
"ui.cursor.match" = { fg = "highlight", bg = "t1", modifiers = ["bold"] } "ui.cursor.match" = { fg = "highlight", bg = "selection", modifiers = ["bold"] }
"ui.linenr" = { fg = "t3", bg = "t1" } "ui.linenr" = { fg = "t3", bg = "t2" }
"ui.linenr.selected" = { fg = "highlight_three", bg = "t1" } "ui.linenr.selected" = { fg = "highlight_three", bg = "t2" }
"ui.gutter" = { bg = "t1" } "ui.gutter" = { bg = "t2" }
"ui.background" = { fg = "t4", bg = "t2" } "ui.background" = { fg = "t4", bg = "t2" }
"ui.background.separator" = { fg = "t3" } "ui.background.separator" = { fg = "t3" }
@ -76,8 +77,8 @@
"markup.raw" = { fg = "t4" } "markup.raw" = { fg = "t4" }
[palette] [palette]
t1 = "#0f0b0b" t1 = "#0e0e0d"
t2 = "#161010" t2 = "#1d1e1b"
t3 = "#5b5555" t3 = "#5b5555"
t4 = "#656869" t4 = "#656869"
t5 = "#727b7c" t5 = "#727b7c"
@ -95,11 +96,15 @@ highlight_three = "#d4d987"
selection = "#032d4a" selection = "#032d4a"
black = "#000000" black = "#000000"
comment = "#d4d987"
comment = "#396884"
comment_doc = "#234048" comment_doc = "#234048"
error = "#ff0900" error = "#ff0900"
warning = "#ffbf00" warning = "#ffbf00"
display = "#57ff89" display = "#42baff"
info = "#dad7d5" info = "#dad7d5"
diff_minus = "#ff0900"
diff_delta = "#0078bd"
diff_plus = "#87a800"
diff_delta_moved = "#0048bd"

@ -2,7 +2,7 @@ inherits = "hex_steel"
[palette] [palette]
t1 = "#101719" t1 = "#101719"
t2 = "#152432" t2 = "#1b2a32"
t3 = "#4b5968" t3 = "#4b5968"
t4 = "#8792ab" t4 = "#8792ab"
t5 = "#6f91bc" t5 = "#6f91bc"
@ -13,15 +13,15 @@ t9 = "#b3ccd0"
t10 = "#b0d4d8" t10 = "#b0d4d8"
t11 = "#ffbf52" t11 = "#ffbf52"
highlight = "#ff2e5f" highlight = "#ff0a50"
highlight_two = "#0affa9" highlight_two = "#0affa9"
highlight_three = "#d7ff52" highlight_three = "#f8ed8b"
black = "#000000" black = "#000000"
selection = "#290019" selection = "#382e1e"
comment = "#396884" comment = "#61bdd1"
comment_doc = "#234048" comment_doc = "#234048"
error = "#ff0900" error = "#ff0900"

Loading…
Cancel
Save