forked from ArbitrumHub/ArbitrumDAO_Hub
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.mjs
84 lines (84 loc) · 2.23 KB
/
tailwind.config.mjs
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/** @type {import('tailwindcss').Config} */
export default {
darkMode: ["class"],
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
prefix: "",
theme: {
extend: {
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
fadeInRight: {
"0%": {
opacity: "0",
transform: "translateY(-2rem)",
},
"100%": {
opacity: "1",
transform: "translate(0)",
},
},
fadeOutLeft: {
"0%": {
opacity: "1",
},
"100%": {
opacity: "0",
},
},
},
borderRadius: {
"4xl": "28px",
"5xl": "32px",
large: "40px",
small: "20px",
},
fontFamily: {
sans: ["Clash Grotesk", "sans-serif"],
os: ["Open Sans", "sans-serif"],
},
fontSize: {
xxs: "10px",
},
backgroundImage: {
sky: "linear-gradient(180deg, #D7EEFF 0%, rgba(229, 229, 229, 0.00) 57.7%)",
404: "url('/bg/404lab.svg')",
pattern: "url('/bg/pattern.svg')",
sky2: "linear-gradient(0deg, #12AAFF 0%, #97DAFF 72.77%, #FFFFFF 122.6%)",
"gradient-sky":
"linear-gradient(0deg, rgba(18, 170, 255, 0.39) -136.16%, rgba(18, 170, 255, 0.00) 63.47%)",
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
enter: "fadeInRight 300ms ease-out",
leave: "fadeOutLeft 300ms ease-in forwards",
},
colors: {
secondary: {
light: "#393939",
DEFAULT: "#252525",
},
primary: {
light: "#E2F3FF",
DEFAULT: "#12AAFF",
sky: "#9DCCED",
navy: "#213147",
},
navy: {
DEFAULT: "#213147",
},
blue: {
light: "#E0F2FE",
},
},
},
},
plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")],
};