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: [
{
winter: {
"primary": "#0055ff",
"primary-content": "#cee1ff",
"secondary": "#009b3d",
"secondary-content": "#000901",
"accent": "#0095eb",
"accent-content": "#000813",
"neutral": "#191611",
"neutral-content": "#cbcac9",
"base-100": "#092531",
"base-200": "#071f29",
"base-300": "#051922",
"base-content": "#c9cfd2",
"info": "#0088f3",
"info-content": "#000614",
"success": "#4ddb71",
"success-content": "#021104",
"warning": "#ffbc2a",
"warning-content": "#160d01",
"error": "#e92d4e",
"error-content": "#130102",
},
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'
}
}
]
}
}