-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
43 lines (42 loc) · 936 Bytes
/
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
38
39
40
41
42
43
import headlessui from '@headlessui/tailwindcss'
import typography from '@tailwindcss/typography'
import type { Config } from 'tailwindcss'
const config: Config = {
content: ['./app/**/*.{js,ts,jsx,tsx,mdx}'],
darkMode: 'class',
theme: {
extend: {
screens: {
xs: '480px',
},
fontFamily: {
sans: [
'var(--sans)',
'-apple-system',
'Segoe UI',
'Roboto',
'Noto Sans',
'Ubuntu',
'Cantarell',
'Helvetica Neue',
'sans-serif',
],
serif: ['var(--serif)', 'serif'],
},
colors: {
navyblue: {
0: '#00395d',
},
emeraldgreen: {
0: '#00b156',
1: '#00843d',
},
basegray: {
0: '#ededed',
},
},
},
},
plugins: [headlessui as any, typography({ target: 'modern' })],
}
export default config