@loafmarkets/ui 0.1.120 → 0.1.122

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -2370,7 +2370,7 @@ function MobileOrderbookLayout({
2370
2370
  fontSize: "0.72rem",
2371
2371
  fontWeight: tab === "orderbook" ? 600 : 400,
2372
2372
  color: tab === "orderbook" ? "#fff" : "rgba(255,255,255,0.6)",
2373
- borderBottom: tab === "orderbook" ? "2px solid #C9A227" : "none",
2373
+ borderBottom: tab === "orderbook" ? "2px solid #E6C87E" : "none",
2374
2374
  paddingBottom: "0.2rem"
2375
2375
  },
2376
2376
  children: "Orderbook"
@@ -2385,7 +2385,7 @@ function MobileOrderbookLayout({
2385
2385
  fontSize: "0.72rem",
2386
2386
  fontWeight: tab === "trades" ? 600 : 400,
2387
2387
  color: tab === "trades" ? "#fff" : "rgba(255,255,255,0.6)",
2388
- borderBottom: tab === "trades" ? "2px solid #C9A227" : "none",
2388
+ borderBottom: tab === "trades" ? "2px solid #E6C87E" : "none",
2389
2389
  paddingBottom: "0.2rem"
2390
2390
  },
2391
2391
  children: "Trades"
@@ -12330,7 +12330,7 @@ var Tab = styled25.button`
12330
12330
  font-weight: 500;
12331
12331
  white-space: nowrap;
12332
12332
  flex-shrink: 0;
12333
- color: ${({ $active }) => $active ? "#f0b90b" : "rgba(255, 255, 255, 0.4)"};
12333
+ color: ${({ $active }) => $active ? "#E6C87E" : "rgba(255, 255, 255, 0.4)"};
12334
12334
  cursor: pointer;
12335
12335
  transition: color 0.15s;
12336
12336
  position: relative;
@@ -12342,7 +12342,7 @@ var Tab = styled25.button`
12342
12342
  left: 0;
12343
12343
  right: 0;
12344
12344
  height: 2px;
12345
- background: ${({ $active }) => $active ? "#f0b90b" : "transparent"};
12345
+ background: ${({ $active }) => $active ? "#E6C87E" : "transparent"};
12346
12346
  border-radius: 1px;
12347
12347
  transition: background 0.15s;
12348
12348
  }