22 lines
389 B
JavaScript
22 lines
389 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: [
|
|
require('daisyui'),
|
|
],
|
|
daisyui: {
|
|
themes: ["light", "dark", "dim", "nord"],
|
|
},
|
|
}
|