Documentation
Customization

Styling your project

Spiralsaas comes with shadcn/ui pre-installed.

Theme configuration

In the src/app/globals.css you can customize the colors

@layer base {
  :root {
    --background: 0 0% 97%;
    --foreground: 0 0% 5%;

    --card: 0 0% 6%;
    --card-foreground: 0 0% 95%;

    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;

    --primary: 73 100% 72%;
    --primary-foreground: 0 0% 6%;

    --primary-800: 73 50% 42%;
    --primary-700: 73 60% 52%;
    --primary-600: 73 70% 62%;
    --primary-400: 73 81% 76%;
    --primary-300: 73 83% 74%;
    --primary-200: 73 78 82%;
    --primary-100: 73 93% 92%;

    --secondary: 0 0% 20%;
    --secondary-foreground: 0 0% 95%;

    --muted: 210 5% 18%;
    --muted-foreground: 240 5% 65%;

    --accent: 240 4% 16%;
    --accent-foreground: 0 0% 95%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;

    --border: 240 5% 26%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;

    --radius: 0.5rem;
  }

  .dark {
    --background: 0 0% 6%;
    --foreground: 0 0% 95%;

    --card: 0 0% 6%;
    --card-foreground: 0 0% 95%;

    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;

    --primary: 73 100% 72%;
    --primary-foreground: 0 0% 6%;

    --primary-800: 73 50% 42%;
    --primary-700: 73 60% 52%;
    --primary-600: 73 70% 62%;
    --primary-400: 73 81% 76%;
    --primary-300: 73 83% 74%;
    --primary-200: 73 78 82%;
    --primary-100: 73 93% 92%;

    --secondary: 0 0% 20%;
    --secondary-foreground: 0 0% 95%;

    --muted: 210 5% 18%;
    --muted-foreground: 240 5% 65%;

    --accent: 240 4% 16%;
    --accent-foreground: 0 0% 95%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;

    --border: 240 5% 26%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;

    --radius: 0.5rem;
  }
}

Note: Both the dark and light theme are the same if you want to add a light theme simply modify the colors inside of :root

On this page