Gemini Pro
11 copies
Not liked
Component Preview
dashboard.tsxAP
Demo App
Preview of your theme
Total Revenue
$15,231.89
+20.1% from last month
Subscriptions
+2,350
+180.1% from last month
Upgrade your subscription
You are currently on the free plan.
Create an account
Enter your email below to create your account.
CSS Variables
globals.css:root {
--background: #f8f9fa;
--foreground: #212425;
--card: #ffffffcc;
--card-foreground: #1f2022;
--popover: #ffffffee;
--popover-foreground: #212425;
--primary: #3d7bff;
--primary-foreground: #ffffff;
--secondary: #eef1f8;
--secondary-foreground: #212425;
--muted: #e8eaee;
--muted-foreground: #6b6e73;
--accent: #d9e8ff;
--accent-foreground: #264f96;
--destructive: #ffdad4;
--destructive-foreground: #7b2a2a;
--border: rgba(0, 0, 0, 0.1);
--input: rgba(0, 0, 0, 0.06);
--ring: #3d7bff;
--chart-1: #3d7bff;
--chart-2: #7b5bff;
--chart-3: #56d7ff;
--chart-4: #44bc7b;
--chart-5: #ffc85a;
--sidebar: #f5f7fa;
--sidebar-foreground: #212425;
--sidebar-primary: #3d7bff;
--sidebar-primary-foreground: #ffffff;
--sidebar-accent: #e6ebff;
--sidebar-accent-foreground: #394070;
--sidebar-border: rgba(0, 0, 0, 0.08);
--sidebar-ring: #3d7bff;
--font-sans: "Google Sans", "Inter", sans-serif;
--font-mono: "JetBrains Mono", monospace;
--font-serif: ui-serif, Georgia, serif;
--radius: 1rem;
--shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
--shadow-sm: 0 2px 6px rgba(0,0,0,0.08);
--shadow-md: 0 4px 12px rgba(0,0,0,0.1);
--shadow-lg: 0 8px 20px rgba(0,0,0,0.12);
--shadow-xl: 0 12px 32px rgba(0,0,0,0.16);
--shadow-2xl: 0 16px 40px rgba(0,0,0,0.2);
--tracking-normal: 0.02em;
}
.dark {
--background: #0e0e0f;
--foreground: #e3e3e3;
--card: #222327cc;
--card-foreground: #ffffff;
--popover: #161c25d9;
--popover-foreground: #e3e3e3;
--primary: #8ab4f8;
--primary-foreground: #0e0e0f;
--secondary: #37393b;
--secondary-foreground: #f1f1f1;
--muted: #2a2a2a;
--muted-foreground: #80868b;
--accent: #3b475b;
--accent-foreground: #d3e3fd;
--destructive: #4d100e;
--destructive-foreground: #ffb3b0;
--border: rgba(255, 255, 255, 0.08);
--input: rgba(255, 255, 255, 0.06);
--ring: #8ab4f8;
--chart-1: #8ab4f8;
--chart-2: #c58af9;
--chart-3: #64ddf5;
--chart-4: #1ea446;
--chart-5: #fdd663;
--sidebar: #202124;
--sidebar-foreground: #e3e3e3;
--sidebar-primary: #8ab4f8;
--sidebar-primary-foreground: #0e0e0f;
--sidebar-accent: #303030;
--sidebar-accent-foreground: #aec6f6;
--sidebar-border: rgba(255,255,255,0.1);
--sidebar-ring: #8ab4f8;
--font-sans: "Google Sans", "Inter", sans-serif;
--font-mono: "JetBrains Mono", monospace;
--font-serif: ui-serif, Georgia, serif;
--radius: 1rem;
--shadow-xs: 0 1px 3px rgba(0,0,0,0.3);
--shadow-sm: 0 2px 6px rgba(0,0,0,0.35);
--shadow-md: 0 4px 12px rgba(0,0,0,0.4);
--shadow-lg: 0 8px 20px rgba(0,0,0,0.45);
--shadow-xl: 0 12px 32px rgba(0,0,0,0.55);
--shadow-2xl: 0 16px 40px rgba(0,0,0,0.65);
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--color-sidebar-ring: var(--sidebar-ring);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
--color-sidebar-accent: var(--sidebar-accent);
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
--color-sidebar-primary: var(--sidebar-primary);
--color-sidebar-foreground: var(--sidebar-foreground);
--color-sidebar: var(--sidebar);
--color-chart-5: var(--chart-5);
--color-chart-4: var(--chart-4);
--color-chart-3: var(--chart-3);
--color-chart-2: var(--chart-2);
--color-chart-1: var(--chart-1);
--color-ring: var(--ring);
--color-input: var(--input);
--color-border: var(--border);
--color-destructive: var(--destructive);
--color-accent-foreground: var(--accent-foreground);
--color-accent: var(--accent);
--color-muted-foreground: var(--muted-foreground);
--color-muted: var(--muted);
--color-secondary-foreground: var(--secondary-foreground);
--color-secondary: var(--secondary);
--color-primary-foreground: var(--primary-foreground);
--color-primary: var(--primary);
--color-popover-foreground: var(--popover-foreground);
--color-popover: var(--popover);
--color-card-foreground: var(--card-foreground);
--color-card: var(--card);
--radius-sm: calc(var(--radius) - 4px);
--radius-md: calc(var(--radius) - 2px);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
}