package net.schueller.peertube.presentation.ui.theme.colors.def import androidx.compose.material3.darkColorScheme import androidx.compose.material3.lightColorScheme import androidx.compose.ui.graphics.Color val md_theme_light_primary = Color(0xFF1760a5) val md_theme_light_onPrimary = Color(0xFFffffff) val md_theme_light_primaryContainer = Color(0xFFd3e4ff) val md_theme_light_onPrimaryContainer = Color(0xFF001c3a) val md_theme_light_secondary = Color(0xFF545f70) val md_theme_light_onSecondary = Color(0xFFffffff) val md_theme_light_secondaryContainer = Color(0xFFd7e3f8) val md_theme_light_onSecondaryContainer = Color(0xFF111c2b) val md_theme_light_tertiary = Color(0xFF6d5677) val md_theme_light_onTertiary = Color(0xFFffffff) val md_theme_light_tertiaryContainer = Color(0xFFf5d9ff) val md_theme_light_onTertiaryContainer = Color(0xFF261430) val md_theme_light_error = Color(0xFFba1b1b) val md_theme_light_errorContainer = Color(0xFFffdad4) val md_theme_light_onError = Color(0xFFffffff) val md_theme_light_onErrorContainer = Color(0xFF410001) val md_theme_light_background = Color(0xFFfdfcff) val md_theme_light_onBackground = Color(0xFF1b1b1d) val md_theme_light_surface = Color(0xFFfdfcff) val md_theme_light_onSurface = Color(0xFF1b1b1d) val md_theme_light_surfaceVariant = Color(0xFFdfe2eb) val md_theme_light_onSurfaceVariant = Color(0xFF43474e) val md_theme_light_outline = Color(0xFF73777f) val md_theme_light_inverseOnSurface = Color(0xFFf1f0f4) val md_theme_light_inverseSurface = Color(0xFF2f3033) val md_theme_dark_primary = Color(0xFFa1c9ff) val md_theme_dark_onPrimary = Color(0xFF00315e) val md_theme_dark_primaryContainer = Color(0xFF004884) val md_theme_dark_onPrimaryContainer = Color(0xFFd3e4ff) val md_theme_dark_secondary = Color(0xFFbcc7db) val md_theme_dark_onSecondary = Color(0xFF263141) val md_theme_dark_secondaryContainer = Color(0xFF3c4758) val md_theme_dark_onSecondaryContainer = Color(0xFFd7e3f8) val md_theme_dark_tertiary = Color(0xFFd9bde3) val md_theme_dark_onTertiary = Color(0xFF3c2946) val md_theme_dark_tertiaryContainer = Color(0xFF543f5e) val md_theme_dark_onTertiaryContainer = Color(0xFFf5d9ff) val md_theme_dark_error = Color(0xFFffb4a9) val md_theme_dark_errorContainer = Color(0xFF930006) val md_theme_dark_onError = Color(0xFF680003) val md_theme_dark_onErrorContainer = Color(0xFFffdad4) val md_theme_dark_background = Color(0xFF1b1b1d) val md_theme_dark_onBackground = Color(0xFFe3e2e6) val md_theme_dark_surface = Color(0xFF1b1b1d) val md_theme_dark_onSurface = Color(0xFFe3e2e6) val md_theme_dark_surfaceVariant = Color(0xFF43474e) val md_theme_dark_onSurfaceVariant = Color(0xFFc3c6cf) val md_theme_dark_outline = Color(0xFF8d9199) val md_theme_dark_inverseOnSurface = Color(0xFF1b1b1d) val md_theme_dark_inverseSurface = Color(0xFFe3e2e6) val seed = Color(0xFF5175a4) val error = Color(0xFFba1b1b) // default val LightThemeColors = lightColorScheme( primary = md_theme_light_primary, onPrimary = md_theme_light_onPrimary, primaryContainer = md_theme_light_primaryContainer, onPrimaryContainer = md_theme_light_onPrimaryContainer, secondary = md_theme_light_secondary, onSecondary = md_theme_light_onSecondary, secondaryContainer = md_theme_light_secondaryContainer, onSecondaryContainer = md_theme_light_onSecondaryContainer, tertiary = md_theme_light_tertiary, onTertiary = md_theme_light_onTertiary, tertiaryContainer = md_theme_light_tertiaryContainer, onTertiaryContainer = md_theme_light_onTertiaryContainer, error = md_theme_light_error, errorContainer = md_theme_light_errorContainer, onError = md_theme_light_onError, onErrorContainer = md_theme_light_onErrorContainer, background = md_theme_light_background, onBackground = md_theme_light_onBackground, surface = md_theme_light_surface, onSurface = md_theme_light_onSurface, surfaceVariant = md_theme_light_surfaceVariant, onSurfaceVariant = md_theme_light_onSurfaceVariant, outline = md_theme_light_outline, inverseOnSurface = md_theme_light_inverseOnSurface, inverseSurface = md_theme_light_inverseSurface, ) val DarkThemeColors = darkColorScheme( primary = md_theme_dark_primary, onPrimary = md_theme_dark_onPrimary, primaryContainer = md_theme_dark_primaryContainer, onPrimaryContainer = md_theme_dark_onPrimaryContainer, secondary = md_theme_dark_secondary, onSecondary = md_theme_dark_onSecondary, secondaryContainer = md_theme_dark_secondaryContainer, onSecondaryContainer = md_theme_dark_onSecondaryContainer, tertiary = md_theme_dark_tertiary, onTertiary = md_theme_dark_onTertiary, tertiaryContainer = md_theme_dark_tertiaryContainer, onTertiaryContainer = md_theme_dark_onTertiaryContainer, error = md_theme_dark_error, errorContainer = md_theme_dark_errorContainer, onError = md_theme_dark_onError, onErrorContainer = md_theme_dark_onErrorContainer, background = md_theme_dark_background, onBackground = md_theme_dark_onBackground, surface = md_theme_dark_surface, onSurface = md_theme_dark_onSurface, surfaceVariant = md_theme_dark_surfaceVariant, onSurfaceVariant = md_theme_dark_onSurfaceVariant, outline = md_theme_dark_outline, inverseOnSurface = md_theme_dark_inverseOnSurface, inverseSurface = md_theme_dark_inverseSurface, )