Index: _csvn.css
===================================================================
--- _csvn.css (nonexistent)
+++ _csvn.css (revision 5)
@@ -0,0 +1,175 @@
+
+/***************************************************
+ cSvn style (c) Andrey V.Kosteltsev <kx@radix.pro>
+ */
+.hljs {
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em 0.5em 0.5em 1.5em;
+ color: #424242;
+ background: #fcfcfc;
+ border: 1px solid #f9f9f9;
+ border-radius: 4px;
+}
+
+/******************
+ General-purpose:
+ */
+.hljs-subst {
+ color: #545454;
+}
+.hljs-keyword {
+ color: #005faf !important; /* color 25 */
+}
+.hljs-built_in {
+ color: #005f87 !important; /* color 24 */
+}
+.hljs-type {
+ color: #008787 !important; /* color 30 */
+}
+.hljs-literal {
+ color: #8700af !important; /* color 91 */
+}
+.hljs-number {
+ color: #870000 !important; /* color 88 */
+}
+.hljs-regexp {
+ color: #af0000 !important; /* color 97 */
+}
+.hljs-string {
+ color: #005f00; /* color 22 */
+}
+.hljs-symbol {
+ color: #000087 !important; /* color 18 */
+}
+/* .hljs-class {} is a parent of 'keyword > title' */
+/* .hljs-function {} is a parent of keyword > title > params' */
+.hljs-title {
+ color: #00005f !important; /* color 17 */
+}
+
+/*******
+ Meta:
+ */
+.hljs-comment {
+ color: #8a8a8a !important; /* color 245 */
+}
+.hljs-doctag {
+ color: #444444 !important; /* color 238 */
+}
+/* Meta color: #include <stdlib.h> */
+.hljs-meta {
+ color: #5f0000; /* color 52 */
+}
+.hljs-meta-keyword {
+ color: #5f0000; /* color 52 */
+}
+.hljs-meta-string {
+ color: #005f5f; /* color 23 */
+}
+
+/****************************
+ Tags, attributes, configs:
+ */
+.hljs-section {
+ color: #870000 !important; /* color 88 */
+}
+.hljs-tag {
+ color: #005f87 !important; /* color 24 */
+}
+.hljs-name,
+.hljs-builtin-name {
+ color: #0087af !important; /* color 31 */
+}
+.hljs-attr {
+ color: #8700af !important; /* color 91 as literal */
+}
+.hljs-attribute {
+ color: #875f00 !important; /* color 94 */
+}
+.hljs-variable {
+ color: #008700 !important; /* color 28 as quote */
+}
+
+/*********
+ Markup:
+ */
+.hljs-bullet {
+ color: #0000d7 !important; /* color 20 */
+}
+.hljs-code {
+ color: #000080 !important; /* color 4 */
+}
+.hljs-emphasis {
+ color: #080808 !important; /* color 232 */
+}
+.hljs-strong {
+ color: #080808 !important; /* color 232 */
+ font-weight: bold;
+}
+.hljs-formula {
+ color: #080808 !important; /* color 232 */
+ font-style: italic;
+}
+.hljs-link {
+ color: #00afd7 !important; /* color 38 */
+}
+.hljs-quote {
+ color: #008700; /* color 28 */
+}
+
+/******
+ CSS:
+ */
+.hljs-selector-tag {
+ color: #00005f !important; /* color 17 */
+}
+.hljs-selector-id {
+ color: #005fff !important; /* color 27 */
+}
+.hljs-selector-class {
+ color: #005faf !important; /* color 25 */
+}
+.hljs-selector-attr {
+ color: #875fff !important; /* color 99 */
+}
+.hljs-selector-pseudo {
+ color: #8700d7 !important; /* color 92 */
+}
+
+/************
+ Templates:
+ */
+.hljs-template-tag {
+ color: #800000 !important; /* color 1 */
+}
+.hljs-template-variable {
+ color: #870087 !important; /* color 90 */
+}
+
+/*******
+ Diff:
+ */
+.hljs-deletion {
+ color: #d70000 !important; /* color 160 */
+}
+.hljs-addition {
+ color: #008700 !important; /* color 28 */
+}
+
+/***********
+ ReasonML:
+ */
+.hljs-operator {
+ color: #af0000 !important; /* color 124 */
+}
+.hljs-pattern-match {
+ color: #00af00 !important; /* color 34 */
+}
+.hljs-constructor {
+ color: #878700 !important; /* color 100 */
+}
+/* .hljs-module-access {} is a parent of module */
+.hljs-module {
+ color: #5f5f00 !important; /* color 58 */
+}
Index: atom-one-dark.css
===================================================================
--- atom-one-dark.css (nonexistent)
+++ atom-one-dark.css (revision 5)
@@ -0,0 +1,96 @@
+/*
+
+Atom One Dark by Daniel Gamage
+Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax
+
+base: #282c34
+mono-1: #abb2bf
+mono-2: #818896
+mono-3: #5c6370
+hue-1: #56b6c2
+hue-2: #61aeee
+hue-3: #c678dd
+hue-4: #98c379
+hue-5: #e06c75
+hue-5-2: #be5046
+hue-6: #d19a66
+hue-6-2: #e6c07b
+
+*/
+
+.hljs {
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em;
+ color: #abb2bf;
+ background: #282c34;
+}
+
+.hljs-comment,
+.hljs-quote {
+ color: #5c6370;
+ font-style: italic;
+}
+
+.hljs-doctag,
+.hljs-keyword,
+.hljs-formula {
+ color: #c678dd;
+}
+
+.hljs-section,
+.hljs-name,
+.hljs-selector-tag,
+.hljs-deletion,
+.hljs-subst {
+ color: #e06c75;
+}
+
+.hljs-literal {
+ color: #56b6c2;
+}
+
+.hljs-string,
+.hljs-regexp,
+.hljs-addition,
+.hljs-attribute,
+.hljs-meta-string {
+ color: #98c379;
+}
+
+.hljs-built_in,
+.hljs-class .hljs-title {
+ color: #e6c07b;
+}
+
+.hljs-attr,
+.hljs-variable,
+.hljs-template-variable,
+.hljs-type,
+.hljs-selector-class,
+.hljs-selector-attr,
+.hljs-selector-pseudo,
+.hljs-number {
+ color: #d19a66;
+}
+
+.hljs-symbol,
+.hljs-bullet,
+.hljs-link,
+.hljs-meta,
+.hljs-selector-id,
+.hljs-title {
+ color: #61aeee;
+}
+
+.hljs-emphasis {
+ font-style: italic;
+}
+
+.hljs-strong {
+ font-weight: bold;
+}
+
+.hljs-link {
+ text-decoration: underline;
+}
Index: atom-one-light.css
===================================================================
--- atom-one-light.css (nonexistent)
+++ atom-one-light.css (revision 5)
@@ -0,0 +1,96 @@
+/*
+
+Atom One Light by Daniel Gamage
+Original One Light Syntax theme from https://github.com/atom/one-light-syntax
+
+base: #fafafa
+mono-1: #383a42
+mono-2: #686b77
+mono-3: #a0a1a7
+hue-1: #0184bb
+hue-2: #4078f2
+hue-3: #a626a4
+hue-4: #50a14f
+hue-5: #e45649
+hue-5-2: #c91243
+hue-6: #986801
+hue-6-2: #c18401
+
+*/
+
+.hljs {
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em;
+ color: #383a42;
+ background: #fafafa;
+}
+
+.hljs-comment,
+.hljs-quote {
+ color: #a0a1a7;
+ font-style: italic;
+}
+
+.hljs-doctag,
+.hljs-keyword,
+.hljs-formula {
+ color: #a626a4;
+}
+
+.hljs-section,
+.hljs-name,
+.hljs-selector-tag,
+.hljs-deletion,
+.hljs-subst {
+ color: #e45649;
+}
+
+.hljs-literal {
+ color: #0184bb;
+}
+
+.hljs-string,
+.hljs-regexp,
+.hljs-addition,
+.hljs-attribute,
+.hljs-meta-string {
+ color: #50a14f;
+}
+
+.hljs-built_in,
+.hljs-class .hljs-title {
+ color: #c18401;
+}
+
+.hljs-attr,
+.hljs-variable,
+.hljs-template-variable,
+.hljs-type,
+.hljs-selector-class,
+.hljs-selector-attr,
+.hljs-selector-pseudo,
+.hljs-number {
+ color: #986801;
+}
+
+.hljs-symbol,
+.hljs-bullet,
+.hljs-link,
+.hljs-meta,
+.hljs-selector-id,
+.hljs-title {
+ color: #4078f2;
+}
+
+.hljs-emphasis {
+ font-style: italic;
+}
+
+.hljs-strong {
+ font-weight: bold;
+}
+
+.hljs-link {
+ text-decoration: underline;
+}
Index: default.css
===================================================================
--- default.css (nonexistent)
+++ default.css (revision 5)
@@ -0,0 +1,107 @@
+
+/****************************************************************************
+ Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
+ */
+
+.hljs {
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em;
+ background: #F0F0F0;
+/*
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em 0.5em 0.5em 1.5em;
+ color: #424242;
+ background: #fcfcfc;
+ border: 1px solid #f9f9f9;
+ border-radius: 4px;
+ */
+}
+
+
+/* Base color: saturation 0; */
+
+.hljs,
+.hljs-subst {
+ color: #444;
+}
+
+.hljs-comment {
+ color: #888888;
+}
+
+.hljs-keyword,
+.hljs-attribute,
+.hljs-selector-tag,
+.hljs-meta-keyword,
+.hljs-doctag,
+.hljs-name {
+ font-weight: bold;
+}
+
+
+/* User color: hue: 0 */
+
+.hljs-type,
+.hljs-string,
+.hljs-number,
+.hljs-selector-id,
+.hljs-selector-class,
+.hljs-quote,
+.hljs-template-tag,
+.hljs-deletion {
+ color: #880000;
+}
+
+.hljs-title,
+.hljs-section {
+ color: #880000;
+ font-weight: bold;
+}
+
+.hljs-regexp,
+.hljs-symbol,
+.hljs-variable,
+.hljs-template-variable,
+.hljs-link,
+.hljs-selector-attr,
+.hljs-selector-pseudo {
+ color: #BC6060;
+}
+
+
+/* Language color: hue: 90; */
+
+.hljs-literal {
+ color: #78A960;
+}
+
+.hljs-built_in,
+.hljs-bullet,
+.hljs-code,
+.hljs-addition {
+ color: #397300;
+}
+
+
+/* Meta color: hue: 200 */
+
+.hljs-meta {
+ color: #1f7199;
+}
+
+.hljs-meta-string {
+ color: #4d99bf;
+}
+
+
+/* Misc effects */
+
+.hljs-emphasis {
+ font-style: italic;
+}
+
+.hljs-strong {
+ font-weight: bold;
+}
Index: foundation.css
===================================================================
--- foundation.css (nonexistent)
+++ foundation.css (revision 5)
@@ -0,0 +1,99 @@
+
+/*******************************************************
+ Description: Foundation 4 docs style for highlight.js
+ Author: Dan Allen <dan.j.allen@gmail.com>
+ Website: http://foundation.zurb.com/docs/
+ Version: 1.0
+ Date: 2013-04-02
+*/
+
+.hljs {
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em;
+ background: #eee;
+ color: black;
+/*
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em 0.5em 0.5em 1.5em;
+ color: #424242;
+ background: #fcfcfc;
+ border: 1px solid #f9f9f9;
+ border-radius: 4px;
+ */
+}
+
+.hljs-link,
+.hljs-emphasis,
+.hljs-attribute,
+.hljs-addition {
+ color: #070;
+}
+
+.hljs-emphasis {
+ font-style: italic;
+}
+
+.hljs-strong,
+.hljs-string,
+.hljs-deletion {
+ color: #d14;
+}
+
+.hljs-strong {
+ font-weight: bold;
+}
+
+.hljs-quote,
+.hljs-comment {
+ color: #998;
+ font-style: italic;
+}
+
+.hljs-section,
+.hljs-title {
+ color: #900;
+}
+
+.hljs-class .hljs-title,
+.hljs-type {
+ color: #458;
+}
+
+.hljs-variable,
+.hljs-template-variable {
+ color: #336699;
+}
+
+.hljs-bullet {
+ color: #997700;
+}
+
+.hljs-meta {
+ color: #3344bb;
+}
+
+.hljs-code,
+.hljs-number,
+.hljs-literal,
+.hljs-keyword,
+.hljs-selector-tag {
+ color: #099;
+}
+
+.hljs-regexp {
+ background-color: #fff0ff;
+ color: #880088;
+}
+
+.hljs-symbol {
+ color: #990073;
+}
+
+.hljs-tag,
+.hljs-name,
+.hljs-selector-id,
+.hljs-selector-class {
+ color: #007700;
+}
Index: vs.css
===================================================================
--- vs.css (nonexistent)
+++ vs.css (revision 5)
@@ -0,0 +1,76 @@
+
+/**********************************************************************************************
+ Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
+ */
+.hljs {
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em;
+ background: white;
+ color: black;
+/*
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em 0.5em 0.5em 1.5em;
+ color: #424242;
+ background: #fcfcfc;
+ border: 1px solid #f9f9f9;
+ border-radius: 4px;
+ */
+}
+
+.hljs-comment,
+.hljs-quote,
+.hljs-variable {
+ color: #008000;
+}
+
+.hljs-keyword,
+.hljs-selector-tag,
+.hljs-built_in,
+.hljs-name,
+.hljs-tag {
+ color: #00f;
+}
+
+.hljs-string,
+.hljs-title,
+.hljs-section,
+.hljs-attribute,
+.hljs-literal,
+.hljs-template-tag,
+.hljs-template-variable,
+.hljs-type,
+.hljs-addition {
+ color: #a31515;
+}
+
+.hljs-deletion,
+.hljs-selector-attr,
+.hljs-selector-pseudo,
+.hljs-meta {
+ color: #2b91af;
+}
+
+.hljs-doctag {
+ color: #808080;
+}
+
+.hljs-attr {
+ color: #f00;
+}
+
+.hljs-symbol,
+.hljs-bullet,
+.hljs-link {
+ color: #00b0e8;
+}
+
+
+.hljs-emphasis {
+ font-style: italic;
+}
+
+.hljs-strong {
+ font-weight: bold;
+}