-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
78 lines (78 loc) · 1.71 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
77
78
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./app.vue'
],
theme: {
extend: {
fontFamily: {
'Roboto-Light': 'Roboto Mono Light',
'Roboto-Regular': 'Roboto Mono Regular',
'Roboto-Medium': 'Roboto Mono Medium',
'Roboto-SemiBold': 'Roboto Mono SemiBold',
'Roboto-Bold': 'Roboto Mono Bold'
},
colors: {
'scp-black': '#040D2F',
'scp-black2': '#404865',
'scp-black3': '#F2F2F2',
'scp-purple': '#404865',
'scp-black4': '#1E1E1E',
'scp-white': '#F6F6F6'
},
margin: {
'406px': '406px',
'302px': '302px',
'120px': '120px',
'55px': '55px',
'33px': '33px'
},
padding: {
'264px': '264px',
'164px': '164px',
'54px': '54px'
},
width: {
'400px': '400px',
'272px': '272px',
'120px': '120px'
},
height: {
'400px': '400px',
'188px': '188px',
'100px': '100px'
},
maxWidth: {
'1200px': '1200px',
'378px': '378px'
},
minWidth: {
'400px': '400px',
'272px': '272px'
},
fontSize: {
'48px': ['48px', '64px'],
'36px': ['36px', '46px'],
'32px': '32px',
'14px': ['14px', '22px']
},
spacing: {
'148px': '148px',
'303px': '303px',
'30px': '30px'
},
opacity: {
45: '.45',
0.85: '.85',
15: '.15'
},
animation: {
'bounce-slow': 'bounce 2s linear infinite'
}
}
},
plugins: []
}