From f26c8be931ff0477af17354409e609f5b504eb0c Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Tue, 26 Dec 2023 15:45:12 -0500 Subject: [PATCH] Add TokyoNight - Merge 450 --- static/style.css | 15 +++++++++++++++ static/themes/tokyoNight.css | 14 ++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 static/themes/tokyoNight.css diff --git a/static/style.css b/static/style.css index 4cd9216..6ff603b 100644 --- a/static/style.css +++ b/static/style.css @@ -78,6 +78,21 @@ /* Other themes are located in the "themes" folder */ +/* Tokyo Night theme setting */ +.tokyoNight { + --accent: #565f89; + --green: #73daca; + --text: #a9b1d6; + --foreground: #24283b; + --background: #1a1b26; + --outside: #24283b; + --post: #1a1b26; + --panel-border: 1px solid #a9b1d6; + --highlighted: #414868; + --visited: #414868; + --shadow: 0 1px 3px rgba(0, 0, 0, 0.5); +} + /* General */ ::selection { diff --git a/static/themes/tokyoNight.css b/static/themes/tokyoNight.css new file mode 100644 index 0000000..11fd547 --- /dev/null +++ b/static/themes/tokyoNight.css @@ -0,0 +1,14 @@ +/* Tokyo Night theme setting */ +.tokyoNight { + --accent: #565f89; + --green: #73daca; + --text: #a9b1d6; + --foreground: #24283b; + --background: #1a1b26; + --outside: #24283b; + --post: #1a1b26; + --panel-border: 1px solid #a9b1d6; + --highlighted: #414868; + --visited: #414868; + --shadow: 0 1px 3px rgba(0, 0, 0, 0.5); +}