From d465a881a882d0c0791cc6924409579da6b36281 Mon Sep 17 00:00:00 2001 From: Tomas Ruud Date: Thu, 12 Oct 2023 16:05:12 +0200 Subject: [PATCH 1/2] runtime/themes: adding 'ttox' theme --- runtime/themes/ttox.toml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 runtime/themes/ttox.toml diff --git a/runtime/themes/ttox.toml b/runtime/themes/ttox.toml new file mode 100644 index 000000000000..3972d110ecda --- /dev/null +++ b/runtime/themes/ttox.toml @@ -0,0 +1,28 @@ +# Author : Tomas Ruud + +"ui.selection" = { fg = "white", bg = "gray" } +"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" } From 1c2e00e71b242cacdcdaa19f63addefce406d3d3 Mon Sep 17 00:00:00 2001 From: Tomas Ruud Date: Sat, 14 Oct 2023 10:48:42 +0200 Subject: [PATCH 2/2] Improving primary selections --- runtime/themes/ttox.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/themes/ttox.toml b/runtime/themes/ttox.toml index 3972d110ecda..16909cc7013e 100644 --- a/runtime/themes/ttox.toml +++ b/runtime/themes/ttox.toml @@ -1,6 +1,9 @@ # Author : Tomas Ruud "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" }