preciazo/sepa/sitio2/tailwind.config.ts

77 lines
2.2 KiB
TypeScript
Raw Permalink Normal View History

2024-09-14 14:46:24 +00:00
import { fontFamily } from 'tailwindcss/defaultTheme';
import type { Config } from 'tailwindcss';
import typography from '@tailwindcss/typography';
2024-09-14 13:34:36 +00:00
2024-09-14 13:36:39 +00:00
const config: Config = {
2024-09-14 14:46:24 +00:00
darkMode: ['class'],
content: ['./src/**/*.{html,js,svelte,ts}', '../node_modules/layerchart/**/*.{svelte,js}'],
2024-09-14 14:46:24 +00:00
safelist: ['dark'],
2024-09-14 13:34:36 +00:00
theme: {
2024-09-14 13:36:39 +00:00
container: {
center: true,
2024-09-14 14:46:24 +00:00
padding: '2rem',
2024-09-14 13:36:39 +00:00
screens: {
2024-09-14 14:46:24 +00:00
'2xl': '1400px'
2024-09-14 13:36:39 +00:00
}
},
extend: {
colors: {
2024-09-14 14:46:24 +00: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-09-14 13:36:39 +00:00
primary: {
2024-09-14 14:46:24 +00:00
DEFAULT: 'hsl(var(--primary) / <alpha-value>)',
foreground: 'hsl(var(--primary-foreground) / <alpha-value>)'
2024-09-14 13:36:39 +00:00
},
secondary: {
2024-09-14 14:46:24 +00:00
DEFAULT: 'hsl(var(--secondary) / <alpha-value>)',
foreground: 'hsl(var(--secondary-foreground) / <alpha-value>)'
2024-09-14 13:36:39 +00:00
},
destructive: {
2024-09-14 14:46:24 +00:00
DEFAULT: 'hsl(var(--destructive) / <alpha-value>)',
foreground: 'hsl(var(--destructive-foreground) / <alpha-value>)'
2024-09-14 13:36:39 +00:00
},
muted: {
2024-09-14 14:46:24 +00:00
DEFAULT: 'hsl(var(--muted) / <alpha-value>)',
foreground: 'hsl(var(--muted-foreground) / <alpha-value>)'
2024-09-14 13:36:39 +00:00
},
accent: {
2024-09-14 14:46:24 +00:00
DEFAULT: 'hsl(var(--accent) / <alpha-value>)',
foreground: 'hsl(var(--accent-foreground) / <alpha-value>)'
2024-09-14 13:36:39 +00:00
},
popover: {
2024-09-14 14:46:24 +00:00
DEFAULT: 'hsl(var(--popover) / <alpha-value>)',
foreground: 'hsl(var(--popover-foreground) / <alpha-value>)'
2024-09-14 13:36:39 +00:00
},
card: {
2024-09-14 14:46:24 +00:00
DEFAULT: 'hsl(var(--card) / <alpha-value>)',
foreground: 'hsl(var(--card-foreground) / <alpha-value>)'
},
surface: {
content: 'hsl(var(--card-foreground) / <alpha-value>)',
100: 'hsl(var(--background) / <alpha-value>)',
200: 'hsl(var(---muted) / <alpha-value>)',
// not sure what color maps here (should be darker than 200). Could add a new color to `app.css`
300: 'hsl(var(--background) / <alpha-value>)'
2024-09-14 13:36:39 +00:00
}
},
borderRadius: {
2024-09-14 14:46:24 +00:00
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)'
2024-09-14 13:36:39 +00:00
},
fontFamily: {
sans: [...fontFamily.sans]
}
}
2024-09-14 13:34:36 +00:00
},
2024-09-14 14:46:24 +00:00
plugins: [
typography
// ...
]
2024-09-14 13:36:39 +00:00
};
2024-09-14 13:34:36 +00:00
2024-09-14 13:36:39 +00:00
export default config;