You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.5 KiB
56 lines
2.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2018 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<resources>
|
|
|
|
<style name="PumpTheme" parent="Theme.MaterialComponents.NoActionBar">
|
|
<item name="android:colorForeground">@color/colorForeground</item>
|
|
<item name="android:colorBackground">@color/colorBackground</item>
|
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
|
<item name="colorAccent">@color/colorAccent</item>
|
|
<item name="colorControlNormal">@color/colorControlNormal</item>
|
|
<item name="colorControlActivated">@color/colorControlActivated</item>
|
|
<item name="colorControlHighlight">@color/colorControlHighlight</item>
|
|
<item name="colorButtonNormal">@color/colorButtonNormal</item>
|
|
|
|
<item name="android:textColorPrimary">@color/textColorPrimary</item>
|
|
<item name="android:textColorSecondary">@color/textColorSecondary</item>
|
|
<item name="android:textColorTertiary">@color/textColorTertiary</item>
|
|
|
|
<item name="tabStyle">@style/PumpTheme.TabLayout</item>
|
|
<item name="toolbarNavigationButtonStyle">@style/PumpTheme.ToolbarNavigationButtonStyle</item>
|
|
<item name="android:spinnerItemStyle">@style/PumpTheme.SpinnerItem</item>
|
|
</style>
|
|
|
|
<style name="PumpTheme.TabLayout" parent="Widget.MaterialComponents.TabLayout.Colored">
|
|
<item name="android:background">?android:colorPrimary</item>
|
|
<item name="tabIndicatorColor">?android:colorControlActivated</item>
|
|
<item name="tabRippleColor">?android:colorControlHighlight</item>
|
|
</style>
|
|
|
|
<style name="PumpTheme.ToolbarNavigationButtonStyle" parent="Widget.AppCompat.Toolbar.Button.Navigation">
|
|
<item name="tint">?android:textColorPrimary</item>
|
|
</style>
|
|
|
|
<style name="PumpTheme.SpinnerItem" parent="Widget.AppCompat.TextView.SpinnerItem">
|
|
<item name="android:gravity">end</item>
|
|
</style>
|
|
|
|
</resources>
|