]> gitweb.stoutner.com Git - PrivacyCell.git/blobdiff - app/src/main/assets/css/theme.css
Add a higher level warning for antiquated protocols. https://redmine.stoutner.com...
[PrivacyCell.git] / app / src / main / assets / css / theme.css
index 421f9c106ada381e2205a7e52266ff55c5617f56..4ba9d884b20385a86f4973b54f224d1e9981b710 100644 (file)
@@ -14,7 +14,7 @@
  * 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 Cell.  If not, see <http://www.gnu.org/licenses/>.
  */
 
 /* Dark colors. */
@@ -25,6 +25,7 @@
   }
 }
 
+
 /* Hyperlinks. */
 a {
   color: #1976D2;  /* Blue 700 */
@@ -33,7 +34,7 @@ a {
 
 @media (prefers-color-scheme: dark) {
   a {
-    color: #5785C5;  /* Violet 700 */
+    color: #8AB4F8;  /* Violet 500 */
   }
 }
 
@@ -49,6 +50,7 @@ h3 {
   }
 }
 
+
 /* Red bold text */
 strong.red {
   color: #B71C1C;  /* Red 900. */
@@ -70,4 +72,27 @@ strong.blue {
 item {
   color: #1565C0;  /* Blue 800. */
   font-weight: bold;
+}
+
+
+/* Left aligned images do not allow the icon to be themed. */
+img.left {
+  float: left;
+  height: 32;
+  width: 32;
+}
+
+
+/* SVG icons. */
+svg.icon {
+  vertical-align: middle;
+  height: 32;
+  width: 32;
+  fill: #000000;  /* Black */
+}
+
+@media (prefers-color-scheme: dark) {
+  svg.icon {
+    fill: #FFFFFF;  /* White */
+  }
 }
\ No newline at end of file