homepage/tailwind.config.js
2022-08-24 10:44:35 +03:00

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")],
};