Change fonts
- Mona Sans for paragraphs and default text. - Hubot Sans for headings and titles. - Monaspace for code and other monospace text. Removed CascadiaCode and Ubuntu fonts.
This commit is contained in:
parent
94ab3f9741
commit
ec515c4dbc
4 changed files with 23 additions and 19 deletions
|
@ -28,6 +28,7 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
font-family: var(--font--sans-serif-alt);
|
||||||
color: var(--color-headings);
|
color: var(--color-headings);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-top: 1.5rem;
|
margin-top: 1.5rem;
|
||||||
|
|
|
@ -1,24 +1,26 @@
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Ubuntu";
|
font-family: 'Mona Sans';
|
||||||
font-weight: normal;
|
src:
|
||||||
src: url("https://static.fosterhangdaan.com/fonts/ubuntu/latest/Ubuntu-Regular.ttf") format("truetype");
|
url('https://static.fosterhangdaan.com/fonts/mona-sans/latest/Mona-Sans.woff2') format('woff2 supports variations'),
|
||||||
|
url('https://static.fosterhangdaan.com/fonts/mona-sans/latest/Mona-Sans.woff2') format('woff2-variations');
|
||||||
|
font-weight: 200 900;
|
||||||
|
font-stretch: 75% 125%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Ubuntu";
|
font-family: 'Hubot Sans';
|
||||||
font-style: italic;
|
src:
|
||||||
font-weight: normal;
|
url('https://static.fosterhangdaan.com/fonts/hubot-sans/latest/Hubot-Sans.woff2') format('woff2 supports variations'),
|
||||||
src: url("https://static.fosterhangdaan.com/fonts/ubuntu/latest/Ubuntu-RegularItalic.ttf") format("truetype");
|
url('https://static.fosterhangdaan.com/fonts/hubot-sans/latest/Hubot-Sans.woff2') format('woff2-variations');
|
||||||
|
font-weight: 200 900;
|
||||||
|
font-stretch: 75% 125%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Ubuntu";
|
font-family: 'Monaspace Neon';
|
||||||
font-weight: bold;
|
src:
|
||||||
src: url("https://static.fosterhangdaan.com/fonts/ubuntu/latest/Ubuntu-Bold.ttf") format("truetype");
|
url('https://static.fosterhangdaan.com/fonts/monaspace/latest/MonaspaceNeon.woff2') format('woff2 supports variations'),
|
||||||
}
|
url('https://static.fosterhangdaan.com/fonts/monaspace/latest/MonaspaceNeon.woff2') format('woff2-variations');
|
||||||
|
font-weight: 200 800;
|
||||||
@font-face {
|
font-stretch: 100% 125%;
|
||||||
font-family: "CascadiaCode";
|
|
||||||
font-weight: normal;
|
|
||||||
src: url("https://static.fosterhangdaan.com/fonts/cascadia-code/latest/CascadiaMono-Regular.woff2") format("woff2");
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,6 +25,7 @@ :root {
|
||||||
--page--max-width: 48rem;
|
--page--max-width: 48rem;
|
||||||
|
|
||||||
/* Fonts */
|
/* Fonts */
|
||||||
--font--sans-serif: Ubuntu, Inter, -apple-system, BlinkMacSystemFont, sans-serif;
|
--font--sans-serif: "Mona Sans", Inter, -apple-system, BlinkMacSystemFont, sans-serif;
|
||||||
--font--mono: CascadiaCode, monospace;
|
--font--sans-serif-alt: "Hubot Sans", Inter, -apple-system, BlinkMacSystemFont, sans-serif;
|
||||||
|
--font--mono: "Monaspace Neon", monospace;
|
||||||
}
|
}
|
||||||
|
|
2
about.md
2
about.md
|
@ -11,4 +11,4 @@ ## Credits
|
||||||
|
|
||||||
- The icons are from [Tabler Icons](https://tabler-icons.io/) and [Simple Icons](https://simpleicons.org/).
|
- The icons are from [Tabler Icons](https://tabler-icons.io/) and [Simple Icons](https://simpleicons.org/).
|
||||||
- The colour palette of both the light theme and the dark theme is from [Tokyo Night](https://github.com/enkia/tokyo-night-vscode-theme).
|
- The colour palette of both the light theme and the dark theme is from [Tokyo Night](https://github.com/enkia/tokyo-night-vscode-theme).
|
||||||
- The sans-serif font is [Ubuntu](https://design.ubuntu.com/font). The monospace font is [Cascadia Code](https://github.com/microsoft/cascadia-code).
|
- The sans-serif fonts are [Mono Sans and Hubot Sans](https://github.com/mona-sans). The monospace font is [Monaspace](https://monaspace.githubnext.com).
|
||||||
|
|
Loading…
Reference in a new issue