This commit is contained in:
2025-03-16 00:10:11 +08:00
parent e7cf1c28b0
commit a14b206d25
84 changed files with 8752 additions and 0 deletions

49
src/fonts.css Normal file
View File

@@ -0,0 +1,49 @@
/* Font Family Utility Classes */
.font-melle {
font-family: 'MElleHK', sans-serif;
}
.font-noto-sans {
font-family: 'NotoSansCJKtc', sans-serif;
}
.font-noto-mono {
font-family: 'NotoSansMonoCJKtc', monospace;
}
.font-noto-serif {
font-family: 'NotoSerifCJKjp', serif;
}
/* Font Weight Utility Classes */
.font-thin {
font-weight: 100;
}
.font-light {
font-weight: 300;
}
.font-demi-light {
font-weight: 350;
}
.font-regular {
font-weight: 400;
}
.font-medium {
font-weight: 500;
}
.font-bold {
font-weight: 700;
}
.font-xbold {
font-weight: 800;
}
.font-black {
font-weight: 900;
}