mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
Use less harsh colors in a screenshot
Make the dark link underlines screenshot less prone to overstimulation
This commit is contained in:
parent
7bd796a44c
commit
4f177f5536
8 changed files with 4 additions and 8 deletions
BIN
assets/p/underlines.avif
Normal file
BIN
assets/p/underlines.avif
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.2 KiB |
BIN
assets/p/underlines_dark.avif
Normal file
BIN
assets/p/underlines_dark.avif
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.2 KiB |
|
@ -725,7 +725,7 @@ Some typographers insist that [underlined on-screen text is obsolete](https://pr
|
||||||
|
|
||||||
Readers already expect underlined text to signify a hyperlink. Don't break fundamental affordances for aesthetics. Underlines are also necessary to distinguish the beginnings and ends of multiple consecutive links, especially among color-blind users.
|
Readers already expect underlined text to signify a hyperlink. Don't break fundamental affordances for aesthetics. Underlines are also necessary to distinguish the beginnings and ends of multiple consecutive links, especially among color-blind users.
|
||||||
|
|
||||||
{{<image-figure>}} {{<picture name="underlines" alt="Multiple multi-word hyperlinks with and without underlines separating them.">}}
|
{{<image-figure>}} {{<picture name="underlines" alt="Multiple multi-word hyperlinks with and without underlines separating them." sf=0.75 >}}
|
||||||
|
|
||||||
<figcaption itemprop="caption">
|
<figcaption itemprop="caption">
|
||||||
|
|
||||||
|
@ -1339,7 +1339,7 @@ These tests begin reasonably, but gradually grow absurd. Once again, use your ju
|
||||||
|
|
||||||
I'm still on step 16, trying to find new ways to break this page. If you come up with a new test, please [share it](mailto:~seirdy/seirdy.one-comments@lists.sr.ht).
|
I'm still on step 16, trying to find new ways to break this page. If you come up with a new test, please [share it](mailto:~seirdy/seirdy.one-comments@lists.sr.ht).
|
||||||
|
|
||||||
{{<image-figure representative="True">}} {{< picture name="serenity" alt="Retro-looking web browser with bitmap fonts showing this article's \"Code snippet 4\"." sf=2 >}}
|
{{<image-figure representative="True">}} {{< picture name="serenity" alt="Retro-looking web browser with bitmap fonts showing this article's \"Code snippet 4\"." class="pix" sf=2 >}}
|
||||||
|
|
||||||
<figcaption itemprop="caption">
|
<figcaption itemprop="caption">
|
||||||
|
|
||||||
|
|
|
@ -9,17 +9,13 @@
|
||||||
{{ $dark_avif := resources.GetMatch (printf "/p/%s_dark.avif" (.Get "name")) -}}
|
{{ $dark_avif := resources.GetMatch (printf "/p/%s_dark.avif" (.Get "name")) -}}
|
||||||
{{ $dark_jxl := resources.GetMatch (printf "/p/%s_dark.jxl" (.Get "name")) -}}
|
{{ $dark_jxl := resources.GetMatch (printf "/p/%s_dark.jxl" (.Get "name")) -}}
|
||||||
|
|
||||||
{{- $isPix := false -}}
|
|
||||||
{{- $img_width := $light_png.Width -}}
|
{{- $img_width := $light_png.Width -}}
|
||||||
{{- $img_height := $light_png.Height -}}
|
{{- $img_height := $light_png.Height -}}
|
||||||
{{- with (.Get "sf") -}}
|
{{- with (.Get "sf") -}}
|
||||||
{{- $img_width = (mul $img_width . | math.Round) -}}
|
{{- $img_width = (mul $img_width . | math.Round) -}}
|
||||||
{{- $img_height = (mul $img_height . | math.Round ) -}}
|
{{- $img_height = (mul $img_height . | math.Round ) -}}
|
||||||
{{- if eq . 2 -}}
|
|
||||||
{{- $isPix = true -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
<picture{{ if $isPix }} class="pix"{{ end }}>
|
<picture>
|
||||||
{{ with $dark_svg -}}
|
{{ with $dark_svg -}}
|
||||||
{{ $dark_svg_src := . | resources.Fingerprint "md5" -}}
|
{{ $dark_svg_src := . | resources.Fingerprint "md5" -}}
|
||||||
<source
|
<source
|
||||||
|
@ -83,7 +79,7 @@
|
||||||
<source
|
<source
|
||||||
srcset="{{ $light_png_src.RelPermalink }}"
|
srcset="{{ $light_png_src.RelPermalink }}"
|
||||||
type="image/png">
|
type="image/png">
|
||||||
<img
|
<img{{ with .Get "class" }} class="{{ . }}"{{ end }}
|
||||||
width="{{ $img_width }}" height="{{ $img_height }}"
|
width="{{ $img_width }}" height="{{ $img_height }}"
|
||||||
src="{{ $light_png.RelPermalink }}" alt='{{ .Get "alt" }}'
|
src="{{ $light_png.RelPermalink }}" alt='{{ .Get "alt" }}'
|
||||||
{{ with .Parent -}}
|
{{ with .Parent -}}
|
||||||
|
|
Loading…
Reference in a new issue