Add fallback font
This commit is contained in:
parent
85e00cc094
commit
476fd85180
1 changed files with 19 additions and 1 deletions
|
@ -1,9 +1,27 @@
|
||||||
|
const colors = require("tailwindcss/");
|
||||||
|
|
||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
module.exports = {
|
module.exports = {
|
||||||
content: ["content/**/*.md", "layouts/**/*.html"],
|
content: ["content/**/*.md", "layouts/**/*.html"],
|
||||||
theme: {
|
theme: {
|
||||||
fontFamily: {
|
fontFamily: {
|
||||||
main: "Spline Sans",
|
main: [
|
||||||
|
"Spline Sans",
|
||||||
|
"ui-sans-serif",
|
||||||
|
"system-ui",
|
||||||
|
"-apple-system",
|
||||||
|
"BlinkMacSystemFont",
|
||||||
|
'"Segoe UI"',
|
||||||
|
"Roboto",
|
||||||
|
'"Helvetica Neue"',
|
||||||
|
"Arial",
|
||||||
|
'"Noto Sans"',
|
||||||
|
"sans-serif",
|
||||||
|
'"Apple Color Emoji"',
|
||||||
|
'"Segoe UI Emoji"',
|
||||||
|
'"Segoe UI Symbol"',
|
||||||
|
'"Noto Color Emoji"',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
fontWeight: {
|
fontWeight: {
|
||||||
bold: 700,
|
bold: 700,
|
||||||
|
|
Loading…
Reference in a new issue