-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcolors.tsx
34 lines (32 loc) · 990 Bytes
/
colors.tsx
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
// Colors.ts dosyası
const colors = {
pink: {
dark1: "#4c0519", // rose-950
dark2: "#881337", // rose-900
dark3: "#9f1239", // rose-800
dark4: "#be123c", // rose-700
dark5: "#e11d48", // rose-600
dark6: "#f43f5e", // rose-500
light1: "#fb7185", // rose-400
light2: "#fda4af", // rose-300
light3: "#fecdd3", // rose-200
light4: "#ffe4e6", // rose-100
light5: "#fff1f2", // rose-50
light6: "#ffffff", // white
},
slate: {
dark1: "#020617", // slate-950
dark2: "#0f172a", // slate-900
dark3: "#1e293b", // slate-800
dark4: "#334155", // slate-700
dark5: "#475569", // slate-600
dark6: "#64748b", // slate-500
light1: "#cbd5e1", // slate-400
light2: "#e2e8f0", // slate-300
light3: "#e2e8f0", // slate-200
light4: "#f1f5f9", // slate-100
light5: "#f8fafc", // slate-50
light6: "#ffffff", // white
},
};
export default colors;