瀏覽代碼

Added docs/theme-dark.css

Mark Sibly 7 年之前
父節點
當前提交
7b3621afe6
共有 1 個文件被更改,包括 32 次插入0 次删除
  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;
+}