forked from virzs/Search-Next
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) · 992 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
39 lines (39 loc) · 992 Bytes
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
module.exports = {
content: ['./src/**/*.html', './src/**/*.tsx'],
important: true,
theme: {
extend: {
colors: {
primary: 'rgba(95, 95, 95, 1)',
secondary: 'rgba(250, 250, 250, 1)',
rgba: {
gray: {
3: 'rgba(229, 229, 229, 0.3)',
},
},
gray: {
60: '#F0F3F9',
70: 'F3F3F3',
150: '#EAEAEA',
},
var: {
'main-1': 'var(--main-text-color-opacity-2, rgba(95, 95, 95, 0.1))',
'main-2': 'var(--main-text-color-opacity-2, rgba(95, 95, 95, 0.2))',
'main-7': 'var(--main-text-color-opacity-7, rgba(95, 95, 95, 0.7))',
'main-10': 'var(--main-text-color, rgb(95, 95, 95))',
},
},
lineHeight: {},
width: {
100: '25rem',
},
height: {
25: '6.25rem',
},
margin: {
'-0.75': '-0.1875rem',
},
},
},
plugins: ['./index.html', './src/**/*.{ts,tsx}'],
};