]> gitweb.stoutner.com Git - PrivacyCell.git/blob - app/src/main/assets/css/theme.css
Add two more navigation menu entries.
[PrivacyCell.git] / app / src / main / assets / css / theme.css
1 /*
2  * Copyright © 2021 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Cell <https://www.stoutner.com/privacy-cell>.
5  *
6  * Privacy Cell is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Cell is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /* Dark colors. */
21 @media (prefers-color-scheme: dark) {
22   body {
23     color: #C1C1C1;  /* Gray 350 */
24     background-color: #424242;  /* Gray 800 */
25   }
26 }
27
28 /* Hyperlinks. */
29 a {
30   color: #1976D2;  /* Blue 700 */
31   text-decoration: none;
32 }
33
34 @media (prefers-color-scheme: dark) {
35   a {
36     color: #5785C5;  /* Violet 700 */
37   }
38 }
39
40
41 /* Headers. */
42 h3 {
43   color: #0D47A1;  /* Blue 900 */
44 }
45
46 @media (prefers-color-scheme: dark) {
47   h3 {
48     color: #8AB4F8;  /* Violet 500 */
49   }
50 }
51
52 /* Red bold text */
53 strong.red {
54   color: #B71C1C;  /* Red 900. */
55 }
56
57 @media (prefers-color-scheme: dark) {
58   strong.red {
59     color: #FC684E;  /* Salmon. */
60   }
61 }
62
63 /* Blue bold text */
64 strong.blue {
65   color: #1565C0;  /* Blue 800. */
66 }
67
68
69 /* List items. */
70 item {
71   color: #1565C0;  /* Blue 800. */
72   font-weight: bold;
73 }