This repository has been archived on 2026-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
DashboardClient/app_dashboard/src/main/res/values/themes.xml
2025-09-11 14:31:36 +08:00

21 lines
965 B
XML

<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Base.Theme.DashBoardClient" parent="Theme.Material3.Dark.NoActionBar">
<!-- Customize your light theme here. -->
<!-- <item name="colorPrimary">@color/my_light_primary</item> -->
</style>
<style name="Theme.Dashboard" parent="Base.Theme.DashBoardClient" />
<style name="Theme.Dashboard.Fullscreen" parent="Theme.Dashboard">
<item name="android:actionBarStyle">@style/Widget.Theme.Dashboard.ActionBar.Fullscreen
</item>
<item name="android:windowActionBarOverlay">true</item>
<item name="android:windowBackground">@null</item>
</style>
<style name="ThemeOverlay.DashBoardClient.FullscreenContainer" parent="">
<item name="fullscreenBackgroundColor">@color/light_blue_600</item>
<item name="fullscreenTextColor">@color/light_blue_A200</item>
</style>
</resources>