-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
38 lines (37 loc) · 982 Bytes
/
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
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
mono: ["Ubuntu Mono"]
},
extend: {
transitionProperty: {
width: "width"
}
},
colors: {
transparent: colors.transparent,
od: colors.emerald,
os: colors.violet,
black: colors.black,
white: colors.white,
gray: colors.gray,
blue: colors.blue,
red: colors.red,
amber: colors.amber,
indigo: colors.indigo,
orange: colors.orange
}
},
variants: {
extend: {
fontWeight: ["hover"]
}
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/line-clamp"),
require("@tailwindcss/aspect-ratio")
]
};