-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
30 lines (30 loc) · 866 Bytes
/
tailwind.config.cjs
File metadata and controls
30 lines (30 loc) · 866 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
extend: {},
fontWeight: {
300: "300",
600: "600",
800: "800",
},
backgroundColor: {
"dark-blue": "hsl(209, 23%, 22%)",
"very-dark-blue": "hsl(207, 26%, 17%)",
"light-mode-text": "hsl(200, 15%, 8%)",
"dark-gray": "hsl(0, 0%, 52%)",
"very-light-gray": "hsl(0, 0%, 98%)",
"dark-mode-text-light-mode-elements": "sl(0, 0%, 100%)",
},
textColor: {
"dark-blue": "hsl(209, 23%, 22%)",
"very-dark-blue": "hsl(207, 26%, 17%)",
"light-mode-text": "hsl(200, 15%, 8%)",
"dark-gray": "hsl(0, 0%, 52%)",
"very-light-gray": "hsl(0, 0%, 98%)",
"dark-mode-text-light-mode-elements": "sl(0, 0%, 100%)",
},
},
plugins: [],
};