-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (46 loc) · 1.05 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [`_site/**/*.html`],
theme: {
fontFamily: {
portfolio: ["Inter", "sans-serif"],
},
fontWeight: {
portfolio: {
light: 300,
normal: 400,
medium: 500,
semibold: 600,
bold: 700,
}
},
extend: {
colors: {
"page-light": "#f1f1f1",
"page-dark": "#181818",
"card-dark": "#1E1E1E",
"accent-1-light": "#1E9348",
"accent-2-light": "#007870",
"accent-1-dark": "#8ec196",
"accent-2-dark": "#1E9348",
"dim-writing-light": "#898989",
},
borderRadius: {
figmabox: "16px",
},
},
},
variants: {
extend: {
grayscale: ["hover", "focus"],
margin: ["last"],
translate: ["group-hover"],
fill: ["group-hover"],
textColor: ["group-hover"],
scale: ["group-hover",],
transformOrigin: ["group-hover"],
},
container: [],
},
plugins: [require("@tailwindcss/typography")],
};