-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
76 lines (66 loc) · 1.25 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
screens: {
'xs': {
max: '380px'
},
'sm': {
max: '640px'
},
'lg': {
max: '768px'
},
'm': {
max: '1050px'
},
'xl': {
max: '1280px'
},
'3xl': {
min: '1750px'
}
},
extend: {
colors: {
main: '#8A84E2',
secondary: '#FFCF56',
'dark-gray': '#181616',
'soft-black': '#100E0E'
},
minWidth: {
'1': '100px',
'1.5': '150px',
'2': '200px',
'2.5': '250px',
'3': '300px',
'3.5': '350px',
'4': '400px',
'4.5': '450px',
'5': '500px',
'5.5': '550px',
'6': '600px',
'6.5': '650px',
'7': '700px',
'7.5': '750px',
'8': '800px',
},
minHeight: {
'1': '100px',
'2': '200px',
'3': '300px',
'3.5': '350px',
'4': '400px',
'4.5': '450px',
'5': '500px',
'6': '600px'
},
fontFamily: {
'work-sans': 'Work Sans'
}
},
},
plugins: [],
}