-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
63 lines (62 loc) · 1.9 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
63
const colors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
"ping-slow": "ping 3s cubic-bezier(0, 0, 0.2, 1) infinite",
},
fontFamily: {
sans: ["Gilroy", ...defaultTheme.fontFamily.sans],
heading: ["Avenir"],
},
colors: {
teal: colors.teal,
cyan: colors.cyan,
blesshost: {
blue: "#3e83f8",
darkblue: "#2a3e53",
},
},
height: {
"[screen-wh]": "calc(100vh - 112px)",
192: "48rem",
144: "36rem",
120: "30rem",
},
width: {
192: "48rem",
144: "36rem",
120: "30rem",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic": "conic-gradient(var(--tw-gradient-stops))",
"gradient-conic-t": "conic-gradient(at top, var(--tw-gradient-stops))",
"gradient-conic-r":
"conic-gradient(at right, var(--tw-gradient-stops))",
"gradient-conic-b":
"conic-gradient(at bottom, var(--tw-gradient-stops))",
"gradient-conic-l": "conic-gradient(at left, var(--tw-gradient-stops))",
"gradient-conic-tr":
"conic-gradient(at top right, var(--tw-gradient-stops))",
"gradient-conic-tl":
"conic-gradient(at top left, var(--tw-gradient-stops))",
"gradient-conic-br":
"conic-gradient(at bottom right, var(--tw-gradient-stops))",
"gradient-conic-bl":
"conic-gradient(at bottom left, var(--tw-gradient-stops))",
},
},
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/aspect-ratio"),
require("@tailwindcss/typography"),
require("tailwindcss-rtl"),
],
};