1
0
Fork 0
esix-client/tailwind.config.cjs

10 lines
212 B
JavaScript
Raw Normal View History

2024-03-17 01:46:07 +00:00
/** @type {import('tailwindcss').Config} */
export default {
2024-10-23 21:25:31 +00:00
content: ['./src/**/*.{html,js,svelte,ts}'],
2024-10-23 22:22:49 +00:00
safelist: ['accent-yellow-500', 'accent-yellow-50'],
2024-03-17 01:46:07 +00:00
theme: {
2024-10-23 21:25:31 +00:00
extend: {}
2024-03-17 01:46:07 +00:00
},
2024-10-23 22:22:49 +00:00
plugins: [],
2024-10-23 21:25:31 +00:00
};