20 lines
635 B
JavaScript
20 lines
635 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html", "./src/**/*.{rs,html}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
gray: {
|
|
900: '#111827',
|
|
800: '#1f2937',
|
|
700: '#374151',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
daisyui: {
|
|
themes: ["dark", "light", "cupcake", "bumblebee", "emerald", "corporate", "synthwave", "retro", "cyberpunk", "valentine", "halloween", "garden", "forest", "aqua", "lofi", "pastel", "fantasy", "wireframe", "black", "luxury", "dracula", "cmyk", "autumn", "business", "acid", "lemonade", "night", "coffee", "winter"],
|
|
},
|
|
}
|