-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
63 lines (60 loc) · 1.23 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
minHeight: {
"90px": "90px"
},
minWidth: {
"90px": "90px"
},
maxHeight: {
"90px": "90px",
header: '90px',
main: 'calc(100vh - 90px)'
},
maxWidth: {
"90px": "90px"
},
height: {
"90px": "90px",
"80px": "80px",
header: '90px',
main: 'calc(100vh - 90px)',
unknown: "calc(100vw * .05 + 40px)"
},
width: {
unknown: "calc(100vw * .05 + 40px)",
"90px": "90px",
"80px": "80px",
},
colors: {
cyemerald: `#3fffcc`,
cyemeraldHover: `#05c8cf`,
},
backgroundColor: {
html: `#000`,
header: `#00004f`,
main: `#01000a`,
overlay: `#01052e`
},
fontFamily: {
main: 'main',
sub: 'sub',
flat: 'flat'
},
keyframes: {
'semipulse': {
'50%': {
'opacity': 0.85
}
}
},
animation: {
semipulse: 'semipulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite'
}
},
},
plugins: [],
};