|
| 1 | +<resources xmlns:tools="http://schemas.android.com/tools"> |
| 2 | + <style name="BaseTheme" parent="Theme.AppCompat.DayNight.DarkActionBar"> |
| 3 | + <item name="android:fontFamily">@font/product_sans_regular</item> |
| 4 | + <item name="fontFamily">@font/product_sans_regular</item> |
| 5 | + <item name="android:statusBarColor">?colorPrimary</item> |
| 6 | + <item name="actionBarTheme">@style/CustomActionBar</item> |
| 7 | + <item name="alertDialogTheme">@style/Theme.AlertDialog</item> |
| 8 | + <item name="android:windowOptOutEdgeToEdgeEnforcement" tools:targetApi="35">true</item> |
| 9 | + </style> |
| 10 | + |
| 11 | + <style name="CustomActionBar" parent="ThemeOverlay.AppCompat.Dark.ActionBar"> |
| 12 | + <item name="android:fontFamily">@font/product_sans_medium</item> |
| 13 | + <item name="fontFamily">@font/product_sans_medium</item> |
| 14 | + </style> |
| 15 | + |
| 16 | + <style name="TransparentTheme" parent="@android:style/Theme.NoDisplay"> |
| 17 | + <item name="android:windowNoTitle">true</item> |
| 18 | + <item name="android:statusBarColor">@android:color/transparent</item> |
| 19 | + <item name="android:navigationBarColor">@android:color/transparent</item> |
| 20 | + <item name="android:colorBackgroundCacheHint">@null</item> |
| 21 | + </style> |
| 22 | + |
| 23 | + <style name="TitleStyle.Dialog" parent="RtlOverlay.DialogWindowTitle.AppCompat"> |
| 24 | + <item name="android:fontFamily">@font/product_sans_medium</item> |
| 25 | + <item name="fontFamily">@font/product_sans_medium</item> |
| 26 | + </style> |
| 27 | + |
| 28 | + <style name="ButtonStyle.Dialog" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog"> |
| 29 | + <item name="android:fontFamily">@font/product_sans_medium</item> |
| 30 | + <item name="fontFamily">@font/product_sans_medium</item> |
| 31 | + </style> |
| 32 | + |
| 33 | + <style name="Theme.AlertDialog" parent="Theme.AppCompat.DayNight.Dialog.Alert"> |
| 34 | + <item name="android:windowTitleStyle">@style/TitleStyle.Dialog</item> |
| 35 | + <item name="buttonBarButtonStyle">@style/ButtonStyle.Dialog</item> |
| 36 | + </style> |
| 37 | + |
| 38 | + <style name="WindowTitle" parent="Widget.AppCompat.TextView"> |
| 39 | + <item name="android:fontFamily">@font/product_sans_medium</item> |
| 40 | + <item name="fontFamily">@font/product_sans_medium</item> |
| 41 | + </style> |
| 42 | +</resources> |
0 commit comments