From ca9c10cdf2bf0b53dc4ae5af4d1cff48b8aa4276 Mon Sep 17 00:00:00 2001 From: shockrah Date: Sun, 17 Jan 2021 20:06:51 -0800 Subject: [PATCH] Basic themes taken from zeno on reddit --- tui/themes/dark.toml | 14 ++++++++++++++ tui/themes/high-contrast.toml | 13 +++++++++++++ tui/themes/light.toml | 11 +++++++++++ 3 files changed, 38 insertions(+) create mode 100644 tui/themes/dark.toml create mode 100644 tui/themes/high-contrast.toml create mode 100644 tui/themes/light.toml diff --git a/tui/themes/dark.toml b/tui/themes/dark.toml new file mode 100644 index 0000000..66a3064 --- /dev/null +++ b/tui/themes/dark.toml @@ -0,0 +1,14 @@ +shadow = true +borders = "outset" + +[colors] +shadow = "#1a1a1a" +background = "black" +primary = ["black"] +secondary = "black" +tertiary = "black" +title_primary = "#3560e0" +title_secondary = "#ffff55" +highlight = "#3560e0" +highlight_inactive = "#7a93c9" + diff --git a/tui/themes/high-contrast.toml b/tui/themes/high-contrast.toml new file mode 100644 index 0000000..28ea860 --- /dev/null +++ b/tui/themes/high-contrast.toml @@ -0,0 +1,13 @@ +shadow = false +borders = "outset" + +[colors] +background = "black" +primary = ["#000000"] +secondary = "black" +tertiary = "#000000" +title_primary = "black" +title_secondary = "#000000" +highlight = "#000000" +highlight_inactive = "#7a7a7a" + diff --git a/tui/themes/light.toml b/tui/themes/light.toml new file mode 100644 index 0000000..cf9102e --- /dev/null +++ b/tui/themes/light.toml @@ -0,0 +1,11 @@ +[colors] +background = "white" +primary = "white" +secondary = "white" +tertiary = "white" +title_primary = "white" +title_secondary = "white" +highlight = "white" +highlight_inactive = "#e0e0e0" +view = "black" +