22 lines
376 B
JavaScript
22 lines
376 B
JavaScript
export default {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#1a202c',
|
|
secondary: '#2d3748'
|
|
}
|
|
}
|
|
},
|
|
plugins: [require('@tailwindcss/typography'), require('daisyui')],
|
|
daisyui: {
|
|
styled: true,
|
|
themes: ['acid', 'night'],
|
|
base: true,
|
|
utils: true,
|
|
logs: true,
|
|
rtl: false,
|
|
prefix: '',
|
|
darkTheme: 'night'
|
|
}
|
|
};
|