Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/themes/noctis.toml')
| -rw-r--r-- | runtime/themes/noctis.toml | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/runtime/themes/noctis.toml b/runtime/themes/noctis.toml index 67fc6e8b..c9f95f7f 100644 --- a/runtime/themes/noctis.toml +++ b/runtime/themes/noctis.toml @@ -7,7 +7,7 @@ 'property' = { fg = "red" } # Regex group names. "warning" = { fg ="yellow", modifiers = ["bold"] } # Editor warnings. -"error" = { fg = "red", modifiers = ["bold"] } # Editor errors, like mistyping a command. +"error" = { fg = "red", modifiers = ["bold"] } # Editor errors, like mis-typing a command. "info" = { fg = "mid-blue" } # Code diagnostic info in gutter (LSP). # ? Difference between info and hint ? "hint" = { fg = "light-green", modifiers = ["bold"] } # Code diagnostics hint in gutter (LSP). @@ -17,8 +17,6 @@ "diagnostic.error" = { underline = { color = "red", style = "curl" } } "diagnostic.info" = { underline = { color = "mid-blue", style = "curl" } } "diagnostic.hint" = { underline = { color = "light-green", style = "curl" } } -"diagnostic.unnecessary" = { modifiers = ["dim"] } -"diagnostic.deprecated" = { modifiers = ["crossed_out"] } # UI ============================== # For styling helix itself. @@ -45,13 +43,10 @@ 'ui.linenr' = { fg = "gray" } # Line numbers. 'ui.linenr.selected' = { fg = "light-green", modifiers = [ "bold" ] } # Current line number. -'ui.virtual' = { fg = "autocomp-green" } # Namespace for additions to the editing area. +'ui.virtual' = { fg = "mid-green" } # Namespace for additions to the editing area. 'ui.virtual.ruler' = { bg = "mid-green" } # Vertical rulers (colored columns in editing area). -'ui.virtual.whitespace' = { fg = "mid-green"} # Whitespace markers in editing area. -'ui.virtual.inlay-hint' = { fg = "autocomp-green" } # LSP inlay hints -'ui.virtual.indent-guide' = { fg = "mid-green" } # Indentation guides. -'ui.virtual.wrap' = { fg = "mid-green"} # Soft-wrap indicators -'ui.virtual.jump-label' = { fg = "autocomp-green", modifiers = [ "bold" ] } # Word-jump labels +'ui.virtual.whitespace' = { fg = "light-gray"} # Whitespace markers in editing area. +'ui.virtual.indent-guide' = { fg = "light-gray" } # Indentation guides. 'ui.statusline' = { fg = "light-green", bg = "autocomp-green"} # Status line. 'ui.statusline.inactive' = { fg = "white", bg = "mid-green"} # Status line in unfocused windows. @@ -100,9 +95,8 @@ 'comment' = { fg = "gray", modifiers = ["italic"] } # This is a comment. 'comment.line' = { } # Line comments, like this. -'comment.line.documentation' = { } # Doc comments, e.g '///' in rust. 'comment.block' = { } # Block comments, like /* this */ in some languages. -'comment.block.documentation' = { } # Doc comments, e.g '/** */' in rust. +'comment.block.documentation' = { } # Doc comments, e.g '///' in rust. 'variable' = { fg = "light-orange" } # Variable names. # 'variable.builtin' = { } # Language reserved variables: `this`, `self`, `super`, etc. |