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> </Text>
} }
sections={[ sections={[
{ color: "cyan", value: probability * 100 }, { color: "orange", value: probability * 100 },
]} ]}
/> />
</Flex> </Flex>

View file

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