-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 1.01 KB
/
Copy pathtailwind.config.js
File metadata and controls
33 lines (33 loc) · 1.01 KB
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
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
"light-red": "hsl(356, 100%, 66%)",
"very-light-red": "hsl(355, 100%, 74%)",
"very-dark-blue": "hsl(208, 49%, 24%)",
white: "hsl(0, 0%, 100%)",
"grayish-blue": "hsl(240, 2%, 79%)",
"very-dark-grayish-blue": "hsl(207, 13%, 34%)",
"very-dark-black-blue": "hsl(240, 10%, 16%)",
"very-dark-gray-blue": "hsl(237, 17%, 21%)",
},
fontFamily: {
overpass: ["Overpass", "sans-serif"],
ubuntu: ["Ubuntu", "sans-serif"],
},
backgroundImage: {
"desktop-editor-illustration":
"url('./images/illustration-editor-desktop.svg')",
"background-gradient":
"linear-gradient(135deg, hsl(13, 100%, 72%), hsl(353, 100%, 62%))",
},
},
},
variants: {
fontWeight: ["responsive", "hover", "focus"],
extend: {},
},
plugins: [],
};