Files
pocket-id/frontend/tailwind.config.ts

66 lines
1.8 KiB
TypeScript
Raw Normal View History

2025-01-19 15:41:16 +01:00
import { fontFamily } from 'tailwindcss/defaultTheme';
import type { Config } from 'tailwindcss';
2024-08-12 11:00:25 +02:00
const config: Config = {
2025-01-19 15:41:16 +01:00
darkMode: ['class'],
content: ['./src/**/*.{html,js,svelte,ts}'],
safelist: ['dark'],
2024-08-12 11:00:25 +02:00
theme: {
container: {
center: true,
2025-01-19 15:41:16 +01:00
padding: '2rem',
2024-08-12 11:00:25 +02:00
screens: {
2025-01-19 15:41:16 +01:00
'2xl': '1400px'
2024-08-12 11:00:25 +02:00
}
},
extend: {
colors: {
2025-01-19 15:41:16 +01:00
border: 'hsl(var(--border) / <alpha-value>)',
input: 'hsl(var(--input) / <alpha-value>)',
ring: 'hsl(var(--ring) / <alpha-value>)',
background: 'hsl(var(--background) / <alpha-value>)',
foreground: 'hsl(var(--foreground) / <alpha-value>)',
2024-08-12 11:00:25 +02:00
primary: {
2025-01-19 15:41:16 +01:00
DEFAULT: 'hsl(var(--primary) / <alpha-value>)',
foreground: 'hsl(var(--primary-foreground) / <alpha-value>)'
2024-08-12 11:00:25 +02:00
},
secondary: {
2025-01-19 15:41:16 +01:00
DEFAULT: 'hsl(var(--secondary) / <alpha-value>)',
foreground: 'hsl(var(--secondary-foreground) / <alpha-value>)'
2024-08-12 11:00:25 +02:00
},
destructive: {
2025-01-19 15:41:16 +01:00
DEFAULT: 'hsl(var(--destructive) / <alpha-value>)',
foreground: 'hsl(var(--destructive-foreground) / <alpha-value>)'
2024-08-12 11:00:25 +02:00
},
muted: {
2025-01-19 15:41:16 +01:00
DEFAULT: 'hsl(var(--muted) / <alpha-value>)',
foreground: 'hsl(var(--muted-foreground) / <alpha-value>)'
2024-08-12 11:00:25 +02:00
},
accent: {
2025-01-19 15:41:16 +01:00
DEFAULT: 'hsl(var(--accent) / <alpha-value>)',
foreground: 'hsl(var(--accent-foreground) / <alpha-value>)'
2024-08-12 11:00:25 +02:00
},
popover: {
2025-01-19 15:41:16 +01:00
DEFAULT: 'hsl(var(--popover) / <alpha-value>)',
foreground: 'hsl(var(--popover-foreground) / <alpha-value>)'
2024-08-12 11:00:25 +02:00
},
card: {
2025-01-19 15:41:16 +01:00
DEFAULT: 'hsl(var(--card) / <alpha-value>)',
foreground: 'hsl(var(--card-foreground) / <alpha-value>)'
2024-08-12 11:00:25 +02:00
}
},
borderRadius: {
2025-01-19 15:41:16 +01:00
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)'
2024-08-12 11:00:25 +02:00
},
fontFamily: {
sans: [...fontFamily.sans],
2025-01-19 15:41:16 +01:00
playfair: ['Playfair Display', ...fontFamily.serif]
2024-08-12 11:00:25 +02:00
}
}
2025-01-19 15:41:16 +01:00
}
2024-08-12 11:00:25 +02:00
};
export default config;