mirror of
https://github.com/benphelps/homepage.git
synced 2025-11-01 11:06:11 +01:00
17 lines
343 B
JavaScript
17 lines
343 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
module.exports = {
|
||
|
|
darkMode: "class",
|
||
|
|
content: [
|
||
|
|
"./src/pages/**/*.{js,ts,jsx,tsx}",
|
||
|
|
"./src/components/**/*.{js,ts,jsx,tsx}",
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: ({ colors }) => ({
|
||
|
|
theme: colors.slate,
|
||
|
|
}),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [require("@tailwindcss/forms")],
|
||
|
|
};
|