diff options
author | Tomas | 2024-01-08 02:57:04 +0000 |
---|---|---|
committer | GitHub | 2024-01-08 02:57:04 +0000 |
commit | 77ab792ac72698189120b2c62e26d2a26807a9ca (patch) | |
tree | bfbe59cc66279f4cdd6d5d3c0e9c5c813aba8d37 /runtime/themes/ttox.toml | |
parent | 918bd9c2b06934b5b0b1666f2228e219809130ac (diff) |
runtime/themes: adding "ttox" theme (#8524)
* runtime/themes: adding 'ttox' theme
* Improving primary selections
Diffstat (limited to 'runtime/themes/ttox.toml')
-rw-r--r-- | runtime/themes/ttox.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/runtime/themes/ttox.toml b/runtime/themes/ttox.toml new file mode 100644 index 00000000..16909cc7 --- /dev/null +++ b/runtime/themes/ttox.toml @@ -0,0 +1,31 @@ +# Author : Tomas Ruud <git@me.2ms.no> + +"ui.selection" = { fg = "white", bg = "gray" } +"ui.cursor" = { fg = "black", bg = "light-gray" } +"ui.cursor.primary" = { fg = "black", bg = "light-gray" } +"ui.cursor.match" = { modifiers = ["underlined"] } +"ui.background.separator" = "gray" +"ui.linenr" = "gray" +"ui.linenr.selected" = { fg = "white", bg = "gray" } +"ui.statusline" = { bg = "black", fg = "white" } +"ui.menu" = { fg = "white", bg = "black" } +"ui.menu.selected" = { bg = "light-gray", fg = "black" } +"ui.popup" = { fg = "white", bg = "black" } +"ui.help" = { fg = "white", bg = "black" } +"ui.virtual.ruler" = { underline = { style = "line"} } + +"string" = { bg = "light-green", fg = "black" } +"constant" = { bg = "light-cyan", fg = "black" } +"comment" = { bg = "light-magenta", fg = "black" } + +"diff.plus" = "green" +"diff.minus" = "red" +"diff.delta" = "gray" + +"warning" = { fg = "black", bg = "light-yellow" } +"error" = { fg = "black", bg = "light-red" } +"hint" = { fg = "black", bg = "light-blue" } + +"diagnostic.warning" = { fg = "black", bg = "light-yellow" } +"diagnostic.error" = { fg = "black", bg = "light-red" } +"diagnostic.hint" = { fg = "black", bg = "light-blue" } |