Quellcode durchsuchen

Added docs/theme-dark.css

Mark Sibly vor 7 Jahren
Ursprung
Commit
7b3621afe6
1 geänderte Dateien mit 32 neuen und 0 gelöschten Zeilen
  1. 32 0
      docs/theme-dark.css

+ 32 - 0
docs/theme-dark.css

@@ -0,0 +1,32 @@
+/*	
+	This stylesheet changes monkeydocs from default white to dark blue with yellow links
+	To make docss use white theme, rename or delete this stylesheet.
+	To chnange docs theme, change the colors below.
+	If you find something that needs adding, add it to the correct color group, sperating with a commma
+ */
+
+
+/* main background color */
+body{
+	background-color: #123;
+}
+/* text color */
+body,pre,code{
+	color: #fff;
+}
+/* link color */
+a , a:hover, a:visited , a:active {
+	color: #ec0;
+}
+/* table header and <pre> background */
+pre,th ,code{
+	background: #456;
+}
+
+tr:nth-child(even){
+	background: #182838;
+}
+
+tr:nth-child(odd){
+	background: #1e2e3e;
+}