blob: 55b6e1c3664b61f02121fe0fa313b046ed53ad79 [file] [log] [blame]
Mauro Carvalho Chehaba6fb8b52021-12-07 10:53:02 +01001/* -*- coding: utf-8; mode: css -*-
2 *
3 * Sphinx HTML theme customization: color settings for RTD (non-dark) theme
4 *
5 */
6
7/* Improve contrast and increase size for easier reading. */
8
9body {
10 color: black;
11}
12
13.wy-menu-vertical li.current a {
14 color: #505050;
15}
16
17.wy-menu-vertical li.on a, .wy-menu-vertical li.current > a {
18 color: #303030;
19}
20
21div[class^="highlight"] pre {
22 color: black;
23}
24
25@media screen {
26
27 /* Menu selection and keystrokes */
28
29 span.menuselection {
30 color: blue;
31 }
32
33 code.kbd, code.kbd span {
34 color: white;
35 background-color: darkblue;
36 }
37}