-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 860 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
37 lines (37 loc) · 860 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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}", "./src/**/*.{js,jsx,ts,tsx}"],
important: "#root",
theme: {
extend: {
fontFamily: {
titre1: ["Prompt", "sans-serif"],
corps_1: ["Lato", "sans-serif"],
corps_2: ["Spartant", "sans-serif"],
},
colors: {
background: "#f5f8fa",
darker: "#1D2671",
primaire: {
vive: "#42a5f5",
normal: "#1976d2",
foncé: "#1565c0",
},
secondaire: {
vive: "#ba68c8",
normal: "#9c27b0",
foncé: "#7b1fa2",
},
accentué: {
vive: "#ff9800",
normal: "#ed6c02",
foncé: "#e65100",
},
},
},
},
plugins: [],
variants: {
// ...
scale: ["responsive", "hover", "focus", "active", "group-hover"],
},
};