mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +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")],
|
|
};
|