-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (45 loc) · 1.36 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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const colors = require("tailwindcss/colors")
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.slate,
green: colors.emerald,
purple: colors.violet,
yellow: colors.amber,
pink: colors.fuchsia,
topicGreen: "#70a076",
halfTransparent: "rgba(255, 255, 255, 0.7)",
headerGreenLight: "rgba(145, 160, 160, 0.88)",
headerGreen: "rgba(145, 160, 160)"
},
fontFamily: {
alex: ["Alex Brush", "sans-serif"]
},
extend: {
padding: {
"1/12": "8.333333333333333%"
},
inset: {
"1/12": "8.333333333333333%",
"1/16": "6.25%"
},
spacing: {
"1/12": "8.333333333333333%",
"4/12": "33.333333333333333%",
"6/12": "50%"
}
}
},
plugins: [
// eslint-disable-next-line @typescript-eslint/no-var-requires
require("@tailwindcss/forms")({
strategy: "class"
})
]
}