@import "tailwindcss";

/* Custom styles for tech-affine minimal design */
@layer base {
  :root {
    --color-primary: theme('colors.zinc.900');
    --color-accent: theme('colors.emerald.500');
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --color-primary: theme('colors.zinc.100');
      --color-accent: theme('colors.emerald.400');
    }
  }
}