mirror of
https://github.com/seriousm4x/UpSnap.git
synced 2026-06-09 16:42:29 -04:00
79 lines
1.4 KiB
JavaScript
79 lines
1.4 KiB
JavaScript
import themes from 'daisyui/src/theming/themes';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}', './node_modules/daisyui/**/*.{js,jsx,ts,tsx}'],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [require('daisyui')],
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
light: {
|
|
...themes['light'],
|
|
primary: '#55BCD9',
|
|
secondary: '#D4A35C',
|
|
'primary-content': '#ffffff'
|
|
},
|
|
dark: {
|
|
...themes['dark'],
|
|
primary: '#55BCD9',
|
|
secondary: '#D4A35C',
|
|
'base-300': '#12161b',
|
|
'--rounded-btn': '1.9rem',
|
|
'--tab-border': '2px',
|
|
'--tab-radius': '.5rem'
|
|
},
|
|
cupcake: {
|
|
...themes['cupcake'],
|
|
primary: '#55BCD9',
|
|
secondary: '#D4A35C',
|
|
'primary-content': '#ffffff'
|
|
},
|
|
colorful: {
|
|
...themes['light'],
|
|
primary: '#00bdf8',
|
|
secondary: '#009aff',
|
|
accent: '#00b3a2',
|
|
neutral: '#161200',
|
|
'base-100': '#ffffff',
|
|
info: '#00c5dc',
|
|
success: '#00d892',
|
|
warning: '#f77800',
|
|
error: '#f36165'
|
|
},
|
|
},
|
|
'bumblebee',
|
|
'emerald',
|
|
'corporate',
|
|
'synthwave',
|
|
'retro',
|
|
'cyberpunk',
|
|
'valentine',
|
|
'halloween',
|
|
'garden',
|
|
'forest',
|
|
'aqua',
|
|
'lofi',
|
|
'pastel',
|
|
'fantasy',
|
|
'wireframe',
|
|
'black',
|
|
'luxury',
|
|
'dracula',
|
|
'cmyk',
|
|
'autumn',
|
|
'business',
|
|
'acid',
|
|
'lemonade',
|
|
'night',
|
|
'coffee',
|
|
'winter',
|
|
'dim',
|
|
'nord',
|
|
'sunset'
|
|
]
|
|
}
|
|
};
|