1 <?xml version="1.0" encoding="utf-8"?>
4 Copyright © 2015-2017 Soren Stoutner <soren@stoutner.com>.
6 This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
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.
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.
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/>. -->
22 <!-- Light theme styles. -->
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="colorAccent">@color/blue_700</item>
28 <item name="android:textColorHighlight">@color/blue_200</item>
29 <item name="navigationHeaderBackground">@color/blue_700</item>
30 <item name="navigationHeaderTextColor">@color/white</item>
31 <item name="appBarTheme">@style/PrivacyBrowserAppBarLight</item>
32 <item name="progressTintColor">@color/blue_700</item>
33 <item name="navigationIconTintColor">@color/blue_800</item>
34 <item name="findOnPageIconTintColor">@color/blue_700</item>
35 <item name="sslTitle">@color/blue_900</item>
36 <item name="urlHistoryText">@color/black</item>
39 <!-- `windowActionModeOverlay` makes the contextual app bar cover the support app bar. `colorPrimaryDark` goes behind the status bar, which is then darkened by the overlay.-->
40 <style name="PrivacyBrowserLight.SecondaryActivity" >
41 <item name="windowActionModeOverlay">true</item>
42 <item name="colorPrimaryDark">@color/blue_700</item>
43 <item name="android:textColorHighlight">@color/blue_200</item>
44 <item name="android:actionModeBackground">@color/blue_700</item>
45 <item name="primaryTextColorSelector">@color/primary_text_color_selector_light</item>
46 <item name="listSelectorDrawable">@drawable/list_selector_light</item>
47 <item name="aboutTitle">@color/blue_900</item>
48 <item name="aboutText">@color/blue_700</item>
49 <item name="iconTintColor">@color/blue_800</item>
50 <item name="deleteIcon">@drawable/delete_light</item>
51 <item name="addIcon">@drawable/add_light</item>
52 <item name="createFolderIcon">@drawable/create_folder_light</item>
53 <item name="selectAllIcon">@drawable/select_all_light</item>
54 <item name="editIcon">@drawable/edit_light</item>
55 <item name="moveToFolderIcon">@drawable/move_to_folder_light</item>
56 <item name="actionBarPopupTheme">@style/PrivacyBrowserPopupsLight</item>
57 <item name="appBarTextTheme">@style/PrivacyBrowserAppBarWhiteText</item>
58 <item name="tabLayoutTheme">@style/PrivacyBrowserTabLayoutLight</item>
59 <item name="popupsTheme">@style/PrivacyBrowserPopupsLight</item>
62 <!-- `colorPrimaryDark` is the color of the status bar. -->
63 <style name="PrivacyBrowserSettingsLight" parent="Theme.AppCompat.Light.DarkActionBar" >
64 <item name="colorPrimary">@color/blue_700</item>
65 <item name="colorPrimaryDark">@color/blue_900</item>
66 <item name="colorAccent">@color/blue_700</item>
67 <item name="userAgentIcon">@drawable/user_agent_light</item>
68 <item name="searchIcon">@drawable/search_enabled_light</item>
69 <item name="homepageIcon">@drawable/home_enabled_light</item>
70 <item name="fontSizeIcon">@drawable/font_size_light</item>
73 <!-- `ThemeOverlay.AppCompat.ActionBar` makes the hamburger icons dark. -->
74 <style name="PrivacyBrowserAppBarLight" parent="ThemeOverlay.AppCompat.ActionBar" />
76 <!-- `ThemeOverlay.AppCompat.Dark.ActionBar` makes the text and the icons in the AppBar white. -->
77 <style name="PrivacyBrowserAppBarWhiteText" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
79 <!-- `ThemeOverlay.AppCompat.Light` makes the popups have a light background with dark text. -->
80 <style name="PrivacyBrowserPopupsLight" parent="ThemeOverlay.AppCompat.Light" />
82 <!-- Configure the About and Guide `TabLayouts`. -->
83 <style name="PrivacyBrowserTabLayoutLight" parent="Widget.Design.TabLayout" >
84 <item name="android:textColorPrimary">@color/white</item>
85 <item name="android:textColorSecondary">@color/blue_100</item>
86 <item name="tabIndicatorColor">@color/white</item>
89 <style name="PrivacyBrowserAlertDialogLight" parent="Theme.AppCompat.Light.Dialog.Alert" >
90 <item name="colorAccent">@color/blue_700</item>
93 <!-- Dark theme styles. -->
95 <!-- `android:windowTranslucentStatus` makes the system status bar translucent. When it is specified the root layout should include `android:fitsSystemWindows="true"`. -->
96 <style name="PrivacyBrowserDark" parent="Theme.AppCompat.NoActionBar" >
97 <item name="android:windowTranslucentStatus">true</item>
98 <item name="android:textColorPrimary">@color/primary_text_color_selector_dark</item>
99 <item name="colorAccent">@color/blue_600</item>
100 <item name="android:textColorHighlight">@color/blue_800</item>
101 <item name="navigationHeaderBackground">@color/blue_800</item>
102 <item name="navigationHeaderTextColor">@color/gray_300</item>
103 <item name="appBarTheme">@style/PrivacyBrowserAppBarDark</item>
104 <item name="progressTintColor">@color/blue_800</item>
105 <item name="navigationIconTintColor">@color/blue_600</item>
106 <item name="findOnPageIconTintColor">@color/blue_600</item>
107 <item name="sslTitle">@color/blue_700</item>
108 <item name="urlHistoryText">@color/gray_200</item>
111 <!-- `windowActionModeOverlay` makes the contextual app bar cover the support app bar. `colorPrimaryDark` goes behind the status bar, which is then darkened by the overlay.-->
112 <style name="PrivacyBrowserDark.SecondaryActivity" >
113 <item name="windowActionModeOverlay">true</item>
114 <item name="colorPrimaryDark">@color/blue_800</item>
115 <item name="android:actionModeBackground">@color/blue_800</item>
116 <item name="primaryTextColorSelector">@color/primary_text_color_selector_dark</item>
117 <item name="aboutTitle">@color/blue_600</item>
118 <item name="aboutText">@color/blue_400</item>
119 <item name="listSelectorDrawable">@drawable/list_selector_dark</item>
120 <item name="iconTintColor">@color/blue_600</item>
121 <item name="deleteIcon">@drawable/delete_dark</item>
122 <item name="addIcon">@drawable/add_dark</item>
123 <item name="createFolderIcon">@drawable/create_folder_dark</item>
124 <item name="selectAllIcon">@drawable/select_all_dark</item>
125 <item name="editIcon">@drawable/edit_dark</item>
126 <item name="moveToFolderIcon">@drawable/move_to_folder_dark</item>
127 <item name="appBarTextTheme">@style/PrivacyBrowserAppBarDark</item>
128 <item name="tabLayoutTheme">@style/PrivacyBrowserTabLayoutDark</item>
129 <item name="popupsTheme">@style/PrivacyBrowserPopupsDark</item>
130 <item name="android:spinnerDropDownItemStyle">@style/PrivacyBrowserSpinnerDropDownItemStyleDark</item>
133 <style name="PrivacyBrowserSettingsDark" parent="Theme.AppCompat" >
134 <item name="colorPrimary">@color/blue_800</item>
135 <item name="colorPrimaryDark">@color/blue_900</item>
136 <item name="android:textColorPrimary">@color/primary_text_color_selector_dark</item>
137 <item name="colorAccent">@color/blue_600</item>
138 <item name="userAgentIcon">@drawable/user_agent_dark</item>
139 <item name="searchIcon">@drawable/search_enabled_dark</item>
140 <item name="homepageIcon">@drawable/home_enabled_dark</item>
141 <item name="fontSizeIcon">@drawable/font_size_dark</item>
144 <!-- `ThemeOverlay.AppCompat.Dark.ActionBar` makes the text and the icons in the AppBar white. -->
145 <style name="PrivacyBrowserAppBarDark" parent="ThemeOverlay.AppCompat.Dark.ActionBar" >
146 <item name="android:textColorPrimary">@color/gray_300</item>
149 <!-- Configure the About and Guide `TabLayouts`. -->
150 <style name="PrivacyBrowserTabLayoutDark" parent="Widget.Design.TabLayout" >
151 <item name="tabBackground">@color/blue_900</item>
152 <item name="android:textColorSecondary">@color/blue_300</item>
153 <item name="tabIndicatorColor">@color/gray_300</item>
156 <style name="PrivacyBrowserAlertDialogDark" parent="Theme.AppCompat.Dialog.Alert" >
157 <item name="android:windowBackground">@color/gray_900</item>
158 <item name="android:textColor">@color/gray_300</item>
161 <style name="PrivacyBrowserSpinnerDropDownItemStyleDark" parent="Base.Widget.AppCompat.TextView.SpinnerItem" >
162 <item name="android:textColor">@color/gray_300</item>
165 <!-- `ThemeOverlay.AppCompat.Dark` makes the popups have a dark background with light text. -->
166 <style name="PrivacyBrowserPopupsDark" parent="ThemeOverlay.AppCompat.Dark" >
167 <item name="android:textColorPrimary">@color/primary_text_color_selector_dark</item>