|
import colors from 'tailwindcss/colors'
|
|
console.log(colors)
|
|
export default {
|
|
content: [],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
...colors.rose,
|
|
DEFAULT: colors.rose[500]
|
|
},
|
|
secondary: {
|
|
...colors.amber,
|
|
DEFAULT: colors.amber[500]
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
],
|
|
}
|