-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
35 lines (35 loc) · 1.34 KB
/
tailwind.config.cjs
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
/** @type {import("tailwindcss").Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
screens: {
"sm": "375px",
"xl": "1280px"
},
fontFamily: {
body: ["Ubuntu", "sans-serif"]
},
colors: {
"light-marine-blue": "hsl(213, 96%, 28%)",
"marine-blue": "hsl(213, 96%, 18%)",
"purplish-blue": "hsl(243, 100%, 62%)",
"light-purplish-blue": "hsl(243, 100%, 82%)",
"pastel-blue": "hsl(228, 100%, 84%)",
"light-blue": "hsl(206, 94%, 87%)",
"strawberry-red": "hsl(354, 84%, 57%)",
"cool-gray": "hsl(215,81%,96%)",
"light-gray": "hsl(229, 24%, 87%)",
"magnolia": "hsl(217, 100%, 97%)",
"alabaster": "hsl(231, 100%, 99%)",
"white": "hsl(0, 0%, 100%)",
"attribution-color": "hsl(228, 45%, 44%)"
},
backgroundImage: {
"sidebar-desktop": "url('/src/assets/images/bg-sidebar-desktop.svg')",
"sidebar-mobile": "url('/src/assets/images/bg-sidebar-mobile.svg')"
}
}
},
plugins: [require("prettier-plugin-tailwindcss")]
};