fuware-be/frontend/tailwind.config.js

42 lines
861 B
JavaScript

import daisyui from 'daisyui'
import themes from 'daisyui/src/theming/themes'
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{js,jsx}'],
theme: {
extend: {
screens: {
xs: '400px',
},
colors: {
fu: {
white: '#fff',
black: '#212121',
primary: '#03c9d7',
green: '#05b187',
orange: '#fb9678',
warning: '#fbc66c',
yellow: '#fec90f',
},
},
},
},
plugins: [daisyui],
daisyui: {
themes: [
{
light: {
...themes['light'],
primary: '#03c9d7',
'primary-content': '#ffffff',
secondary: '#fb9678',
'secondary-content': '#ffffff',
neutral: '#03c9d7',
'neutral-content': '#ffffff',
},
},
],
},
}