mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
Lighten bkg a bit more
Thanks to anonymous for feedback on contrast with astigmatism.
This commit is contained in:
parent
37d7f6adba
commit
3c2e4f40c4
2 changed files with 8 additions and 6 deletions
|
@ -3,7 +3,7 @@
|
||||||
/* "background" is short for a bunch of unnecessary CSS rules
|
/* "background" is short for a bunch of unnecessary CSS rules
|
||||||
* background-color is all I need
|
* background-color is all I need
|
||||||
* I've been told that pure white on black is a bit harsh */
|
* I've been told that pure white on black is a bit harsh */
|
||||||
background-color: #090900;
|
background-color: #0c0c0c;
|
||||||
color: #ececec;
|
color: #ececec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="description" content="{{ if .Params.description }}{{ .Params.description }}{{ else }}{{ .Site.Params.Description }}{{ end }}">
|
<meta name="description" content="{{ if .Params.description }}{{ .Params.description }}{{ else }}{{ .Site.Params.Description }}{{ end }}">
|
||||||
<meta name="author" content="{{ .Site.Author.name }}">
|
<meta name="author" content="{{ .Site.Author.name }}">
|
||||||
{{- $icon_192 := resources.Get "/apple-touch-icon.png" | resources.Fingerprint "md5" -}}
|
{{ $icon_192 := resources.Get "/apple-touch-icon.png" | resources.Fingerprint "md5" }}
|
||||||
{{- printf `<link rel="icon" sizes="192x192" href="%s" type="image/png">` $icon_192.RelPermalink | safeHTML }}
|
{{- printf `<link rel="icon" sizes="192x192" href="%s" type="image/png">` $icon_192.RelPermalink | safeHTML -}}
|
||||||
{{ $favicon := resources.Get "/favicon.png" -}}
|
{{ $favicon := resources.Get "/favicon.png" -}}
|
||||||
{{ $favicon_base64 := $favicon.Content | base64Encode }}
|
{{ $favicon_base64 := $favicon.Content | base64Encode }}
|
||||||
{{- printf `<link rel="icon" sizes="32x32" href="data:image/png;base64,%s" type="image/png">` $favicon_base64 | safeHTML -}}
|
{{ printf `<link rel="icon" sizes="32x32" href="data:image/png;base64,%s" type="image/png">` $favicon_base64 | safeHTML -}}
|
||||||
<!-- apple-touch-icon used to be apple-specific, but now it's
|
<!-- apple-touch-icon used to be apple-specific, but now it's
|
||||||
a pseudo-standard relied upon by other vendors too:
|
a pseudo-standard relied upon by other vendors too:
|
||||||
https://html.spec.whatwg.org/multipage/semantics.html#attr-link-sizes -->
|
https://html.spec.whatwg.org/multipage/semantics.html#attr-link-sizes -->
|
||||||
|
@ -16,6 +16,8 @@
|
||||||
<!-- webmanifest defines even more icons. This is getting ridiculous -->
|
<!-- webmanifest defines even more icons. This is getting ridiculous -->
|
||||||
{{- $webmanifest := resources.Get "/manifest.webmanifest" | resources.ExecuteAsTemplate "manifest.webmanifest" . | resources.Minify | resources.Fingerprint "md5" -}}
|
{{- $webmanifest := resources.Get "/manifest.webmanifest" | resources.ExecuteAsTemplate "manifest.webmanifest" . | resources.Minify | resources.Fingerprint "md5" -}}
|
||||||
{{- printf `<link rel="manifest" href="%s">` $webmanifest.RelPermalink | safeHTML }}
|
{{- printf `<link rel="manifest" href="%s">` $webmanifest.RelPermalink | safeHTML }}
|
||||||
|
<meta name="theme-color" content="#0d0d0d" media="(prefers-color-scheme: dark)">
|
||||||
|
<meta name="theme-color" content="#fff" media="(prefers-color-scheme: light)">
|
||||||
<link rel="alternate" type="application/rss+xml" href="{{ .Site.BaseURL }}posts/index.xml" title="{{ $.Site.Title }}">
|
<link rel="alternate" type="application/rss+xml" href="{{ .Site.BaseURL }}posts/index.xml" title="{{ $.Site.Title }}">
|
||||||
{{ if and (ne .Site.BaseURL "https://seirdy.one/") (ne .Site.BaseURL "http://wgq3bd2kqoybhstp77i3wrzbfnsyd27wt34psaja4grqiezqircorkyd.onion/") -}}
|
{{ if and (ne .Site.BaseURL "https://seirdy.one/") (ne .Site.BaseURL "http://wgq3bd2kqoybhstp77i3wrzbfnsyd27wt34psaja4grqiezqircorkyd.onion/") -}}
|
||||||
<meta name="robots" content="noindex">
|
<meta name="robots" content="noindex">
|
||||||
|
@ -32,9 +34,9 @@
|
||||||
{{ end -}}
|
{{ end -}}
|
||||||
{{ $css := $resources | resources.Concat "css/style.css" | minify -}}
|
{{ $css := $resources | resources.Concat "css/style.css" | minify -}}
|
||||||
<style>{{ $css.Content | safeCSS }}</style>
|
<style>{{ $css.Content | safeCSS }}</style>
|
||||||
{{- if eq .RelPermalink "/" -}}
|
{{- if eq .RelPermalink "/" }}
|
||||||
<title>{{ .Title }}</title>
|
<title>{{ .Title }}</title>
|
||||||
{{- else -}}
|
{{- else }}
|
||||||
<title>{{ .Title }} - Seirdy</title>
|
<title>{{ .Title }} - Seirdy</title>
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
<!-- open graph stuff; used in the Fediverse, Signal link previews,
|
<!-- open graph stuff; used in the Fediverse, Signal link previews,
|
||||||
|
|
Loading…
Reference in a new issue