pad

minimal etherpad alternative  https://pad.ce9e.org
git clone https://git.ce9e.org/pad.git

commit
5f34469fbc72ddb81fa849d551e2424b20d8bd8f
parent
b7741cb27a85127fbe1fdeca0ed6a0b208cdff4e
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2021-03-04 22:09
add dark theme

Diffstat

M static/style.css 10 ++++++++++

1 files changed, 10 insertions, 0 deletions


diff --git a/static/style.css b/static/style.css

@@ -19,3 +19,13 @@ textarea {
   19    19 textarea[readonly] {
   20    20 	background: #eee;
   21    21 }
   -1    22 
   -1    23 @media (prefers-color-scheme: dark) {
   -1    24 	textarea {
   -1    25 		color: white;
   -1    26 		background: black;
   -1    27 	}
   -1    28 	textarea[readonly] {
   -1    29 		background: #666;
   -1    30 	}
   -1    31 }