-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathtailwind.config.cjs
49 lines (49 loc) · 1 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: '#0089FF',
'balck-text': '#0C1C33',
'sub-text': '#8E9AB0',
'gap-text': '#E8EAEF',
'error-text': '#FF381F',
},
padding: {
1.5: '0.375rem',
2.5: '0.625rem',
3.5: '0.875rem',
4.5: '1.125rem',
5.5: '1.375rem',
6.5: '1.625rem',
},
margin: {
2.5: '0.625rem',
3.5: '0.875rem',
4.5: '1.125rem',
5.5: '1.375rem',
6.5: '1.625rem',
},
borderWidth: {
DEFAULT: '1px',
0: '0',
2: '2px',
3: '3px',
4: '4px',
6: '6px',
8: '8px',
},
width: {
10.5: '2.625rem',
},
height: {
10.5: '2.625rem',
},
},
},
corePlugins: {
// preflight: false
},
plugins: [require('@tailwindcss/line-clamp')],
}