-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 978 Bytes
/
tailwind.config.js
File metadata and controls
43 lines (43 loc) · 978 Bytes
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
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
// LAYOUT
tile: "#F4EFEF",
glay: "#E0E0E0",
// TEXTS
subtxt: "#8A8A8A",
gtxt: "#686868",
ablack: "#383838",
// ACCENTS
brand1: "#F51B6B",
brand2: "#E2AB45",
success: "#18C435",
danger: "#FC4850",
// OTHER
mm: "#F6815B",
"mm-100": "#ffe8e0",
wc: "#3b99fc",
},
fontFamily: {
sans: ["Montserrat"],
},
borderRadius: {
DEFAULT: "8px",
},
},
},
variants: {
extend: {
opacity: ["disabled"],
cursor: ["disabled", "hover"],
borderWidth: ["hover"],
blur: ["hover", "focus"],
backgroundImage: ["hover", "focus"],
transitionProperty: ["hover", "focus"],
},
},
plugins: [],
};