diff options
author | Michael McClintock <mrmcc3@gmail.com> | 2023-11-21 07:26:41 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-21 07:26:41 +1000 |
commit | 85be6b3589375c0165b4091f230542f3b1b2ddef (patch) | |
tree | e1401bcbf4a2e2268469bdf03f9cbe949a5be756 /yo.toml | |
parent | d75f49a795786fb8a0d8f8279a17c0762d8029e0 (diff) | |
parent | 2817e04103bffa1e0b4d97ddcfaef7ae047dc2f2 (diff) | |
download | yo-theme-helix-85be6b3589375c0165b4091f230542f3b1b2ddef.tar.gz |
Merge pull request #3 from mrmcc3/update
Update radix colors and add new theme
Diffstat (limited to 'yo.toml')
-rw-r--r-- | yo.toml | 45 |
1 files changed, 22 insertions, 23 deletions
@@ -1,6 +1,4 @@ -# yo - -# Helix theme inspired by Zenbones & Alabaster. +# Helix theme inspired by Zenbones & Alabaster with radix colors. # Author: Michael McClintock @mrmcc3 # License: MIT @@ -69,7 +67,8 @@ constant = { fg = "constant" } "string.special.symbol" = { fg = "constant" } variable = { fg = "p10" } namespace = { fg = "p10" } -punctuation = { fg = "p11" } +punctuation = { fg = "p9" } +"punctuation.delimiter" = { fg = "p8" } function = { fg = "p11" } attribute = { fg = "p11" } tag = { fg = "p12" } @@ -90,24 +89,24 @@ markup = { fg = "p9" } [palette] # radix ui colors -# primary - sandDark -p1 = "#161615" -p2 = "#1c1c1a" -p3 = "#232320" -p4 = "#282826" -p5 = "#2e2e2b" -p6 = "#353431" -p7 = "#3e3e3a" -p8 = "#51504b" -p9 = "#717069" -p10 = "#7f7e77" -p11 = "#a1a09a" -p12 = "#ededec" +# grayDark +p1 = "#111111" +p2 = "#191919" +p3 = "#222222" +p4 = "#2a2a2a" +p5 = "#313131" +p6 = "#3a3a3a" +p7 = "#484848" +p8 = "#606060" +p9 = "#6e6e6e" +p10 = "#7b7b7b" +p11 = "#b4b4b4" +p12 = "#eeeeee" -error = "#f2555a" # redDark-10 -warning = "#ffcb47" # amberDark-10 -info = "#369eff" # blueDark-10 +error = "#ec5d5e" # redDark-10 +warning = "#ff801f" # orangeDark-10 +info = "#3b9eff" # blueDark-10 -string = "#46a758" # green-9 -constant = "#8e4ec6" # purple-9 -keyword = "#a18072" # bronze-9 +string = "#33b074" # greenDark-10 +constant = "#9a5cd0" # purpleDark-10 +keyword = "#ae8c7e" # bronzeDark-10 |