diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-26 11:23:24 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-26 11:23:24 +0200 |
commit | 701ee65bcd90b1086a58caffbbc793ae3aa39a2f (patch) | |
tree | 9cd6d07b3cbfd33569ba76ad7cc63168ac62b1e8 /src/themes | |
parent | fix(src/config.toml): Avoid forcing a dark theme (diff) | |
download | b-peetz.de-701ee65bcd90b1086a58caffbbc793ae3aa39a2f.zip |
fix(src/static/icons): Use the svg `fill='currentColor'` parm
This makes the icons visible both in the dark and in the light mode.
Diffstat (limited to 'src/themes')
-rw-r--r-- | src/themes/serene/static/icon/email.svg | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/themes/serene/static/icon/email.svg b/src/themes/serene/static/icon/email.svg index 1593667..0c64d95 100644 --- a/src/themes/serene/static/icon/email.svg +++ b/src/themes/serene/static/icon/email.svg @@ -1 +1,4 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path d="M3 3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3ZM20 7.23792L12.0718 14.338L4 7.21594V19H20V7.23792ZM4.51146 5L12.0619 11.662L19.501 5H4.51146Z" fill="currentColor"></path></svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"> + <path d="M3 3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3ZM20 7.23792L12.0718 14.338L4 7.21594V19H20V7.23792ZM4.51146 5L12.0619 11.662L19.501 5H4.51146Z" fill="currentColor"> + </path> +</svg> |