32 lines
697 B
CSS
32 lines
697 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #0f172a;
|
|
--card: #f8fafc;
|
|
--card-foreground: #0f172a;
|
|
--border: #e2e8f0;
|
|
--muted: #64748b;
|
|
--primary: #2563eb;
|
|
--primary-foreground: #ffffff;
|
|
}
|
|
|
|
@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;
|
|
}
|