-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 975 Bytes
/
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
module.exports = {
purge: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
"./src/ui/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
spacing: {
90: "22.5rem",
},
colors: {
shipGray: "#3e3e42",
tuna: "#343338",
balticSea: "#27262B",
steelGray: "#1e1d26",
black: "#000000",
white: "#FFFFFF",
transparent: "#FFFFFF00",
dodgerBlue: "#3478f6",
santosGray: "#A3A3A6",
iron: "#e0e0e1",
},
animation: {
"right-slide": "rightSlide .5s linear forwards",
"left-slide": "leftSlide .5s linear forwards",
},
keyframes: {
rightSlide: {
"0%": { left: "100%" },
"100%": { left: "0" },
},
leftSlide: {
"0%": { left: "0" },
"100%": { left: "100%" },
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};