/** * MD3 Color Role tokens — static baseline values seeded from #1976D2. * * These 30 roles are the static fallback used when no runtime seedColor * is provided to createTheme(). The runtime values are generated by * generatePalette() in src/theme/generatePalette.ts. * * Reference: Material Design 3 Color System * https://m3.material.io/styles/color/roles */ export interface ColorScheme { primary: string; onPrimary: string; primaryContainer: string; onPrimaryContainer: string; secondary: string; onSecondary: string; secondaryContainer: string; onSecondaryContainer: string; tertiary: string; onTertiary: string; tertiaryContainer: string; onTertiaryContainer: string; error: string; onError: string; errorContainer: string; onErrorContainer: string; background: string; onBackground: string; surface: string; onSurface: string; surfaceVariant: string; onSurfaceVariant: string; outline: string; outlineVariant: string; shadow: string; scrim: string; inverseSurface: string; inverseOnSurface: string; inversePrimary: string; surfaceTint: string; success: string; onSuccess: string; successContainer: string; onSuccessContainer: string; warning: string; onWarning: string; warningContainer: string; onWarningContainer: string; info: string; onInfo: string; infoContainer: string; onInfoContainer: string; } /** Default MD3 light color scheme seeded from #1976D2 */ export declare const baseLightColors: ColorScheme; /** Default MD3 dark color scheme seeded from #1976D2 */ export declare const baseDarkColors: ColorScheme; //# sourceMappingURL=colors.d.ts.map