diff --git a/content/imprint.md b/content/imprint.md index 8e2b87e..8940fa8 100644 --- a/content/imprint.md +++ b/content/imprint.md @@ -21,3 +21,5 @@ All work showcased on this site (including images, source code, etc.) are hereby [CC BY-NC-SA 4.0]({{}}) _unless_ otherwise specified. If you have doubts about licensing, please [contact me]({{< ref "contact" >}}) and I can help clear up any ambiguities. Some icons on this site are from [KDE's Breeze icons](https://invent.kde.org/frameworks/breeze-icons) which are licensed under [GPLv3](https://invent.kde.org/frameworks/breeze-icons/-/blob/master/COPYING-ICONS?ref_type=heads). + +The default font used is [Inclusive Sans](https://github.com/LivKing/Inclusive-Sans). diff --git a/themes/red/assets/css/site.css b/themes/red/assets/css/site.css index 20b4771..3d2a599 100644 --- a/themes/red/assets/css/site.css +++ b/themes/red/assets/css/site.css @@ -146,7 +146,7 @@ body { accent-color: var(--accent-color); color: var(--text-color); - font-family: sans-serif; + font-family: "Inclusive Sans", sans-serif; } @@ -164,6 +164,34 @@ body { --shadow: 3px 3px 0px black; } +@font-face { + font-family: "Inclusive Sans"; + src: url("/fonts/InclusiveSans-Bold.woff2"); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: "Inclusive Sans"; + src: url("/fonts/InclusiveSans-BoldItalic.woff2"); + font-weight: bold; + font-style: italic; +} + +@font-face { + font-family: "Inclusive Sans"; + src: url("/fonts/InclusiveSans-Italic.woff2"); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: "Inclusive Sans"; + src: url("/fonts/InclusiveSans-Regular.woff2"); + font-weight: normal; + font-style: normal; +} + @media (prefers-color-scheme: dark) { :root { --link: #a3c3ff; diff --git a/themes/red/static/fonts/InclusiveSans-Bold.woff2 b/themes/red/static/fonts/InclusiveSans-Bold.woff2 new file mode 100644 index 0000000..ca80a1d Binary files /dev/null and b/themes/red/static/fonts/InclusiveSans-Bold.woff2 differ diff --git a/themes/red/static/fonts/InclusiveSans-BoldItalic.woff2 b/themes/red/static/fonts/InclusiveSans-BoldItalic.woff2 new file mode 100644 index 0000000..028d7eb Binary files /dev/null and b/themes/red/static/fonts/InclusiveSans-BoldItalic.woff2 differ diff --git a/themes/red/static/fonts/InclusiveSans-Italic.woff2 b/themes/red/static/fonts/InclusiveSans-Italic.woff2 new file mode 100644 index 0000000..2bb81cf Binary files /dev/null and b/themes/red/static/fonts/InclusiveSans-Italic.woff2 differ diff --git a/themes/red/static/fonts/InclusiveSans-Regular.woff2 b/themes/red/static/fonts/InclusiveSans-Regular.woff2 new file mode 100644 index 0000000..cc7017f Binary files /dev/null and b/themes/red/static/fonts/InclusiveSans-Regular.woff2 differ