-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.xml
92 lines (75 loc) · 4.27 KB
/
theme.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2019 Google Inc.
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>
<!--Base theme, all common styling here-->
<style name="Base.Owl" parent="@style/Theme.MaterialComponents.DayNight.NoActionBar">
<!--Material shape attributes-->
<item name="shapeAppearanceSmallComponent">@style/ShapeAppearance.Owl.SmallComponent</item>
<item name="shapeAppearanceMediumComponent">@style/ShapeAppearance.Owl.MediumComponent</item>
<item name="shapeAppearanceLargeComponent">@style/ShapeAppearance.Owl.LargeComponent</item>
<!--Material type attributes-->
<item name="textAppearanceHeadline1">@style/TextAppearance.Owl.Headline1</item>
<item name="textAppearanceHeadline2">@style/TextAppearance.Owl.Headline2</item>
<item name="textAppearanceHeadline3">@style/TextAppearance.Owl.Headline3</item>
<item name="textAppearanceHeadline4">@style/TextAppearance.Owl.Headline4</item>
<item name="textAppearanceHeadline5">@style/TextAppearance.Owl.Headline5</item>
<item name="textAppearanceHeadline6">@style/TextAppearance.Owl.Headline6</item>
<item name="textAppearanceSubtitle1">@style/TextAppearance.Owl.Subtitle1</item>
<item name="textAppearanceSubtitle2">@style/TextAppearance.Owl.Subtitle2</item>
<item name="textAppearanceBody1">@style/TextAppearance.Owl.Body1</item>
<item name="textAppearanceBody2">@style/TextAppearance.Owl.Body2</item>
<item name="textAppearanceButton">@style/TextAppearance.Owl.Button</item>
<item name="textAppearanceCaption">@style/TextAppearance.Owl.Caption</item>
<item name="textAppearanceOverline">@style/TextAppearance.Owl.Overline</item>
<!--Platform attributes-->
<item name="android:navigationBarColor">@color/nav_bar</item>
<item name="android:statusBarColor">@color/immersive_sys_ui</item>
<!--Default styles-->
<item name="bottomNavigationStyle">@style/Widget.Owl.BottomNavigationView</item>
</style>
<style name="Owl" parent="@style/Base.Owl"/>
<style name="Owl.Yellow">
<item name="colorPrimary">@color/owl_yellow_500</item>
<item name="colorPrimaryVariant">@color/owl_yellow_400</item>
<item name="colorSecondary">@color/owl_blue_700</item>
<item name="colorSecondaryVariant">@color/owl_blue_800</item>
</style>
<style name="Owl.Blue">
<item name="colorPrimary">@color/owl_blue_700</item>
<item name="colorPrimaryVariant">@color/owl_blue_800</item>
<item name="colorSecondary">@color/owl_yellow_500</item>
<item name="colorSecondaryVariant">@color/owl_yellow_400</item>
</style>
<style name="ThemeOverlay.Owl.Blue" parent="@style/ThemeOverlay.MaterialComponents.Light">
<item name="colorPrimary">@color/owl_blue_700</item>
<item name="colorPrimaryVariant">@color/owl_blue_800</item>
<item name="colorSecondary">@color/owl_yellow_500</item>
<item name="colorSecondaryVariant">@color/owl_yellow_400</item>
<item name="colorOnPrimary">#fff</item>
</style>
<style name="ThemeOverlay.Owl.Blue.Dark" parent="@style/ThemeOverlay.MaterialComponents.Dark">
<item name="colorPrimary">@color/owl_blue_700</item>
<item name="colorPrimaryVariant">@color/owl_blue_800</item>
<item name="colorSecondary">@color/owl_yellow_500</item>
<item name="colorSecondaryVariant">@color/owl_yellow_400</item>
<item name="colorOnPrimary">#fff</item>
</style>
<style name="Owl.Pink">
<item name="colorPrimary">@color/owl_pink_500</item>
<item name="colorSecondary">@color/owl_pink_500</item>
<item name="colorPrimaryVariant">@color/owl_pink_600</item>
<item name="colorOnPrimary">#000</item>
</style>
<style name="ThemeOverlay.Owl.TransitionShapeAppearance.Small" parent="">
<item name="transitionShapeAppearance">@style/ShapeAppearance.Owl.SmallComponent</item>
</style>
</resources>