-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
35 lines (33 loc) · 1.03 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
module.exports = {
mode: "jit",
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
backgroundImage: {
"pattern-intro": "url('/images/bg-pattern-intro.svg')",
"pattern-circle": "url('/images/bg-pattern-circles.svg')",
},
colors: {
"lightred-300": "hsl(13, 100%, 72%)",
"lightred-400": "hsl(355, 100%, 74%)",
"lightred-500": "hsl(356, 100%, 66%)",
"lightred-600": "hsl(353, 100%, 62%)",
"darkblue-500": "hsl(237, 17%, 21%)",
"darkblue-700": "hsl(237, 23%, 32%)",
"darkblue-900": "hsl(240, 10%, 16%)",
},
fontFamily: {
Overpass: ["Overpass", "sans-serif"],
ubuntu: ["Ubuntu", "sans-serif"],
},
},
},
variants: {
extend: {},
},
plugins: [],
};