forked from dwarvesf/df-frontend-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
69 lines (68 loc) · 1.52 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import type { Config } from 'tailwindcss';
const config: Config = {
darkMode: 'class',
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/**/*.{js,ts,jsx,tsx,mdx}',
'./app/_components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/_components/**/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
primary: {
'50': '#fef2f2',
'100': '#fce7e7',
'200': '#f9d2d5',
'300': '#f4adb3',
'400': '#ed7f8a',
'500': '#e15264',
'600': '#d2445d',
'700': '#ac243f',
'800': '#90213b',
'900': '#7c1f38',
'950': '#450c1a',
},
},
},
fontFamily: {
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',
],
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',
],
},
},
plugins: [],
safelist: [{ pattern: /^text-(red|green|blue|yellow)-800$/ }],
};
export default config;