Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adjusted for new gutter diff colors #4990

Merged
merged 29 commits into from
Dec 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ef94eb8
added 2 themes
PORTALSURFER Oct 17, 2022
95051e4
Merge remote-tracking branch 'upstream/master' into skins
PORTALSURFER Oct 19, 2022
f7a8e02
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Oct 20, 2022
85f777c
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Oct 22, 2022
855e77d
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Oct 24, 2022
f3225e6
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Oct 27, 2022
379d4f1
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Oct 28, 2022
549c102
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Oct 29, 2022
836fb14
Merge branch 'master' of https://github.com/PORTALSURFER/helix
PORTALSURFER Oct 29, 2022
ac5965c
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Oct 31, 2022
031a820
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 5, 2022
639f2ba
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 6, 2022
b5fd777
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 7, 2022
eb37cf6
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 9, 2022
6bdb419
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 13, 2022
676b3c7
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 15, 2022
eb7d809
Merge branch 'master' of https://github.com/PORTALSURFER/helix
PORTALSURFER Nov 20, 2022
eafeb22
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 20, 2022
46277e3
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 21, 2022
c0259af
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 26, 2022
5a94d0c
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 26, 2022
dfafd67
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 26, 2022
2faf526
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Nov 29, 2022
ee010c4
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Dec 3, 2022
09a73ff
diff feature fixes
PORTALSURFER Dec 3, 2022
e9448a3
Merge remote-tracking branch 'upstream/master'
PORTALSURFER Dec 3, 2022
c673020
fine tuning so it all is a bit softer
PORTALSURFER Dec 3, 2022
062ac53
fine tuning to be softer
PORTALSURFER Dec 3, 2022
151bc02
added new version, lavender
PORTALSURFER Dec 3, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions runtime/themes/hex_lavender.toml
Original file line number Diff line number Diff line change
@@ -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"
#
33 changes: 19 additions & 14 deletions runtime/themes/hex_steel.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"comment" = { fg = "highlight_three" }
"comment.block.documentation" = { bg = "t4", modifiers = ["italic"] }
"comment" = { fg = "comment" }
"comment.block.documentation" = { bg = "comment_doc", modifiers = ["italic"] }

"constant" = { fg = "t11" }
"function" = { fg = "t10" }
Expand All @@ -20,18 +20,19 @@
"variable" = { fg = "t4" }
"label" = { fg = "t4" }

"diff.plus" = { fg = "t4" }
"diff.delta" = { fg = "t4" }
"diff.minus" = { fg = "t4" }
"diff.plus" = { fg = "diff_plus" }
"diff.delta" = { fg = "diff_delta" }
"diff.delta.moved" = { fg = "diff_delta_moved" }
"diff.minus" = { fg = "diff_minus" }

"ui.cursor.insert" = { fg = "t2", bg = "highlight" }
"ui.cursor.select" = { fg = "t2", bg = "highlight_two" }
"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.selected" = { fg = "highlight_three", bg = "t1" }
"ui.gutter" = { bg = "t1" }
"ui.linenr" = { fg = "t3", bg = "t2" }
"ui.linenr.selected" = { fg = "highlight_three", bg = "t2" }
"ui.gutter" = { bg = "t2" }

"ui.background" = { fg = "t4", bg = "t2" }
"ui.background.separator" = { fg = "t3" }
Expand Down Expand Up @@ -76,8 +77,8 @@
"markup.raw" = { fg = "t4" }

[palette]
t1 = "#0f0b0b"
t2 = "#161010"
t1 = "#0e0e0d"
t2 = "#1d1e1b"
t3 = "#5b5555"
t4 = "#656869"
t5 = "#727b7c"
Expand All @@ -95,11 +96,15 @@ highlight_three = "#d4d987"
selection = "#032d4a"

black = "#000000"

comment = "#396884"
comment = "#d4d987"
comment_doc = "#234048"

error = "#ff0900"
warning = "#ffbf00"
display = "#57ff89"
display = "#42baff"
info = "#dad7d5"

diff_minus = "#ff0900"
diff_delta = "#0078bd"
diff_plus = "#87a800"
diff_delta_moved = "#0048bd"
10 changes: 5 additions & 5 deletions runtime/themes/hex_toxic.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ inherits = "hex_steel"

[palette]
t1 = "#101719"
t2 = "#152432"
t2 = "#1b2a32"
t3 = "#4b5968"
t4 = "#8792ab"
t5 = "#6f91bc"
Expand All @@ -13,15 +13,15 @@ t9 = "#b3ccd0"
t10 = "#b0d4d8"
t11 = "#ffbf52"

highlight = "#ff2e5f"
highlight = "#ff0a50"
highlight_two = "#0affa9"
highlight_three = "#d7ff52"
highlight_three = "#f8ed8b"

black = "#000000"

selection = "#290019"
selection = "#382e1e"

comment = "#396884"
comment = "#61bdd1"
comment_doc = "#234048"

error = "#ff0900"
Expand Down