From 9ca5fb33998fb10fb84fc7ba321562f33e95e481 Mon Sep 17 00:00:00 2001 From: nif Date: Thu, 18 Apr 2024 17:52:44 +0000 Subject: [PATCH] Upload themes Signed-off-by: nif --- themes/blue.css | 10 ++++++++++ themes/dark.css | 10 ++++++++++ themes/light.css | 10 ++++++++++ 3 files changed, 30 insertions(+) create mode 100644 themes/blue.css create mode 100644 themes/dark.css create mode 100644 themes/light.css diff --git a/themes/blue.css b/themes/blue.css new file mode 100644 index 0000000..b6ccb16 --- /dev/null +++ b/themes/blue.css @@ -0,0 +1,10 @@ +:root { + --bg: #002; + --bg-alt: #005; + --btn: #046; + --btn-hv: #068; + --btn-bd: #08a; + --text: #dff; + --good: #8f8; + --bad: #f66; +} \ No newline at end of file diff --git a/themes/dark.css b/themes/dark.css new file mode 100644 index 0000000..77e9cd5 --- /dev/null +++ b/themes/dark.css @@ -0,0 +1,10 @@ +:root { + --bg: #000; + --bg-alt: #222; + --btn: #444; + --btn-hv: #666; + --btn-bd: #888; + --text: #fff; + --good: #8f8; + --bad: #f66; +} \ No newline at end of file diff --git a/themes/light.css b/themes/light.css new file mode 100644 index 0000000..fa69c6b --- /dev/null +++ b/themes/light.css @@ -0,0 +1,10 @@ +:root { + --bg: #fff; + --bg-alt: #eee; + --btn: #ddd; + --btn-hv: #ccc; + --btn-bd: #bbb; + --text: #000; + --good: #0b0; + --bad: #c00; +} \ No newline at end of file