Add theme scopes for indent guides
This commit is contained in:
parent
8c4c923e80
commit
924b4ebb39
3 changed files with 6 additions and 0 deletions
|
@ -228,6 +228,7 @@ These scopes are used for theming the editor interface.
|
|||
| `ui.text.info` | The key: command text in `ui.popup.info` boxes |
|
||||
| `ui.virtual.ruler` | Ruler columns (see the [`editor.rulers` config][rulers-config])|
|
||||
| `ui.virtual.whitespace` | Visible white-space characters |
|
||||
| `ui.virtual.indent-guide` | Vertical indent width guides |
|
||||
| `ui.menu` | Code and command completion menus |
|
||||
| `ui.menu.selected` | Selected autocomplete item |
|
||||
| `ui.selection` | For selections in the editing area |
|
||||
|
|
|
@ -47,6 +47,8 @@ diagnostic = { modifiers = ["underlined"] }
|
|||
"error" = { fg = "red", modifiers = ["bold"] }
|
||||
|
||||
"ui.background" = { bg = "black" }
|
||||
"ui.virtual" = { fg = "faint-gray" }
|
||||
"ui.virtual.indent-guide" = { fg = "faint-gray" }
|
||||
"ui.virtual.whitespace" = { fg = "light-gray" }
|
||||
"ui.virtual.ruler" = { bg = "gray" }
|
||||
|
||||
|
@ -85,5 +87,6 @@ white = "#ABB2BF"
|
|||
black = "#282C34"
|
||||
light-black = "#2C323C"
|
||||
gray = "#3E4452"
|
||||
faint-gray = "#3B4048"
|
||||
light-gray = "#5C6370"
|
||||
linenr = "#4B5263"
|
||||
|
|
|
@ -56,6 +56,8 @@ label = "honey"
|
|||
"ui.text.focus" = { fg = "white" }
|
||||
"ui.virtual" = { fg = "comet" }
|
||||
|
||||
"ui.virtual.indent-guide" = { fg = "comet" }
|
||||
|
||||
"ui.selection" = { bg = "#540099" }
|
||||
"ui.selection.primary" = { bg = "#540099" }
|
||||
# TODO: namespace ui.cursor as ui.selection.cursor?
|
||||
|
|
Loading…
Reference in a new issue