-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (42 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
darkMode: "class",
theme: {
extend: {
colors: {
primary: {
DEFAULT: "rgb(var(--color-primary))",
dark: "rgb(0, 83, 204)",
},
secondary: {
DEFAULT: "rgb(var(--color-secondary))",
dark: "rgb(193, 20, 96)",
},
dark: {
DEFAULT: "rgb(var(--color-dark))",
dark: "rgb(24, 24, 24)",
},
black: "rgb(var(--color-black))",
white: "rgb(var(--color-white))",
light: {
DEFAULT: "rgb(var(--color-light))",
dark: "rgb(198, 198, 198)",
},
danger: {
DEFAULT: "rgb(var(--color-danger))",
},
},
borderRadius: {
DEFAULT: "1rem",
},
transitionDuration: {
DEFAULT: ".2s",
},
transitionTimingFunction: {
DEFAULT: "ease-out",
},
},
},
plugins: [require("@tailwindcss/forms")],
};