Browse Source

Added docs/theme-dark.css

Mark Sibly 7 years ago
parent
commit
7b3621afe6
1 changed files with 32 additions and 0 deletions
  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;
+}