2024-10-19 04:08:17 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2024-10-26 07:27:02 +00:00
|
|
|
const { fontFamily } = require("tailwindcss/defaultTheme");
|
2024-10-19 04:19:28 +00:00
|
|
|
|
2024-10-19 04:08:17 +00:00
|
|
|
module.exports = {
|
2024-10-26 07:27:02 +00:00
|
|
|
content: ["./src/**/*.{html,js}", "./index.html"],
|
2024-10-19 04:08:17 +00:00
|
|
|
theme: {
|
2024-10-19 04:19:28 +00:00
|
|
|
fontFamily: {
|
2024-10-26 07:27:02 +00:00
|
|
|
mono: ['"Fira Code"', ...fontFamily.mono],
|
2024-10-19 04:19:28 +00:00
|
|
|
},
|
2024-10-19 04:08:17 +00:00
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
2024-10-19 04:19:28 +00:00
|
|
|
};
|