-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (42 loc) · 1.2 KB
/
Copy pathtailwind.config.js
File metadata and controls
43 lines (42 loc) · 1.2 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
34
35
36
37
38
39
40
41
42
43
const colors = require("tailwindcss/colors");
module.exports = {
theme: {
container: {
center: true,
padding: "1rem",
},
extend: {
colors: {
...colors,
background: colors.gray[50],
primary: colors.rose,
gray: colors.trueGray,
whiteAlpha: {
50: "rgba(255, 255, 255, 0.05)",
100: "rgba(255, 255, 255, 0.1)",
200: "rgba(255, 255, 255, 0.2)",
300: "rgba(255, 255, 255, 0.3)",
400: "rgba(255, 255, 255, 0.4)",
500: "rgba(255, 255, 255, 0.5)",
600: "rgba(255, 255, 255, 0.6)",
700: "rgba(255, 255, 255, 0.7)",
800: "rgba(255, 255, 255, 0.8)",
900: "rgba(255, 255, 255, 0.9)",
},
blackAlpha: {
50: "rgba(0, 0, 0, 0.05)",
100: "rgba(0, 0, 0, 0.1)",
200: "rgba(0, 0, 0, 0.2)",
300: "rgba(0, 0, 0, 0.3)",
400: "rgba(0, 0, 0, 0.4)",
500: "rgba(0, 0, 0, 0.5)",
600: "rgba(0, 0, 0, 0.6)",
700: "rgba(0, 0, 0, 0.7)",
800: "rgba(0, 0, 0, 0.8)",
900: "rgba(0, 0, 0, 0.9)",
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};