-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
36 lines (33 loc) · 994 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/*.html", "./src/app/*.js"],
darkMode: "class",
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1200px",
},
extend: {
colors: {
veryDarkBlue: "hsl(235, 21%, 11%)",
veryDarkDesaturatedBlue: "hsl(235, 24%, 19%)",
lightGrayishBlue: "hsl(234, 39%, 85%)",
lightGrayishBlueHover: "hsl(236, 33%, 92%)",
darkGrayishBlue: "hsl(234, 11%, 52%)",
veryDarkGrayishBlue: "hsl(233, 14%, 35%)",
veryDarkGrayishBlue2: "hsl(237, 14%, 26%)",
// primary
brightBlue: "hsl(220, 98%, 61%)",
// Light Background
veryLightGray: "hsl(0, 0%, 98%)",
veryLightGrayishBlue: "hsl(236, 33%, 92%)",
lightGrayishBlue2: "hsl(233, 11%, 84%)",
darkGrayishBlue2: "hsl(236, 9%, 61%)",
veryDarkGrayishBlue3: "hsl(235, 19%, 35%)",
},
},
},
plugins: [],
};