1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-19 21:09:37 +02:00
AdventureLog/frontend/tailwind.config.js

63 lines
1.3 KiB
JavaScript
Raw Normal View History

2024-07-08 11:44:39 -04:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
plugins: [require('@tailwindcss/typography'), require('daisyui')],
daisyui: {
2024-07-09 17:04:18 -04:00
themes: [
'light',
'dark',
'night',
'retro',
'forest',
'aqua',
'emerald',
{
garden: {
primary: '#5a7c65',
'primary-focus': '#48604f',
'primary-content': '#dcd5d5',
secondary: '#a8cfd7',
'secondary-focus': '#5585aa',
'secondary-content': '#177a9b',
accent: '#c78e8e',
'accent-focus': '#b25757',
'accent-content': '#322020',
neutral: '#5c5757',
'neutral-focus': '#272525',
'neutral-content': '#e9e7e7',
'base-100': '#e9e7e7',
'base-200': '#d1cccc',
'base-300': '#b9b1b1',
'base-content': '#100f0f',
info: '#1c92f2',
success: '#009485',
warning: '#c8c21e',
error: '#ff5724',
'--rounded-box': '1rem',
'--rounded-btn': '.5rem',
'--rounded-badge': '1.9rem',
'--animation-btn': '.25s',
'--animation-input': '.2s',
'--btn-text-case': 'uppercase',
'--navbar-padding': '.5rem',
2024-07-10 08:22:18 -04:00
'--border-btn': '1px',
fontFamily:
'ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace'
2024-07-09 17:04:18 -04:00
}
}
]
2024-07-08 11:44:39 -04:00
}
};