More color tweaks

This commit is contained in:
John Groszko 2026-04-07 21:06:48 -05:00
parent 4c5c8bec04
commit fa366534f8
2 changed files with 6 additions and 6 deletions

View file

@ -175,7 +175,7 @@ export const OrderSets: React.FC<OrderSetProps> = ({
</Text>
}
sections={[
{ color: "cyan", value: probability * 100 },
{ color: "orange", value: probability * 100 },
]}
/>
</Flex>

View file

@ -28,27 +28,27 @@ const TIMELINE_TYPE = {
},
ORDER_CONFIRMED: {
title: "Order confirmed",
color: "green.6",
color: "green.9",
bullet: <IconCheck />,
},
ORDER_NOT_PUNISHED: {
title: "Order not punished",
color: "gray.6",
color: "gray.8",
bullet: null,
},
ORDER_PUNISHED: {
title: "Order punished",
color: "red.6",
color: "red.8",
bullet: <IconAlertCircle />,
},
ORDERS_POOL_CREATED: {
title: "Orders pool created",
color: "green.3",
color: "green.6",
bullet: <IconFilePlus />,
},
ORDERS_POOL_UPDATED: {
title: "Orders pool updated",
color: "green.3",
color: "green.6",
bullet: <IconFileDiff />,
},
ORDERS_POOL_DELETED: {