-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
20 lines (20 loc) · 753 Bytes
/
constants.ts
File metadata and controls
20 lines (20 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export const TAILWIND_COLORS: Record<string, { bg500: string }> = {
slate: { bg500: 'bg-slate-500' },
red: { bg500: 'bg-red-500' },
orange: { bg500: 'bg-orange-500' },
amber: { bg500: 'bg-amber-500' },
yellow: { bg500: 'bg-yellow-500' },
lime: { bg500: 'bg-lime-500' },
green: { bg500: 'bg-green-500' },
emerald: { bg500: 'bg-emerald-500' },
teal: { bg500: 'bg-teal-500' },
cyan: { bg500: 'bg-cyan-500' },
sky: { bg500: 'bg-sky-500' },
blue: { bg500: 'bg-blue-500' },
indigo: { bg500: 'bg-indigo-500' },
violet: { bg500: 'bg-violet-500' },
purple: { bg500: 'bg-purple-500' },
fuchsia: { bg500: 'bg-fuchsia-500' },
pink: { bg500: 'bg-pink-500' },
rose: { bg500: 'bg-rose-500' },
};