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

26 lines
541 B

module.exports = {
plugins: [
require('daisyui')
],
daisyui: {
themes: [
{
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'
}
}
]
}
}