-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
55 lines (55 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}"
],
darkMode: "class",
theme: {
extend: {
colors: {
brand: {
light: "#FBF8F3",
dark: "#232332",
purple: "#7928CA",
pink: "#FF0080"
},
blue: {
lighter: "#71c5ee",
light: "#3182ce",
normal: "#025091"
},
card: {
dark: "rgba(255, 255, 255, 0.04)",
light: "rgba(255, 255, 255, 0.80)"
},
badge: {
dark: "rgba(226, 232, 240, 0.16)",
light: "#F8F0E3"
}
},
transitionTimingFunction: {
"in-expo": "cubic-bezier(0.95, 0.05, 0.795, 0.035)",
"out-back": "cubic-bezier(0.18, 0.89, 0.32, 1.28)"
},
transitionDuration: {
DEFAULT: "300ms"
},
backgroundImage: {
inherited: "inherit"
}
}
},
plugins: [
function ({ addUtilities }) {
addUtilities({
".flex-center": {
display: "flex",
"align-items": "center",
"justify-content": "center"
}
});
}
]
};