]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/values/styles.xml
Create a dark theme for `DomainsActivity` and `DomainsSettingsActivity`.
[PrivacyBrowserAndroid.git] / app / src / main / res / values / styles.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2015-2017 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.
25          When it is specified the root layout should include `android:fitsSystemWindows="true"`. -->
26     <style name="PrivacyBrowserLight" parent="Theme.AppCompat.Light.NoActionBar" >
27         <item name="android:windowTranslucentStatus">true</item>
28         <item name="colorAccent">@color/blue_700</item>
29         <item name="android:textColorHighlight">@color/blue_200</item>
30         <item name="navigationHeaderBackground">@color/blue_700</item>
31         <item name="navigationHeaderTextColor">@color/white</item>
32         <item name="appBarTheme">@style/PrivacyBrowserAppBarLight</item>
33         <item name="progressTintColor">@color/blue_700</item>
34         <item name="navigationIconTintColor">@color/blue_800</item>
35         <item name="findOnPageIconTintColor">@color/blue_700</item>
36         <item name="sslTitle">@color/blue_900</item>
37         <item name="urlHistoryText">@color/black</item>
38     </style>
39
40     <!-- `windowActionModeOverlay` makes the contextual app bar cover the support app bar.
41          `colorPrimaryDark` goes behind the status bar, which is then darkened by the overlay.-->
42     <style name="PrivacyBrowserLight.SecondaryActivity" >
43         <item name="windowActionModeOverlay">true</item>
44         <item name="colorPrimaryDark">@color/blue_700</item>
45         <item name="android:textColorHighlight">@color/blue_200</item>
46         <item name="android:actionModeBackground">@color/blue_700</item>
47         <item name="primaryTextColorSelector">@color/primary_text_color_selector_light</item>
48         <item name="domainsListSelectorColor">@drawable/domains_list_selector_light</item>
49         <item name="aboutTitle">@color/blue_900</item>
50         <item name="aboutText">@color/blue_700</item>
51         <item name="iconTintColor">@color/blue_800</item>
52         <item name="deleteIcon">@drawable/delete_light</item>
53         <item name="addIcon">@drawable/add_light</item>
54         <item name="actionBarPopupTheme">@style/PrivacyBrowserPopupsLight</item>
55         <item name="appBarTextTheme">@style/PrivacyBrowserAppBarWhiteText</item>
56         <item name="tabLayoutTheme">@style/PrivacyBrowserTabLayoutLight</item>
57     </style>
58
59     <!-- `colorPrimaryDark` is the color of the status bar. -->
60     <style name="PrivacyBrowserSettingsLight" parent="Theme.AppCompat.Light.DarkActionBar" >
61         <item name="colorPrimary">@color/blue_700</item>
62         <item name="colorPrimaryDark">@color/blue_900</item>
63         <item name="colorAccent">@color/blue_700</item>
64         <item name="userAgentIcon">@drawable/user_agent_light</item>
65         <item name="searchIcon">@drawable/search_enabled_light</item>
66         <item name="homepageIcon">@drawable/home_enabled_light</item>
67         <item name="fontSizeIcon">@drawable/font_size_light</item>
68     </style>
69
70     <!-- `ThemeOverlay.AppCompat.ActionBar` makes the hamburger icons dark. -->
71     <style name="PrivacyBrowserAppBarLight" parent="ThemeOverlay.AppCompat.ActionBar" />
72
73     <!-- `ThemeOverlay.AppCompat.Dark.ActionBar` makes the text and the icons in the AppBar white. -->
74     <style name="PrivacyBrowserAppBarWhiteText" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
75
76     <!-- `ThemeOverlay.AppCompat.Light` makes the popups have a light background with dark text. -->
77     <style name="PrivacyBrowserPopupsLight" parent="ThemeOverlay.AppCompat.Light" />
78
79     <!-- Configure the About and Guide `TabLayouts`. -->
80     <style name="PrivacyBrowserTabLayoutLight" parent="Widget.Design.TabLayout" >
81         <item name="android:textColorPrimary">@color/white</item>
82         <item name="android:textColorSecondary">@color/blue_100</item>
83         <item name="tabIndicatorColor">@color/white</item>
84     </style>
85
86     <style name="PrivacyBrowserAlertDialogLight" parent="Theme.AppCompat.Light.Dialog.Alert" >
87         <item name="colorAccent">@color/blue_700</item>
88     </style>
89
90     <!-- Dark theme styles. -->
91
92     <!-- `android:windowTranslucentStatus` makes the system status bar translucent.
93          When it is specified the root layout should include `android:fitsSystemWindows="true"`. -->
94     <style name="PrivacyBrowserDark" parent="Theme.AppCompat.NoActionBar" >
95         <item name="android:windowTranslucentStatus">true</item>
96         <item name="android:textColorPrimary">@color/primary_text_color_selector_dark</item>
97         <item name="colorAccent">@color/blue_600</item>
98         <item name="android:textColorHighlight">@color/blue_800</item>
99         <item name="navigationHeaderBackground">@color/blue_800</item>
100         <item name="navigationHeaderTextColor">@color/gray_300</item>
101         <item name="appBarTheme">@style/PrivacyBrowserAppBarDark</item>
102         <item name="progressTintColor">@color/blue_800</item>
103         <item name="navigationIconTintColor">@color/blue_600</item>
104         <item name="findOnPageIconTintColor">@color/blue_600</item>
105         <item name="sslTitle">@color/blue_700</item>
106         <item name="urlHistoryText">@color/gray_200</item>
107     </style>
108
109     <style name="PrivacyBrowserDark.SecondaryActivity" >
110         <item name="colorPrimaryDark">@color/blue_800</item>
111         <item name="primaryTextColorSelector">@color/primary_text_color_selector_dark</item>
112         <item name="aboutTitle">@color/blue_600</item>
113         <item name="aboutText">@color/blue_400</item>
114         <item name="domainsListSelectorColor">@drawable/domains_list_selector_dark</item>
115         <item name="iconTintColor">@color/blue_600</item>
116         <item name="deleteIcon">@drawable/delete_dark</item>
117         <item name="addIcon">@drawable/add_dark</item>
118         <item name="appBarTextTheme">@style/PrivacyBrowserAppBarDark</item>
119         <item name="tabLayoutTheme">@style/PrivacyBrowserTabLayoutDark</item>
120         <item name="android:spinnerDropDownItemStyle">@style/PrivacyBrowserSpinnerDropDownItemStyleDark</item>
121     </style>
122
123     <style name="PrivacyBrowserSettingsDark" parent="Theme.AppCompat" >
124         <item name="colorPrimary">@color/blue_800</item>
125         <item name="colorPrimaryDark">@color/blue_900</item>
126         <item name="android:textColorPrimary">@color/primary_text_color_selector_dark</item>
127         <item name="colorAccent">@color/blue_600</item>
128         <item name="userAgentIcon">@drawable/user_agent_dark</item>
129         <item name="searchIcon">@drawable/search_enabled_dark</item>
130         <item name="homepageIcon">@drawable/home_enabled_dark</item>
131         <item name="fontSizeIcon">@drawable/font_size_dark</item>
132     </style>
133
134     <!-- `ThemeOverlay.AppCompat.Dark.ActionBar` makes the text and the icons in the AppBar white. -->
135     <style name="PrivacyBrowserAppBarDark" parent="ThemeOverlay.AppCompat.Dark.ActionBar" >
136         <item name="android:textColorPrimary">@color/gray_300</item>
137     </style>
138
139     <!-- Configure the About and Guide `TabLayouts`. -->
140     <style name="PrivacyBrowserTabLayoutDark" parent="Widget.Design.TabLayout" >
141         <item name="tabBackground">@color/blue_900</item>
142         <item name="android:textColorSecondary">@color/blue_300</item>
143         <item name="tabIndicatorColor">@color/gray_300</item>
144     </style>
145
146     <style name="PrivacyBrowserAlertDialogDark" parent="Theme.AppCompat.Dialog.Alert" >
147         <item name="android:windowBackground">@color/gray_900</item>
148         <item name="android:textColor">@color/gray_300</item>
149     </style>
150
151     <style name="PrivacyBrowserSpinnerDropDownItemStyleDark" parent="Base.Widget.AppCompat.TextView.SpinnerItem" >
152         <item name="android:textColor">@color/gray_300</item>
153     </style>
154
155     <!-- `ThemeOverlay.AppCompat.Dark` makes the popups have a dark background with light text. -->
156     <!-- <style name="PrivacyBrowserPopupOverlayDark" parent="ThemeOverlay.AppCompat.Dark" /> -->
157
158     <!-- -->
159     <!--<style name="PrivacyBrowserToolbarDark" parent="Widget.AppCompat.Toolbar" >
160         <item name="android:background">@color/gray_900</item>
161     </style> -->
162 </resources>