wails-template/frontend/tailwind.config.ts

31 lines
664 B
TypeScript
Raw Normal View History

2025-02-03 16:09:45 +01:00
import type { Config } from "tailwindcss";
2025-02-03 18:20:51 +01:00
import flowbitePlugin from 'flowbite/plugin'
2025-02-03 16:09:45 +01:00
export default {
2025-02-03 18:20:51 +01:00
content: [
"./src/**/*.{html,js,svelte,ts}",
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
],
darkMode: 'selector',
2025-02-03 16:09:45 +01:00
theme: {
2025-02-03 18:20:51 +01:00
extend: {
colors: {
// flowbite-svelte
primary: {
50: '#FFF5F2',
100: '#FFF1EE',
200: '#FFE4DE',
300: '#FFD5CC',
400: '#FFBCAD',
500: '#FE795D',
600: '#EF562F',
700: '#EB4F27',
800: '#CC4522',
900: '#A5371B'
}
}
}
2025-02-03 16:09:45 +01:00
},
2025-02-03 18:20:51 +01:00
plugins: [flowbitePlugin]
2025-02-03 16:09:45 +01:00
} as Config;