```tsx title="basic.input.tsx"
    // @ts-nocheck
    export function BackgroundExample() {
      return (
        
          Primary Background
          Primary Low Background
          Hover Primary Low Background
          Focus Primary Low Background
          Active Primary Low Background
          Scale Background
          Scale Carrot Low Background
          Scale Carrot Mid Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Static Black Background
          Static White Background
          Static Gray900 Background
         
      );
    }
    export function SeedBackgroundExample() {
      return (
        
          Primary Background
          Primary Low Background
          Hover Primary Low Background
          Focus Primary Low Background
          Active Primary Low Background
          Scale Background
          Scale Carrot Low Background
          Scale Carrot Mid Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Static Black Background
          Static White Background
          Static Gray900 Background
         
      );
    }
    // Class Variance Authority Example
    import { cva } from "class-variance-authority";
    // Button component with variants
    const buttonVariants = cva(
      "inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors",
      {
        variants: {
          variant: {
            default: "bg-primary text-staticWhite hover:bg-primaryLow",
            destructive: "bg-danger text-staticWhite hover:bg-dangerLow",
            outline: "border border-gray300 bg-staticWhite text-gray900 hover:bg-gray100",
            secondary: "bg-seed-secondaryLow text-seed-secondary hover:bg-seed-gray200",
            ghost: "text-seed-primary hover:bg-seed-primaryLow",
            link: "text-seed-primary underline-offset-4 hover:underline",
          },
          size: {
            default: "h-10 px-4 py-2",
            sm: "h-9 rounded-md px-3",
            lg: "h-11 rounded-md px-8",
            icon: "h-10 w-10",
          },
        },
        defaultVariants: {
          variant: "default",
          size: "default",
        },
      }
    );
    ```
    ```tsx title="basic.output.tsx"
    // @ts-nocheck
    export function BackgroundExample() {
      return (
        
          Primary Background
          Primary Low Background
          Hover Primary Low Background
          Focus Primary Low Background
          Active Primary Low Background
          Scale Background
          Scale Carrot Low Background
          Scale Carrot Mid Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Static Black Background
          Static White Background
          Static Gray900 Background
         
      );
    }
    export function SeedBackgroundExample() {
      return (
        
          Primary Background
          Primary Low Background
          Hover Primary Low Background
          Focus Primary Low Background
          Active Primary Low Background
          Scale Background
          Scale Carrot Low Background
          Scale Carrot Mid Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Scale Carrot High Background
          Static Black Background
          Static White Background
          Static Gray900 Background
         
      );
    }
    // Class Variance Authority Example
    import { cva } from "class-variance-authority";
    // Button component with variants
    const buttonVariants = cva(
      "inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors",
      {
        variants: {
          variant: {
            default: "bg-bg-brand-solid text-palette-static-white hover:bg-palette-carrot-100",
            destructive: "bg-bg-critical-solid text-palette-static-white hover:bg-bg-critical-weak",
            outline: "border border-palette-gray-400 bg-palette-static-white text-palette-gray-1000 hover:bg-palette-gray-200",
            secondary: "bg-bg-neutral-weak text-palette-gray-900 hover:bg-palette-gray-300",
            ghost: "text-fg-brand hover:bg-palette-carrot-100",
            link: "text-fg-brand underline-offset-4 hover:underline",
          },
          size: {
            default: "h-10 px-4 py-2",
            sm: "h-9 rounded-md px-3",
            lg: "h-11 rounded-md px-8",
            icon: "h-10 w-10",
          },
        },
        defaultVariants: {
          variant: "default",
          size: "default",
        },
      }
    );
    ```