update @ Fri Oct 6 18:45:04 EEST 2023

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2023-10-06 18:45:04 +03:00
parent 1a889fc5cb
commit e68262a5d1
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: A50D5B4B599AF8A2
2 changed files with 12 additions and 11 deletions

View file

@ -1,11 +1,5 @@
:root {
color-scheme: dark;
--clr-bg: #262220;
--clr-fg: #f9f6e8;
--clr-blockquote-bg: #ede9d3;
--blockquote-width: 2px;
--clr-link: #cdc4c4; /* #9e9b9b; */
@ -14,12 +8,8 @@
*,
*::before,
*::after {
background-color: var(--clr-bg);
color: var(--clr-fg);
-webkit-box-sizing: border-box;
box-sizing: border-box;
word-wrap: break-word;
}

View file

@ -172,7 +172,18 @@ HTML_BEGIN: typing.Final[
<meta name="theme-color" content="{theme_primary}" />
<link rel="manifest" href="/manifest.json" />
<link rel="canonical" href="{blog}/{path}">
<style type="text/css">{critical_css}</style>
<style type="text/css">
:root{
color-scheme:{theme_type};
--clr-bg:{theme_primary};
--clr-fg:{theme_secondary}
}
*,*::before,*::after{
background-color:var(--clr-bg);
color:var(--clr-fg)
}
{critical_css}
</style>
<link
href="/{styles}"
rel="preload"