]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/values/styles.xml
Combine drawable files. https://redmine.stoutner.com/issues/794
[PrivacyBrowserAndroid.git] / app / src / main / res / values / styles.xml
index d11ddae2df2fca53bf32bbc7957a2d1abd7db3a1..4f19586a7d9a86d9198d2304457d8928fe603d20 100644 (file)
@@ -1,50 +1,66 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright 2015-2016 Soren Stoutner <soren@stoutner.com>.
+  Copyright © 2015-2022 Soren Stoutner <soren@stoutner.com>.
 
-  This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
+  This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
 
-  Privacy Browser is free software: you can redistribute it and/or modify
+  Privacy Browser Android is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.
 
-  Privacy Browser is distributed in the hope that it will be useful,
+  Privacy Browser Android is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
 
   You should have received a copy of the GNU General Public License
-  along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
+  along with Privacy Browser Android.  If not, see <http://www.gnu.org/licenses/>. -->
 
 <resources>
+    <style name="PrivacyBrowser" parent="Theme.AppCompat.DayNight.NoActionBar" >
+        <!-- Main Items. -->
+        <item name="android:statusBarColor">?android:attr/colorBackground</item>
+        <item name="android:windowLightStatusBar">true</item>
 
-    <style name="PrivacyBrowser" parent="Theme.AppCompat.Light.NoActionBar">
-        <item name="colorAccent">@color/blue</item>
-    </style>
+        <!-- Colors. -->
+        <item name="android:actionModeBackground">?android:attr/colorBackground</item>
+        <item name="android:textColorHighlight">@color/blue_200</item>
+        <item name="blueTextColor">@color/blue_700</item>
+        <item name="blueTitleTextColor">@color/blue_900</item>
+        <item name="buttonBackgroundColorSelector">@color/button_background_color_selector_day</item>
+        <item name="buttonTextColorSelector">@color/button_text_color_selector_day</item>
+        <item name="colorAccent">@color/blue_700</item>
+        <item name="redTextColor">@color/red_a700</item>
 
-    <!-- The default actionBarSize is 56dp.  53dp is the smallest that doesn't cause the urlTextBox to scroll vertically with a font size of Huge. -->
-    <style name="PrivacyBrowser.MainWebView">
-        <item name="android:actionBarSize">53dp</item>
-    </style>
+        <!-- Tints. -->
+        <item name="domainSettingsIconTintColor">@color/blue_800</item>
+        <item name="fabIconTintColor">@color/white</item>
+        <item name="findOnPageIconTintColor">@color/blue_800</item>
+        <item name="navigationIconTintColor">@color/blue_800</item>
+        <item name="progressTintColor">@color/blue_700</item>
 
-    <style name="PrivacyBrowser.About">
-        <item name="colorPrimaryDark">@color/blue</item>
+        <!-- Drawables. -->
+        <item name="listSelectorDrawable">@drawable/list_selector_day</item>
     </style>
 
-    <!-- colorPrimaryDark is the color of the status bar. -->
-    <style name="PrivacyBrowser.Settings" parent="Theme.AppCompat.Light.DarkActionBar">
-        <item name="colorPrimary">@color/blue</item>
-        <item name="colorPrimaryDark">@color/dark_blue</item>
-        <item name="colorAccent">@color/blue</item>
+    <style name="PrivacyBrowserAppBar" parent="ThemeOverlay.AppCompat.DayNight.ActionBar" >
+        <item name="android:textColorHighlight">@color/blue_200</item>
     </style>
 
-    <!-- ThemeOverlay.AppCompat.Dark.ActionBar" makes the text and the icons in the AppBar white. -->
-    <style name="PrivacyBrowser.DarkAppBar" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
-
-    <style name="PrivacyBrowser.AppBarOverlay" parent="ThemeOverlay.AppCompat.ActionBar" />
+    <style name="PrivacyBrowserSettings" parent="Theme.AppCompat.DayNight" >
+        <!-- Main Items. -->
+        <item name="android:statusBarColor">?android:attr/colorBackground</item>
+        <item name="android:windowLightStatusBar">?attr/isLightTheme</item>
 
-    <style name="PrivacyBrowser.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
+        <!-- Colors. -->
+        <item name="colorAccent">@color/blue_700</item>
+        <item name="colorPrimary">?android:attr/colorBackground</item>  <!-- `colorPrimary` sets the background color of the app bar. -->
+    </style>
 
+    <style name="PrivacyBrowserAlertDialog" parent="Theme.AppCompat.DayNight.Dialog.Alert" >
+        <!-- Colors. -->
+        <item name="colorAccent">@color/blue_700</item>
+    </style>
 </resources>
\ No newline at end of file