53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import typography from '@tailwindcss/typography';
|
|
import type { Config } from 'tailwindcss';
|
|
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
safelist: [
|
|
'w-64',
|
|
'w-1/2',
|
|
'rounded-l-lg',
|
|
'rounded-r-lg',
|
|
'bg-gray-200',
|
|
'grid-cols-4',
|
|
'grid-cols-7',
|
|
'h-6',
|
|
'leading-6',
|
|
'h-9',
|
|
'leading-9',
|
|
'shadow-lg'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
'sans': ['Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'system-ui', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'],
|
|
'body': ['Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'system-ui', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'],
|
|
'mono': ['ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace']
|
|
},
|
|
transitionProperty: {
|
|
'width': 'width'
|
|
},
|
|
minWidth: {
|
|
'20': '20rem'
|
|
},
|
|
colors: {
|
|
cyan: {
|
|
50: '#ECFEFF',
|
|
100: '#CFFAFE',
|
|
200: '#A5F3FC',
|
|
300: '#67E8F9',
|
|
400: '#22D3EE',
|
|
500: '#06B6D4',
|
|
600: '#0891B2',
|
|
700: '#0E7490',
|
|
800: '#155E75',
|
|
900: '#164E63'
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
plugins: [typography]
|
|
} satisfies Config;
|