diff options
author | 0rphee | 2023-04-29 20:21:15 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2023-04-30 00:44:26 +0000 |
commit | 96720e7b841f602709c4e8f117555ed897affe53 (patch) | |
tree | 8729eef43fa0db8ae9845fa3a3da191aad94be5b | |
parent | 6a1bb81f1022533c226395aaa41439ab1ea41dd4 (diff) |
[Theme - noctis] Refine multiple cursor highlighting
Improve clarity when using multiple cursors
-rw-r--r-- | runtime/themes/noctis.toml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/runtime/themes/noctis.toml b/runtime/themes/noctis.toml index 81733e63..3b996f6f 100644 --- a/runtime/themes/noctis.toml +++ b/runtime/themes/noctis.toml @@ -5,6 +5,7 @@ ## GENERAL ============================== +'property' = { fg = "red" } # Regex group names. "warning" = { fg ="yellow", modifiers = ["bold"] } # Editor warnings. "error" = { bg = "mid-green", fg = "red", modifiers = ["bold"] } # Editor errors, like mis-typing a command. "info" = { fg = "mid-blue", bg = "mid-green" } # Code diagnostic info in gutter (LSP). @@ -29,11 +30,11 @@ 'ui.text.focus' = { fg = "white", bg = "mid-green", modifiers = ["bold"] } # Selection highlight in buffer-picker or file-picker. 'ui.text.info' = { } # Info popup contents (space mode menu). -'ui.cursor' = { fg = "light-blue", modifiers = ["reversed"] } # Fallback cursor colour, non-primary cursors when there are multiple (shift-c). -'ui.cursor.primary' = { fg = "light-blue", modifiers = ["reversed"] } # The primary cursor when there are multiple (shift-c). -'ui.cursor.insert' = { fg = "light-blue" } # The cursor in insert mode (i). -'ui.cursor.select' = { fg = "light-blue" } # The cursor in select mode (v). -'ui.cursor.match' = { fg = "red", modifiers = ["bold", "reversed"] } # The matching parentheses of that under the cursor. +'ui.cursor' = { fg = "dark-green", bg = "white" } # Fallback cursor colour, non-primary cursors when there are multiple (shift-c). +'ui.cursor.primary' = { fg = "dark-green", bg = "light-blue" } # The primary cursor when there are multiple (shift-c). +'ui.cursor.insert' = { fg = "dark-green", bg = "light-blue" } # The cursor in insert mode (i). +'ui.cursor.select' = { fg = "dark-green", bg = "light-blue" } # The cursor in select mode (v). +'ui.cursor.match' = { fg = "dark-green", bg = "red", modifiers = ["bold"] } # The matching parentheses of that under the cursor. 'ui.selection' = { bg = "autocomp-green" } # All currently selected text. 'ui.selection.primary' = { bg = "autocomp-green" } # The primary selection when there are multiple. |