]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/values/styles.xml
Create separate progress bars for each tab.
[PrivacyBrowserAndroid.git] / app / src / main / res / values / styles.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2015-2019 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
7
8   Privacy Browser is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   Privacy Browser is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <resources>
22     <!-- Light theme styles. -->
23
24     <!-- `android:windowTranslucentStatus` makes the system status bar translucent.  When it is specified the root layout should include `android:fitsSystemWindows="true"`. -->
25     <style name="PrivacyBrowserLight" parent="Theme.AppCompat.Light.NoActionBar" >
26         <item name="android:windowTranslucentStatus">true</item>
27         <item name="addTabIconTintColor">@color/gray_700</item>
28         <item name="android:textColorPrimary">@color/primary_text_color_selector_light</item>
29         <item name="colorAccent">@color/blue_700</item>
30         <item name="android:textColorHighlight">@color/blue_200</item>
31         <item name="mainStatusBarBackground">@color/gray_500</item>
32         <item name="navigationHeaderBackground">@color/blue_700</item>
33         <item name="navigationHeaderTextColor">@color/white</item>
34         <item name="appBarTheme">@style/PrivacyBrowserAppBarLight</item>
35         <item name="progressTintColor">@color/blue_500</item>
36         <item name="navigationIconTintColor">@color/blue_800</item>
37         <item name="findOnPageIconTintColor">@color/blue_800</item>
38         <item name="viewSourceIconTintColor">@color/black</item>
39         <item name="sslHeader">@color/blue_700</item>
40         <item name="sslTitle">@color/blue_900</item>
41         <item name="urlHistoryText">@color/black</item>
42         <item name="redText">@color/red_a700</item>
43         <item name="aboutIcon">@drawable/about_light</item>
44         <item name="dialogTabLayoutTheme">@style/PrivacyBrowserTabLayoutDialogLight</item>
45     </style>
46
47     <!-- `windowActionModeOverlay` makes the contextual app bar cover the support app bar. -->
48     <style name="PrivacyBrowserLight.SecondaryActivity" >
49         <item name="windowActionModeOverlay">true</item>
50         <item name="colorPrimaryDark">@color/blue_700</item>
51         <item name="android:textColorHighlight">@color/blue_200</item>
52         <item name="android:actionModeBackground">@color/blue_700</item>
53         <item name="spinnerHeaderTextColor">@color/white</item>
54         <item name="spinnerBackground">@color/blue_750</item>
55         <item name="spinnerTextColorSelector">@color/spinner_color_selector_light</item>
56         <item name="appbarSpinnerTextColorSelector">@color/appbar_spinner_color_selector_light</item>
57         <item name="buttonTextColorSelector">@color/button_text_color_selector_light</item>
58         <item name="buttonBackgroundColorSelector">@color/button_background_color_selector_light</item>
59         <item name="listSelectorDrawable">@drawable/list_selector_light</item>
60         <item name="aboutTitle">@color/blue_900</item>
61         <item name="aboutText">@color/blue_700</item>
62         <item name="aboutBackground">@color/white</item>
63         <item name="domainSettingsIconTintColor">@color/blue_800</item>
64         <item name="deleteIcon">@drawable/delete_light</item>
65         <item name="addIcon">@drawable/add_light</item>
66         <item name="addBookmarkIcon">@drawable/create_bookmark_light</item>
67         <item name="addFolderIcon">@drawable/create_folder_light</item>
68         <item name="copyIcon">@drawable/copy_light</item>
69         <item name="clearIcon">@drawable/clear_light</item>
70         <item name="selectAllIcon">@drawable/select_all_light</item>
71         <item name="editIcon">@drawable/edit_light</item>
72         <item name="moveToFolderIcon">@drawable/move_to_folder_light</item>
73         <item name="saveIcon">@drawable/save_light</item>
74         <item name="sortIcon">@drawable/sort_light</item>
75         <item name="actionBarPopupTheme">@style/PrivacyBrowserPopupsLight</item>
76         <item name="appBarTextTheme">@style/PrivacyBrowserAppBarWhiteText</item>
77         <item name="tabLayoutTheme">@style/PrivacyBrowserTabLayoutLight</item>
78         <item name="popupsTheme">@style/PrivacyBrowserPopupsLight</item>
79     </style>
80
81     <!-- `colorPrimaryDark` is the color of the status bar. -->
82     <style name="PrivacyBrowserSettingsLight" parent="Theme.AppCompat.Light.DarkActionBar" >
83         <item name="colorPrimary">@color/blue_700</item>
84         <item name="colorPrimaryDark">@color/blue_900</item>
85         <item name="colorAccent">@color/blue_700</item>
86         <item name="userAgentIcon">@drawable/user_agent_light</item>
87         <item name="searchIcon">@drawable/search_enabled_light</item>
88         <item name="homepageIcon">@drawable/home_enabled_light</item>
89         <item name="fontSizeIcon">@drawable/font_size_light</item>
90     </style>
91
92     <!-- `ThemeOverlay.AppCompat.ActionBar` makes the hamburger icons dark. -->
93     <style name="PrivacyBrowserAppBarLight" parent="ThemeOverlay.AppCompat.ActionBar" />
94
95     <!-- `ThemeOverlay.AppCompat.Dark.ActionBar` makes the text and the icons in the AppBar white. -->
96     <style name="PrivacyBrowserAppBarWhiteText" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
97
98     <!-- `ThemeOverlay.AppCompat.Light` makes the popups have a light background with dark text. -->
99     <style name="PrivacyBrowserPopupsLight" parent="ThemeOverlay.AppCompat.Light" />
100
101     <!-- Configure the About and Guide `TabLayouts`. -->
102     <style name="PrivacyBrowserTabLayoutLight" parent="Widget.Design.TabLayout" >
103         <item name="android:textColorPrimary">@color/white</item>
104         <item name="android:textColorSecondary">@color/blue_100</item>
105         <item name="tabIndicatorColor">@color/white</item>
106     </style>
107
108     <style name="PrivacyBrowserTabLayoutDialogLight" parent="Widget.Design.TabLayout" >
109         <item name="android:textColorPrimary">@color/blue_700</item>
110         <item name="android:textColorSecondary">@color/blue_700_50</item>
111     </style>
112
113     <style name="PrivacyBrowserAlertDialogLight" parent="Theme.AppCompat.Light.Dialog.Alert" >
114         <item name="colorAccent">@color/blue_700</item>
115     </style>
116
117     <style name="PrivacyBrowserProgressBar" parent="Widget.AppCompat.ProgressBar.Horizontal" >
118         <item name="android:indeterminateDrawable">@android:drawable/progress_horizontal</item>
119     </style>
120
121
122     <!-- Dark theme styles. -->
123
124     <!-- `android:windowTranslucentStatus` makes the system status bar translucent.  When it is specified the root layout should include `android:fitsSystemWindows="true"`. -->
125     <style name="PrivacyBrowserDark" parent="Theme.AppCompat.NoActionBar" >
126         <item name="android:windowTranslucentStatus">true</item>
127         <item name="addTabIconTintColor">@color/gray_400</item>
128         <item name="android:textColorPrimary">@color/primary_text_color_selector_dark</item>
129         <item name="colorAccent">@color/blue_600</item>
130         <item name="android:textColorHighlight">@color/blue_800</item>
131         <item name="mainStatusBarBackground">@color/black</item>
132         <item name="navigationHeaderBackground">@color/blue_800</item>
133         <item name="navigationHeaderTextColor">@color/gray_300</item>
134         <item name="appBarTheme">@style/PrivacyBrowserAppBarDark</item>
135         <item name="progressTintColor">@color/blue_800</item>
136         <item name="navigationIconTintColor">@color/blue_600</item>
137         <item name="findOnPageIconTintColor">@color/blue_600</item>
138         <item name="viewSourceIconTintColor">@color/gray_300</item>
139         <item name="sslHeader">@color/blue_400</item>
140         <item name="sslTitle">@color/blue_700</item>
141         <item name="urlHistoryText">@color/gray_200</item>
142         <item name="redText">@color/red_900</item>
143         <item name="aboutIcon">@drawable/about_dark</item>
144     </style>
145
146     <!-- `windowActionModeOverlay` makes the contextual app bar cover the support app bar.  `colorPrimaryDark` goes behind the status bar, which is then darkened by the overlay.-->
147     <style name="PrivacyBrowserDark.SecondaryActivity" >
148         <item name="windowActionModeOverlay">true</item>
149         <item name="colorPrimaryDark">@color/blue_900</item>
150         <item name="android:actionModeBackground">@color/blue_800</item>
151         <item name="spinnerHeaderTextColor">@color/gray_300</item>
152         <item name="spinnerBackground">@color/blue_830</item>
153         <item name="spinnerTextColorSelector">@color/spinner_color_selector_dark</item>
154         <item name="appbarSpinnerTextColorSelector">@color/appbar_spinner_color_selector_dark</item>
155         <item name="buttonTextColorSelector">@color/button_text_color_selector_dark</item>
156         <item name="buttonBackgroundColorSelector">@color/button_background_color_selector_dark</item>
157         <item name="aboutTitle">@color/blue_600</item>
158         <item name="aboutText">@color/blue_400</item>
159         <item name="aboutBackground">@color/gray_850</item>
160         <item name="listSelectorDrawable">@drawable/list_selector_dark</item>
161         <item name="domainSettingsIconTintColor">@color/blue_600</item>
162         <item name="deleteIcon">@drawable/delete_dark</item>
163         <item name="addIcon">@drawable/add_dark</item>
164         <item name="addBookmarkIcon">@drawable/create_bookmark_dark</item>
165         <item name="addFolderIcon">@drawable/create_folder_dark</item>
166         <item name="copyIcon">@drawable/copy_dark</item>
167         <item name="clearIcon">@drawable/clear_dark</item>
168         <item name="selectAllIcon">@drawable/select_all_dark</item>
169         <item name="editIcon">@drawable/edit_dark</item>
170         <item name="moveToFolderIcon">@drawable/move_to_folder_dark</item>
171         <item name="saveIcon">@drawable/save_dark</item>
172         <item name="sortIcon">@drawable/sort_dark</item>
173         <item name="appBarTextTheme">@style/PrivacyBrowserAppBarDark</item>
174         <item name="tabLayoutTheme">@style/PrivacyBrowserTabLayoutDark</item>
175         <item name="popupsTheme">@style/PrivacyBrowserPopupsDark</item>
176         <item name="android:spinnerDropDownItemStyle">@style/PrivacyBrowserSpinnerDropDownItemStyleDark</item>
177     </style>
178
179     <style name="PrivacyBrowserSettingsDark" parent="Theme.AppCompat" >
180         <item name="colorPrimary">@color/blue_800</item>
181         <item name="colorPrimaryDark">@color/blue_900</item>
182         <item name="android:textColorPrimary">@color/primary_text_color_selector_dark</item>
183         <item name="colorAccent">@color/blue_600</item>
184         <item name="userAgentIcon">@drawable/user_agent_dark</item>
185         <item name="searchIcon">@drawable/search_enabled_dark</item>
186         <item name="homepageIcon">@drawable/home_enabled_dark</item>
187         <item name="fontSizeIcon">@drawable/font_size_dark</item>
188     </style>
189
190     <!-- `ThemeOverlay.AppCompat.Dark.ActionBar` makes the text and the icons in the AppBar white. -->
191     <style name="PrivacyBrowserAppBarDark" parent="ThemeOverlay.AppCompat.Dark.ActionBar" >
192         <item name="android:textColorPrimary">@color/gray_300</item>
193     </style>
194
195     <!-- Configure the About and Guide `TabLayouts`. -->
196     <style name="PrivacyBrowserTabLayoutDark" parent="Widget.Design.TabLayout" >
197         <item name="tabBackground">@color/blue_900</item>
198         <item name="android:textColorSecondary">@color/blue_300</item>
199         <item name="tabIndicatorColor">@color/gray_300</item>
200     </style>
201
202     <style name="PrivacyBrowserAlertDialogDark" parent="Theme.AppCompat.Dialog.Alert" >
203         <item name="android:windowBackground">@color/gray_850</item>
204         <item name="android:textColorPrimary">@color/gray_300</item>
205         <item name="android:textColorSecondary">@color/gray_300</item>
206         <item name="colorAccent">@color/blue_600</item>
207     </style>
208
209     <style name="PrivacyBrowserSpinnerDropDownItemStyleDark" parent="Base.Widget.AppCompat.TextView.SpinnerItem" >
210         <item name="android:textColor">@color/gray_300</item>
211     </style>
212
213     <!-- `ThemeOverlay.AppCompat.Dark` makes the popups have a dark background with light text. -->
214     <style name="PrivacyBrowserPopupsDark" parent="ThemeOverlay.AppCompat.Dark" >
215         <item name="android:textColorPrimary">@color/primary_text_color_selector_dark</item>
216     </style>
217 </resources>