2023-09-24 16:33:14 +02:00
|
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
|
|
|
2023-09-20 20:52:40 +02:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2023-10-01 10:04:04 +02:00
|
|
|
content: [
|
|
|
|
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
|
|
|
|
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}"
|
|
|
|
],
|
2023-09-20 20:52:40 +02:00
|
|
|
theme: {
|
2023-09-24 16:33:14 +02:00
|
|
|
extend: {
|
2023-10-01 10:04:04 +02:00
|
|
|
colors: {
|
|
|
|
// flowbite-svelte
|
|
|
|
primary: { 50: '#FFF5F2', 100: '#FFF1EE', 200: '#FFE4DE', 300: '#FFD5CC', 400: '#FFBCAD', 500: '#FE795D', 600: '#EF562F', 700: '#EB4F27', 800: '#CC4522', 900: '#A5371B'},
|
|
|
|
}
|
2023-09-24 16:33:14 +02:00
|
|
|
},
|
2023-09-20 20:52:40 +02:00
|
|
|
},
|
2023-10-01 10:04:04 +02:00
|
|
|
plugins: [
|
|
|
|
require('flowbite/plugin')
|
|
|
|
],
|
2023-09-20 20:52:40 +02:00
|
|
|
}
|