51 lines
2.0 KiB
XML
51 lines
2.0 KiB
XML
<!--
|
|
~ Nextcloud Maps Geofavorites for Android
|
|
~
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
~ it under the terms of the GNU General Public License as published by
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
~ (at your option) any later version.
|
|
~
|
|
~ This program is distributed in the hope that it will be useful,
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
~ GNU General Public License for more details.
|
|
~
|
|
~ You should have received a copy of the GNU General Public License
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<resources>
|
|
<!-- Base application theme. -->
|
|
<style name="BaseTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
|
|
<item name="colorAccent">@color/defaultBrand</item>
|
|
<item name="colorControlNormal">?attr/colorAccent</item>
|
|
<item name="windowActionModeOverlay">true</item>
|
|
<!-- App bar -->
|
|
<item name="colorPrimary">@color/systemBar</item>
|
|
<!-- Generic background -->
|
|
<item name="android:windowBackground">@color/defaultBackground</item>
|
|
|
|
</style>
|
|
|
|
<style name="AppTheme" parent="BaseTheme"/>
|
|
|
|
<style name="SplashTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
|
|
<!-- Customize your theme here. -->
|
|
<item name="windowActionBar">false</item>
|
|
<item name="windowNoTitle">true</item>
|
|
<item name="android:windowFullscreen">true</item>
|
|
</style>
|
|
|
|
<!-- Geofavorite detail text appearances -->
|
|
|
|
<style name="TextAppearance.GeofavoriteDetail.Header.Expanded" parent="TextAppearance.Design.CollapsingToolbar.Expanded">
|
|
<item name="android:textSize">36sp</item>
|
|
<item name="android:textColor">@color/defaultBrand</item>
|
|
</style>
|
|
|
|
<style name="TextAppearance.GeofavoriteDetail.Header.Collapsed" parent="TextAppearance.AppCompat.Title">
|
|
<item name="android:textColor">@color/white</item>
|
|
</style>
|
|
|
|
</resources> |