better make-html.py script with dark default background · rvlambda/python-tutorial@2c8892f · GitHub
Skip to content

Commit 2c8892f

Browse files
committed
better make-html.py script with dark default background
1 parent e84f186 commit 2c8892f

3 files changed

Lines changed: 96 additions & 29 deletions

File tree

common.py

Lines changed: 6 additions & 3 deletions

html-style.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* This file is used by the HTML files that make-html.py creates.
2+
Customize this if you want to create HTML files with different
3+
colors. See also make-html.py's --pygments-theme option. */
4+
body {
5+
color: white;
6+
background-color: #333333;
7+
}
8+
a {
9+
color: orange;
10+
}

make-html.py

Lines changed: 80 additions & 26 deletions

0 commit comments

Comments
 (0)