From b982508df0c4514544c1c5b0fff2573147d34e67 Mon Sep 17 00:00:00 2001 From: Botond Hende Date: Sat, 7 Sep 2024 18:10:54 +0200 Subject: light theme support --- assets/css/blog.css | 35 ++++++++++++++++++++++++----------- assets/css/font.css | 9 +++++++++ assets/image/moon.svg | 1 + assets/image/sun.svg | 1 + assets/js/theme.js | 16 ++++++++++++++++ templates/base.html.j2 | 6 ++++-- templates/sidebar.html.j2 | 12 +++++++++++- 7 files changed, 66 insertions(+), 14 deletions(-) create mode 100644 assets/css/font.css create mode 100644 assets/image/moon.svg create mode 100644 assets/image/sun.svg create mode 100644 assets/js/theme.js diff --git a/assets/css/blog.css b/assets/css/blog.css index 8928235..028e4b9 100644 --- a/assets/css/blog.css +++ b/assets/css/blog.css @@ -12,14 +12,27 @@ --term-white: #b5aba8; } -@font-face { - font-family: "jetbrains-mono"; - src: url("/assets/font/JetBrainsMono-Regular.woff2"); +[used-theme="light"] { + --term-fg: #515151; + --term-bg: #f3f3f3; + --term-black: #515151; + --term-red: #ff001e; + --term-green: #5eaa0c; + --term-yellow: #f29b00; + --term-blue: #0098ca; + --term-magenta: #d52ad2; + --term-cyan: #00dad5; + --term-white: #f3f3f3; +} + +a[class*="theme-selector"] { + color: var(--term-green); } -html { - font-family: "jetbrains-mono", serif; - font-variant-ligatures: none; +html:not([used-theme]) .theme-selector-dark, +html[used-theme="dark"] .theme-selector-dark, +html[used-theme="light"] .theme-selector-light { + display: none; } header, .icon-text { @@ -39,7 +52,7 @@ header, .icon-text { header { margin-top: 0rem; - margin-bottom 1rem; + margin-bottom: 1rem; } header div { @@ -61,7 +74,7 @@ header span { hr { width: 90%; - color: var(--term-black); + color: var(--term-bg); } .nobr, @@ -105,7 +118,7 @@ hr { .code-block, .code-block-wrap { border-style: solid; - border-color: var(--term-white); + border-color: var(--term-fg); border-width: 0.1rem; padding: 0.7rem; } @@ -171,7 +184,7 @@ img max-width: 100%; max-height: 100%; border-style: solid; - border-color: var(--term-black); + border-color: var(--term-bg); border-width: 0.1rem; width: 100%; } @@ -215,7 +228,7 @@ a.posts-listing-link:hover :is(h2, h3) @media (min-width: 768px) { main { border-width: 0.15rem; - border-color: var(--term-black); + border-color: var(--term-bg); border-style: none solid none solid; } } diff --git a/assets/css/font.css b/assets/css/font.css new file mode 100644 index 0000000..cda8b7a --- /dev/null +++ b/assets/css/font.css @@ -0,0 +1,9 @@ +@font-face { + font-family: "jetbrains-mono"; + src: url("/assets/font/JetBrainsMono-Regular.woff2"); +} + +html { + font-family: "jetbrains-mono", serif; + font-variant-ligatures: none; +} \ No newline at end of file diff --git a/assets/image/moon.svg b/assets/image/moon.svg new file mode 100644 index 0000000..c0e3eeb --- /dev/null +++ b/assets/image/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/image/sun.svg b/assets/image/sun.svg new file mode 100644 index 0000000..126f454 --- /dev/null +++ b/assets/image/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/js/theme.js b/assets/js/theme.js new file mode 100644 index 0000000..ffb6d48 --- /dev/null +++ b/assets/js/theme.js @@ -0,0 +1,16 @@ +"use strict" +const THEME_KEY = "used-theme"; + +function updateTheme() { + let theme = localStorage.getItem(THEME_KEY); + if (theme != null) { + document.documentElement.setAttribute(THEME_KEY, theme) + } +} + +function setTheme(theme) { + localStorage.setItem(THEME_KEY, theme); + updateTheme(); +} + +updateTheme(); \ No newline at end of file diff --git a/templates/base.html.j2 b/templates/base.html.j2 index 1925ed2..fa1f2d8 100644 --- a/templates/base.html.j2 +++ b/templates/base.html.j2 @@ -7,8 +7,10 @@ - + + +
@@ -24,7 +26,7 @@ dOB68QO8PdUOpugoO9bD CgggbU8OU qOp qOdoUOdcb 6OuU /p u gcoUodpP - \\\// /douUP + \\\// /douUP \\\//// |||/\ |||\/ diff --git a/templates/sidebar.html.j2 b/templates/sidebar.html.j2 index fdb1b4b..f675735 100644 --- a/templates/sidebar.html.j2 +++ b/templates/sidebar.html.j2 @@ -22,8 +22,18 @@ Sometimes I touch upon some more artistic stuff, but mostly just to amuse myself Git repositories

Top tags

+

ls ~/tags/

{% for tag in site.top_tags %}{{ tag }}/{% if not loop.last %} {% endif %}{% endfor %}

-

more: cd ~/tags

+

I want different colors

+

~/themes/

+ + + sweet-celestia.sh + + + + luna-eclipsed.sh +

Never miss a post

-- cgit v1.2.3-70-g09d2