Browse Source

Use blue instead of red for sell positions

Red colour is best used for drawing attention to unusual things or marking a
hazardous action.
Sell positions on the maker side are an expected & common thing, so there is no
need for the sell positions to stand out.
upload-correct-windows-binary
Mariusz Klochowicz 3 years ago
parent
commit
8946a96df9
No known key found for this signature in database GPG Key ID: 470C865699C8D4D
  1. 2
      frontend/src/components/Types.tsx

2
frontend/src/components/Types.tsx

@ -19,7 +19,7 @@ export class Position {
case PositionKey.BUY:
return "green";
case PositionKey.SELL:
return "red";
return "blue";
}
}
}

Loading…
Cancel
Save