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.