-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 882 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
41 lines (41 loc) · 882 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
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: {
50: "#f5fafc",
100: "#ecf4fa",
200: "#cfe4f2",
300: "#b2d3eb",
400: "#78b3db",
500: "#3e92cc",
600: "#3883b8",
700: "#2f6e99",
800: "#25587a",
900: "#1e4864",
},
secondary: {
50: "#f5f8f8",
100: "#ebf2f0",
200: "#cddedb",
300: "#afcbc5",
400: "#74a399",
500: "#387c6d",
600: "#327062",
700: "#2a5d52",
800: "#224a41",
900: "#1b3d35",
},
},
},
},
variants: {
extend: {
padding: ["first"],
borderWidth: ["last"],
},
},
plugins: [],
};