35 lines
722 B
JavaScript
35 lines
722 B
JavaScript
const colors = require("tailwindcss/");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["content/**/*.md", "layouts/**/*.html", "assets/**/*.js"],
|
|
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: {
|
|
//
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|