Skip to content

Commit 707598a

Browse files
add epilogue
1 parent 72ee548 commit 707598a

File tree

8 files changed

+44
-12
lines changed

8 files changed

+44
-12
lines changed

core/src/components/Footer.astro

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ import logoWHite from '@NixOS/branding/artifacts/internal/nixos-logomark-white-f
1212
---
1313

1414
<footer>
15-
<div
16-
class="bg-secondary-afghani-blue-25 text-primary-white-95 clear-both font-light"
17-
>
15+
<div class="bg-secondary-afghani-blue-25 text-primary-white-95 clear-both">
1816
<Container>
1917
<div
2018
class="flex flex-col flex-wrap gap-x-4 gap-y-8 pt-12 pb-10 sm:flex-row"
@@ -25,7 +23,7 @@ import logoWHite from '@NixOS/branding/artifacts/internal/nixos-logomark-white-f
2523
<h4 class="font-heading text-secondary-afghani-blue-85 mb-2 text-xl font-bold">
2624
{menu.name}
2725
</h4>
28-
<ul class="font-extralight">
26+
<ul class="font-light">
2927
{menu.items.map((item) => (
3028
<li class="border-secondary-afghani-blue-55 border-b-1 last:border-b-0">
3129
<Link

core/src/components/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const navbarItemActiveStyle = `border-b-secondary-afghani-blue-85 bg-secondary-a
2020

2121
<header
2222
role="banner"
23-
class="text-primary-black bg-primary-white sticky top-0 z-50 font-extralight drop-shadow-md"
23+
class="text-primary-black bg-primary-white sticky top-0 z-50 font-light drop-shadow-md"
2424
>
2525
{
2626
currentBanner && (

core/src/layouts/Layout.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ const headFeedLinks = blogMenu.data.map((e) => {
8686
// Fonts
8787
import '@fontsource-variable/overpass';
8888
import '@fontsource-variable/fira-code';
89-
import '@fontsource-variable/roboto-flex/wdth.css';
89+
import '@fontsource-variable/epilogue';
9090
import '@/lib/client/scrollToTopHandler.js';
9191
</script>
9292

9393
<style>
9494
@font-face {
95-
font-family: 'Roboto Flex Variable';
95+
font-family: 'Epilogue Variable';
9696
}
9797
</style>
9898
</body>

core/src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ posts
150150
Choose from over 120 000 Packages
151151
</h2>
152152
<p
153-
class="pb-2 text-center text-2xl leading-relaxed font-extralight md:w-5/6"
153+
class="pb-2 text-center text-2xl leading-relaxed font-light md:w-5/6"
154154
>
155155
The Nix Packages collection (<a
156156
class="text-secondary-afghani-blue! font-bold"

core/src/styles/base.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@config '../../tailwind.config.cjs';
66

77
@utility text-light-bold {
8-
@apply font-extralight;
8+
@apply font-light;
99

1010
& strong {
1111
@apply font-extrabold;
@@ -62,7 +62,7 @@
6262
}
6363

6464
article {
65-
@apply leading-7 font-light;
65+
@apply leading-7;
6666
}
6767

6868
article ol {

core/tailwind.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ module.exports = {
5353
],
5454
theme: {
5555
fontFamily: {
56-
sans: ['Roboto Flex Variable', ...defaultTheme.fontFamily.sans],
56+
sans: ['Epilogue Variable', ...defaultTheme.fontFamily.sans],
5757
serif: ['Route159', ...defaultTheme.fontFamily.serif],
5858
heading: ['Route159', ...defaultTheme.fontFamily.sans],
5959
mono: ['Fira Code Variable', ...defaultTheme.fontFamily.mono],

package-lock.json

Lines changed: 34 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"typescript-eslint": "^8.46.3"
4040
},
4141
"dependencies": {
42+
"@fontsource-variable/epilogue": "^5.2.8",
4243
"chalk": "^5.6.2"
4344
}
4445
}

0 commit comments

Comments
 (0)