/* * Copyright © 2021 Soren Stoutner . * * This file is part of Privacy Cell . * * Privacy Cell 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 Cell 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 Cell. If not, see . */ /* Dark colors. */ @media (prefers-color-scheme: dark) { body { color: #C1C1C1; /* Gray 350 */ background-color: #424242; /* Gray 800 */ } } /* Hyperlinks. */ a { color: #1976D2; /* Blue 700 */ text-decoration: none; } @media (prefers-color-scheme: dark) { a { color: #8AB4F8; /* Violet 500 */ } } /* Headers. */ h3 { color: #0D47A1; /* Blue 900 */ } @media (prefers-color-scheme: dark) { h3 { color: #8AB4F8; /* Violet 500 */ } } /* Red bold text */ strong.red { color: #B71C1C; /* Red 900. */ } @media (prefers-color-scheme: dark) { strong.red { color: #FC684E; /* Salmon. */ } } /* Blue bold text */ strong.blue { color: #1565C0; /* Blue 800. */ } /* List items. */ 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 */ } }