-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (50 loc) · 1.48 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: ["./src/**/*.{html,ts}"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
primary: ['"BeVietnamPro"', "sans-serif"],
},
colors: {
primary: "hsl(161.647, 70%, 52%)",
"primary-200": "hsl(157.864, 67%, 70%)",
"primary-900": "hsl(176.809, 94%, 20%)",
secondary: "hsl(181.324, 61%, 56%)",
"secondary-200": "hsl(180, 60%, 69%)",
dark: "hsl(0, 0%, 11%)",
"dark-200": "hsl(0, 0%, 6%)",
light: "hsl(0, 0%, 25%)",
black: "hsl(0, 0%, 0%)",
white: "hsl(0, 0%, 100%)",
gray: "hsl(180, 23%, 95%)",
},
backgroundColor: {
primary: "hsl(161.647, 70%, 52%)",
"primary-200": "hsl(157.864, 67%, 70%)",
secondary: "hsl(181.324, 61%, 56%)",
"secondary-200": "hsl(180, 60%, 69%)",
dark: "hsl(0, 0%, 11%)",
"dark-200": "hsl(0, 0%, 6%)",
"gray:": "hsl(180, 23%, 95%)",
},
backgroundImage: {
"close-menu": 'url("assets/icon-close.svg")',
"open-menu": 'url("assets/icon-hamburger.svg")',
},
boxShadow: {
"primary-hover": "0 0 0 2px hsl(161.647, 70%, 52%)",
"focus-primary": "0 0 2px 3px hsla(161.647, 70%, 52%, 0.3)",
"prim-ezh": "0.25rem 0.25rem 1rem rgba(0, 0, 0, 0.25)",
},
},
},
variants: {
extend: {
boxShadow: ["hover", "focus"],
},
},
plugins: [],
};