Colors Customization
You can customize the default colors for all WireUI components: Notifications, dialogs, inputs, selects, buttons...
You just need to extend Tailwind Colors setting in tailwind.config.js adding the preferred ones.
1const colors = require('tailwindcss/colors') 2 3module.exports = { 4 ... 5 theme: { 6 extend: { 7 colors: { 8 ... 9 primary: colors.indigo,10 secondary: colors.gray,11 positive: colors.emerald,12 negative: colors.red,13 warning: colors.amber,14 info: colors.blue15 },16 },17 },18 ...19}