Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 433 Bytes
b2ecf7d |
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 |
/**
* 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;
|