-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
71 lines (58 loc) · 1.23 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
fontFamily: {
'glory': ['Glory'],
},
scale: {
// <SBCS> scaling
'45': '.45',
// computer logo scaling
'130': '1.4',
// team photo slider scaling
'70': '.70'
},
padding: {
// picture slider padding
'58': '239px',
'90': '21rem',
'92': '22rem',
'94': '23rem',
},
// for cards
maxHeight: {
'500': '500px',
},
colors: {
// take out cs-black at the end
'cs-black': '#09101c',
'main-blue': '#3461FF',
'text-blue': '#1978E7',
'hover-blue': '#204be8',
'hover-gray': '#a5a198',
'main-yellow': '#FACA4E',
'lighter-blue': '#C3E2FF',
'main-gray': '#C9C6BF',
'lighter-gray': '#E5E4E0',
},
// for all borders
borderWidth: {
'1': '1px',
'3': '3px',
'5': '5px',
'6': '6px',
'7': '7px',
'9': '9px',
}
},
// for cards
minHeight: {
'480' : '480px',
}
},
plugins: [],
}