2022-10-24 03:43:56 +02:00
|
|
|
const colors = require("tailwindcss/colors");
|
2022-10-21 14:28:48 +02:00
|
|
|
|
2022-10-20 19:51:21 +02:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2022-10-24 00:40:58 +02:00
|
|
|
content: ["content/**/*.md", "layouts/**/*.html", "assets/**/*.js"],
|
2022-10-24 03:43:56 +02:00
|
|
|
darkMode: "class",
|
2022-10-20 19:51:21 +02:00
|
|
|
theme: {
|
2022-10-20 23:26:03 +02:00
|
|
|
fontFamily: {
|
2022-10-21 14:28:48 +02:00
|
|
|
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"',
|
|
|
|
],
|
2022-10-20 23:26:03 +02:00
|
|
|
},
|
|
|
|
fontWeight: {
|
|
|
|
bold: 700,
|
2022-10-21 12:44:56 +02:00
|
|
|
semibold: 500,
|
2022-10-20 23:26:03 +02:00
|
|
|
},
|
|
|
|
extend: {
|
2022-10-24 03:43:56 +02:00
|
|
|
colors: {
|
|
|
|
gray: colors.zinc,
|
|
|
|
},
|
2022-10-20 23:26:03 +02:00
|
|
|
},
|
2022-10-20 19:51:21 +02:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|