-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
58 lines (56 loc) · 1.62 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
import flowbite from "flowbite-react/tailwind";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
flowbite.content(),
],
theme: {
extend: {
animation: {
"fade-in-right": "fade-in-right 1s",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
hero: "linear-gradient(250deg, #00000000 0%, #011c02 90%)",
"hero-lg": "linear-gradient(250deg, #00000000 0%, #062343 70%)",
"utapau-dark":
"linear-gradient(to right, #a6ecff, #a6ecff 50%, royalblue 50%)",
"utapau-light":
"linear-gradient(to right, #31ccff, #31ccff 50%, royalblue 50%)",
},
colors: {
"night-sky": "#283e51",
"night-sky-2": "#0a2342",
},
cursor: {
grievous:
"url(https://dv8qyiytu2cuu.cloudfront.net/grievous_cursor.png), auto",
"obi-wan":
"url(https://dv8qyiytu2cuu.cloudfront.net/obi_saber.png), auto",
},
keyframes: {
"fade-in-right": {
"0%": {
opacity: "0",
transform: "translateX(50%)",
},
"100%": {
opacity: "1",
transform: "translateX(0%)",
},
},
},
screens: {
"2xs": "360px",
xs: "480px",
},
},
},
plugins: [flowbite.plugin()],
};
export default config;