-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (50 loc) · 1 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
module.exports = {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
light: {
1: 'rgba(255,255,255,1)',
2: 'rgba(244,244,244,1)',
3: 'rgba(170,170,170,1)',
},
dark: {
1: 'rgba(66,66,66,1)',
2: 'rgba(40,40,40,1)',
3: 'rgba(18,18,18,1)',
},
blue: {
1: 'rgba(37,128,235,1)',
2: 'rgba(22,35,51,1)',
},
red: 'rgba(225,92,92,1)',
},
borderWidth: {
'3': '3px',
},
spacing: {
18: '4.5rem',
22: '5.5rem',
},
minWidth: {
56: '224px',
},
fontFamily: {
manrope: ['Manrope', 'sans-serif'],
gilroy: ['Gilroy', 'sans-serif'],
},
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
lg: '2rem',
},
},
},
variants: {
extend: {},
},
plugins: [],
}