-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (38 loc) · 1001 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
primary: "hsl(0deg 84% 60%)",
secondary: "hsl(220deg 26% 14%)",
"light-secondary": "hsl(218deg 21% 22%)",
tourquise: "hsl(171deg 47% 63%)",
dark: "hsl(0deg 0% 0%)",
white: "hsl(0deg 0% 100%)",
red: "hsl(0deg 100% 50%)",
green: "hsl(120deg 100% 25%)",
"slate-500": "rgb(100 116 139)",
"slate-400": "rgb(148 163 184)",
},
screens: {
// xs: "200px",
// sm: "300px",
// md: "500px",
// lg: "700px",
// xl: "1280px",
},
translate: {
"2/4": "-50%",
},
fontFamily: {
cursive: "cursive, sans-serif",
},
boxShadow: {
"3xl":
"rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px",
},
},
},
plugins: [],
};