Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
| /** | |
| * Color palette for obj-det & img-seg widgets | |
| */ | |
| export const COLORS = [ | |
| { | |
| color: "red", | |
| hex: "#f87171", | |
| }, | |
| { | |
| color: "green", | |
| hex: "#4ade80", | |
| }, | |
| { | |
| color: "yellow", | |
| hex: "#facc15", | |
| }, | |
| { | |
| color: "blue", | |
| hex: "#60a5fa", | |
| }, | |
| { | |
| color: "orange", | |
| hex: "#fb923c", | |
| }, | |
| { | |
| color: "purple", | |
| hex: "#c084fc", | |
| }, | |
| { | |
| color: "cyan", | |
| hex: "#22d3ee", | |
| }, | |
| { | |
| color: "lime", | |
| hex: "#a3e635", | |
| }, | |
| ] as const; | |