-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
42 lines (42 loc) · 888 Bytes
/
tailwind.config.ts
File metadata and controls
42 lines (42 loc) · 888 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: ["./styles/*.{css,scss}"],
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
colors: {
primary: {
white: "#fff",
gray: "#cbc4cf",
purple: "#eaddff",
red: "#ffdad6",
},
secondary: {
white: "#fdf8fd",
gray: "#7a757f",
purple: "#7033e0",
red: "#c00016",
},
tertiary: {
white: "#ece6eb",
gray: "#49454e",
purple: "#5800c8",
red: "#FFF1E6",
},
baseColor: "#6750a4",
hovering: "#6750a414",
pressing: "#6750a41f",
},
fontFamily: {
Roboto: ["var(--font-Roboto)"],
},
},
},
};