YoutubeYoutube
Icon

Youtube

3 copies
Not liked

Component Preview

dashboard.tsx
AP

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.

Free
Create an account

Enter your email below to create your account.

CSS Variables

globals.css
:root {
  --background: #ffffff;
  --foreground: #0f0f0f;

  --card: #ffffff;
  --card-foreground: #0f0f0f;

  --popover: #ffffff;
  --popover-foreground: #0f0f0f;

  --primary: #ff0000;        
  --primary-foreground: #ffffff;

  --secondary: #f9f9f9;
  --secondary-foreground: #0f0f0f;

  --muted: #f2f2f2;
  --muted-foreground: #606060;

  --accent: #f2f2f2;
  --accent-foreground: #0f0f0f;

  --destructive: #dc2626;
  --destructive-foreground: #ffffff;

  --border: #e5e5e5;
  --input: #e5e5e5;
  --ring: #ff0000;

  
  --chart-1: #ff0000;  
  --chart-2: #3ea6ff;  
  --chart-3: #aaaaaa;  
  --chart-4: #0f0f0f;  
  --chart-5: #22c55e;  

  
  --sidebar: #ffffff;
  --sidebar-foreground: #0f0f0f;
  --sidebar-primary: #ff0000;
  --sidebar-primary-foreground: #ffffff;
  --sidebar-accent: #f2f2f2;
  --sidebar-accent-foreground: #0f0f0f;
  --sidebar-border: #e5e5e5;
  --sidebar-ring: #ff0000;

  
  --font-sans: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  
  --radius: 0.5rem;

  --shadow-x: 0px;
  --shadow-y: 1px;
  --shadow-blur: 2px;
  --shadow-spread: 0px;
  --shadow-opacity: 0.18;
  --shadow-color: hsl(0 0% 0%);

  --shadow-2xs: 0px 1px 2px 0px hsl(0 0% 0% / 0.06);
  --shadow-xs:  0px 1px 2px 0px hsl(0 0% 0% / 0.08);
  --shadow-sm:  0px 1px 2px 0px hsl(0 0% 0% / 0.10), 0px 1px 2px -1px hsl(0 0% 0% / 0.10);
  --shadow:     0px 1px 2px 0px hsl(0 0% 0% / 0.10), 0px 1px 2px -1px hsl(0 0% 0% / 0.12);
  --shadow-md:  0px 2px 4px 0px hsl(0 0% 0% / 0.14);
  --shadow-lg:  0px 4px 6px -1px hsl(0 0% 0% / 0.16);
  --shadow-xl:  0px 8px 10px -3px hsl(0 0% 0% / 0.18);
  --shadow-2xl: 0px 12px 18px -4px hsl(0 0% 0% / 0.25);

  --tracking-normal: 0em;
  --spacing: 0.25rem;
}

.dark {
  --background: #0f0f0f;       
  --foreground: #f9fafb;

  --card: #181818;
  --card-foreground: #f9fafb;

  --popover: #181818;
  --popover-foreground: #f9fafb;

  --primary: #ff4e45;          
  --primary-foreground: #0b0b0b;

  --secondary: #212121;
  --secondary-foreground: #f9fafb;

  --muted: #272727;
  --muted-foreground: #a9a9a9;

  --accent: #272727;
  --accent-foreground: #f9fafb;

  --destructive: #ef4444;
  --destructive-foreground: #0b0b0b;

  --border: #303030;
  --input: #303030;
  --ring: #ff4e45;

  --chart-1: #ff4e45;
  --chart-2: #3ea6ff;
  --chart-3: #9e9e9e;
  --chart-4: #facc15;
  --chart-5: #22c55e;

  --sidebar: #0f0f0f;
  --sidebar-foreground: #f9fafb;
  --sidebar-primary: #ff4e45;
  --sidebar-primary-foreground: #0b0b0b;
  --sidebar-accent: #181818;
  --sidebar-accent-foreground: #f9fafb;
  --sidebar-border: #262626;
  --sidebar-ring: #ff4e45;

  --font-sans: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  --radius: 0.5rem;

  --shadow-x: 0px;
  --shadow-y: 1px;
  --shadow-blur: 2px;
  --shadow-spread: 0px;
  --shadow-opacity: 0.18;
  --shadow-color: hsl(0 0% 0%);

  --shadow-2xs: 0px 1px 2px 0px hsl(0 0% 0% / 0.20);
  --shadow-xs:  0px 1px 2px 0px hsl(0 0% 0% / 0.22);
  --shadow-sm:  0px 1px 2px 0px hsl(0 0% 0% / 0.24), 0px 1px 2px -1px hsl(0 0% 0% / 0.24);
  --shadow:     0px 1px 2px 0px hsl(0 0% 0% / 0.26), 0px 1px 2px -1px hsl(0 0% 0% / 0.26);
  --shadow-md:  0px 2px 4px 0px hsl(0 0% 0% / 0.30);
  --shadow-lg:  0px 4px 6px -1px hsl(0 0% 0% / 0.32);
  --shadow-xl:  0px 8px 10px -3px hsl(0 0% 0% / 0.34);
  --shadow-2xl: 0px 12px 18px -4px hsl(0 0% 0% / 0.45);
}

@theme inline {
  --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);
  --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);

  --font-sans: var(--font-sans);
  --font-mono: var(--font-mono);
  --font-serif: var(--font-serif);

  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);

  --shadow-2xs: var(--shadow-2xs);
  --shadow-xs: var(--shadow-xs);
  --shadow-sm: var(--shadow-sm);
  --shadow: var(--shadow);
  --shadow-md: var(--shadow-md);
  --shadow-lg: var(--shadow-lg);
  --shadow-xl: var(--shadow-xl);
  --shadow-2xl: var(--shadow-2xl);
}

body {
  font-family: var(--font-sans);
}

Related Themes

Explore more themes in the company category

View All company Themes