Raycast
4 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
@import url('https://fonts.googleapis.com/2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
--font-sans: "Inter", sans-serif;
--background: #ffffff;
--foreground: #000000;
--card: #ffffff;
--card-foreground: #000000;
--popover: #ffffff;
--popover-foreground: #000000;
--primary: #000000; /* Black, from prompt's primary */
--primary-foreground: #ffffff;
--secondary: #e6e6e6; /* Light grey, from prompt's light */
--secondary-foreground: #000000;
--muted: #e6e6e6; /* Light grey, from prompt's light */
--muted-foreground: #666666; /* Mid-grey for readability */
--accent: #f7f7f7; /* Very light grey for subtle highlight */
--accent-foreground: #000000;
--destructive: #e03f3f;
--destructive-foreground: #ffffff;
--border: #e6e6e6; /* Light grey, from prompt's light */
--input: #e6e6e6; /* Light grey, from prompt's light */
--ring: #000000; /* Black, matching primary */
--chart-1: #000000; /* Black */
--chart-2: #452324; /* Dark reddish-brown */
--chart-3: #666666; /* Mid-grey */
--chart-4: #bbbbbb; /* Light grey */
--chart-5: #e6e6e6; /* Very light grey */
--sidebar-background: #ffffff;
--sidebar-foreground: #000000;
--sidebar-primary: #000000;
--sidebar-primary-foreground: #ffffff;
--sidebar-accent: #e6e6e6;
--sidebar-accent-foreground: #000000;
--sidebar-border: #e6e6e6;
--sidebar-ring: #000000;
--radius: 0.5rem;
}
.dark {
--background: #07080a; /* Very dark grey, from prompt's dark */
--foreground: #ffffff; /* White, from prompt's text */
--card: #000000; /* Black, from prompt's primary */
--card-foreground: #ffffff;
--popover: #000000; /* Black, from prompt's primary */
--popover-foreground: #ffffff;
--primary: #452324; /* Dark reddish-brown, from prompt's secondary */
--primary-foreground: #ffffff;
--secondary: #000000; /* Black, from prompt's primary */
--secondary-foreground: #ffffff;
--muted: #000000; /* Black, from prompt's primary */
--muted-foreground: #e6e6e6; /* Light grey, from prompt's light */
--accent: #000000; /* Black, from prompt's primary */
--accent-foreground: #ffffff;
--destructive: #ff6a6a;
--destructive-foreground: #000000;
--border: #452324; /* Dark reddish-brown, from prompt's secondary for subtle contrast */
--input: #000000; /* Black, from prompt's primary */
--ring: #452324; /* Dark reddish-brown, matching primary */
--chart-1: #452324; /* Dark reddish-brown */
--chart-2: #ffffff; /* White */
--chart-3: #e6e6e6; /* Light grey */
--chart-4: #999999; /* Mid-grey */
--chart-5: #07080a; /* Very dark background */
--sidebar-background: #07080a;
--sidebar-foreground: #ffffff;
--sidebar-primary: #452324;
--sidebar-primary-foreground: #ffffff;
--sidebar-accent: #000000;
--sidebar-accent-foreground: #ffffff;
--sidebar-border: #452324;
--sidebar-ring: #452324;
--radius: 0.5rem;
}
@theme inline {
--font-sans: var(--font-sans);
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-card: var(--card);
--color-card-foreground: var(--card-foreground);
--color-popover: var(--popover);
--color-popover-foreground: var(--popover-foreground);
--color-primary: var(--primary);
--color-primary-foreground: var(--primary-foreground);
--color-secondary: var(--secondary);
--color-secondary-foreground: var(--secondary-foreground);
--color-muted: var(--muted);
--color-muted-foreground: var(--muted-foreground);
--color-accent: var(--accent);
--color-accent-foreground: var(--accent-foreground);
--color-destructive: var(--destructive);
--color-destructive-foreground: var(--destructive-foreground);
--color-border: var(--border);
--color-input: var(--input);
--color-ring: var(--ring);
--color-chart-1: var(--chart-1);
--color-chart-2: var(--chart-2);
--color-chart-3: var(--chart-3);
--color-chart-4: var(--chart-4);
--color-chart-5: var(--chart-5);
--color-sidebar: var(--sidebar-background);
--color-sidebar-foreground: var(--sidebar-foreground);
--color-sidebar-primary: var(--sidebar-primary);
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
--color-sidebar-accent: var(--sidebar-accent);
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-ring: var(--sidebar-ring);
}
body {
font-family: var(--font-sans);
}