-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
62 lines (60 loc) · 1.73 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
const { fontFamily } = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./resources/**/*.antlers.html",
"./resources/**/*.blade.php",
"./content/**/*.md",
],
theme: {
container: {
center: true,
padding: "1rem",
},
extend: {
fontFamily: {
sans: ["GeneralSans-Variable", ...fontFamily.sans],
},
colors: {
primary: {
100: "#F6F6F6",
200: "#EBEBEB",
300: "#DEE0E1",
400: "#CCCFD1",
500: "#BBBFC3",
600: "#98A0A9",
700: "#858B92",
800: "#6A7077",
900: "#363B44",
950: "#010817",
},
secondary: {
100: "#E6E7F4",
200: "#CDCFE9",
500: "#8187C7",
700: "#4F58B1",
900: "#031090",
},
red: {
200: "#FDE0E0",
400: "#FBC1C1",
600: "#FAA2A2",
800: "#F88383",
900: "#F36A6A",
},
green: {
200: "#D1F4E7",
400: "#A3E8CF",
600: "#74DDB7",
800: "#46D19F",
900: "#18C687",
},
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
// eslint-disable-next-line no-undef
require("tailwindcss-debug-screens"),
],
};