Skip to content

Commit

Permalink
runtime/themes: adding "ttox" theme (helix-editor#8524)
Browse files Browse the repository at this point in the history
* runtime/themes: adding 'ttox' theme

* Improving primary selections
  • Loading branch information
tomasruud authored and mtoohey31 committed Jun 2, 2024
1 parent 0760dbd commit 573bed4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions runtime/themes/ttox.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Author : Tomas Ruud <[email protected]>

"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" }

0 comments on commit 573bed4

Please sign in to comment.