-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
56 lines (56 loc) · 1.38 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/assets/**/*.{js,ts,jsx,tsx}",
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
"./src/containers/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
mini: "480px",
"2md": "900px",
},
boxShadow: {
default: "0px 0px 30px 10px rgba(131, 88, 255, 0.25)",
mobileMenu: "4px 4px 46px rgba(0, 0, 0, 0.6)",
},
backgroundColor: {
"layer-1": "#0F131C",
"layer-2": "#131924",
"layer-3": "#1B2333",
"layer-4": "#323268",
"layer-focus": "#364055",
},
borderColor: {
DEFAULT: "#A688FF",
stroke: "#1D2535",
divider: "#1B2332",
focus: "#4F5C71",
},
colors: {
primary: "#00C089",
"primary-hover": "#008861",
secondary: "#94A7C6",
tertiary: "#41516C",
placeholder: "#6D7080",
disabled: "#6D7080",
grey: "#A1B0CC",
error: "#E94949",
"semi-black": "#0F131C",
dark: "#030209",
},
keyframes: {
"slide-in": {
"0%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(0)" },
},
},
animation: {
"slide-in-from-right": "slide-in 0.2s linear",
},
},
},
plugins: [],
};