You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/tailwind.config.js

48 lines
1.0 KiB

module.exports = {
plugins: [
require('daisyui')
],
daisyui: {
themes: [
{
sigma9: {
"primary": "#005fff",
"primary-content": "#cfe2ff",
"secondary": "#c0a400",
"secondary-content": "#0e0a00",
"accent": "#00795a",
"accent-content": "#d2e3dc",
"neutral": "#242424",
"neutral-content": "#cecece",
"base-100": "#f5ffeb",
"base-200": "#c5cecc",
"base-300": "#b6beae",
"base-content": "#151613",
"info": "#00e2ff",
"info-content": "#001216",
"success": "#00e374",
"success-content": "#001205",
"warning": "#eb9600",
"warning-content": "#130800",
"error": "#cf0000",
"error-content": "#fdd6d0",
},
docuseal: {
'color-scheme': 'light',
primary: '#e4e0e1',
secondary: '#ef9fbc',
accent: '#eeaf3a',
neutral: '#291334',
'base-100': '#faf7f5',
'base-200': '#efeae6',
'base-300': '#e7e2df',
'base-content': '#291334',
'--rounded-btn': '1.9rem',
'--tab-border': '2px',
'--tab-radius': '.5rem'
}
}
]
}
}