-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
70 lines (68 loc) · 1.98 KB
/
Copy pathtailwind.config.ts
File metadata and controls
70 lines (68 loc) · 1.98 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
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: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
"custom-base-red": "#ff2f23",
"custom-light-red": "#fb4a40",
"custom-white": "#fefcfb",
"custom-dark-gray": "#5f5f6c",
"custom-light-gray": "#f7f7f7",
"custom-border-gray": "#eeeeee",
"custom-footer-bg": "#1d2124",
"sky-lightest": "#CDF5FD",
"sky-lighter": "#A0E9FF",
"sky-light": "#89CFF3",
"sky-bright": "#00A9FF",
"sky-dark": "#2463EB",
brand: {
normal: "#F5F5F5",
highlight: "#B2C3F8",
bright: "#2B6CC4",
background: "#ecf8f8",
gradient: "linear-gradient(180deg, #D7B590 40%, #C4E1FF 100%)",
dark: "#39393a",
darker: "#171717",
},
apple: {
blue: "#0070CD", // Apple's traditional blue color
silver: "#D3D3D3", // Silver used in Apple devices
spaceGray: "#333333", // Space Gray used in Apple products
gold: "#D7B590", // Gold used in some Apple products
white: "#FFFFFF", // Apple's classic white color
},
},
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",
},
},
},
},
},
plugins: [require("tailwindcss-animate")],
};
export default config;