38 lines
792 B
JavaScript
38 lines
792 B
JavaScript
const colors = require("tailwindcss/colors");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["content/**/*.md", "layouts/**/*.html", "assets/**/*.js"],
|
|
darkMode: "class",
|
|
theme: {
|
|
fontFamily: {
|
|
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: {
|
|
bold: 700,
|
|
semibold: 500,
|
|
},
|
|
extend: {
|
|
colors: {
|
|
gray: colors.zinc,
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|