Files
the-other-dude/frontend/tailwind.config.ts
Jason Staack b840047e19 feat: The Other Dude v9.0.1 — full-featured email system
ci: add GitHub Pages deployment workflow for docs site

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-08 19:30:44 -05:00

94 lines
2.9 KiB
TypeScript

import type { Config } from 'tailwindcss'
const config: Config = {
darkMode: 'class',
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
background: 'hsl(var(--background))',
foreground: 'hsl(var(--foreground))',
surface: 'hsl(var(--surface))',
elevated: 'hsl(var(--elevated))',
border: 'hsl(var(--border))',
'border-bright': 'hsl(var(--border-bright))',
'text-primary': 'hsl(var(--text-primary))',
'text-secondary': 'hsl(var(--text-secondary))',
'text-muted': 'hsl(var(--text-muted))',
accent: {
DEFAULT: 'hsl(var(--accent))',
hover: 'hsl(var(--accent-hover))',
muted: 'hsl(var(--accent-muted))',
},
card: {
DEFAULT: 'hsl(var(--card))',
foreground: 'hsl(var(--card-foreground))',
},
popover: {
DEFAULT: 'hsl(var(--popover))',
foreground: 'hsl(var(--popover-foreground))',
},
primary: {
DEFAULT: 'hsl(var(--primary))',
foreground: 'hsl(var(--primary-foreground))',
},
secondary: {
DEFAULT: 'hsl(var(--secondary))',
foreground: 'hsl(var(--secondary-foreground))',
},
muted: {
DEFAULT: 'hsl(var(--muted))',
foreground: 'hsl(var(--muted-foreground))',
},
destructive: {
DEFAULT: 'hsl(var(--destructive))',
foreground: 'hsl(var(--text-primary))',
},
input: 'hsl(var(--input))',
ring: 'hsl(var(--ring))',
sidebar: 'hsl(var(--sidebar))',
online: 'hsl(var(--online))',
offline: 'hsl(var(--offline))',
unknown: 'hsl(var(--unknown))',
success: 'hsl(var(--success))',
warning: 'hsl(var(--warning))',
error: 'hsl(var(--error))',
info: 'hsl(var(--info))',
'chart-1': 'hsl(var(--chart-1))',
'chart-2': 'hsl(var(--chart-2))',
'chart-3': 'hsl(var(--chart-3))',
'chart-4': 'hsl(var(--chart-4))',
'chart-5': 'hsl(var(--chart-5))',
'chart-6': 'hsl(var(--chart-6))',
},
fontFamily: {
sans: ['Geist', 'Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'sans-serif'],
mono: ['Geist Mono', 'ui-monospace', 'SFMono-Regular', 'monospace'],
},
animation: {
shimmer: 'shimmer 1.5s ease-in-out infinite',
},
backgroundImage: {
shimmer:
'linear-gradient(90deg, transparent 0%, hsl(var(--elevated)) 20%, hsl(var(--surface)) 50%, hsl(var(--elevated)) 80%, transparent 100%)',
},
backgroundSize: {
shimmer: '200% 100%',
},
borderRadius: {
sm: '0.25rem',
DEFAULT: 'var(--radius)',
md: 'var(--radius)',
lg: '0.5rem',
xl: '0.75rem',
},
},
},
plugins: [],
}
export default config