arbitrage-engine/frontend/app/globals.css
root 778cf8cce1 feat: V5.2 frontend differentiation - strategy tabs, side-by-side scores, visual badges
- Paper page: prominent strategy tabs (全部/V5.1/V5.2) at top
- Paper trades: strategy column with color-coded badges (blue=V5.1, green=V5.2)
- Paper positions: FR/Liq scores displayed prominently for V5.2
- Signals page: side-by-side V5.1 vs V5.2 score comparison cards
- Signals page title updated to 'V5.1 vs V5.2'
- New API endpoint for strategy comparison data
- Layout: local font fallback for build stability
2026-03-01 12:21:19 +00:00

34 lines
856 B
CSS

@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #0f172a;
--card: #f8fafc;
--card-foreground: #0f172a;
--border: #e2e8f0;
--muted: #64748b;
--primary: #2563eb;
--primary-foreground: #ffffff;
--font-geist-sans: "Segoe UI", "PingFang SC", "Noto Sans", sans-serif;
--font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}
/* Hide lightweight-charts watermark */
.tv-lightweight-charts a[href*="tradingview"],
.tv-lightweight-charts a[href*="lightweight-charts"] {
display: none !important;
}