diff options
author | Kirawi | 2023-03-12 16:57:21 +0000 |
---|---|---|
committer | GitHub | 2023-03-12 16:57:21 +0000 |
commit | db8c86a9a3bbbe28ce461e862d4a4e95b53cba15 (patch) | |
tree | 4eab1ad9e586e0a12aee4ccb7bee96c023c55474 /runtime | |
parent | 221a4ac8831e5bca08375f652d19bfc8039e0f1d (diff) |
dark_plus: theme inlay-hint (#6283)
Taken from the official theme:
```json
"editorInlayHint.background": "#4d4d4dcc",
"editorInlayHint.foreground": "#ffffff",
"editorInlayHint.parameterBackground": "#4d4d4dcc",
"editorInlayHint.parameterForeground": "#ffffff",
"editorInlayHint.typeBackground": "#4d4d4dcc",
"editorInlayHint.typeForeground": "#ffffff",
```
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/themes/dark_plus.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/themes/dark_plus.toml b/runtime/themes/dark_plus.toml index be8245c4..9f4d8b87 100644 --- a/runtime/themes/dark_plus.toml +++ b/runtime/themes/dark_plus.toml @@ -89,6 +89,7 @@ "ui.virtual.whitespace" = { fg = "dark_gray" } "ui.virtual.ruler" = { bg = "borders" } "ui.virtual.indent-guide" = { fg = "dark_gray4" } +"ui.virtual.inlay-hint" = { fg = "white", bg = "#444444" } "warning" = { fg = "gold2" } "error" = { fg = "red" } |