]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/values/styles.xml
28ab21d24a7d865519ec2f3d3072cdd340774a16
[PrivacyBrowserAndroid.git] / app / src / main / res / values / styles.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2015-2021 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     <style name="PrivacyBrowser" parent="Theme.AppCompat.DayNight.NoActionBar" >
23         <!-- Colors. -->
24         <item name="android:actionModeBackground">?android:attr/colorBackground</item>
25         <item name="android:textColorHighlight">@color/blue_200</item>
26         <item name="blueTextColor">@color/blue_700</item>
27         <item name="blueTitleTextColor">@color/blue_900</item>
28         <item name="buttonBackgroundColorSelector">@color/button_background_color_selector_day</item>
29         <item name="buttonTextColorSelector">@color/button_text_color_selector_day</item>
30         <item name="colorAccent">@color/blue_700</item>
31         <item name="redTextColor">@color/red_a700</item>
32
33         <!-- Tints. -->
34         <item name="addTabIconTintColor">@color/gray_925</item>
35         <item name="domainSettingsIconTintColor">@color/blue_800</item>
36         <item name="fabIconTintColor">@color/white</item>
37         <item name="findOnPageIconTintColor">@color/blue_800</item>
38         <item name="navigationIconTintColor">@color/blue_800</item>
39         <item name="progressTintColor">@color/blue_700</item>
40
41         <!-- Drawables. -->
42         <item name="listSelectorDrawable">@drawable/list_selector_day</item>
43
44         <!-- Main App Bar Icons. -->
45         <item name="bookmarksAppBarIcon">@drawable/bookmarks_day</item>
46
47         <!-- Options Icons. -->
48         <item name="aboutIcon">@drawable/about_day</item>
49         <item name="closeIcon">@drawable/close_day</item>
50         <item name="copyIcon">@drawable/copy_day</item>
51         <item name="deleteIcon">@drawable/delete_day</item>
52         <item name="editIcon">@drawable/edit_day</item>
53         <item name="moveToFolderIcon">@drawable/move_to_folder_day</item>
54         <item name="saveIcon">@drawable/save_day</item>
55         <item name="saveImageIcon">@drawable/images_options_day</item>
56         <item name="saveTextIcon">@drawable/save_text_day</item>
57         <item name="selectAllIcon">@drawable/select_all_day</item>
58         <item name="shareIcon">@drawable/share_day</item>
59         <item name="sortIcon">@drawable/sort_day</item>
60
61         <!-- Dialog Icons. -->
62         <item name="aboutBlueIcon">@drawable/about_blue_day</item>
63         <item name="domainsBlueIcon">@drawable/domains_day</item>
64         <item name="fontSizeBlueIcon">@drawable/font_size_day</item>
65         <item name="lockBlueIcon">@drawable/lock_day</item>
66         <item name="sslCertificateBlueIcon">@drawable/ssl_certificate_enabled_day</item>
67     </style>
68
69     <style name="PrivacyBrowserAppBar" parent="ThemeOverlay.AppCompat.DayNight.ActionBar" >
70         <item name="android:textColorHighlight">@color/blue_200</item>
71     </style>
72
73     <style name="PrivacyBrowserSettings" parent="Theme.AppCompat.DayNight" >
74         <!-- Colors. -->
75         <item name="colorAccent">@color/blue_700</item>
76         <item name="colorPrimary">?android:attr/colorBackground</item>  <!-- `colorPrimary` sets the background color of the app bar. -->
77
78         <!-- Icons. -->
79         <item name="appThemeIcon">@drawable/app_theme_day</item>
80         <item name="downloadIcon">@drawable/downloads_enabled_day</item>
81         <item name="fontSizeIcon">@drawable/font_size_day</item>
82         <item name="homepageIcon">@drawable/home_enabled_day</item>
83         <item name="searchIcon">@drawable/search_enabled_day</item>
84         <item name="userAgentIcon">@drawable/user_agent_day</item>
85     </style>
86
87     <style name="PrivacyBrowserAlertDialog" parent="Theme.AppCompat.DayNight.Dialog.Alert" >
88         <item name="colorAccent">@color/blue_700</item>
89     </style>
90 </resources>