Clerk
2 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 {
--font-sans: "Inter", sans-serif;
--background: #ffffff;
--foreground: #131316;
--card: #ffffff;
--card-foreground: #131316;
--popover: #ffffff;
--popover-foreground: #131316;
--muted: #f5f5f7;
--muted-foreground: #42434D;
--accent: #EEEEF0;
--accent-foreground: #131316;
--border: #D9D9DE;
--input: #D9D9DE;
--primary: #6C47FF;
--primary-foreground: #ffffff;
--secondary: #EEEEF0;
--secondary-foreground: #131316;
--destructive: #d93025;
--destructive-foreground: #ffffff;
--ring: #6C47FF;
--radius: 0.5rem;
--typography-color: #42434D;
--typography-heading: #131316;
--typography-strong: #131316;
--typography-code: #131316;
--typography-link: #131316;
--typography-link-hover: #131316;
--sidebar-background: #ffffff;
--sidebar-foreground: #131316;
--sidebar-border: #D9D9DE;
--sidebar-primary: #6C47FF;
--sidebar-primary-foreground: #ffffff;
--chart-1: #6C47FF;
--chart-2: #00AEE3;
--chart-3: #22C543;
--chart-4: #9394A1;
--chart-5: #131316;
}
.dark {
--background: #131316;
--foreground: #ffffff;
--card: #1A1A1C;
--card-foreground: #ffffff;
--popover: #1A1A1C;
--popover-foreground: #ffffff;
--muted: #2A2A2E;
--muted-foreground: #B7B8C2;
--accent: #2A2A2E;
--accent-foreground: #ffffff;
--border: #2A2A2E;
--input: #2A2A2E;
--primary: #BAB1FF;
--primary-foreground: #131316;
--secondary: #2A2A2E;
--secondary-foreground: #ffffff;
--destructive: #FF6A67;
--destructive-foreground: #131316;
--ring: #BAB1FF;
--typography-color: #ffffff;
--typography-heading: #ffffff;
--typography-strong: #ffffff;
--typography-code: #ffffff;
--typography-link: #ffffff;
--typography-link-hover: #ffffff;
--sidebar-background: #131316;
--sidebar-foreground: #ffffff;
--sidebar-border: #2A2A2E;
--sidebar-primary: #BAB1FF;
--sidebar-primary-foreground: #131316;
--chart-1: #BAB1FF;
--chart-2: #5DE3FF;
--chart-3: #86EF9B;
--chart-4: #9394A1;
--chart-5: #ffffff;
}
@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);
}
body {
font-family: var(--font-sans);
}