2022-08-26 20:19:31 +02:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2022-10-03 21:23:17 +02:00
|
|
|
const tailwindConfig = {
|
2022-08-26 20:19:31 +02:00
|
|
|
content: [
|
2023-10-23 23:26:27 +02:00
|
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
2022-08-26 20:19:31 +02:00
|
|
|
],
|
2023-10-23 23:26:27 +02:00
|
|
|
darkMode: "class",
|
2022-08-26 20:19:31 +02:00
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
2023-10-23 23:26:27 +02:00
|
|
|
black: "#212121",
|
|
|
|
success: "#45C85A",
|
|
|
|
error: "#C84545",
|
|
|
|
},
|
|
|
|
},
|
2022-08-26 20:19:31 +02:00
|
|
|
},
|
2023-10-23 23:26:27 +02:00
|
|
|
plugins: [],
|
2022-08-26 20:19:31 +02:00
|
|
|
}
|
2022-10-03 21:23:17 +02:00
|
|
|
|
|
|
|
module.exports = tailwindConfig
|