Initial commit

This commit is contained in:
Michatec
2025-04-27 15:07:05 +02:00
commit 2162c9fb40
157 changed files with 12179 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- DAY THEME COLORS -->
<!-- app colors -->
<color name="app_onboarding_icons">@android:color/system_neutral1_900</color>
<!-- text & icons -->
<color name="text_default">@android:color/system_neutral2_900</color>
<color name="text_lightweight">@android:color/system_neutral2_700</color>
<color name="icon_default">@android:color/system_accent1_600</color>
<color name="icon_lightweight">@android:color/system_neutral2_700</color>
<color name="icon_lightweight_background">@android:color/system_accent2_200</color>
<!-- list -->
<color name="list_card_background">@android:color/system_neutral2_10</color>
<color name="list_card_stroke_background">@android:color/system_accent2_200</color>
<color name="list_card_cover_background">@android:color/system_neutral2_100</color>
<color name="list_card_delete_background">#FFB3261E</color>
<color name="list_card_delete_icon">@android:color/system_accent1_0</color>
<color name="list_card_mark_starred_background">@android:color/system_accent1_600</color>
<color name="list_card_mark_starred_star">@android:color/system_accent1_0</color>
<color name="search_result_background">@android:color/system_neutral2_10</color>
<color name="search_result_background_selected">@android:color/system_accent1_100</color>
<!-- player sheet -->
<color name="player_button_background">@android:color/system_accent1_600</color>
<color name="player_button_buffering">@android:color/system_accent1_200</color>
<color name="player_sheet_background">@android:color/system_neutral2_800</color>
<color name="player_sheet_text_main">@android:color/system_neutral1_50</color>
<color name="player_sheet_icon">@android:color/system_neutral1_50</color>
<!-- default colors -->
<color name="default_neutral_white">@android:color/system_accent1_0</color>
<color name="default_neutral_lighter">@android:color/system_neutral1_100</color>
<color name="default_neutral_medium_light">@android:color/system_neutral1_300</color>
<color name="default_neutral_dark">@android:color/system_neutral1_600</color>
</resources>
+57
View File
@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="Theme.Material3.DayNight.NoActionBar">
<!-- Default colors -->
<item name="colorPrimary">@android:color/system_accent1_600</item>
<item name="colorOnPrimary">@android:color/system_accent1_0</item>
<item name="colorPrimaryContainer">@android:color/system_accent1_200</item>
<item name="colorSecondary">@android:color/system_accent1_600</item>
<item name="colorSurfaceVariant">@android:color/system_neutral2_100</item>
<item name="colorOnSurfaceVariant">@android:color/system_accent1_600</item>
<item name="android:colorBackground">@android:color/system_neutral2_10</item>
<item name="android:textColorHighlight">@android:color/system_accent1_200</item>
<!-- Do not use primary colored elevation overlays to present a visual hierarchy - TOO COLORFUL -->
<item name="elevationOverlayEnabled">false</item>
<!-- Switch Theming -->
<item name="switchPreferenceCompatStyle">@style/Preference.SwitchPreferenceCompat.Material3</item>
<!-- Material Alert Dialog Theming -->
<item name="materialAlertDialogTheme">@style/ThemeOverlay.App.MaterialAlertDialog</item>
<item name="alertDialogTheme">@style/ThemeOverlay.App.AlertDialogTheme</item>
<!-- Material Time Picker Theming -->
<item name="materialTimePickerTheme">@style/ThemeOverlay.App.TimePicker</item>
<!-- Use "light" Status and Navigation Bar -->
<item name="android:windowLightStatusBar">true</item>
<item name="android:windowLightNavigationBar">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<!-- Set splash screen icon background color -->
<item name="android:windowSplashScreenIconBackgroundColor">@color/splashBackgroundColor</item>
</style>
<style name="ThemeOverlay.App.MaterialAlertDialog" parent="ThemeOverlay.Material3.MaterialAlertDialog">
<item name="colorSurface">@color/list_card_background</item>
<item name="materialAlertDialogBodyTextStyle">@style/TextAppearance.MaterialComponents.Body1</item>
<item name="android:backgroundDimAmount">0.64</item>
</style>
<style name="ThemeOverlay.App.TimePicker" parent="ThemeOverlay.MaterialComponents.TimePicker">
<item name="colorSurface">@color/list_card_background</item>
</style>
<style name="App.Widget.Material3.CardView.Outlined" parent="@style/Widget.Material3.CardView.Outlined">
<item name="cardBackgroundColor">@color/list_card_background</item>
<item name="strokeColor">@color/list_card_stroke_background</item>
<item name="strokeWidth">3dp</item>
<item name="cardCornerRadius">24dp</item>
</style>
<style name="App.Widget.MaterialComponents.TextView" parent="@style/Widget.MaterialComponents.TextView">
<item name="android:textAppearance">@style/TextAppearance.Material3.TitleMedium</item>
</style>
</resources>