-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (52 loc) · 1.15 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
53
54
55
56
57
58
59
60
61
/** @type {import('tailwindcss').Config} */
const colors = {
// Dark Mode Elements
"dark-blue": "hsl(209, 23%, 22%)",
// Dark Mode Background
"very-dark-blue-bg": "hsl(207, 26%, 17%)",
// Light Mode Text
"very-dark-blue-text": "hsl(200, 15%, 8%)",
// Light Mode Input
"dark-gray": "hsl(0, 0%, 52%)",
// Light Mode Background
"very-light-gray-bg": "hsl(0, 0%, 98%)",
// Dark Mode Text & Light Mode Elements
white: "hsl(0, 0%, 100%)",
// Dark Mode Input
"dark-input": "hsl(0, 0%, 85%)",
// Black Color
black: "#000",
};
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
backgroundColor: {
...colors,
},
colors: {
...colors,
},
fontSize: {
sm: "14px", // Homepage Items
md: "16px", // Detail Page
},
fontFamily: {
sans: ["Nunito Sans", "sans"],
},
fontWeight: {
300: 300,
500: 500,
600: 600,
700: 700,
800: 800,
},
screens: {
mobile: "375px",
desktop: "1440px",
},
},
},
plugins: [],
};