/**
 * Amano Team (amngit) Auto Theme
 * 
 * This is the main entry point theme that automatically switches between
 * light and dark variants based on the user's system preference.
 * 
 * Base theme: Forgejo's default theme (imported from installed instance)
 * Brand color: #0d1021 (dark navy blue)
 * 
 * Structure:
 *   - Base: theme-forgejo-auto.css (Forgejo defaults)
 *   - Light: theme-amngit-light.css (light color scheme)
 *   - Dark: theme-amngit-dark.css (dark color scheme, prefers-color-scheme: dark)
 */

/* ============================================
   BASE THEME IMPORT
   ============================================
   Pull Forgejo's default theme as the foundation.
   This file doesn't exist in this directory but is provided
   by the Forgejo instance at runtime.
   ============================================ */
@import "theme-forgejo-auto.css";

/* ============================================
   AMANO CUSTOMIZATIONS
   ============================================
   Light theme: Always loaded as base customizations
   Dark theme: Conditionally loaded when user prefers dark mode
   ============================================ */
@import "theme-amngit-light.css";
@import "theme-amngit-dark.css" (prefers-color-scheme: dark);
