-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
75 lines (74 loc) · 1.97 KB
/
Copy pathtailwind.config.ts
File metadata and controls
75 lines (74 loc) · 1.97 KB
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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: ["class", '[data-theme="dark"]'],
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/assets/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primaryDark: "#000000",
secondaryDark: "#111111",
primaryLight: "#ffffff",
secondaryLight: "#f1f5f9",
darkHover: "#6b72804d",
lightHover: "#6b72801a",
border: "#6b72804d",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
animation: {
pulse2: "pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite",
marquee: "marquee 40s linear infinite",
"large-marquee": "largeMarquee 80s linear infinite",
marquee2: "marquee 40s linear infinite",
"large-marquee2": "largeMarquee2 80s linear infinite",
},
keyframes: {
pulse: {
"50%": { opacity: ".5" },
},
marquee: {
"0%": {
transform: "translateX(0)",
},
to: {
transform: "translateX(-400%)",
},
},
largeMarquee: {
"0%": {
transform: "translateX(0)",
},
"100%": {
transform: "translateX(-200%)",
},
},
marquee2: {
"0%": {
transform: "translateX(400%)",
},
"100%": {
transform: "translateX(0)",
},
},
largeMarquee2: {
"0%": {
transform: "translateX(200%)",
},
"100%": {
transform: "translateX(0)",
},
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};
export default config;