Files
AIRegulation-DocAnalysis/frontend/tailwind.config.js

34 lines
902 B
JavaScript
Raw Permalink Normal View History

2026-05-14 15:07:34 +08:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: ['selector', '[data-theme="dark"]'],
2026-05-14 15:07:34 +08:00
theme: {
extend: {
colors: {
't-bg': 'var(--bg)',
't-surface': 'var(--surface)',
't-fg': 'var(--fg)',
't-muted': 'var(--muted)',
't-border': 'var(--border)',
2026-05-14 15:07:34 +08:00
't-accent': '#e20074',
't-accent-hover': '#c8006a',
't-success': 'var(--success)',
't-warn': 'var(--warn)',
't-danger': 'var(--danger)',
2026-05-14 15:07:34 +08:00
},
fontFamily: {
'display': ['TeleNeoWeb-Bold', 'Inter', 'sans-serif'],
'body': ['TeleNeoWeb-Regular', 'Inter', 'sans-serif'],
'mono': ['ui-monospace', 'JetBrains Mono', 'Menlo', 'monospace'],
2026-05-14 15:07:34 +08:00
},
boxShadow: {
'card': 'var(--shadow-card)',
2026-05-14 15:07:34 +08:00
},
},
},
plugins: [],
}