-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (41 loc) · 1015 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
37
38
39
40
41
/** @type {import("tailwindcss").Config} */
module.exports = {
content: ["*.{html,js}"],
theme: {
extend: {
colors: {
// Primary Colors
"very-dark-blue": "hsl(243, 87%, 12%)",
"desaturated-blue": "hsl(238, 22%, 44%)",
// Accent Colors
"bright-blue": "hsl(224, 93%, 58%)",
"moderate-cyan": "hsl(170, 45%, 43%)",
// Neutral Colors
"light-grayish-blue": "hsl(240, 75%, 98%)",
"light-gray": "hsl(0, 0%, 75%)",
},
typography: {
// Fonts
fontFamily: {
"raleway": ["Raleway", "sans-serif"],
"openSans": ['"Open Sans"', "sans-serif"],
},
fontWeight: {
raleway: {
400: "400",
700: "700",
},
openSans: {
400: "400",
},
},
},
screens: {
mobile: { max: "768px" },
tablet: { max: "1024px" },
laptop: { min: "1025px" },
},
},
},
plugins: [],
};