2023-07-12 04:52:58 +02:00
|
|
|
module.exports = {
|
|
|
|
// Safelisting some classes to avoid content purge
|
2023-07-23 22:09:51 +02:00
|
|
|
plugins: [require('daisyui')],
|
2024-02-17 03:59:19 +01:00
|
|
|
safelist: [
|
|
|
|
'safelisted',
|
|
|
|
'bg-primary',
|
|
|
|
'bg-secondary',
|
|
|
|
'bg-accent',
|
|
|
|
'bg-neutral',
|
|
|
|
'bg-base-100',
|
|
|
|
'bg-base-200',
|
|
|
|
'bg-base-300',
|
|
|
|
'bg-base-content',
|
|
|
|
'bg-info',
|
|
|
|
'bg-success',
|
|
|
|
'bg-warning',
|
|
|
|
'bg-error',
|
|
|
|
],
|
2023-07-23 22:09:51 +02:00
|
|
|
daisyui: {
|
2024-02-21 14:58:15 +01:00
|
|
|
themes: [
|
|
|
|
...Object.keys(require('daisyui/src/theming/themes')),
|
|
|
|
{
|
|
|
|
legacy: {
|
|
|
|
primary: '#2980b9',
|
2024-02-24 01:54:18 +01:00
|
|
|
secondary: '#30333b',
|
|
|
|
accent: '#7028b8',
|
2024-02-21 14:58:15 +01:00
|
|
|
neutral: '#999',
|
|
|
|
info: '#2980b9',
|
|
|
|
success: '#27ae60',
|
|
|
|
warning: '#e67e22',
|
|
|
|
error: '#c0392b',
|
|
|
|
'base-100': '#41444f',
|
|
|
|
'base-200': '#999',
|
|
|
|
'base-300': '#30333b',
|
|
|
|
'base-content': '#fff',
|
|
|
|
'primary-content': '#fff',
|
|
|
|
'secondary-content': '#fff',
|
|
|
|
'accent-content': '#fff',
|
|
|
|
'neutral-content': '#fff',
|
|
|
|
'info-content': '#fff',
|
|
|
|
'success-content': '#fff',
|
|
|
|
'warning-content': '#fff',
|
|
|
|
'error-content': '#fff',
|
|
|
|
'--rounded-box': '0rem',
|
|
|
|
'--rounded-btn': '0rem',
|
|
|
|
},
|
2024-02-24 01:54:18 +01:00
|
|
|
admin: {
|
|
|
|
primary: '#53a5fb',
|
|
|
|
secondary: '#20cb98',
|
|
|
|
accent: '#b957ea',
|
|
|
|
neutral: '#EDEDED',
|
|
|
|
info: '#79e7f9',
|
|
|
|
success: '#70ea8d',
|
|
|
|
warning: '#ffd452',
|
|
|
|
error: '#ff5a5a',
|
|
|
|
'base-100': '#202020',
|
|
|
|
'base-200': '#3C3C3C',
|
|
|
|
'base-300': '#303030',
|
|
|
|
'base-content': '#fafafa',
|
|
|
|
'primary-content': '#000',
|
|
|
|
'secondary-content': '#000',
|
|
|
|
'accent-content': '#000',
|
|
|
|
'neutral-content': '#000',
|
|
|
|
'info-content': '#000',
|
|
|
|
'success-content': '#000',
|
|
|
|
'warning-content': '#000',
|
|
|
|
'error-content': '#000',
|
|
|
|
'--rounded-box': '0.1875rem',
|
|
|
|
'--rounded-btn': '0.1875rem',
|
|
|
|
'--border-btn': '1px',
|
|
|
|
},
|
2024-02-21 14:58:15 +01:00
|
|
|
},
|
|
|
|
],
|
2023-07-25 22:22:59 +02:00
|
|
|
},
|
2023-07-12 04:52:58 +02:00
|
|
|
}
|