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.
1 2const colors = require('tailwindcss/colors') 3 4module.exports = { 5 ... 6 theme: { 7 extend: { 8 colors: { 9 ...10 primary: colors.indigo,11 secondary: colors.gray,12 positive: colors.emerald,13 negative: colors.red,14 warning: colors.amber,15 info: colors.blue16 },17 },18 },19 ...20}