-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
65 lines (63 loc) · 1.8 KB
/
tailwind.config.ts
File metadata and controls
65 lines (63 loc) · 1.8 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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary: "#00bfff", // Cyan - Marketplace primary
"background-light": "#f6f7f9",
"background-dark": "#19202e",
"slush-yellow": "#FFD600",
"slush-orange": "#FF5C00",
"slush-purple": "#9747FF",
"slush-green": "#00D68F",
"slush-dark": "#1A1A1A",
// Marketplace colors
ink: "#101618",
"accent-lime": "#ccff00",
"accent-orange": "#ff6b00",
"accent-pink": "#ff0099",
},
boxShadow: {
hard: "4px 4px 0px 0px #101618",
"hard-sm": "2px 2px 0px 0px #101618",
"hard-lg": "8px 8px 0px 0px #101618",
},
fontFamily: {
display: ["Space Grotesk", "sans-serif"],
sans: ["Space Grotesk", "sans-serif"],
body: ["Space Grotesk", "sans-serif"],
},
borderRadius: {
DEFAULT: "0.5rem",
large: "2rem",
},
animation: {
marquee: "marquee 25s linear infinite",
"marquee-reverse": "marquee-reverse 25s linear infinite",
float: "float 6s ease-in-out infinite",
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-100%)" },
},
"marquee-reverse": {
"0%": { transform: "translateX(-100%)" },
"100%": { transform: "translateX(0%)" },
},
float: {
"0%, 100%": { transform: "translateY(0)" },
"50%": { transform: "translateY(-20px)" },
},
},
},
},
plugins: [],
};
export default config;