-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
59 lines (59 loc) · 1.45 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
colors: {
'background-primary': '#ffffff',
'background-secondary': '#f0f0f0',
'background-tertiary': '#f5f5f5',
'background-inv-primary': '#252525',
'border-primary': '#d4d4d4',
'border-secondary': '#eaeaea',
'brand-primary': '#ac004b',
'brand-secondary': '#79083a',
'brand-light-primary': '#fff3f3',
'text-primary': '#2a2a2a',
'text-secondary': '#4a4a4a',
'text-tertiary': '#9a9a9a',
'text-inv-primary': '#f0f0f0',
'status-error': '#e02a2a',
red: '#ff0000',
white: '#ffffff',
transparent: 'transparent'
},
fontFamily: {
primary: ['Open Sans', 'Noto Sans JP', 'sans-serif']
},
extend: {
spacing: {
1.625: '0.40625rem',
1.75: '0.4375rem',
4.5: '1.125rem',
6.5: '1.625rem',
7.5: '1.875rem',
11.5: '2.875rem',
27: '6.75rem',
37: '9.25rem',
50: '12.5rem',
58: '14.5rem',
62.5: '15.625rem',
82: '20.5rem',
78: '19.5rem',
90: '22.5rem',
120: '30rem',
172: '43rem',
200: '50rem'
},
borderRadius: {
15: '15px'
},
height: {
'header-offset': 'calc(100vh - 56px)'
},
maxWidth: {
'form-max': '600px'
}
}
},
plugins: []
}