-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
63 lines (63 loc) · 1.52 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
safelist: [
{
pattern: /text-*/, // the "." means "everything"
},
],
theme: {
extend: {
animation: {
zoomy: "3s linear 100ms infinite alternate zoomy",
},
keyframes: {
zoomy: {
"0%": {
transform: "scale(1)",
},
"33.33%": {
transform: "scale(1.015)",
},
"66.66%": {
transform: "scale(1.030)",
},
"100%": {
transform: "scale(1.045)",
},
},
},
colors: {
primary: "#adbfd0",
secondary: "#90a1b0",
tertiary: "#0b212d",
clr_blue: "#58d5ff",
clr_btn_hover: "#103d56",
// grad_clr1: '#05121D',
grad_clr1: "#041721",
grad_clr2: "#090B18",
grad_clr3: "#110710",
"black-100": "#100d25",
"black-200": "#090325",
"white-100": "#f3f3f3",
primary_old: "#050816",
secondary_old: "#aaa6c3",
tertiary_old: "#151030",
transp90: "rgb(9, 11, 24, 0.9)",
},
boxShadow: {
card: "0px 35px 120px -15px #211e35",
inputsOff: "0px 0px 0px 0px #90a1b0 inset",
inputsOn: "0px 0px 0px 1px #90a1b0 inset",
},
screens: {
xs: "450px",
},
maxWidth: {
menuWidth: "calc(100% - 2 * 1.5rem)",
inputWidth: "calc(100% - 2 * 1px)",
},
},
},
plugins: [],
};