-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
104 lines (103 loc) · 2.74 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}'
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
animation: {
fadeIn: 'fadeIn 1s ease-in forwards'
},
colors: {
'light-black': '#353535',
'custom-green': '#00FF19',
'custom-gray': {
light: '#DBDBDB',
'button-border': '#D4D4D4',
'indicator-dot': '#7D7D7D',
'spinner-background': 'rgba(43, 43, 43, 0.3)',
DEFAULT: '#666666',
'header-border': 'rgba(150, 150, 150, 0.5)'
},
'custom-pink': '#BD8FA1'
},
fontFamily: {
sans: ['RobotoRegular', 'RobotoThin', ...defaultTheme.fontFamily.sans]
},
backgroundImage: {
background: "url('/assets/common/background.png')",
'blue-background': "url('/assets/common/blue-background.png')",
'red-background': "url('/assets/common/red-background.png')",
'start-background': "url('/assets/common/start-background.png')",
'result-background': "url('/assets/result/result-background.png')",
'statement-background':
"url('/assets/statement/statement-background.png')"
},
borderWidth: {
'1/2': '.5px',
6: '0.375rem'
},
fontSize: {
'1.5xl': '1.375rem',
'3.5xl': '2rem',
'4.5xl': '2.5rem'
},
spacing: {
18: '4.5rem',
30: '7.5rem',
40: '11rem',
57: '14.25rem',
86: '22rem',
90: '25rem',
99: '29.625rem',
100: '30rem',
108: '32rem',
110: '34.5rem',
115: '42.5625rem',
120: '45.0625rem',
121: '46.0625rem',
122: '47.25rem',
124: '52.0625rem',
125: '57rem',
127: '60.5625rem',
130: '65rem',
140: '77.125rem'
},
letterSpacing: {
xlwidest: '.2rem',
'2xlwidest': '.5rem'
},
lineHeight: {
11: '2.8125rem',
12: '3rem',
13: '3.438rem',
14: '4rem'
},
height: (_theme) => ({
'.85*screen': '85vh',
'.9*screen': '90vh',
'1.1*screen': '110vh',
'1.25*screen': '125vh',
'1.5*screen': '150vh',
'1.75*screen': '175vh',
'2*screen': '200vh',
'2.25*screen': '225vh'
}),
screens: {
'3xl': '2000px'
}
}
},
variants: {
backgroundColor: ['active', 'focus'],
textColor: ['active', 'focus'],
animation: ['motion-safe'],
extend: {
display: ['hover', 'focus', 'group-hover']
}
}
// plugins: [require('@tailwindcss/forms')]
};