diff options
author | Michael McClintock <mrmcc3@gmail.com> | 2023-01-17 14:09:47 +1000 |
---|---|---|
committer | Michael McClintock <mrmcc3@gmail.com> | 2023-01-17 14:09:47 +1000 |
commit | 7ddb9eec7d678b10e8508f7a38e59874873c5a85 (patch) | |
tree | a0c72577a02fdfe5cb10342d73d0529452791749 | |
parent | 922b3700109a5e35a6299f592e8068c26165ea8e (diff) | |
download | yo-theme-helix-7ddb9eec7d678b10e8508f7a38e59874873c5a85.tar.gz |
improvements
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | yo_dark.toml | 20 |
2 files changed, 13 insertions, 14 deletions
@@ -13,14 +13,13 @@ A [Helix][helix] theme inspired by [Zenbones][zenbones] & - It doesn't highlight keywords (reserved words) or types. (which to be fair isn't really an issue for clojure) - Yo doesn't go quite as far on this point. - - Instead it takes the minimal zenbones approach to highlight the remaining - code constructs. - - subtle colors, contrast. + - Instead it takes the minimal zenbones approach to highlight the remaining code. + - subtle colors & contrast. - vibrant colors are left for diagnostics. - The default yo themes use the following: - **Green** for strings (same as alabaster) - **Purple** for constant (same as alabaster) - - **Blue** for comments (incl. LSP info/hints) + - **Blue** for info (comments & LSP info/hints) - **Red/Amber** LSP error/warnings - **Gray/Bronze** Everything else zenbones style - I'm not a designer and don't like my chances of making something look good by diff --git a/yo_dark.toml b/yo_dark.toml index a8ddf53..9074172 100644 --- a/yo_dark.toml +++ b/yo_dark.toml @@ -26,7 +26,7 @@ "ui.cursor" = { fg = "gray2", bg = "gray11" } "ui.cursor.insert" = { fg = "alt2", bg = "alt10" } "ui.cursor.select" = { fg = "gray2", bg = "gray12" } -"ui.cursor.match" = { fg = "alt10", modifiers = ["bold"] } +"ui.cursor.match" = { fg = "alt10" } "ui.selection" = { fg = "gray12", bg = "gray5" } "ui.selection.primary" = { fg = "alt12", bg = "alt5" } "ui.cursorline.primary" = { bg = "gray3" } @@ -34,7 +34,7 @@ # line numbers / diff "ui.linenr" = { fg = "gray7" } "ui.linenr.selected" = { fg = "alt8" } -diff = { fg = "gray7" } +diff = { fg = "gray8" } # statusline "ui.statusline" = { fg = "gray11", bg = "gray4" } @@ -51,13 +51,13 @@ diff = { fg = "gray7" } # diagnostics warning = { fg = "warn10" } -error = { fg = "err10" } +error = { fg = "err10", modifiers = ["bold"] } info = { fg = "info10" } hint = { fg = "info10" } -"diagnostic.hint" = { underline = { style = "curl", color = "gray8" } } -"diagnostic.info" = { underline = { style = "curl", color = "gray8" } } -"diagnostic.warning" = { underline = { style = "curl", color = "warn10" } } -"diagnostic.error" = { underline = { style = "curl", color = "err10" } } +"diagnostic.hint" = { fg = "info10" } +"diagnostic.info" = { fg = "info10" } +"diagnostic.warning" = { fg = "warn10" } +"diagnostic.error" = { fg = "err10", modifiers = ["bold"] } # code comment = { fg = "info10" } @@ -82,9 +82,9 @@ markup = { fg = "gray9" } "markup.heading" = { fg = "gray12", modifiers = ["bold"] } "markup.bold" = { modifiers = ["bold"] } "markup.italic" = { modifiers = ["italic"] } -"markup.link" = { fg = "gray12" } -"markup.link.url" = { fg = "gray11", modifiers = ["underlined"] } -"markup.quote" = { fg = "alt9", modifiers = ["italic"] } +"markup.link" = { fg = "alt9" } +"markup.link.url" = { fg = "alt9" } +"markup.quote" = { modifiers = ["italic"] } "markup.raw" = { fg = "gray12" } [palette] # https://www.radix-ui.com/docs/colors/palette-composition/the-scales |