-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
37 lines (35 loc) · 1.2 KB
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import type { Config } from 'tailwindcss';
import defaultTheme from 'tailwindcss/defaultTheme';
const sansFonts =
'ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", emoji';
export default {
content: ['./app/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
headline: ['var(--font-headline)', sansFonts],
sans: ['var(--font-main)', sansFonts],
mono: [
'var(--font-mono)',
'ui-monospace, SFMono-Regular, Monaco, Consolas, Menlo, "Liberation Mono", "Courier New", monospace, emoji',
],
serif: [...defaultTheme.fontFamily.serif, 'emoji'],
},
colors: {
background: 'var(--theme-background)',
secondary: 'var(--theme-secondary)',
tertiary: 'var(--theme-tertiary)',
quaternary: 'var(--theme-quaternary)',
highlight: 'var(--theme-highlight)',
stroke: 'var(--theme-stroke)',
blank: 'var(--theme-blank)',
},
screens: {
xs: '425px',
},
},
supports: {
dvh: 'height: 100dvh',
},
},
} satisfies Config;