-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
66 lines (65 loc) · 1.39 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{ts,tsx}"],
theme: {
fontFamily: {
'sans': ['Nunito', 'ui-sans-serif', 'system-ui'],
},
extend: {
colors: {
'aci-orange': '#FCA311',
'aci-orange-dark': '#C57E0A',
'aci-yellow': '#E7B416',
'aci-yellow-dark': '#C1960F',
'aci-green': '#99C140',
'aci-green-dark': '#6F9815',
'aci-red': '#CC3232',
'aci-red-dark': '#AC2F2F',
'aci-blue': '#428ADE',
'aci-blue-dark': '#14213D',
},
fontSize: {
'banner': '57px',
'section-title': '45px',
'title': '36px',
'text': '22px',
'detail': '16px'
},
spacing: {
'banner': '57px',
'section-title': '45px',
'title': '36px',
'text': '22px',
'detail': '16px'
},
screens: {
'xs': '360px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
rotate: {
'270': '270deg',
},
},
},
plugins: [],
safelist: [
'text-4xl',
'text-2xl',
'text-xl',
'text-base',
'text-black',
'text-white',
'text-red-600',
'text-green-600',
'text-blue-600',
'text-yellow-600',
'text-gray-400',
'text-aci-orange',
'font-bold',
'shadow-md',
]
}