managarten/apps-archived/uload/apps/web/tailwind.config.js
Till JS 076e0c843d chore: restore archived apps (bauntown, news, reader, uload, wisekeep)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 01:08:51 +01:00

24 lines
638 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
darkMode: 'class',
theme: {
extend: {
colors: {
theme: {
primary: 'var(--theme-primary)',
'primary-hover': 'var(--theme-primary-hover)',
background: 'var(--theme-background)',
surface: 'var(--theme-surface)',
'surface-hover': 'var(--theme-surface-hover)',
text: 'var(--theme-text)',
'text-muted': 'var(--theme-text-muted)',
border: 'var(--theme-border)',
accent: 'var(--theme-accent)',
'accent-hover': 'var(--theme-accent-hover)',
},
},
},
},
plugins: [],
};