blob: eb88140abede4ff5d9716453faaba16a8bd55173 [file] [log] [blame]
Santiago Etchebeheref23466e2018-12-10 14:56:55 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2018 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<resources>
Santiago Etchebehere3e096112019-05-28 14:38:21 -070018
19 <!-- Main themes -->
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080020 <style name="CustomizationTheme" parent="@android:style/Theme.DeviceDefault.Settings">
21 <item name="colorPrimary">?android:colorPrimary</item>
22
Santiago Etchebehereeb186982019-01-31 14:49:06 -080023 <item name="android:statusBarColor">?android:colorPrimary</item>
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080024
Santiago Etchebehere631bfe32019-02-06 18:12:01 -080025 <item name="android:navigationBarColor">?android:colorPrimaryDark</item>
Santiago Etchebeheref0e2dad2019-05-03 18:29:59 -070026 <item name="android:navigationBarDividerColor">@android:color/transparent</item>
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080027
28 <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
Santiago Etchebehere418a40e2019-03-25 14:28:37 -070029 <item name="dialogPreferredPadding">24dp</item>
30 <item name="colorControlHighlight">@color/ripple_material_dark</item>
Santiago Etchebehere9474b9c2019-04-17 17:54:11 -030031
32 <item name="actionButtonStyle">?android:actionButtonStyle</item>
33 <item name="actionMenuTextColor">?android:actionMenuTextColor</item>
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080034 </style>
Santiago Etchebehere3e096112019-05-28 14:38:21 -070035
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080036 <style name="CustomizationTheme.NoActionBar">
37 <item name="android:windowActionBar">false</item>
38 <item name="android:windowNoTitle">true</item>
Santiago Etchebehereb5fed022019-02-21 16:59:23 -080039 <item name="android:fitsSystemWindows">false</item>
40 <item name="android:windowDrawsSystemBarBackgrounds">true</item>
Santiago Etchebehere8e8b4742020-03-11 19:51:52 -070041
42 <item name="android:windowBackground">@android:color/transparent</item>
43 <item name="android:windowContentOverlay">@null</item>
44 <item name="android:windowDisablePreview">true</item>
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080045 </style>
Santiago Etchebehere10e79f12018-12-19 15:53:42 -080046
Santiago Etchebehere3e096112019-05-28 14:38:21 -070047 <!-- Bottom nav -->
Santiago Etchebeheref18580d2019-01-10 10:24:42 -080048 <style name="BottomNavStyle">
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080049 <item name="itemIconTint">@color/bottom_nav_item_color</item>
50 <item name="itemTextColor">@color/bottom_nav_item_color</item>
Santiago Etchebehere6507b7a2019-06-24 15:05:32 -070051 <item name="itemTextAppearanceActive">@style/BottomNavTextAppearanceActive</item>
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080052 <item name="itemTextAppearanceInactive">@style/BottomNavTextAppearance</item>
Amin Shaikh89eef632019-04-19 17:32:43 -040053 <item name="itemBackground">?android:attr/selectableItemBackgroundBorderless</item>
Beth Thibodeau3e000c42019-03-11 11:37:41 -040054 <item name="android:background">?android:colorPrimary</item>
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080055 </style>
56
Santiago Etchebehere58e1b522019-12-05 10:25:13 -080057 <style name="BottomNavTextAppearance" parent="TitleTextAppearance">
Beth Thibodeau3e000c42019-03-11 11:37:41 -040058 <item name="android:textSize">@dimen/bottom_navbar_font_text_size</item>
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080059 </style>
Santiago Etchebehere10e79f12018-12-19 15:53:42 -080060
Santiago Etchebehere6507b7a2019-06-24 15:05:32 -070061 <style name="BottomNavTextAppearanceActive" parent="BottomNavTextAppearance">
62 <item name="android:textStyle">bold</item>
63 </style>
64
Santiago Etchebehere3e096112019-05-28 14:38:21 -070065 <!-- Common components and widgets -->
Santiago Etchebehere58e1b522019-12-05 10:25:13 -080066 <style name="TitleTextAppearance" parent="@android:style/TextAppearance.DeviceDefault.Widget.ActionBar.Title"/>
Santiago Etchebehere10e79f12018-12-19 15:53:42 -080067
68 <style name="ActionPrimaryButton" parent="android:Widget.DeviceDefault.Button.Colored"/>
Santiago Etchebehere273f6552019-01-04 17:33:45 -080069
Amin Shaikh535db3e2019-04-19 09:51:41 -040070 <style name="ActionSecondaryButton" parent="android:Widget.DeviceDefault.Button.Borderless.Colored"/>
71
Santiago Etchebehere3e096112019-05-28 14:38:21 -070072 <!-- Option tiles -->
Santiago Etchebehere58e1b522019-12-05 10:25:13 -080073 <style name="OptionTitleTextAppearance" parent="TitleTextAppearance">
Santiago Etchebehere273f6552019-01-04 17:33:45 -080074 <item name="android:textColor">@color/option_title_color</item>
Santiago Etchebehere78acbb62019-02-19 15:36:23 -080075 <item name="android:textAlignment">center</item>
Beth Thibodeau3e000c42019-03-11 11:37:41 -040076 <item name="android:textSize">@dimen/theme_option_title_font_text_size</item>
Santiago Etchebehere273f6552019-01-04 17:33:45 -080077 </style>
78
Santiago Etchebehere58e1b522019-12-05 10:25:13 -080079 <style name="CardTitleTextAppearance" parent="TitleTextAppearance">
Santiago Etchebehere988f99d2018-12-20 17:13:12 -080080 <item name="android:textStyle">bold</item>
81 <item name="android:textSize">@dimen/card_title_text_size</item>
82 </style>
83
Santiago Etchebehere551f0c02019-04-10 10:36:47 -030084 <style name="CoverTitleTextAppearance" parent="CardTitleTextAppearance">
85 <item name="android:textSize">@dimen/card_cover_title_text_size</item>
Santiago Etchebehere0f074b02019-06-03 16:29:41 -070086 <item name="android:textColor">@color/cover_title_color</item>
Santiago Etchebehere551f0c02019-04-10 10:36:47 -030087 </style>
88
Santiago Etchebehere58e1b522019-12-05 10:25:13 -080089 <style name="FontCardTitleStyle" parent="TitleTextAppearance">
Santiago Etchebehere988f99d2018-12-20 17:13:12 -080090 <item name="android:textAlignment">center</item>
Santiago Etchebehere988f99d2018-12-20 17:13:12 -080091 </style>
92
93 <style name="FontCardBodyTextStyle">
Santiago Etchebehere0831fa82019-04-26 15:53:52 -070094 <item name="android:layout_width">wrap_content</item>
95 <item name="android:maxWidth">@dimen/font_preview_body_width</item>
Santiago Etchebehere988f99d2018-12-20 17:13:12 -080096 <item name="android:textAlignment">center</item>
97 <item name="android:textAppearance">@android:style/TextAppearance.DeviceDefault</item>
98 </style>
99
Santiago Etchebehere3e096112019-05-28 14:38:21 -0700100 <!-- Custom theme editor -->
Santiago Etchebehere0831fa82019-04-26 15:53:52 -0700101 <style name="EditLabelStyle">
Santiago Etchebehere05cfcdd2019-05-31 14:11:37 -0700102 <item name="android:textAppearance">@android:style/TextAppearance.DeviceDefault.Widget.Button</item>
Santiago Etchebeheref96fb242019-05-16 17:24:11 -0700103 <item name="android:textColor">@color/material_white_100</item>
Santiago Etchebehere05cfcdd2019-05-31 14:11:37 -0700104 <item name="android:textAllCaps">false</item>
Santiago Etchebehereb5fed022019-02-21 16:59:23 -0800105 </style>
Santiago Etchebehere7ff4c592019-05-10 10:21:09 -0700106
107 <style name="CustomThemeNameEditText" parent="@android:style/Widget.DeviceDefault.EditText">
108 <item name="android:background">@drawable/edittext_background</item>
109 <item name="android:paddingTop">16dp</item>
110 <item name="android:paddingBottom">16dp</item>
111 <item name="android:paddingStart">12dp</item>
112 <item name="android:paddingEnd">12dp</item>
113 <item name="android:textColor">@color/edittext_text_color</item>
114 <item name="android:inputType">text</item>
115 <item name="android:maxLength">100</item>
116 </style>
Santiago Etchebehere988f99d2018-12-20 17:13:12 -0800117</resources>