1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 04:01:31 +08:00

vditor本地化

This commit is contained in:
koogua 2022-05-23 14:56:24 +08:00
parent 8fccecb372
commit a06edb6f4b
296 changed files with 15881 additions and 0 deletions

View File

@ -0,0 +1,210 @@
/*!
* Vditor - A markdown editor written in TypeScript.
*
* MIT License
*
* Copyright (c) 2018-present B3log 开源, b3log.org
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
.vditor-reset {
color: rgba(0, 0, 0, .85);
font-size: 14px;
line-height: 2;
}
.vditor-reset img {
max-width: calc(100% - 32px);
}
.vditor-reset p > img {
margin: 34px 0;
box-shadow: 0 8px 20px rgba(143, 168, 191, 0.35);
}
.vditor-reset h1 {
margin-bottom: 20px;
color: rgba(0, 0, 0, .85);
font-weight: 500;
font-size: 30px;
font-family: Avenir, -apple-system, BlinkMacSystemFont, segoe ui, Roboto, helvetica neue, Arial, noto sans, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji, sans-serif;
line-height: 38px
}
.vditor-reset h2 {
font-size: 24px;
line-height: 32px;
}
.vditor-reset h2,
.vditor-reset h3,
.vditor-reset h4,
.vditor-reset h5,
.vditor-reset h6 {
clear: both;
margin: 1.6em 0 .6em;
color: rgba(0, 0, 0, .85);
font-weight: 500;
font-family: Avenir, -apple-system, BlinkMacSystemFont, segoe ui, Roboto, helvetica neue, Arial, noto sans, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji, sans-serif
}
.vditor-reset h3 {
font-size: 18px;
}
.vditor-reset h4 {
font-size: 16px;
}
.vditor-reset h5 {
font-size: 14px;
}
.vditor-reset h6 {
font-size: 12px;
}
.vditor-reset hr {
clear: both;
height: 1px;
margin: 56px 0;
background: #f0f0f0;
border: 0;
}
.vditor-reset p,
.vditor-reset pre {
margin: 1em 0;
}
.vditor-reset ul > li {
margin-left: 20px;
padding-left: 4px;
list-style-type: circle;
}
.vditor-reset ol > li {
margin-left: 20px;
padding-left: 4px;
list-style-type: decimal;
}
.vditor-reset ul > li > p,
.vditor-reset ol > li > p {
margin: 0.2em 0;
}
.vditor-reset code {
margin: 0 1px;
padding: .2em .4em;
font-size: .9em;
border-radius: 3px;
border: 1px solid #f0f0f0;
font-family: sfmono-regular, Consolas, liberation mono, Menlo, Courier, monospace;
}
.vditor-reset code:not(.hljs):not(.highlight-chroma) {
background: #f2f4f5;
color: rgba(0, 0, 0, .65);
}
.vditor-reset pre {
font-family: sfmono-regular, Consolas, liberation mono, Menlo, Courier, monospace;
border-radius: 2px;
}
.vditor-reset .language-abc svg,
.vditor-reset .language-abc path {
fill: currentColor;
color: rgba(0, 0, 0, .85);
}
.vditor-reset .language-graphviz polygon {
fill: transparent;
}
.vditor-reset strong,
.vditor-reset b {
font-weight: 500;
}
.vditor-reset > table {
width: 100%;
margin: 8px 0 16px;
direction: ltr;
empty-cells: show;
border: 1px solid #f0f0f0;
border-collapse: collapse;
border-spacing: 0
}
.vditor-reset > table th {
color: #5c6b77;
font-weight: 500;
white-space: nowrap;
background: rgba(0, 0, 0, .02)
}
.vditor-reset > table th, .vditor-reset > table td {
padding: 16px 24px;
text-align: left;
border: 1px solid #f0f0f0
}
.vditor-reset blockquote {
margin: 1em 0;
padding-left: .8em;
color: rgba(0, 0, 0, .45);
font-size: 90%;
border-left: 4px solid #f0f0f0
}
.vditor-reset blockquote p {
margin: 0;
}
.vditor-reset .vditor-anchor {
margin-left: 8px;
opacity: 0;
transition: opacity 0.3s;
}
.vditor-reset h1:hover .vditor-anchor,
.vditor-reset h2:hover .vditor-anchor,
.vditor-reset h3:hover .vditor-anchor,
.vditor-reset h4:hover .vditor-anchor,
.vditor-reset h5:hover .vditor-anchor,
.vditor-reset h6:hover .vditor-anchor {
display: inline-block;
opacity: 1;
}
.vditor-reset > br,
.vditor-reset > p > br {
clear: both;
}
.vditor-reset a, .vditor-ir__link {
color: #1890ff;
text-decoration: none;
outline: none;
cursor: pointer;
}

View File

@ -0,0 +1,123 @@
/*!
* Vditor - A markdown editor written in TypeScript.
*
* MIT License
*
* Copyright (c) 2018-present B3log 开源, b3log.org
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
.vditor-reset {
color: #d1d5da;
}
.vditor-reset a, .vditor-ir__link {
color: #4285f4;
}
.vditor-reset h1, .vditor-reset h2 {
padding-bottom: 0.3em;
border-bottom: 1px solid #d1d5da
}
.vditor-reset hr {
background-color: #d1d5da
}
.vditor-reset blockquote {
padding: 0 1em;
color: #b9b9b9;
border-left: .25em solid #d1d5da
}
.vditor-reset iframe {
border: 1px solid #141414
}
.vditor-reset table tr {
background-color: #2f363d
}
.vditor-reset table td, .vditor-reset table th {
border: 1px solid #dfe2e5
}
.vditor-reset table tbody tr:nth-child(2n) {
background-color: #24292e
}
.vditor-reset code:not(.hljs):not(.highlight-chroma) {
background-color: rgba(66, 133, 244, .36);
}
.vditor-reset .language-abc svg,
.vditor-reset .language-abc path {
fill: currentColor;
color: #d1d5da;
}
.language-graphviz polygon {
fill: rgba(66, 133, 244, .36);
}
.vditor-reset kbd {
color: #d1d5da;
background-color: #2f363d;
border: 1px solid #141414;
box-shadow: inset 0 -1px 0 #141414
}
.vditor-copy svg {
color: #b9b9b9
}
.vditor-speech {
background-color: #1d2125;
border: 1px solid #141414;
color: #b9b9b9
}
.vditor-speech--current, .vditor-speech:hover {
color: #fff
}
.vditor-linkcard a {
background-color: #1d2125;
}
.vditor-linkcard a:visited .vditor-linkcard__abstract {
color: hsla(0, 0%, 72.5%, .36)
}
.vditor-linkcard__title {
color: #d1d5da
}
.vditor-linkcard__abstract {
color: #b9b9b9
}
.vditor-linkcard__site {
color: #fff
}
.vditor-linkcard__image {
background-color: hsla(0, 0%, 72.5%, .36)
}

View File

@ -0,0 +1,101 @@
/*!
* Vditor - A markdown editor written in TypeScript.
*
* MIT License
*
* Copyright (c) 2018-present B3log 开源, b3log.org
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
.vditor-reset h1, .vditor-reset h2 {
padding-bottom: 0.3em;
border-bottom: 1px solid #eaecef;
}
.vditor-reset hr {
background-color: #eaecef;
}
.vditor-reset blockquote {
color: #6a737d;
border-left: .25em solid #eaecef
}
.vditor-reset iframe {
border: 1px solid #d1d5da
}
.vditor-reset table tr {
border-top: 1px solid #c6cbd1;
background-color: #fafbfc
}
.vditor-reset table td, .vditor-reset table th {
border: 1px solid #dfe2e5
}
.vditor-reset table tbody tr:nth-child(2n) {
background-color: #fff
}
.vditor-reset code:not(.hljs):not(.highlight-chroma) {
background-color: rgba(27, 31, 35, .05);
}
.vditor-reset kbd {
color: #24292e;
background-color: #fafbfc;
border: solid 1px #d1d5da;
box-shadow: inset 0 -1px 0 #d1d5da;
}
.vditor-speech {
background-color: #f6f8fa;
border: 1px solid #d1d5da;
color: #586069;
}
.vditor-speech--current, .vditor-speech:hover {
color: #4285f4;
}
.vditor-linkcard a {
background-color: #f6f8fa;
}
.vditor-linkcard a:visited .vditor-linkcard__abstract {
color: rgba(88, 96, 105, 0.36);
}
.vditor-linkcard__title {
color: #24292e;
}
.vditor-linkcard__abstract {
color: #586069;
}
.vditor-linkcard__site {
color: #4285f4;
}
.vditor-linkcard__image {
background-color: rgba(88, 96, 105, 0.36);
}

View File

@ -0,0 +1,94 @@
/*!
* Vditor - A markdown editor written in TypeScript.
*
* MIT License
*
* Copyright (c) 2018-present B3log 开源, b3log.org
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
.vditor-reset {
font-family: "mp-quote", -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
color: rgb(62, 62, 62);
}
.vditor-reset a, .vditor-ir__link {
color: #576b95;
}
.vditor-reset h1 {
font-weight: 400;
text-align: center;
color: rgb(26, 173, 25);
font-size: 24px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAACCAYAAABYBvyLAAAAGElEQVQImWNkXs/wn4GKgImahjEwMDAAAA6aAbVUOzXRAAAAAElFTkSuQmCC);
background-repeat: no-repeat;
background-position: center bottom;
}
.vditor-reset h2 {
font-weight: 400;
text-align: center;
font-size: 20px;
}
.vditor-reset h3,
.vditor-reset h4,
.vditor-reset h5,
.vditor-reset h6 {
font-weight: 400;
}
.vditor-reset hr {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
transform-origin: 0 0;
transform: scale(1, 0.5);
height: 0;
}
.vditor-reset blockquote {
padding: 4px 0 0 10px;
border-left: 3px solid #dbdbdb;
color: #9a9a9a;
line-height: 1.6;
font-size: 15px;
margin: 1em 0;
}
.vditor-reset code {
font-size: 14px;
border: 1px solid #f0f0f0;
border-radius: 2px;
}
.vditor-reset code:not(.hljs):not(.highlight-chroma) {
background-color: rgba(0, 0, 0, 0.03);
color: #333;
}
.vditor-reset .language-abc svg,
.vditor-reset .language-abc path {
fill: currentColor;
color: rgb(62, 62, 62);
}
.vditor-reset .language-graphviz polygon {
fill: transparent;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

@ -0,0 +1 @@
<svg width="160px" height="160px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="lds-double-ring" style="background: none;"><circle cx="50" cy="50" ng-attr-r="{{config.radius}}" ng-attr-stroke-width="{{config.width}}" ng-attr-stroke="{{config.c1}}" ng-attr-stroke-dasharray="{{config.dasharray}}" fill="none" stroke-linecap="round" r="20" stroke-width="4" stroke="#3b3e43" stroke-dasharray="31.41592653589793 31.41592653589793" transform="rotate(111.924 50 50)"><animateTransform attributeName="transform" type="rotate" calcMode="linear" values="0 50 50;360 50 50" keyTimes="0;1" dur="1.5s" begin="0s" repeatCount="indefinite"></animateTransform></circle><circle cx="50" cy="50" ng-attr-r="{{config.radius2}}" ng-attr-stroke-width="{{config.width}}" ng-attr-stroke="{{config.c2}}" ng-attr-stroke-dasharray="{{config.dasharray2}}" ng-attr-stroke-dashoffset="{{config.dashoffset2}}" fill="none" stroke-linecap="round" r="15" stroke-width="4" stroke="#d23f31" stroke-dasharray="23.561944901923447 23.561944901923447" stroke-dashoffset="23.561944901923447" transform="rotate(-111.924 50 50)"><animateTransform attributeName="transform" type="rotate" calcMode="linear" values="0 50 50;-360 50 50" keyTimes="0;1" dur="1.5s" begin="0s" repeatCount="indefinite"></animateTransform></circle></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

1833
public/static/lib/vditor/dist/index.css vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,76 @@
/// <reference types="./types" />
import "./assets/less/index.less";
import VditorMethod from "./method";
declare class Vditor extends VditorMethod {
readonly version: string;
vditor: IVditor;
/**
* @param id Vditor ID
* @param options Vditor
*/
constructor(id: string | HTMLElement, options?: IOptions);
/** 设置主题 */
setTheme(theme: "dark" | "classic", contentTheme?: string, codeTheme?: string, contentThemePath?: string): void;
/** 获取 Markdown 内容 */
getValue(): string;
/** 获取编辑器当前编辑模式 */
getCurrentMode(): "sv" | "wysiwyg" | "ir";
/** 聚焦到编辑器 */
focus(): void;
/** 让编辑器失焦 */
blur(): void;
/** 禁用编辑器 */
disabled(): void;
/** 解除编辑器禁用 */
enable(): void;
/** 返回选中的字符串 */
getSelection(): string;
/** 设置预览区域内容 */
renderPreview(value?: string): void;
/** 获取焦点位置 */
getCursorPosition(): {
left: number;
top: number;
};
/** 上传是否还在进行中 */
isUploading(): boolean;
/** 清除缓存 */
clearCache(): void;
/** 禁用缓存 */
disabledCache(): void;
/** 启用缓存 */
enableCache(): void;
/** HTML 转 md */
html2md(value: string): string;
/** markdown 转 JSON 输出 */
exportJSON(value: string): string;
/** 获取 HTML */
getHTML(): string;
/** 消息提示。time 为 0 将一直显示 */
tip(text: string, time?: number): void;
/** 设置预览模式 */
setPreviewMode(mode: "both" | "editor"): void;
/** 删除选中内容 */
deleteValue(): void;
/** 更新选中内容 */
updateValue(value: string): void;
/** 在焦点处插入内容,并默认进行 Markdown 渲染 */
insertValue(value: string, render?: boolean): void;
/** 设置编辑器内容 */
setValue(markdown: string, clearStack?: boolean): void;
/** 清空 undo & redo 栈 */
clearStack(): void;
/** 销毁编辑器 */
destroy(): void;
/** 获取评论 ID */
getCommentIds(): ICommentsData[];
/** 高亮评论 */
hlCommentIds(ids: string[]): void;
/** 取消评论高亮 */
unHlCommentIds(ids: string[]): void;
/** 删除评论 */
removeCommentIds(removeIds: string[]): void;
private init;
}
export default Vditor;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,333 @@
/*
Viz.js 2.1.2 (Graphviz 2.40.1, Expat 2.2.5, Emscripten 1.37.36)
Copyright (c) 2014-2018 Michael Daines
Licensed under MIT license
This distribution contains other software in object code form:
Graphviz
Licensed under Eclipse Public License - v 1.0
http://www.graphviz.org
Expat
Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers.
Licensed under MIT license
http://www.libexpat.org
zlib
Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler
http://www.zlib.net/zlib_license.html
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global.Viz = factory());
}(this, (function () { 'use strict';
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) {
return typeof obj;
} : function (obj) {
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
};
var classCallCheck = function (instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
};
var createClass = function () {
function defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
return function (Constructor, protoProps, staticProps) {
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
return Constructor;
};
}();
var _extends = Object.assign || function (target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
return target;
};
var WorkerWrapper = function () {
function WorkerWrapper(worker) {
var _this = this;
classCallCheck(this, WorkerWrapper);
this.worker = worker;
this.listeners = [];
this.nextId = 0;
this.worker.addEventListener('message', function (event) {
var id = event.data.id;
var error = event.data.error;
var result = event.data.result;
_this.listeners[id](error, result);
delete _this.listeners[id];
});
}
createClass(WorkerWrapper, [{
key: 'render',
value: function render(src, options) {
var _this2 = this;
return new Promise(function (resolve, reject) {
var id = _this2.nextId++;
_this2.listeners[id] = function (error, result) {
if (error) {
reject(new Error(error.message, error.fileName, error.lineNumber));
return;
}
resolve(result);
};
_this2.worker.postMessage({ id: id, src: src, options: options });
});
}
}]);
return WorkerWrapper;
}();
var ModuleWrapper = function ModuleWrapper(module, render) {
classCallCheck(this, ModuleWrapper);
var instance = module();
this.render = function (src, options) {
return new Promise(function (resolve, reject) {
try {
resolve(render(instance, src, options));
} catch (error) {
reject(error);
}
});
};
};
// https://developer.mozilla.org/en-US/docs/Web/API/WindowBase64/Base64_encoding_and_decoding
function b64EncodeUnicode(str) {
return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g, function (match, p1) {
return String.fromCharCode('0x' + p1);
}));
}
function defaultScale() {
if ('devicePixelRatio' in window && window.devicePixelRatio > 1) {
return window.devicePixelRatio;
} else {
return 1;
}
}
function svgXmlToImageElement(svgXml) {
var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
_ref$scale = _ref.scale,
scale = _ref$scale === undefined ? defaultScale() : _ref$scale,
_ref$mimeType = _ref.mimeType,
mimeType = _ref$mimeType === undefined ? "image/png" : _ref$mimeType,
_ref$quality = _ref.quality,
quality = _ref$quality === undefined ? 1 : _ref$quality;
return new Promise(function (resolve, reject) {
var svgImage = new Image();
svgImage.onload = function () {
var canvas = document.createElement('canvas');
canvas.width = svgImage.width * scale;
canvas.height = svgImage.height * scale;
var context = canvas.getContext("2d");
context.drawImage(svgImage, 0, 0, canvas.width, canvas.height);
canvas.toBlob(function (blob) {
var image = new Image();
image.src = URL.createObjectURL(blob);
image.width = svgImage.width;
image.height = svgImage.height;
resolve(image);
}, mimeType, quality);
};
svgImage.onerror = function (e) {
var error;
if ('error' in e) {
error = e.error;
} else {
error = new Error('Error loading SVG');
}
reject(error);
};
svgImage.src = 'data:image/svg+xml;base64,' + b64EncodeUnicode(svgXml);
});
}
function svgXmlToImageElementFabric(svgXml) {
var _ref2 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
_ref2$scale = _ref2.scale,
scale = _ref2$scale === undefined ? defaultScale() : _ref2$scale,
_ref2$mimeType = _ref2.mimeType,
mimeType = _ref2$mimeType === undefined ? 'image/png' : _ref2$mimeType,
_ref2$quality = _ref2.quality,
quality = _ref2$quality === undefined ? 1 : _ref2$quality;
var multiplier = scale;
var format = void 0;
if (mimeType == 'image/jpeg') {
format = 'jpeg';
} else if (mimeType == 'image/png') {
format = 'png';
}
return new Promise(function (resolve, reject) {
fabric.loadSVGFromString(svgXml, function (objects, options) {
// If there's something wrong with the SVG, Fabric may return an empty array of objects. Graphviz appears to give us at least one <g> element back even given an empty graph, so we will assume an error in this case.
if (objects.length == 0) {
reject(new Error('Error loading SVG with Fabric'));
}
var element = document.createElement("canvas");
element.width = options.width;
element.height = options.height;
var canvas = new fabric.Canvas(element, { enableRetinaScaling: false });
var obj = fabric.util.groupSVGElements(objects, options);
canvas.add(obj).renderAll();
var image = new Image();
image.src = canvas.toDataURL({ format: format, multiplier: multiplier, quality: quality });
image.width = options.width;
image.height = options.height;
resolve(image);
});
});
}
var Viz = function () {
function Viz() {
var _ref3 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
workerURL = _ref3.workerURL,
worker = _ref3.worker,
Module = _ref3.Module,
render = _ref3.render;
classCallCheck(this, Viz);
if (typeof workerURL !== 'undefined') {
this.wrapper = new WorkerWrapper(new Worker(workerURL));
} else if (typeof worker !== 'undefined') {
this.wrapper = new WorkerWrapper(worker);
} else if (typeof Module !== 'undefined' && typeof render !== 'undefined') {
this.wrapper = new ModuleWrapper(Module, render);
} else if (typeof Viz.Module !== 'undefined' && typeof Viz.render !== 'undefined') {
this.wrapper = new ModuleWrapper(Viz.Module, Viz.render);
} else {
throw new Error('Must specify workerURL or worker option, Module and render options, or include one of full.render.js or lite.render.js after viz.js.');
}
}
createClass(Viz, [{
key: 'renderString',
value: function renderString(src) {
var _ref4 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
_ref4$format = _ref4.format,
format = _ref4$format === undefined ? 'svg' : _ref4$format,
_ref4$engine = _ref4.engine,
engine = _ref4$engine === undefined ? 'dot' : _ref4$engine,
_ref4$files = _ref4.files,
files = _ref4$files === undefined ? [] : _ref4$files,
_ref4$images = _ref4.images,
images = _ref4$images === undefined ? [] : _ref4$images,
_ref4$yInvert = _ref4.yInvert,
yInvert = _ref4$yInvert === undefined ? false : _ref4$yInvert,
_ref4$nop = _ref4.nop,
nop = _ref4$nop === undefined ? 0 : _ref4$nop;
for (var i = 0; i < images.length; i++) {
files.push({
path: images[i].path,
data: '<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">\n<svg width="' + images[i].width + '" height="' + images[i].height + '"></svg>'
});
}
return this.wrapper.render(src, { format: format, engine: engine, files: files, images: images, yInvert: yInvert, nop: nop });
}
}, {
key: 'renderSVGElement',
value: function renderSVGElement(src) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
return this.renderString(src, _extends({}, options, { format: 'svg' })).then(function (str) {
var parser = new DOMParser();
return parser.parseFromString(str, 'image/svg+xml').documentElement;
});
}
}, {
key: 'renderImageElement',
value: function renderImageElement(src) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var scale = options.scale,
mimeType = options.mimeType,
quality = options.quality;
return this.renderString(src, _extends({}, options, { format: 'svg' })).then(function (str) {
if ((typeof fabric === 'undefined' ? 'undefined' : _typeof(fabric)) === "object" && fabric.loadSVGFromString) {
return svgXmlToImageElementFabric(str, { scale: scale, mimeType: mimeType, quality: quality });
} else {
return svgXmlToImageElement(str, { scale: scale, mimeType: mimeType, quality: quality });
}
});
}
}, {
key: 'renderJSONObject',
value: function renderJSONObject(src) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var format = options.format;
if (format !== 'json' || format !== 'json0') {
format = 'json';
}
return this.renderString(src, _extends({}, options, { format: format })).then(function (str) {
return JSON.parse(str);
});
}
}]);
return Viz;
}();
return Viz;
})));

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,73 @@
hljs.registerLanguage("solidity",(()=>{"use strict";function e(){try{return!0
}catch(e){return!1}}
var a=/-?(\b0[xX]([a-fA-F0-9]_?)*[a-fA-F0-9]|(\b[1-9](_?\d)*(\.((\d_?)*\d)?)?|\.\d(_?\d)*)([eE][-+]?\d(_?\d)*)?|\b0)(?!\w|\$)/
;e()&&(a=a.source.replace(/\\b/g,"(?<!\\$)\\b"));var s={className:"number",
begin:a,relevance:0},n={
keyword:"assembly let function if switch case default for leave break continue u256 jump jumpi stop return revert selfdestruct invalid",
built_in:"add sub mul div sdiv mod smod exp not lt gt slt sgt eq iszero and or xor byte shl shr sar addmod mulmod signextend keccak256 pc pop dup1 dup2 dup3 dup4 dup5 dup6 dup7 dup8 dup9 dup10 dup11 dup12 dup13 dup14 dup15 dup16 swap1 swap2 swap3 swap4 swap5 swap6 swap7 swap8 swap9 swap10 swap11 swap12 swap13 swap14 swap15 swap16 mload mstore mstore8 sload sstore msize gas address balance selfbalance caller callvalue calldataload calldatasize calldatacopy codesize codecopy extcodesize extcodecopy returndatasize returndatacopy extcodehash create create2 call callcode delegatecall staticcall log0 log1 log2 log3 log4 chainid origin gasprice basefee blockhash coinbase timestamp number difficulty gaslimit",
literal:"true false"},i={className:"string",
begin:/\bhex'(([0-9a-fA-F]{2}_?)*[0-9a-fA-F]{2})?'/},t={className:"string",
begin:/\bhex"(([0-9a-fA-F]{2}_?)*[0-9a-fA-F]{2})?"/};function r(e){
return e.inherit(e.APOS_STRING_MODE,{begin:/(\bunicode)?'/})}function l(e){
return e.inherit(e.QUOTE_STRING_MODE,{begin:/(\bunicode)?"/})}var o={
SOL_ASSEMBLY_KEYWORDS:n,baseAssembly:e=>{
var a=r(e),o=l(e),c=/[A-Za-z_$][A-Za-z_$0-9.]*/,d=e.inherit(e.TITLE_MODE,{
begin:/[A-Za-z$_][0-9A-Za-z$_]*/,lexemes:c,keywords:n}),u={className:"params",
begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,lexemes:c,keywords:n,
contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,o,s]},_={
className:"operator",begin:/:=|->/};return{keywords:n,lexemes:c,
contains:[a,o,i,t,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s,_,{
className:"function",lexemes:c,beginKeywords:"function",end:"{",excludeEnd:!0,
contains:[d,u,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,_]}]}},
solAposStringMode:r,solQuoteStringMode:l,HEX_APOS_STRING_MODE:i,
HEX_QUOTE_STRING_MODE:t,SOL_NUMBER:s,isNegativeLookbehindAvailable:e}
;const{baseAssembly:c,solAposStringMode:d,solQuoteStringMode:u,HEX_APOS_STRING_MODE:_,HEX_QUOTE_STRING_MODE:m,SOL_NUMBER:b,isNegativeLookbehindAvailable:g}=o
;return e=>{for(var a=d(e),s=u(e),n=[],i=0;i<32;i++)n[i]=i+1
;var t=n.map((e=>8*e)),r=[];for(i=0;i<=80;i++)r[i]=i
;var l=n.map((e=>"bytes"+e)).join(" ")+" ",o=t.map((e=>"uint"+e)).join(" ")+" ",E=t.map((e=>"int"+e)).join(" ")+" ",M=[].concat.apply([],t.map((e=>r.map((a=>e+"x"+a))))),p={
keyword:"var bool string int uint "+E+o+"byte bytes "+l+"fixed ufixed "+M.map((e=>"fixed"+e)).join(" ")+" "+M.map((e=>"ufixed"+e)).join(" ")+" enum struct mapping address new delete if else for while continue break return throw emit try catch revert unchecked _ function modifier event constructor fallback receive error virtual override constant immutable anonymous indexed storage memory calldata external public internal payable pure view private returns import from as using global pragma contract interface library is abstract type assembly",
literal:"true false wei gwei szabo finney ether seconds minutes hours days weeks years",
built_in:"self this super selfdestruct suicide now msg block tx abi blockhash gasleft assert require Error Panic sha3 sha256 keccak256 ripemd160 ecrecover addmod mulmod log0 log1 log2 log3 log4"
},O={className:"operator",begin:/[+\-!~*\/%<>&^|=]/
},C=/[A-Za-z_$][A-Za-z_$0-9]*/,N={className:"params",begin:/\(/,end:/\)/,
excludeBegin:!0,excludeEnd:!0,lexemes:C,keywords:p,
contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,s,b,"self"]},f={
begin:/\.\s*/,end:/[^A-Za-z0-9$_\.]/,excludeBegin:!0,excludeEnd:!0,keywords:{
built_in:"gas value selector address length push pop send transfer call callcode delegatecall staticcall balance code codehash wrap unwrap name creationCode runtimeCode interfaceId min max"
},relevance:2},y=e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][0-9A-Za-z$_]*/,
lexemes:C,keywords:p}),w={className:"built_in",
begin:(g()?"(?<!\\$)\\b":"\\b")+"(gas|value|salt)(?=:)"};function x(e,a){return{
begin:(g()?"(?<!\\$)\\b":"\\b")+e+"\\.\\s*",end:/[^A-Za-z0-9$_\.]/,
excludeBegin:!1,excludeEnd:!0,lexemes:C,keywords:{built_in:e+" "+a},
contains:[f],relevance:10}}var h=c(e),v=e.inherit(h,{
contains:h.contains.concat([{begin:/\./,end:/[^A-Za-z0-9$.]/,excludeBegin:!0,
excludeEnd:!0,keywords:{built_in:"slot offset length address selector"},
relevance:2},{begin:/_/,end:/[^A-Za-z0-9$.]/,excludeBegin:!0,excludeEnd:!0,
keywords:{built_in:"slot offset"},relevance:2}])});return{aliases:["sol"],
keywords:p,lexemes:C,
contains:[a,s,_,m,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,b,w,O,{
className:"function",lexemes:C,
beginKeywords:"function modifier event constructor fallback receive error",
end:/[{;]/,excludeEnd:!0,
contains:[y,N,w,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:/%/
},x("msg","gas value data sender sig"),x("block","blockhash coinbase difficulty gaslimit basefee number timestamp chainid"),x("tx","gasprice origin"),x("abi","decode encode encodePacked encodeWithSelector encodeWithSignature encodeCall"),x("bytes","concat"),x("string","concat"),f,{
className:"class",lexemes:C,beginKeywords:"contract interface library",end:"{",
excludeEnd:!0,illegal:/[:"\[\]]/,contains:[{beginKeywords:"is",lexemes:C
},y,N,w,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{lexemes:C,
beginKeywords:"struct enum",end:"{",excludeEnd:!0,illegal:/[:"\[\]]/,
contains:[y,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
beginKeywords:"import",end:";",lexemes:C,keywords:"import from as",
contains:[y,a,s,_,m,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,O]},{
beginKeywords:"using",end:";",lexemes:C,keywords:"using for global",
contains:[y,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,O]},{className:"meta",
beginKeywords:"pragma",end:";",lexemes:C,keywords:{
keyword:"pragma solidity experimental abicoder",
built_in:"ABIEncoderV2 SMTChecker v1 v2"},
contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.inherit(a,{
className:"meta-string"}),e.inherit(s,{className:"meta-string"})]},{
beginKeywords:"assembly",end:/\b\B/,
contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.inherit(a,{
className:"meta-string"}),e.inherit(s,{className:"meta-string"}),e.inherit(v,{
begin:"{",end:"}",endsParent:!0,contains:v.contains.concat([e.inherit(v,{
begin:"{",end:"}",contains:v.contains.concat(["self"])})])})]}],illegal:/#/}}
})());

View File

@ -0,0 +1,155 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { color: #ff0000 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #0000ff }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #0000ff }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #0000ff }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #0000ff }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #0000ff }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #0000ff }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #0000ff }
/* Name */ .highlight-chroma .highlight-n { color: #000000 }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #000000 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #000000 }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { color: #000000 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #000000 }
/* NameConstant */ .highlight-chroma .highlight-no { color: #000000 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #000000 }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #000000 }
/* NameException */ .highlight-chroma .highlight-ne { color: #000000 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #000000 }
/* NameFunctionMagic */ .highlight-chroma .highlight-fm { color: #000000 }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #000000 }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #000000 }
/* NameOther */ .highlight-chroma .highlight-nx { color: #000000 }
/* NameProperty */ .highlight-chroma .highlight-py { color: #000000 }
/* NameTag */ .highlight-chroma .highlight-nt { color: #000000 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #000000 }
/* NameVariableClass */ .highlight-chroma .highlight-vc { color: #000000 }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #000000 }
/* NameVariableInstance */ .highlight-chroma .highlight-vi { color: #000000 }
/* NameVariableMagic */ .highlight-chroma .highlight-vm { color: #000000 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #55aa22 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #55aa22 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #55aa22 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #55aa22 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #55aa22 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #55aa22 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #55aa22 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #55aa22 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #55aa22 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #55aa22 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #55aa22 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #55aa22 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #55aa22 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #55aa22 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #33aaff }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #33aaff }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #33aaff }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #33aaff }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #33aaff }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #33aaff }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #33aaff }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #0000ff }
/* Comment */ .highlight-chroma .highlight-c { color: #888888; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #888888; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #888888; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #888888; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #888888; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #888888; font-style: italic }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #888888; font-style: italic }
/*
Google Code style (c) Aahan Krish <geekpanth3r@gmail.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: white;
color: black;
}
.hljs-comment,
.hljs-quote {
color: #800;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-section,
.hljs-title,
.hljs-name {
color: #008;
}
.hljs-variable,
.hljs-template-variable {
color: #660;
}
.hljs-string,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-regexp {
color: #080;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-meta,
.hljs-number,
.hljs-link {
color: #066;
}
.hljs-title,
.hljs-doctag,
.hljs-type,
.hljs-attr,
.hljs-built_in,
.hljs-builtin-name,
.hljs-params {
color: #606;
}
.hljs-attribute,
.hljs-subst {
color: #000;
}
.hljs-formula {
background-color: #eee;
font-style: italic;
}
.hljs-selector-id,
.hljs-selector-class {
color: #9B703F
}
.hljs-addition {
background-color: #baeeba;
}
.hljs-deletion {
background-color: #ffc8bd;
}
.hljs-doctag,
.hljs-strong {
font-weight: bold;
}
.hljs-emphasis {
font-style: italic;
}

View File

@ -0,0 +1,143 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { font-weight: bold; text-decoration: underline }
/* KeywordConstant */ .highlight-chroma .highlight-kc { font-weight: bold; text-decoration: underline }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { font-weight: bold; font-style: italic; text-decoration: underline }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { font-weight: bold; text-decoration: underline }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { font-weight: bold; text-decoration: underline }
/* KeywordReserved */ .highlight-chroma .highlight-kr { font-weight: bold; text-decoration: underline }
/* KeywordType */ .highlight-chroma .highlight-kt { font-weight: bold; text-decoration: underline }
/* NameBuiltin */ .highlight-chroma .highlight-nb { font-weight: bold; font-style: italic }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { font-weight: bold; font-style: italic }
/* NameClass */ .highlight-chroma .highlight-nc { color: #666666; font-weight: bold; font-style: italic }
/* NameConstant */ .highlight-chroma .highlight-no { color: #666666; font-weight: bold; font-style: italic }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #666666; font-weight: bold; font-style: italic }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #666666; font-weight: bold; font-style: italic }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #666666; font-weight: bold; font-style: italic }
/* LiteralString */ .highlight-chroma .highlight-s { color: #666666; font-style: italic }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #666666; font-style: italic }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #666666; font-style: italic }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #666666; font-style: italic }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #666666; font-style: italic }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #666666; font-style: italic }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #666666; font-style: italic }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #666666; font-style: italic }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #666666; font-style: italic }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #666666; font-style: italic }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #666666; font-style: italic }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #666666; font-style: italic }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #666666; font-style: italic }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #666666; font-style: italic }
/* OperatorWord */ .highlight-chroma .highlight-ow { font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #888888; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #888888; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #888888; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #888888; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #888888; font-weight: bold }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #888888; font-weight: bold }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #888888; font-weight: bold }
/*
Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #000;
background: #f8f8ff;
}
.hljs-comment,
.hljs-quote {
color: #408080;
font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-subst {
color: #954121;
}
.hljs-number {
color: #40a070;
}
.hljs-string,
.hljs-doctag {
color: #219161;
}
.hljs-selector-id,
.hljs-selector-class,
.hljs-section,
.hljs-type {
color: #19469d;
}
.hljs-params {
color: #00f;
}
.hljs-title {
color: #458;
font-weight: bold;
}
.hljs-tag,
.hljs-name,
.hljs-attribute {
color: #000080;
font-weight: normal;
}
.hljs-variable,
.hljs-template-variable {
color: #008080;
}
.hljs-regexp,
.hljs-link {
color: #b68;
}
.hljs-symbol,
.hljs-bullet {
color: #990073;
}
.hljs-built_in,
.hljs-builtin-name {
color: #0086b3;
}
.hljs-meta {
color: #999;
font-weight: bold;
}
.hljs-deletion {
background: #fdd;
}
.hljs-addition {
background: #dfd;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,90 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { font-weight: bold; font-style: italic }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { font-weight: bold }
/* KeywordReserved */ .highlight-chroma .highlight-kr { font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { font-weight: bold }
/* NameBuiltin */ .highlight-chroma .highlight-nb { font-weight: bold; font-style: italic }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { font-weight: bold; font-style: italic }
/* NameClass */ .highlight-chroma .highlight-nc { color: #666666; font-weight: bold; font-style: italic }
/* NameConstant */ .highlight-chroma .highlight-no { color: #666666; font-weight: bold; font-style: italic }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #666666; font-weight: bold; font-style: italic }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #666666; font-weight: bold; font-style: italic }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #666666; font-weight: bold; font-style: italic }
/* LiteralString */ .highlight-chroma .highlight-s { color: #666666; font-style: italic }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #666666; font-style: italic }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #666666; font-style: italic }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #666666; font-style: italic }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #666666; font-style: italic }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #666666; font-style: italic }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #666666; font-style: italic }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #666666; font-style: italic }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #666666; font-style: italic }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #666666; font-style: italic }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #666666; font-style: italic }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #666666; font-style: italic }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #666666; font-style: italic }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #666666; font-style: italic }
/* OperatorWord */ .highlight-chroma .highlight-ow { font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #888888; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #888888; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #888888; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #888888; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #888888; font-weight: bold }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #888888; font-weight: bold }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #888888; font-weight: bold }
/*
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: white;
color: black;
}
.hljs-string,
.hljs-variable,
.hljs-template-variable,
.hljs-symbol,
.hljs-bullet,
.hljs-section,
.hljs-addition,
.hljs-attribute,
.hljs-link {
color: #888;
}
.hljs-comment,
.hljs-quote,
.hljs-meta,
.hljs-deletion {
color: #ccc;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-section,
.hljs-name,
.hljs-type,
.hljs-strong {
font-weight: bold;
}
.hljs-emphasis {
font-style: italic;
}

View File

@ -0,0 +1,469 @@
/* Background */
.highlight-chroma {
display: block;
padding: 16px 32px;
color: rgba(0, 0, 0, .85);
font-size: 14px;
font-family: lucida console, Consolas, Monaco, andale mono, ubuntu mono, monospace;
line-height: 2;
white-space: pre;
background: white;
border: 1px solid #e9e9e9;
border-radius: 2px;
}
.highlight-chroma::selection {
text-shadow: none;
background: #b3d4fc;
}
.highlight-o {
color: #0b8235;
}
.highlight-p {
color: #999;
}
/* Error */
.highlight-chroma .highlight-err {
color: #a61717;
background-color: #e3d2d2
}
/* LineTableTD */
.highlight-chroma .highlight-lntd {
vertical-align: top;
padding: 0;
margin: 0;
border: 0;
}
/* LineTable */
.highlight-chroma .highlight-lntable {
border-spacing: 0;
padding: 0;
margin: 0;
border: 0;
width: auto;
overflow: auto;
display: block;
}
/* LineHighlight */
.highlight-chroma .highlight-hl {
display: block;
width: 100%;
background-color: #363636
}
/* LineNumbersTable */
.highlight-chroma .highlight-lnt {
margin-right: 0.4em;
padding: 0 0.4em 0 0.4em;
color: #686868
}
/* LineNumbers */
.highlight-chroma .highlight-ln {
margin-right: 0.4em;
padding: 0 0.4em 0 0.4em;
color: #686868
}
/* Keyword */
.highlight-chroma .highlight-k {
color: #6ab825;
font-weight: bold
}
/* KeywordConstant */
.highlight-chroma .highlight-kc {
color: #6ab825;
font-weight: bold
}
/* KeywordDeclaration */
.highlight-chroma .highlight-kd {
color: #6ab825;
font-weight: bold
}
/* KeywordNamespace */
.highlight-chroma .highlight-kn {
color: #6ab825;
font-weight: bold
}
/* KeywordPseudo */
.highlight-chroma .highlight-kp {
color: #6ab825
}
/* KeywordReserved */
.highlight-chroma .highlight-kr {
color: #008dff;
}
/* KeywordType */
.highlight-chroma .highlight-kt {
color: #6ab825;
font-weight: bold
}
/* NameAttribute */
.highlight-chroma .highlight-na {
color: #bbbbbb
}
/* NameBuiltin */
.highlight-chroma .highlight-nb {
color: #24909d
}
/* NameClass */
.highlight-chroma .highlight-nc {
color: #447fcf;
text-decoration: underline
}
/* NameConstant */
.highlight-chroma .highlight-no {
color: #40ffff
}
/* NameDecorator */
.highlight-chroma .highlight-nd {
color: #ffa500
}
/* NameException */
.highlight-chroma .highlight-ne {
color: #bbbbbb
}
/* NameFunction */
.highlight-chroma .highlight-nf {
color: #447fcf
}
/* NameNamespace */
.highlight-chroma .highlight-nn {
color: #447fcf;
text-decoration: underline
}
/* NameTag */
.highlight-chroma .highlight-nt {
color: #6ab825;
font-weight: bold
}
/* NameVariable */
.highlight-chroma .highlight-nv {
color: #40ffff
}
/* LiteralString */
.highlight-chroma .highlight-s {
color: #ed9d13
}
/* LiteralStringAffix */
.highlight-chroma .highlight-sa {
color: #ed9d13
}
/* LiteralStringBacktick */
.highlight-chroma .highlight-sb {
color: #ed9d13
}
/* LiteralStringChar */
.highlight-chroma .highlight-sc {
color: #ed9d13
}
/* LiteralStringDelimiter */
.highlight-chroma .highlight-dl {
color: #ed9d13
}
/* LiteralStringDoc */
.highlight-chroma .highlight-sd {
color: #ed9d13
}
/* LiteralStringDouble */
.highlight-chroma .highlight-s2 {
color: #ed9d13
}
/* LiteralStringEscape */
.highlight-chroma .highlight-se {
color: #ed9d13
}
/* LiteralStringHeredoc */
.highlight-chroma .highlight-sh {
color: #ed9d13
}
/* LiteralStringInterpol */
.highlight-chroma .highlight-si {
color: #ed9d13
}
/* LiteralStringOther */
.highlight-chroma .highlight-sx {
color: #ffa500
}
/* LiteralStringRegex */
.highlight-chroma .highlight-sr {
color: #e90;
}
/* LiteralStringSingle */
.highlight-chroma .highlight-s1 {
color: #0b8235
}
/* LiteralStringSymbol */
.highlight-chroma .highlight-ss {
color: #ed9d13
}
/* LiteralNumber */
.highlight-chroma .highlight-m {
color: #3677a9
}
/* LiteralNumberBin */
.highlight-chroma .highlight-mb {
color: #3677a9
}
/* LiteralNumberFloat */
.highlight-chroma .highlight-mf {
color: #3677a9
}
/* LiteralNumberHex */
.highlight-chroma .highlight-mh {
color: #3677a9
}
/* LiteralNumberInteger */
.highlight-chroma .highlight-mi {
color: #3677a9
}
/* LiteralNumberIntegerLong */
.highlight-chroma .highlight-il {
color: #3677a9
}
/* LiteralNumberOct */
.highlight-chroma .highlight-mo {
color: #3677a9
}
/* OperatorWord */
.highlight-chroma .highlight-ow {
color: #6ab825;
font-weight: bold
}
/* Comment */
.highlight-chroma .highlight-c {
color: #999999;
font-style: italic
}
/* CommentHashbang */
.highlight-chroma .highlight-ch {
color: #999999;
font-style: italic
}
/* CommentMultiline */
.highlight-chroma .highlight-cm {
color: #999999;
font-style: italic
}
/* CommentSingle */
.highlight-chroma .highlight-c1 {
color: #708090;
font-style: italic
}
/* CommentSpecial */
.highlight-chroma .highlight-cs {
color: #e50808;
background-color: #520000;
font-weight: bold
}
/* CommentPreproc */
.highlight-chroma .highlight-cp {
color: #cd2828;
font-weight: bold
}
/* CommentPreprocFile */
.highlight-chroma .highlight-cpf {
color: #cd2828;
font-weight: bold
}
/* GenericDeleted */
.highlight-chroma .highlight-gd {
color: #d22323
}
/* GenericEmph */
.highlight-chroma .highlight-ge {
font-style: italic
}
/* GenericError */
.highlight-chroma .highlight-gr {
color: #d22323
}
/* GenericHeading */
.highlight-chroma .highlight-gh {
color: #ffffff;
font-weight: bold
}
/* GenericInserted */
.highlight-chroma .highlight-gi {
color: #589819
}
/* GenericOutput */
.highlight-chroma .highlight-go {
color: #cccccc
}
/* GenericPrompt */
.highlight-chroma .highlight-gp {
color: #aaaaaa
}
/* GenericStrong */
.highlight-chroma .highlight-gs {
font-weight: bold
}
/* GenericSubheading */
.highlight-chroma .highlight-gu {
color: #ffffff;
text-decoration: underline
}
/* GenericTraceback */
.highlight-chroma .highlight-gt {
color: #d22323
}
/* GenericUnderline */
.highlight-chroma .highlight-gl {
text-decoration: underline
}
/* TextWhitespace */
.highlight-chroma .highlight-w {
color: #666666
}
.hljs {
display: block;
padding: 16px 32px;
color: rgba(0, 0, 0, .85);
font-size: 14px;
font-family: lucida console, Consolas, Monaco, andale mono, ubuntu mono, monospace;
line-height: 2;
white-space: pre;
background: white;
border: 1px solid #e9e9e9;
border-radius: 2px;
}
.hljs::selection {
text-shadow: none;
background: #b3d4fc;
}
.hljs-comment,
.hljs-quote {
color: #708090;
font-style: italic;
}
.hljs-doctag,
.hljs-keyword,
.hljs-formula {
color: #008dff;
}
.hljs-section,
.hljs-name,
.hljs-selector-tag,
.hljs-deletion,
.hljs-subst {
color: #999;
}
.hljs-literal {
color: #56b6c2;
}
.hljs-regexp {
color: #e90;
}
.hljs-string,
.hljs-addition,
.hljs-attribute,
.hljs-meta-string {
color: #0b8235;
}
.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: #f81d22;
}
.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-title {
color: #f81d22;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
.hljs-link {
text-decoration: underline;
}

View File

@ -0,0 +1,157 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { color: #a61717 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #728e00 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #00979d }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #728e00 }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #728e00 }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #00979d }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #00979d }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #00979d }
/* Name */ .highlight-chroma .highlight-n { color: #434f54 }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #434f54 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #728e00 }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { color: #434f54 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #434f54 }
/* NameConstant */ .highlight-chroma .highlight-no { color: #434f54 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #434f54 }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #434f54 }
/* NameException */ .highlight-chroma .highlight-ne { color: #434f54 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #d35400 }
/* NameFunctionMagic */ .highlight-chroma .highlight-fm { color: #434f54 }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #434f54 }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #434f54 }
/* NameOther */ .highlight-chroma .highlight-nx { color: #728e00 }
/* NameProperty */ .highlight-chroma .highlight-py { color: #434f54 }
/* NameTag */ .highlight-chroma .highlight-nt { color: #434f54 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #434f54 }
/* NameVariableClass */ .highlight-chroma .highlight-vc { color: #434f54 }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #434f54 }
/* NameVariableInstance */ .highlight-chroma .highlight-vi { color: #434f54 }
/* NameVariableMagic */ .highlight-chroma .highlight-vm { color: #434f54 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #7f8c8d }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #7f8c8d }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #7f8c8d }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #7f8c8d }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #7f8c8d }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #7f8c8d }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #7f8c8d }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #7f8c8d }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #7f8c8d }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #7f8c8d }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #7f8c8d }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #7f8c8d }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #7f8c8d }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #7f8c8d }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #8a7b52 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #8a7b52 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #8a7b52 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #8a7b52 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #8a7b52 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #8a7b52 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #8a7b52 }
/* Operator */ .highlight-chroma .highlight-o { color: #728e00 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #728e00 }
/* Comment */ .highlight-chroma .highlight-c { color: #95a5a6 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #95a5a6 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #95a5a6 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #95a5a6 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #95a5a6 }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #728e00 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #728e00 }
/*
Arduino® Light Theme - Stefania Mellai <s.mellai@arduino.cc>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #FFFFFF;
}
.hljs,
.hljs-subst {
color: #434f54;
}
.hljs-keyword,
.hljs-attribute,
.hljs-selector-tag,
.hljs-doctag,
.hljs-name {
color: #00979D;
}
.hljs-built_in,
.hljs-literal,
.hljs-bullet,
.hljs-code,
.hljs-addition {
color: #D35400;
}
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #00979D;
}
.hljs-type,
.hljs-string,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
color: #005C5F;
}
.hljs-title,
.hljs-section {
color: #880000;
font-weight: bold;
}
.hljs-comment {
color: rgba(149,165,166,.8);
}
.hljs-meta-keyword {
color: #728E00;
}
.hljs-meta {
color: #728E00;
color: #434f54;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
.hljs-function {
color: #728E00;
}
.hljs-number {
color: #8A7B52;
}

View File

@ -0,0 +1,138 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { color: #ff0000; background-color: #ffaaaa }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #0000aa }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #0000aa }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #0000aa }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #0000aa }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #0000aa }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #0000aa }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #00aaaa }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #1e90ff }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #00aaaa }
/* NameClass */ .highlight-chroma .highlight-nc { color: #00aa00; text-decoration: underline }
/* NameConstant */ .highlight-chroma .highlight-no { color: #aa0000 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #888888 }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #880000; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #00aa00 }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #00aaaa; text-decoration: underline }
/* NameTag */ .highlight-chroma .highlight-nt { color: #1e90ff; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #aa0000 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #aa5500 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #aa5500 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #aa5500 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #aa5500 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #aa5500 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #aa5500 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #aa5500 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #aa5500 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #aa5500 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #aa5500 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #aa5500 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #009999 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #aa5500 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #0000aa }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #009999 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #009999 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #009999 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #009999 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #009999 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #009999 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #009999 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #0000aa }
/* Comment */ .highlight-chroma .highlight-c { color: #aaaaaa; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #aaaaaa; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #aaaaaa; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #aaaaaa; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #0000aa; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #4c8317 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #4c8317 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #aa0000 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #aa0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #000080; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #00aa00 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #555555 }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #800080; font-weight: bold }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #aa0000 }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/* Base16 Atelier Heath Light - Theme */
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
/* Atelier-Heath Comment */
.hljs-comment,
.hljs-quote {
color: #776977;
}
/* Atelier-Heath Red */
.hljs-variable,
.hljs-template-variable,
.hljs-attribute,
.hljs-tag,
.hljs-name,
.hljs-regexp,
.hljs-link,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class {
color: #ca402b;
}
/* Atelier-Heath Orange */
.hljs-number,
.hljs-meta,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params {
color: #a65926;
}
/* Atelier-Heath Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet {
color: #918b3b;
}
/* Atelier-Heath Blue */
.hljs-title,
.hljs-section {
color: #516aec;
}
/* Atelier-Heath Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #7b59c0;
}
.hljs {
display: block;
overflow-x: auto;
background: #f7f3f7;
color: #695d69;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,147 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { color: #a61717; background-color: #e3d2d2 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #000080; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #000080; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #000080; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #000080; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #000080; font-weight: bold }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #000080; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #000080; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #ff0000 }
/* NameTag */ .highlight-chroma .highlight-nt { color: #000080; font-weight: bold }
/* LiteralString */ .highlight-chroma .highlight-s { color: #0000ff }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #0000ff }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #0000ff }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #800080 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #0000ff }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #0000ff }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #0000ff }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #0000ff }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #0000ff }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #0000ff }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #0000ff }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #0000ff }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #0000ff }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #0000ff }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #0000ff }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #0000ff }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #0000ff }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #0000ff }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #0000ff }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #0000ff }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #0000ff }
/* OperatorWord */ .highlight-chroma .highlight-ow { font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #008800; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #008800; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #008800; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #008800; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #008800; font-weight: bold }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #008080 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #008080 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #000000; background-color: #ffdddd }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #aa0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #999999 }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #000000; background-color: #ddffdd }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #555555 }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #aaaaaa }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #aa0000 }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/*
Lightfair style (c) Tristian Kelly <tristian.kelly560@gmail.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
}
.hljs-name {
color:#01a3a3;
}
.hljs-tag,.hljs-meta {
color:#778899;
}
.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
}
.hljs-type,
.hljs-string,
.hljs-number,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
color: #4286f4
}
.hljs-title,
.hljs-section {
color: #4286f4;
font-weight: bold
}
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #BC6060
}
.hljs-literal {
color: #62bcbc
}
.hljs-built_in,
.hljs-bullet,
.hljs-code,
.hljs-addition {
color: #25c6c6
}
.hljs-meta-string {
color: #4d99bf
}
.hljs-emphasis {
font-style: italic
}
.hljs-strong {
font-weight: bold
}

View File

@ -0,0 +1,150 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { }
/* KeywordReserved */ .highlight-chroma .highlight-kr { font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { }
/* NameClass */ .highlight-chroma .highlight-nc { font-weight: bold }
/* NameEntity */ .highlight-chroma .highlight-ni { font-weight: bold }
/* NameException */ .highlight-chroma .highlight-ne { font-weight: bold }
/* NameNamespace */ .highlight-chroma .highlight-nn { font-weight: bold }
/* NameTag */ .highlight-chroma .highlight-nt { font-weight: bold }
/* LiteralString */ .highlight-chroma .highlight-s { font-style: italic }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { font-style: italic }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { font-style: italic }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { font-style: italic }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { font-style: italic }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { font-style: italic }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { font-style: italic }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { font-weight: bold; font-style: italic }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { font-style: italic }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { font-weight: bold; font-style: italic }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { font-style: italic }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { font-style: italic }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { font-style: italic }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { font-style: italic }
/* OperatorWord */ .highlight-chroma .highlight-ow { font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericHeading */ .highlight-chroma .highlight-gh { font-weight: bold }
/* GenericPrompt */ .highlight-chroma .highlight-gp { font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { font-weight: bold }
/*
grayscale style (c) MY Sun <simonmysun@gmail.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #333;
background: #fff;
}
.hljs-comment,
.hljs-quote {
color: #777;
font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-subst {
color: #333;
font-weight: bold;
}
.hljs-number,
.hljs-literal {
color: #777;
}
.hljs-string,
.hljs-doctag,
.hljs-formula {
color: #333;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJ0lEQVQIW2O8e/fufwYGBgZBQUEQxcCIIfDu3Tuwivfv30NUoAsAALHpFMMLqZlPAAAAAElFTkSuQmCC) repeat;
}
.hljs-title,
.hljs-section,
.hljs-selector-id {
color: #000;
font-weight: bold;
}
.hljs-subst {
font-weight: normal;
}
.hljs-class .hljs-title,
.hljs-type,
.hljs-name {
color: #333;
font-weight: bold;
}
.hljs-tag {
color: #333;
}
.hljs-regexp {
color: #333;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAPUlEQVQYV2NkQAN37979r6yszIgujiIAU4RNMVwhuiQ6H6wQl3XI4oy4FMHcCJPHcDS6J2A2EqUQpJhohQDexSef15DBCwAAAABJRU5ErkJggg==) repeat;
}
.hljs-symbol,
.hljs-bullet,
.hljs-link {
color: #000;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQIW2NkQAO7d+/+z4gsBhJwdXVlhAvCBECKwIIwAbhKZBUwBQA6hBpm5efZsgAAAABJRU5ErkJggg==) repeat;
}
.hljs-built_in,
.hljs-builtin-name {
color: #000;
text-decoration: underline;
}
.hljs-meta {
color: #999;
font-weight: bold;
}
.hljs-deletion {
color: #fff;
background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAE0lEQVQIW2MMDQ39zzhz5kwIAQAyxweWgUHd1AAAAABJRU5ErkJggg==) repeat;
}
.hljs-addition {
color: #000;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAALUlEQVQYV2N89+7dfwYk8P79ewZBQUFkIQZGOiu6e/cuiptQHAPl0NtNxAQBAM97Oejj3Dg7AAAAAElFTkSuQmCC) repeat;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,158 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { color: #ff0000; background-color: #ffaaaa }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #008800; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #008800; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #008800; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #008800; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #003388; font-weight: bold }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #008800; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #333399; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #0000cc }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #007020 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #bb0066; font-weight: bold }
/* NameConstant */ .highlight-chroma .highlight-no { color: #003366; font-weight: bold }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #555555; font-weight: bold }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #880000; font-weight: bold }
/* NameException */ .highlight-chroma .highlight-ne { color: #ff0000; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #0066bb; font-weight: bold }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #997700; font-weight: bold }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #0e84b5; font-weight: bold }
/* NameTag */ .highlight-chroma .highlight-nt { color: #007700 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #996633 }
/* NameVariableClass */ .highlight-chroma .highlight-vc { color: #336699 }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #dd7700; font-weight: bold }
/* NameVariableInstance */ .highlight-chroma .highlight-vi { color: #3333bb }
/* LiteralString */ .highlight-chroma .highlight-s { background-color: #fff0f0 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { background-color: #fff0f0 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { background-color: #fff0f0 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #0044dd; background-color: #fff0f0 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { background-color: #fff0f0 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #dd4422; background-color: #fff0f0 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { background-color: #fff0f0 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #666666; background-color: #fff0f0; font-weight: bold }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { background-color: #fff0f0 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { background-color: #eeeeee }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #dd2200; background-color: #fff0f0 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #000000; background-color: #fff0ff }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { background-color: #fff0f0 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #aa6600; background-color: #fff0f0 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #6600ee; font-weight: bold }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #6600ee; font-weight: bold }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #6600ee; font-weight: bold }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #005588; font-weight: bold }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #0000dd; font-weight: bold }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #6600ee; font-weight: bold }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #4400ee; font-weight: bold }
/* Operator */ .highlight-chroma .highlight-o { color: #333333 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #000000; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #888888 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #888888 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #888888 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #888888 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #cc0000; font-weight: bold }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #557799 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #557799 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #a00000 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #ff0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #000080; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #00a000 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #c65d09; font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #800080; font-weight: bold }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #0044dd }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/* Base16 Atelier Plateau Light - Theme */
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
/* Atelier-Plateau Comment */
.hljs-comment,
.hljs-quote {
color: #655d5d;
}
/* Atelier-Plateau Red */
.hljs-variable,
.hljs-template-variable,
.hljs-attribute,
.hljs-tag,
.hljs-name,
.hljs-regexp,
.hljs-link,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class {
color: #ca4949;
}
/* Atelier-Plateau Orange */
.hljs-number,
.hljs-meta,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params {
color: #b45a3c;
}
/* Atelier-Plateau Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet {
color: #4b8b8b;
}
/* Atelier-Plateau Blue */
.hljs-title,
.hljs-section {
color: #7272ca;
}
/* Atelier-Plateau Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #8464c4;
}
.hljs-deletion,
.hljs-addition {
color: #1b1818;
display: inline-block;
width: 100%;
}
.hljs-deletion {
background-color: #ca4949;
}
.hljs-addition {
background-color: #4b8b8b;
}
.hljs {
display: block;
overflow-x: auto;
background: #f4ecec;
color: #585050;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,140 @@
/* Background */ .highlight-bg { color: #f8f8f2; background-color: #282a36 }
/* PreWrapper */ .highlight-chroma { color: #f8f8f2; background-color: #282a36; }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #3d3f4a }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #ff79c6 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #ff79c6 }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #8be9fd; font-style: italic }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #ff79c6 }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #ff79c6 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #ff79c6 }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #8be9fd }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #50fa7b }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #8be9fd; font-style: italic }
/* NameClass */ .highlight-chroma .highlight-nc { color: #50fa7b }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #50fa7b }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #8be9fd; font-style: italic }
/* NameTag */ .highlight-chroma .highlight-nt { color: #ff79c6 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #8be9fd; font-style: italic }
/* NameVariableClass */ .highlight-chroma .highlight-vc { color: #8be9fd; font-style: italic }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #8be9fd; font-style: italic }
/* NameVariableInstance */ .highlight-chroma .highlight-vi { color: #8be9fd; font-style: italic }
/* LiteralString */ .highlight-chroma .highlight-s { color: #f1fa8c }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #f1fa8c }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #f1fa8c }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #f1fa8c }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #f1fa8c }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #f1fa8c }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #f1fa8c }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #f1fa8c }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #f1fa8c }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #f1fa8c }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #f1fa8c }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #f1fa8c }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #f1fa8c }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #f1fa8c }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #bd93f9 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #bd93f9 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #bd93f9 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #bd93f9 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #bd93f9 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #bd93f9 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #bd93f9 }
/* Operator */ .highlight-chroma .highlight-o { color: #ff79c6 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #ff79c6 }
/* Comment */ .highlight-chroma .highlight-c { color: #6272a4 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #6272a4 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #6272a4 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #6272a4 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #6272a4 }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #ff79c6 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #ff79c6 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #ff5555 }
/* GenericEmph */ .highlight-chroma .highlight-ge { text-decoration: underline }
/* GenericHeading */ .highlight-chroma .highlight-gh { font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #50fa7b; font-weight: bold }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #44475a }
/* GenericSubheading */ .highlight-chroma .highlight-gu { font-weight: bold }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/*
Darcula color scheme from the JetBrains family of IDEs
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #2b2b2b;
}
.hljs {
color: #bababa;
}
.hljs-strong,
.hljs-emphasis {
color: #a8a8a2;
}
.hljs-bullet,
.hljs-quote,
.hljs-link,
.hljs-number,
.hljs-regexp,
.hljs-literal {
color: #6896ba;
}
.hljs-code,
.hljs-selector-class {
color: #a6e22e;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-section,
.hljs-attribute,
.hljs-name,
.hljs-variable {
color: #cb7832;
}
.hljs-params {
color: #b9b9b9;
}
.hljs-string {
color: #6a8759;
}
.hljs-subst,
.hljs-type,
.hljs-built_in,
.hljs-builtin-name,
.hljs-symbol,
.hljs-selector-id,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-template-tag,
.hljs-template-variable,
.hljs-addition {
color: #e0c46c;
}
.hljs-comment,
.hljs-deletion,
.hljs-meta {
color: #7f7f7f;
}

View File

@ -0,0 +1,167 @@
/* Background */ .highlight-bg { background-color: #f8f8f8 }
/* PreWrapper */ .highlight-chroma { background-color: #f8f8f8; }
/* Error */ .highlight-chroma .highlight-err { }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #dfdfdf }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #aa22ff; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #aa22ff; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #aa22ff; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #aa22ff; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #aa22ff }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #aa22ff; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #00bb00; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #bb4444 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #aa22ff }
/* NameClass */ .highlight-chroma .highlight-nc { color: #0000ff }
/* NameConstant */ .highlight-chroma .highlight-no { color: #880000 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #aa22ff }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #999999; font-weight: bold }
/* NameException */ .highlight-chroma .highlight-ne { color: #d2413a; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #00a000 }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #a0a000 }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #0000ff; font-weight: bold }
/* NameTag */ .highlight-chroma .highlight-nt { color: #008000; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #b8860b }
/* LiteralString */ .highlight-chroma .highlight-s { color: #bb4444 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #bb4444 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #bb4444 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #bb4444 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #bb4444 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #bb4444; font-style: italic }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #bb4444 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #bb6622; font-weight: bold }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #bb4444 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #bb6688; font-weight: bold }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #008000 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #bb6688 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #bb4444 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #b8860b }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #666666 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #666666 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #666666 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #666666 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #666666 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #666666 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #666666 }
/* Operator */ .highlight-chroma .highlight-o { color: #666666 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #aa22ff; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #008800; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #008800; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #008800; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #008800; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #008800; font-weight: bold }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #008800 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #008800 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #a00000 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #ff0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #000080; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #00a000 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #000080; font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #800080; font-weight: bold }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #0044dd }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/*
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;
}

View File

@ -0,0 +1,183 @@
/* Background */ .highlight-bg { background-color: #f0f0f0 }
/* PreWrapper */ .highlight-chroma { background-color: #f0f0f0; }
/* Error */ .highlight-chroma .highlight-err { }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #d8d8d8 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #007020; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #007020; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #007020; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #007020; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #007020 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #007020; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #902000 }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #4070a0 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #007020 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #0e84b5; font-weight: bold }
/* NameConstant */ .highlight-chroma .highlight-no { color: #60add5 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #555555; font-weight: bold }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #d55537; font-weight: bold }
/* NameException */ .highlight-chroma .highlight-ne { color: #007020 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #06287e }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #002070; font-weight: bold }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #0e84b5; font-weight: bold }
/* NameTag */ .highlight-chroma .highlight-nt { color: #062873; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #bb60d5 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #4070a0 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #4070a0 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #4070a0 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #4070a0 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #4070a0 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #4070a0; font-style: italic }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #4070a0 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #4070a0; font-weight: bold }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #4070a0 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #70a0d0; font-style: italic }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #c65d09 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #235388 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #4070a0 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #517918 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #40a070 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #40a070 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #40a070 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #40a070 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #40a070 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #40a070 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #40a070 }
/* Operator */ .highlight-chroma .highlight-o { color: #666666 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #007020; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #60a0b0; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #60a0b0; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #60a0b0; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #60a0b0; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #60a0b0; background-color: #fff0f0 }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #007020 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #007020 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #a00000 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #ff0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #000080; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #00a000 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #c65d09; font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #800080; font-weight: bold }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #0044dd }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/*
ISBL Editor style light color schemec (c) Dmitriy Tarasov <dimatar@gmail.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: white;
color: black;
}
/* Base color: saturation 0; */
.hljs,
.hljs-subst {
color: #000000;
}
.hljs-comment {
color: #555555;
font-style: italic;
}
.hljs-keyword,
.hljs-attribute,
.hljs-selector-tag,
.hljs-meta-keyword,
.hljs-doctag,
.hljs-name {
color: #000000;
font-weight: bold;
}
/* User color: hue: 0 */
.hljs-string {
color: #000080;
}
.hljs-type,
.hljs-number,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
color: #000000;
}
.hljs-title,
.hljs-section {
color: #fb2c00;
}
.hljs-title>.hljs-built_in {
color: #008080;
font-weight: normal;
}
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #5e1700;
}
/* Language color: hue: 90; */
.hljs-built_in,
.hljs-literal {
color: #000080;
font-weight: bold;
}
.hljs-bullet,
.hljs-code,
.hljs-addition {
color: #397300;
}
.hljs-class {
color: #6f1C00;
font-weight: bold;
}
/* 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;
}

View File

@ -0,0 +1,123 @@
/* Background */ .highlight-bg { color: #ffffff; background-color: #111111 }
/* PreWrapper */ .highlight-chroma { color: #ffffff; background-color: #111111; }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #282828 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #fb660a; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #fb660a; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #fb660a; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #fb660a; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #fb660a }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #fb660a; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #cdcaa9; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #ff0086; font-weight: bold }
/* NameConstant */ .highlight-chroma .highlight-no { color: #0086d2 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #ff0086; font-weight: bold }
/* NameTag */ .highlight-chroma .highlight-nt { color: #fb660a; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #fb660a }
/* LiteralString */ .highlight-chroma .highlight-s { color: #0086d2 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #0086d2 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #0086d2 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #0086d2 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #0086d2 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #0086d2 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #0086d2 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #0086d2 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #0086d2 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #0086d2 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #0086d2 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #0086d2 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #0086d2 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #0086d2 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #0086f7; font-weight: bold }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #0086f7; font-weight: bold }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #0086f7; font-weight: bold }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #0086f7; font-weight: bold }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #0086f7; font-weight: bold }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #0086f7; font-weight: bold }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #0086f7; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #008800; background-color: #0f140f; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #008800; background-color: #0f140f; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #008800; background-color: #0f140f; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #008800; background-color: #0f140f; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #008800; background-color: #0f140f; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #ff0007; background-color: #0f140f; font-weight: bold; font-style: italic }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #ff0007; background-color: #0f140f; font-weight: bold; font-style: italic }
/* GenericHeading */ .highlight-chroma .highlight-gh { font-weight: bold }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #444444; background-color: #222222 }
/* GenericSubheading */ .highlight-chroma .highlight-gu { font-weight: bold }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #888888 }
/* Base16 Atelier Forest Dark - Theme */
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
/* Atelier-Forest Comment */
.hljs-comment,
.hljs-quote {
color: #9c9491;
}
/* Atelier-Forest Red */
.hljs-variable,
.hljs-template-variable,
.hljs-attribute,
.hljs-tag,
.hljs-name,
.hljs-regexp,
.hljs-link,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class {
color: #f22c40;
}
/* Atelier-Forest Orange */
.hljs-number,
.hljs-meta,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params {
color: #df5320;
}
/* Atelier-Forest Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet {
color: #7b9726;
}
/* Atelier-Forest Blue */
.hljs-title,
.hljs-section {
color: #407ee7;
}
/* Atelier-Forest Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #6666ea;
}
.hljs {
display: block;
overflow-x: auto;
background: #1b1918;
color: #a8a19f;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,174 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { color: #a61717; background-color: #e3d2d2 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #000000; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #000000; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #000000; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #000000; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #000000; font-weight: bold }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #000000; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #445588; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #008080 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #0086b3 }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { color: #999999 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #445588; font-weight: bold }
/* NameConstant */ .highlight-chroma .highlight-no { color: #008080 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #3c5d5d; font-weight: bold }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #800080 }
/* NameException */ .highlight-chroma .highlight-ne { color: #990000; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #990000; font-weight: bold }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #990000; font-weight: bold }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #555555 }
/* NameTag */ .highlight-chroma .highlight-nt { color: #000080 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #008080 }
/* NameVariableClass */ .highlight-chroma .highlight-vc { color: #008080 }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #008080 }
/* NameVariableInstance */ .highlight-chroma .highlight-vi { color: #008080 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #dd1144 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #dd1144 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #dd1144 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #dd1144 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #dd1144 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #dd1144 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #dd1144 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #dd1144 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #dd1144 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #dd1144 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #dd1144 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #009926 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #dd1144 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #990073 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #009999 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #009999 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #009999 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #009999 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #009999 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #009999 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #009999 }
/* Operator */ .highlight-chroma .highlight-o { color: #000000; font-weight: bold }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #000000; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #999988; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #999988; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #999988; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #999988; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #999999; font-weight: bold; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #999999; font-weight: bold; font-style: italic }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #999999; font-weight: bold; font-style: italic }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #000000; background-color: #ffdddd }
/* GenericEmph */ .highlight-chroma .highlight-ge { color: #000000; font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #aa0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #999999 }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #000000; background-color: #ddffdd }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #555555 }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #aaaaaa }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #aa0000 }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/*
github.com style (c) Vasily Polovnyov <vast@whiteants.net>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #333;
background: #f8f8f8;
}
.hljs-comment,
.hljs-quote {
color: #998;
font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-subst {
color: #333;
font-weight: bold;
}
.hljs-number,
.hljs-literal,
.hljs-variable,
.hljs-template-variable,
.hljs-tag .hljs-attr {
color: #008080;
}
.hljs-string,
.hljs-doctag {
color: #d14;
}
.hljs-title,
.hljs-section,
.hljs-selector-id {
color: #900;
font-weight: bold;
}
.hljs-subst {
font-weight: normal;
}
.hljs-type,
.hljs-class .hljs-title {
color: #458;
font-weight: bold;
}
.hljs-tag,
.hljs-name,
.hljs-attribute {
color: #000080;
font-weight: normal;
}
.hljs-regexp,
.hljs-link {
color: #009926;
}
.hljs-symbol,
.hljs-bullet {
color: #990073;
}
.hljs-built_in,
.hljs-builtin-name {
color: #0086b3;
}
.hljs-meta {
color: #999;
font-weight: bold;
}
.hljs-deletion {
background: #fdd;
}
.hljs-addition {
background: #dfd;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,124 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #0000ff }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #0000ff }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #0000ff }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #0000ff }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #0000ff }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #0000ff }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #0000ff }
/* NameClass */ .highlight-chroma .highlight-nc { color: #007575 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #cc00a3 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #c34e00 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #009c00 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #009c00 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #009c00 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #009c00 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #009c00 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #009c00 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #009c00 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #009c00 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #009c00 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #009c00 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #009c00 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #009c00 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #009c00 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #009c00 }
/* Comment */ .highlight-chroma .highlight-c { color: #ff0000; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #ff0000; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #ff0000; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #ff0000; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #ff0000; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #ff0000; font-style: italic }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #ff0000; font-style: italic }
/*
Qt Creator light color scheme
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #ffffff;
}
.hljs,
.hljs-subst,
.hljs-tag,
.hljs-title {
color: #000000;
}
.hljs-strong,
.hljs-emphasis {
color: #000000;
}
.hljs-bullet,
.hljs-quote,
.hljs-number,
.hljs-regexp,
.hljs-literal {
color: #000080;
}
.hljs-code
.hljs-selector-class {
color: #800080;
}
.hljs-emphasis,
.hljs-stronge,
.hljs-type {
font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-function,
.hljs-section,
.hljs-symbol,
.hljs-name {
color: #808000;
}
.hljs-attribute {
color: #800000;
}
.hljs-variable,
.hljs-params,
.hljs-class .hljs-title {
color: #0055AF;
}
.hljs-string,
.hljs-selector-id,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-type,
.hljs-built_in,
.hljs-builtin-name,
.hljs-template-tag,
.hljs-template-variable,
.hljs-addition,
.hljs-link {
color: #008000;
}
.hljs-comment,
.hljs-meta,
.hljs-deletion {
color: #008000;
}

View File

@ -0,0 +1,146 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { background-color: #a848a8 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #2838b0 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #444444; font-style: italic }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #2838b0; font-style: italic }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #2838b0 }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #2838b0 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #2838b0 }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #2838b0; font-style: italic }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #388038 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #388038 }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { font-style: italic }
/* NameClass */ .highlight-chroma .highlight-nc { color: #287088 }
/* NameConstant */ .highlight-chroma .highlight-no { color: #b85820 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #287088 }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #709030 }
/* NameException */ .highlight-chroma .highlight-ne { color: #908828 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #785840 }
/* NameFunctionMagic */ .highlight-chroma .highlight-fm { color: #b85820 }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #289870 }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #289870 }
/* NameTag */ .highlight-chroma .highlight-nt { color: #2838b0 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #b04040 }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #908828 }
/* NameVariableMagic */ .highlight-chroma .highlight-vm { color: #b85820 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #b83838 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #444444 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #b83838 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #a848a8 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #b85820 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #b85820; font-style: italic }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #b83838 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #709030 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #b83838 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #b83838; text-decoration: underline }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #a848a8 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #a848a8 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #b83838 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #b83838 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #444444 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #444444 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #444444 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #444444 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #444444 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #444444 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #444444 }
/* Operator */ .highlight-chroma .highlight-o { color: #666666 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #a848a8 }
/* Punctuation */ .highlight-chroma .highlight-p { color: #888888 }
/* Comment */ .highlight-chroma .highlight-c { color: #888888; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #287088; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #888888; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #888888; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #888888; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #289870 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #289870 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #c02828 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #c02828 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #666666 }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #388038 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #666666 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #444444 }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #444444 }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #2838b0 }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #a89028 }
/*
Description: Magula style for highligh.js
Author: Ruslan Keba <rukeba@gmail.com>
Website: http://rukeba.com/
Version: 1.0
Date: 2009-01-03
Music: Aphex Twin / Xtal
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background-color: #f4f4f4;
}
.hljs,
.hljs-subst {
color: black;
}
.hljs-string,
.hljs-title,
.hljs-symbol,
.hljs-bullet,
.hljs-attribute,
.hljs-addition,
.hljs-variable,
.hljs-template-tag,
.hljs-template-variable {
color: #050;
}
.hljs-comment,
.hljs-quote {
color: #777;
}
.hljs-number,
.hljs-regexp,
.hljs-literal,
.hljs-type,
.hljs-link {
color: #800;
}
.hljs-deletion,
.hljs-meta {
color: #00e;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-doctag,
.hljs-title,
.hljs-section,
.hljs-built_in,
.hljs-tag,
.hljs-name {
font-weight: bold;
color: navy;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,139 @@
/* Background */ .highlight-bg { background-color: #f0f3f3 }
/* PreWrapper */ .highlight-chroma { background-color: #f0f3f3; }
/* Error */ .highlight-chroma .highlight-err { color: #aa0000; background-color: #ffaaaa }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #d8dada }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #006699; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #006699; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #006699; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #006699; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #006699 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #006699; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #007788; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #330099 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #336666 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #00aa88; font-weight: bold }
/* NameConstant */ .highlight-chroma .highlight-no { color: #336600 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #9999ff }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #999999; font-weight: bold }
/* NameException */ .highlight-chroma .highlight-ne { color: #cc0000; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #cc00ff }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #9999ff }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #00ccff; font-weight: bold }
/* NameTag */ .highlight-chroma .highlight-nt { color: #330099; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #003333 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #cc3300 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #cc3300 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #cc3300 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #cc3300 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #cc3300 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #cc3300; font-style: italic }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #cc3300 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #cc3300; font-weight: bold }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #cc3300 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #aa0000 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #cc3300 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #33aaaa }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #cc3300 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #ffcc33 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #ff6600 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #ff6600 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #ff6600 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #ff6600 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #ff6600 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #ff6600 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #ff6600 }
/* Operator */ .highlight-chroma .highlight-o { color: #555555 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #000000; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #0099ff; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #0099ff; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #0099ff; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #0099ff; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #0099ff; font-weight: bold; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #009999 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #009999 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { background-color: #ffcccc }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #ff0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #003300; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { background-color: #ccffcc }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #aaaaaa }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #000099; font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #003300; font-weight: bold }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #99cc66 }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/* Base16 Atelier Sulphurpool Light - Theme */
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
/* Atelier-Sulphurpool Comment */
.hljs-comment,
.hljs-quote {
color: #6b7394;
}
/* Atelier-Sulphurpool Red */
.hljs-variable,
.hljs-template-variable,
.hljs-attribute,
.hljs-tag,
.hljs-name,
.hljs-regexp,
.hljs-link,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class {
color: #c94922;
}
/* Atelier-Sulphurpool Orange */
.hljs-number,
.hljs-meta,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params {
color: #c76b29;
}
/* Atelier-Sulphurpool Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet {
color: #ac9739;
}
/* Atelier-Sulphurpool Blue */
.hljs-title,
.hljs-section {
color: #3d8fd1;
}
/* Atelier-Sulphurpool Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #6679cc;
}
.hljs {
display: block;
overflow-x: auto;
background: #f5f7ff;
color: #5e6687;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,132 @@
/* Background */ .highlight-bg { color: #f8f8f2; background-color: #272822 }
/* PreWrapper */ .highlight-chroma { color: #f8f8f2; background-color: #272822; }
/* Error */ .highlight-chroma .highlight-err { color: #960050; background-color: #1e0010 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #3c3d38 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #66d9ef }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #66d9ef }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #66d9ef }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #f92672 }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #66d9ef }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #66d9ef }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #66d9ef }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #a6e22e }
/* NameClass */ .highlight-chroma .highlight-nc { color: #a6e22e }
/* NameConstant */ .highlight-chroma .highlight-no { color: #66d9ef }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #a6e22e }
/* NameException */ .highlight-chroma .highlight-ne { color: #a6e22e }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #a6e22e }
/* NameOther */ .highlight-chroma .highlight-nx { color: #a6e22e }
/* NameTag */ .highlight-chroma .highlight-nt { color: #f92672 }
/* Literal */ .highlight-chroma .highlight-l { color: #ae81ff }
/* LiteralDate */ .highlight-chroma .highlight-ld { color: #e6db74 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #e6db74 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #e6db74 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #e6db74 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #e6db74 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #e6db74 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #e6db74 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #e6db74 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #ae81ff }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #e6db74 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #e6db74 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #e6db74 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #e6db74 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #e6db74 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #e6db74 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #ae81ff }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #ae81ff }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #ae81ff }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #ae81ff }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #ae81ff }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #ae81ff }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #ae81ff }
/* Operator */ .highlight-chroma .highlight-o { color: #f92672 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #f92672 }
/* Comment */ .highlight-chroma .highlight-c { color: #75715e }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #75715e }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #75715e }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #75715e }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #75715e }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #75715e }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #75715e }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #f92672 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #a6e22e }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #75715e }
/*
Monokai style - ported by Luigi Maselli - http://grigio.org
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #272822; color: #ddd;
}
.hljs-tag,
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-strong,
.hljs-name {
color: #f92672;
}
.hljs-code {
color: #66d9ef;
}
.hljs-class .hljs-title {
color: white;
}
.hljs-attribute,
.hljs-symbol,
.hljs-regexp,
.hljs-link {
color: #bf79db;
}
.hljs-string,
.hljs-bullet,
.hljs-subst,
.hljs-title,
.hljs-section,
.hljs-emphasis,
.hljs-type,
.hljs-built_in,
.hljs-builtin-name,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-addition,
.hljs-variable,
.hljs-template-tag,
.hljs-template-variable {
color: #a6e22e;
}
.hljs-comment,
.hljs-quote,
.hljs-deletion,
.hljs-meta {
color: #75715e;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-doctag,
.hljs-title,
.hljs-section,
.hljs-type,
.hljs-selector-id {
font-weight: bold;
}

View File

@ -0,0 +1,180 @@
/* Background */ .highlight-bg { color: #272822; background-color: #fafafa }
/* PreWrapper */ .highlight-chroma { color: #272822; background-color: #fafafa; }
/* Error */ .highlight-chroma .highlight-err { color: #960050; background-color: #1e0010 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e1e1e1 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #00a8c8 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #00a8c8 }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #00a8c8 }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #f92672 }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #00a8c8 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #00a8c8 }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #00a8c8 }
/* Name */ .highlight-chroma .highlight-n { color: #111111 }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #75af00 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #111111 }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { color: #111111 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #75af00 }
/* NameConstant */ .highlight-chroma .highlight-no { color: #00a8c8 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #75af00 }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #111111 }
/* NameException */ .highlight-chroma .highlight-ne { color: #75af00 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #75af00 }
/* NameFunctionMagic */ .highlight-chroma .highlight-fm { color: #111111 }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #111111 }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #111111 }
/* NameOther */ .highlight-chroma .highlight-nx { color: #75af00 }
/* NameProperty */ .highlight-chroma .highlight-py { color: #111111 }
/* NameTag */ .highlight-chroma .highlight-nt { color: #f92672 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #111111 }
/* NameVariableClass */ .highlight-chroma .highlight-vc { color: #111111 }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #111111 }
/* NameVariableInstance */ .highlight-chroma .highlight-vi { color: #111111 }
/* NameVariableMagic */ .highlight-chroma .highlight-vm { color: #111111 }
/* Literal */ .highlight-chroma .highlight-l { color: #ae81ff }
/* LiteralDate */ .highlight-chroma .highlight-ld { color: #d88200 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #d88200 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #d88200 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #d88200 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #d88200 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #d88200 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #d88200 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #d88200 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #8045ff }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #d88200 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #d88200 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #d88200 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #d88200 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #d88200 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #d88200 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #ae81ff }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #ae81ff }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #ae81ff }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #ae81ff }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #ae81ff }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #ae81ff }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #ae81ff }
/* Operator */ .highlight-chroma .highlight-o { color: #f92672 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #f92672 }
/* Punctuation */ .highlight-chroma .highlight-p { color: #111111 }
/* Comment */ .highlight-chroma .highlight-c { color: #75715e }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #75715e }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #75715e }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #75715e }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #75715e }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #75715e }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #75715e }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/*
Gruvbox style (light) (c) Pavel Pertsev (original style at https://github.com/morhetz/gruvbox)
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #fbf1c7;
}
.hljs,
.hljs-subst {
color: #3c3836;
}
/* Gruvbox Red */
.hljs-deletion,
.hljs-formula,
.hljs-keyword,
.hljs-link,
.hljs-selector-tag {
color: #9d0006;
}
/* Gruvbox Blue */
.hljs-built_in,
.hljs-emphasis,
.hljs-name,
.hljs-quote,
.hljs-strong,
.hljs-title,
.hljs-variable {
color: #076678;
}
/* Gruvbox Yellow */
.hljs-attr,
.hljs-params,
.hljs-template-tag,
.hljs-type {
color: #b57614;
}
/* Gruvbox Purple */
.hljs-builtin-name,
.hljs-doctag,
.hljs-literal,
.hljs-number {
color: #8f3f71;
}
/* Gruvbox Orange */
.hljs-code,
.hljs-meta,
.hljs-regexp,
.hljs-selector-id,
.hljs-template-variable {
color: #af3a03;
}
/* Gruvbox Green */
.hljs-addition,
.hljs-meta-string,
.hljs-section,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-string,
.hljs-symbol {
color: #79740e;
}
/* Gruvbox Aqua */
.hljs-attribute,
.hljs-bullet,
.hljs-class,
.hljs-function,
.hljs-function .hljs-keyword,
.hljs-meta-keyword,
.hljs-selector-pseudo,
.hljs-tag {
color: #427b58;
}
/* Gruvbox Gray */
.hljs-comment {
color: #928374;
}
/* Gruvbox Purple */
.hljs-link_label,
.hljs-literal,
.hljs-number {
color: #8f3f71;
}
.hljs-comment,
.hljs-emphasis {
font-style: italic;
}
.hljs-section,
.hljs-strong,
.hljs-tag {
font-weight: bold;
}

View File

@ -0,0 +1,144 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { color: #ff0000; background-color: #ffaaaa }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #228899; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #228899; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #228899; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #228899; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #0088ff; font-weight: bold }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #228899; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #6666ff; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #000077 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #007722 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #ee99ee; font-weight: bold }
/* NameConstant */ .highlight-chroma .highlight-no { color: #55eedd; font-weight: bold }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #555555; font-weight: bold }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #880000 }
/* NameException */ .highlight-chroma .highlight-ne { color: #ff0000; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #55eedd; font-weight: bold }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #997700; font-weight: bold }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #0e84b5; font-weight: bold }
/* NameTag */ .highlight-chroma .highlight-nt { color: #007700 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #003366 }
/* NameVariableClass */ .highlight-chroma .highlight-vc { color: #ccccff }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #ff8844 }
/* NameVariableInstance */ .highlight-chroma .highlight-vi { color: #aaaaff }
/* LiteralString */ .highlight-chroma .highlight-s { background-color: #e0e0ff }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { background-color: #e0e0ff }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { background-color: #e0e0ff }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #8888ff; background-color: #e0e0ff }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { background-color: #e0e0ff }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #dd4422; background-color: #e0e0ff }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { background-color: #e0e0ff }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #666666; background-color: #e0e0ff; font-weight: bold }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { background-color: #e0e0ff }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { background-color: #eeeeee }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #ff8888; background-color: #e0e0ff }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #000000; background-color: #e0e0ff }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { background-color: #e0e0ff }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #ffcc88; background-color: #e0e0ff }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #6600ee; font-weight: bold }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #6600ee; font-weight: bold }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #6600ee; font-weight: bold }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #005588; font-weight: bold }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #6666ff; font-weight: bold }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #6600ee; font-weight: bold }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #4400ee; font-weight: bold }
/* Operator */ .highlight-chroma .highlight-o { color: #333333 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #000000; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #666666; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #666666; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #666666; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #666666; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #cc0000; font-weight: bold; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #557799 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #557799 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #a00000 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #ff0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #000080; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #00a000 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #c65d09; font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #800080; font-weight: bold }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #0044dd }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/*
Colorbrewer theme
Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock <mike@ocks.org>
Ported by Fabrício Tavares de Oliveira
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #fff;
}
.hljs,
.hljs-subst {
color: #000;
}
.hljs-string,
.hljs-meta,
.hljs-symbol,
.hljs-template-tag,
.hljs-template-variable,
.hljs-addition {
color: #756bb1;
}
.hljs-comment,
.hljs-quote {
color: #636363;
}
.hljs-number,
.hljs-regexp,
.hljs-literal,
.hljs-bullet,
.hljs-link {
color: #31a354;
}
.hljs-deletion,
.hljs-variable {
color: #88f;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-title,
.hljs-section,
.hljs-built_in,
.hljs-doctag,
.hljs-type,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-strong {
color: #3182bd;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-attribute {
color: #e6550d;
}

View File

@ -0,0 +1,164 @@
/* Background */ .highlight-bg { color: #d0d0d0; background-color: #202020 }
/* PreWrapper */ .highlight-chroma { color: #d0d0d0; background-color: #202020; }
/* Error */ .highlight-chroma .highlight-err { color: #a61717; background-color: #e3d2d2 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #363636 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #686868 }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #686868 }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #6ab825; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #6ab825; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #6ab825; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #6ab825; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #6ab825 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #6ab825; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #6ab825; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #bbbbbb }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #24909d }
/* NameClass */ .highlight-chroma .highlight-nc { color: #447fcf; text-decoration: underline }
/* NameConstant */ .highlight-chroma .highlight-no { color: #40ffff }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #ffa500 }
/* NameException */ .highlight-chroma .highlight-ne { color: #bbbbbb }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #447fcf }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #447fcf; text-decoration: underline }
/* NameTag */ .highlight-chroma .highlight-nt { color: #6ab825; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #40ffff }
/* LiteralString */ .highlight-chroma .highlight-s { color: #ed9d13 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #ed9d13 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #ed9d13 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #ed9d13 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #ed9d13 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #ed9d13 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #ed9d13 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #ed9d13 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #ed9d13 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #ed9d13 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #ffa500 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #ed9d13 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #ed9d13 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #ed9d13 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #3677a9 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #3677a9 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #3677a9 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #3677a9 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #3677a9 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #3677a9 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #3677a9 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #6ab825; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #999999; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #999999; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #999999; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #999999; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #e50808; background-color: #520000; font-weight: bold }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #cd2828; font-weight: bold }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #cd2828; font-weight: bold }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #d22323 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #d22323 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #ffffff; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #589819 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #cccccc }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #aaaaaa }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #ffffff; text-decoration: underline }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #d22323 }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #666666 }
/*
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;
}

View File

@ -0,0 +1,137 @@
/* Background */ .highlight-bg { color: #e7e9db; background-color: #2f1e2e }
/* PreWrapper */ .highlight-chroma { color: #e7e9db; background-color: #2f1e2e; }
/* Error */ .highlight-chroma .highlight-err { color: #ef6155 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #433442 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #815ba4 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #815ba4 }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #815ba4 }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #5bc4bf }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #815ba4 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #815ba4 }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #fec418 }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #06b6ef }
/* NameClass */ .highlight-chroma .highlight-nc { color: #fec418 }
/* NameConstant */ .highlight-chroma .highlight-no { color: #ef6155 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #5bc4bf }
/* NameException */ .highlight-chroma .highlight-ne { color: #ef6155 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #06b6ef }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #fec418 }
/* NameOther */ .highlight-chroma .highlight-nx { color: #06b6ef }
/* NameTag */ .highlight-chroma .highlight-nt { color: #5bc4bf }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #ef6155 }
/* Literal */ .highlight-chroma .highlight-l { color: #f99b15 }
/* LiteralDate */ .highlight-chroma .highlight-ld { color: #48b685 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #48b685 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #48b685 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #48b685 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #48b685 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #776e71 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #48b685 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #f99b15 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #48b685 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #f99b15 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #48b685 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #48b685 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #48b685 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #48b685 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #f99b15 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #f99b15 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #f99b15 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #f99b15 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #f99b15 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #f99b15 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #f99b15 }
/* Operator */ .highlight-chroma .highlight-o { color: #5bc4bf }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #5bc4bf }
/* Comment */ .highlight-chroma .highlight-c { color: #776e71 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #776e71 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #776e71 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #776e71 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #776e71 }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #776e71 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #776e71 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #ef6155 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericHeading */ .highlight-chroma .highlight-gh { font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #48b685 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #776e71; font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #5bc4bf; font-weight: bold }
/*
Paraíso (dark)
Created by Jan T. Sott (http://github.com/idleberg)
Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
*/
/* Paraíso Comment */
.hljs-comment,
.hljs-quote {
color: #8d8687;
}
/* Paraíso Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-link,
.hljs-meta {
color: #ef6155;
}
/* Paraíso Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-deletion {
color: #f99b15;
}
/* Paraíso Yellow */
.hljs-title,
.hljs-section,
.hljs-attribute {
color: #fec418;
}
/* Paraíso Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #48b685;
}
/* Paraíso Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #815ba4;
}
.hljs {
display: block;
overflow-x: auto;
background: #2f1e2e;
color: #a39e9b;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,136 @@
/* Background */ .highlight-bg { color: #2f1e2e; background-color: #e7e9db }
/* PreWrapper */ .highlight-chroma { color: #2f1e2e; background-color: #e7e9db; }
/* Error */ .highlight-chroma .highlight-err { color: #ef6155 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #cfd1c5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #815ba4 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #815ba4 }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #815ba4 }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #5bc4bf }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #815ba4 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #815ba4 }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #fec418 }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #06b6ef }
/* NameClass */ .highlight-chroma .highlight-nc { color: #fec418 }
/* NameConstant */ .highlight-chroma .highlight-no { color: #ef6155 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #5bc4bf }
/* NameException */ .highlight-chroma .highlight-ne { color: #ef6155 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #06b6ef }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #fec418 }
/* NameOther */ .highlight-chroma .highlight-nx { color: #06b6ef }
/* NameTag */ .highlight-chroma .highlight-nt { color: #5bc4bf }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #ef6155 }
/* Literal */ .highlight-chroma .highlight-l { color: #f99b15 }
/* LiteralDate */ .highlight-chroma .highlight-ld { color: #48b685 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #48b685 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #48b685 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #48b685 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #48b685 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #8d8687 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #48b685 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #f99b15 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #48b685 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #f99b15 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #48b685 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #48b685 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #48b685 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #48b685 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #f99b15 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #f99b15 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #f99b15 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #f99b15 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #f99b15 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #f99b15 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #f99b15 }
/* Operator */ .highlight-chroma .highlight-o { color: #5bc4bf }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #5bc4bf }
/* Comment */ .highlight-chroma .highlight-c { color: #8d8687 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #8d8687 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #8d8687 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #8d8687 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #8d8687 }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #8d8687 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #8d8687 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #ef6155 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericHeading */ .highlight-chroma .highlight-gh { font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #48b685 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #8d8687; font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #5bc4bf; font-weight: bold }
/*
Paraíso (light)
Created by Jan T. Sott (http://github.com/idleberg)
Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
*/
/* Paraíso Comment */
.hljs-comment,
.hljs-quote {
color: #776e71;
}
/* Paraíso Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-link,
.hljs-meta {
color: #ef6155;
}
/* Paraíso Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-deletion {
color: #f99b15;
}
/* Paraíso Yellow */
.hljs-title,
.hljs-section,
.hljs-attribute {
color: #fec418;
}
/* Paraíso Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #48b685;
}
/* Paraíso Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #815ba4;
}
.hljs {
display: block;
overflow-x: auto;
background: #e7e9db;
color: #4f424c;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,180 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { color: #a61717; background-color: #e3d2d2 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #008800; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #008800; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #008800; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #008800; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #008800 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #008800; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #888888; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #336699 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #003388 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #bb0066; font-weight: bold }
/* NameConstant */ .highlight-chroma .highlight-no { color: #003366; font-weight: bold }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #555555 }
/* NameException */ .highlight-chroma .highlight-ne { color: #bb0066; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #0066bb; font-weight: bold }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #336699; font-style: italic }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #bb0066; font-weight: bold }
/* NameProperty */ .highlight-chroma .highlight-py { color: #336699; font-weight: bold }
/* NameTag */ .highlight-chroma .highlight-nt { color: #bb0066; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #336699 }
/* NameVariableClass */ .highlight-chroma .highlight-vc { color: #336699 }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #dd7700 }
/* NameVariableInstance */ .highlight-chroma .highlight-vi { color: #3333bb }
/* LiteralString */ .highlight-chroma .highlight-s { color: #dd2200; background-color: #fff0f0 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #dd2200; background-color: #fff0f0 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #dd2200; background-color: #fff0f0 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #dd2200; background-color: #fff0f0 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #dd2200; background-color: #fff0f0 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #dd2200; background-color: #fff0f0 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #dd2200; background-color: #fff0f0 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #0044dd; background-color: #fff0f0 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #dd2200; background-color: #fff0f0 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #3333bb; background-color: #fff0f0 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #22bb22; background-color: #f0fff0 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #008800; background-color: #fff0ff }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #dd2200; background-color: #fff0f0 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #aa6600; background-color: #fff0f0 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #0000dd; font-weight: bold }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #0000dd; font-weight: bold }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #0000dd; font-weight: bold }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #0000dd; font-weight: bold }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #0000dd; font-weight: bold }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #0000dd; font-weight: bold }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #0000dd; font-weight: bold }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #008800 }
/* Comment */ .highlight-chroma .highlight-c { color: #888888 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #888888 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #888888 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #888888 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #cc0000; background-color: #fff0f0; font-weight: bold }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #cc0000; font-weight: bold }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #cc0000; font-weight: bold }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #000000; background-color: #ffdddd }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #aa0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #333333 }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #000000; background-color: #ddffdd }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #555555 }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #666666 }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #aa0000 }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/*
highlight.js style for Microtik RouterOS script
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #F0F0F0;
}
/* Base color: saturation 0; */
.hljs,
.hljs-subst {
color: #444;
}
.hljs-comment {
color: #888888;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-meta-keyword,
.hljs-doctag,
.hljs-name {
font-weight: bold;
}
.hljs-attribute {
color: #0E9A00;
}
.hljs-function {
color: #99069A;
}
.hljs-builtin-name {
color: #99069A;
}
/* 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: #0C9A9A;
}
/* 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;
}

View File

@ -0,0 +1,141 @@
/* Background */ .highlight-bg { background-color: #eeeedd }
/* PreWrapper */ .highlight-chroma { background-color: #eeeedd; }
/* Error */ .highlight-chroma .highlight-err { color: #a61717; background-color: #e3d2d2 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #d6d6c6 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #8b008b; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #8b008b; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #8b008b; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #8b008b; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #8b008b; font-weight: bold }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #8b008b; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #00688b; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #658b00 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #658b00 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #008b45; font-weight: bold }
/* NameConstant */ .highlight-chroma .highlight-no { color: #00688b }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #707a7c }
/* NameException */ .highlight-chroma .highlight-ne { color: #008b45; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #008b45 }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #008b45; text-decoration: underline }
/* NameTag */ .highlight-chroma .highlight-nt { color: #8b008b; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #00688b }
/* LiteralString */ .highlight-chroma .highlight-s { color: #cd5555 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #cd5555 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #cd5555 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #cd5555 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #cd5555 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #cd5555 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #cd5555 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #cd5555 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #1c7e71; font-style: italic }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #cd5555 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #cb6c20 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #1c7e71 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #cd5555 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #cd5555 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #b452cd }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #b452cd }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #b452cd }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #b452cd }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #b452cd }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #b452cd }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #b452cd }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #8b008b }
/* Comment */ .highlight-chroma .highlight-c { color: #228b22 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #228b22 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #228b22 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #228b22 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #8b008b; font-weight: bold }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #1e889b }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #1e889b }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #aa0000 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #aa0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #000080; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #00aa00 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #555555 }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #800080; font-weight: bold }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #aa0000 }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/*
Name: Kimbie (light)
Author: Jan T. Sott
License: Creative Commons Attribution-ShareAlike 4.0 Unported License
URL: https://github.com/idleberg/Kimbie-highlight.js
*/
/* Kimbie Comment */
.hljs-comment,
.hljs-quote {
color: #a57a4c;
}
/* Kimbie Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-meta {
color: #dc3958;
}
/* Kimbie Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-deletion,
.hljs-link {
color: #f79a32;
}
/* Kimbie Yellow */
.hljs-title,
.hljs-section,
.hljs-attribute {
color: #f06431;
}
/* Kimbie Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #889b4a;
}
/* Kimbie Purple */
.hljs-keyword,
.hljs-selector-tag,
.hljs-function {
color: #98676a;
}
.hljs {
display: block;
overflow-x: auto;
background: #fbebd4;
color: #84613d;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,159 @@
/* Background */ .highlight-bg { }
/* PreWrapper */ .highlight-chroma { ; }
/* Error */ .highlight-chroma .highlight-err { }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #008000; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #008000; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #008000; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #008000; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #008000 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #008000; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #b00040 }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #7d9029 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #008000 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #0000ff; font-weight: bold }
/* NameConstant */ .highlight-chroma .highlight-no { color: #880000 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #aa22ff }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #999999; font-weight: bold }
/* NameException */ .highlight-chroma .highlight-ne { color: #d2413a; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #0000ff }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #a0a000 }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #0000ff; font-weight: bold }
/* NameTag */ .highlight-chroma .highlight-nt { color: #008000; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #19177c }
/* LiteralString */ .highlight-chroma .highlight-s { color: #ba2121 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #ba2121 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #ba2121 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #ba2121 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #ba2121 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #ba2121; font-style: italic }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #ba2121 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #bb6622; font-weight: bold }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #ba2121 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #bb6688; font-weight: bold }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #008000 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #bb6688 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #ba2121 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #19177c }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #666666 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #666666 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #666666 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #666666 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #666666 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #666666 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #666666 }
/* Operator */ .highlight-chroma .highlight-o { color: #666666 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #aa22ff; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #408080; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #408080; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #408080; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #408080; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #408080; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #bc7a00 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #bc7a00 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #a00000 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #ff0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #000080; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #00a000 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #000080; font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #800080; font-weight: bold }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #0044dd }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/*
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;
}
.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;
}

View File

@ -0,0 +1,164 @@
/* Background */ .highlight-bg { color: #4d4d4d; background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { color: #4d4d4d; background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { color: #ffffff; background-color: #cc0000 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #2c5dcd; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #2c5dcd; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #2c5dcd; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #2c5dcd; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #2c5dcd }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #2c5dcd; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #5918bb; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #2c5dcd; font-style: italic }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #5918bb; font-weight: bold }
/* NameClass */ .highlight-chroma .highlight-nc { text-decoration: underline }
/* NameConstant */ .highlight-chroma .highlight-no { color: #318495 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #ff8000; font-weight: bold }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #5918bb; font-weight: bold }
/* NameException */ .highlight-chroma .highlight-ne { color: #5918bb; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #ff8000; font-weight: bold }
/* NameTag */ .highlight-chroma .highlight-nt { color: #2c5dcd; font-weight: bold }
/* LiteralString */ .highlight-chroma .highlight-s { color: #00cc66 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #00cc66 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #00cc66 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #00cc66 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #00cc66 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #00cc66; font-style: italic }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #00cc66 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #c5060b; font-weight: bold }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #00cc66 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #00cc66 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #318495 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #00cc66 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #00cc66 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #c5060b; font-weight: bold }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #5918bb; font-weight: bold }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #5918bb; font-weight: bold }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #5918bb; font-weight: bold }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #5918bb; font-weight: bold }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #5918bb; font-weight: bold }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #5918bb; font-weight: bold }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #5918bb; font-weight: bold }
/* Operator */ .highlight-chroma .highlight-o { color: #2c5dcd }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #2c5dcd; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #0080ff; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #0080ff; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #0080ff; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #0080ff; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #0080ff; font-weight: bold; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #0080ff }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #0080ff }
/* GenericDeleted */ .highlight-chroma .highlight-gd { background-color: #ffcccc }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #ff0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #2c5dcd; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { background-color: #ccffcc }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #aaaaaa }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #2c5dcd; font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #2c5dcd; font-weight: bold }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #c5060b }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #cbcbcb }
/*
Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #000;
background: #fff;
}
.hljs-subst,
.hljs-title {
font-weight: normal;
color: #000;
}
.hljs-comment,
.hljs-quote {
color: #808080;
font-style: italic;
}
.hljs-meta {
color: #808000;
}
.hljs-tag {
background: #efefef;
}
.hljs-section,
.hljs-name,
.hljs-literal,
.hljs-keyword,
.hljs-selector-tag,
.hljs-type,
.hljs-selector-id,
.hljs-selector-class {
font-weight: bold;
color: #000080;
}
.hljs-attribute,
.hljs-number,
.hljs-regexp,
.hljs-link {
font-weight: bold;
color: #0000ff;
}
.hljs-number,
.hljs-regexp,
.hljs-link {
font-weight: normal;
}
.hljs-string {
color: #008000;
font-weight: bold;
}
.hljs-symbol,
.hljs-bullet,
.hljs-formula {
color: #000;
background: #d0eded;
font-style: italic;
}
.hljs-doctag {
text-decoration: underline;
}
.hljs-variable,
.hljs-template-variable {
color: #660e7a;
}
.hljs-addition {
background: #baeeba;
}
.hljs-deletion {
background: #ffc8bd;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,159 @@
/* Background */ .highlight-bg { color: #f8f8f2; background-color: #000000 }
/* PreWrapper */ .highlight-chroma { color: #f8f8f2; background-color: #000000; }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #191919 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7c7c79 }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7c7c79 }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #ff0000 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #ff0000 }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #ff0000 }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #ff0000 }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #ff0000 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #ff0000 }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #ee82ee }
/* NameConstant */ .highlight-chroma .highlight-no { color: #7fffd4 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #ffff00 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #eedd82 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #87ceeb }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #87ceeb }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #87ceeb }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #87ceeb }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #87ceeb }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #87ceeb }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #87ceeb }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #87ceeb }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #87ceeb }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #87ceeb }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #87ceeb }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #87ceeb }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #87ceeb }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #ff6600 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #ff6600 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #ff6600 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #ff6600 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #ff6600 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #ff6600 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #ff6600 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #ff6600 }
/* Comment */ .highlight-chroma .highlight-c { color: #00ff00 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #00ff00 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #00ff00 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #00ff00 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #00ff00 }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #e5e5e5 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #e5e5e5 }
/*
ISBL Editor style dark color scheme (c) Dmitriy Tarasov <dimatar@gmail.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #404040;
color: #f0f0f0;
}
/* Base color: saturation 0; */
.hljs,
.hljs-subst {
color: #f0f0f0;
}
.hljs-comment {
color: #b5b5b5;
font-style: italic;
}
.hljs-keyword,
.hljs-attribute,
.hljs-selector-tag,
.hljs-meta-keyword,
.hljs-doctag,
.hljs-name {
color: #f0f0f0;
font-weight: bold;
}
/* User color: hue: 0 */
.hljs-string {
color: #97bf0d;
}
.hljs-type,
.hljs-number,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
color: #f0f0f0;
}
.hljs-title,
.hljs-section {
color: #df471e;
}
.hljs-title>.hljs-built_in {
color: #81bce9;
font-weight: normal;
}
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #e2c696;
}
/* Language color: hue: 90; */
.hljs-built_in,
.hljs-literal {
color: #97bf0d;
font-weight: bold;
}
.hljs-bullet,
.hljs-code,
.hljs-addition {
color: #397300;
}
.hljs-class {
color: #ce9d4d;
font-weight: bold;
}
/* 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;
}

View File

@ -0,0 +1,146 @@
/* Background */ .highlight-bg { color: #93a1a1; background-color: #002b36 }
/* PreWrapper */ .highlight-chroma { color: #93a1a1; background-color: #002b36; }
/* Other */ .highlight-chroma .highlight-x { color: #cb4b16 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #19404a }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #495050 }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #495050 }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #719e07 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #cb4b16 }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #268bd2 }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #719e07 }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #719e07 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #268bd2 }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #dc322f }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #b58900 }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { color: #268bd2 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #268bd2 }
/* NameConstant */ .highlight-chroma .highlight-no { color: #cb4b16 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #268bd2 }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #cb4b16 }
/* NameException */ .highlight-chroma .highlight-ne { color: #cb4b16 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #268bd2 }
/* NameTag */ .highlight-chroma .highlight-nt { color: #268bd2 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #268bd2 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #2aa198 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #2aa198 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #586e75 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #2aa198 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #2aa198 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #2aa198 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #cb4b16 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #2aa198 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #2aa198 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #dc322f }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #2aa198 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #2aa198 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #2aa198 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #2aa198 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #2aa198 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #2aa198 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #2aa198 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #2aa198 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #2aa198 }
/* Operator */ .highlight-chroma .highlight-o { color: #719e07 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #719e07 }
/* Comment */ .highlight-chroma .highlight-c { color: #586e75 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #586e75 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #586e75 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #586e75 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #719e07 }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #719e07 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #719e07 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #dc322f }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #dc322f; font-weight: bold }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #cb4b16 }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #719e07 }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #268bd2 }
/*
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #002b36;
color: #839496;
}
.hljs-comment,
.hljs-quote {
color: #586e75;
}
/* Solarized Green */
.hljs-keyword,
.hljs-selector-tag,
.hljs-addition {
color: #859900;
}
/* Solarized Cyan */
.hljs-number,
.hljs-string,
.hljs-meta .hljs-meta-string,
.hljs-literal,
.hljs-doctag,
.hljs-regexp {
color: #2aa198;
}
/* Solarized Blue */
.hljs-title,
.hljs-section,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class {
color: #268bd2;
}
/* Solarized Yellow */
.hljs-attribute,
.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-class .hljs-title,
.hljs-type {
color: #b58900;
}
/* Solarized Orange */
.hljs-symbol,
.hljs-bullet,
.hljs-subst,
.hljs-meta,
.hljs-meta .hljs-keyword,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-link {
color: #cb4b16;
}
/* Solarized Red */
.hljs-built_in,
.hljs-deletion {
color: #dc322f;
}
.hljs-formula {
background: #073642;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,146 @@
/* Background */ .highlight-bg { color: #8a8a8a; background-color: #1c1c1c }
/* PreWrapper */ .highlight-chroma { color: #8a8a8a; background-color: #1c1c1c; }
/* Other */ .highlight-chroma .highlight-x { color: #d75f00 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #323232 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #454545 }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #454545 }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #5f8700 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #d75f00 }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #0087ff }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #d75f00 }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #5f8700 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #0087ff }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #af0000 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #0087ff }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { color: #0087ff }
/* NameClass */ .highlight-chroma .highlight-nc { color: #0087ff }
/* NameConstant */ .highlight-chroma .highlight-no { color: #d75f00 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #0087ff }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #d75f00 }
/* NameException */ .highlight-chroma .highlight-ne { color: #af8700 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #0087ff }
/* NameTag */ .highlight-chroma .highlight-nt { color: #0087ff }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #0087ff }
/* LiteralString */ .highlight-chroma .highlight-s { color: #00afaf }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #00afaf }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #4e4e4e }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #00afaf }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #00afaf }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #00afaf }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #00afaf }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #af0000 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #00afaf }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #00afaf }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #00afaf }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #af0000 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #00afaf }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #00afaf }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #00afaf }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #00afaf }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #00afaf }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #00afaf }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #00afaf }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #00afaf }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #00afaf }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #5f8700 }
/* Comment */ .highlight-chroma .highlight-c { color: #4e4e4e }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #4e4e4e }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #4e4e4e }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #4e4e4e }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #5f8700 }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #5f8700 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #5f8700 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #af0000 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #af0000; font-weight: bold }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #d75f00 }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #5f8700 }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #0087ff }
/* Base16 Atelier Cave Dark - Theme */
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
/* Atelier-Cave Comment */
.hljs-comment,
.hljs-quote {
color: #7e7887;
}
/* Atelier-Cave Red */
.hljs-variable,
.hljs-template-variable,
.hljs-attribute,
.hljs-regexp,
.hljs-link,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class {
color: #be4678;
}
/* Atelier-Cave Orange */
.hljs-number,
.hljs-meta,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params {
color: #aa573c;
}
/* Atelier-Cave Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet {
color: #2a9292;
}
/* Atelier-Cave Blue */
.hljs-title,
.hljs-section {
color: #576ddb;
}
/* Atelier-Cave Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #955ae7;
}
.hljs-deletion,
.hljs-addition {
color: #19171c;
display: inline-block;
width: 100%;
}
.hljs-deletion {
background-color: #be4678;
}
.hljs-addition {
background-color: #2a9292;
}
.hljs {
display: block;
overflow-x: auto;
background: #19171c;
color: #8b8792;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,163 @@
/* Background */ .highlight-bg { color: #586e75; background-color: #eee8d5 }
/* PreWrapper */ .highlight-chroma { color: #586e75; background-color: #eee8d5; }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #d6d0bf }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #859900 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #859900; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #859900 }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #dc322f; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #859900 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #859900 }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #859900; font-weight: bold }
/* Name */ .highlight-chroma .highlight-n { color: #268bd2 }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #268bd2 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #cb4b16 }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { color: #268bd2 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #cb4b16 }
/* NameConstant */ .highlight-chroma .highlight-no { color: #268bd2 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #268bd2 }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #268bd2 }
/* NameException */ .highlight-chroma .highlight-ne { color: #268bd2 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #268bd2 }
/* NameFunctionMagic */ .highlight-chroma .highlight-fm { color: #268bd2 }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #268bd2 }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #268bd2 }
/* NameOther */ .highlight-chroma .highlight-nx { color: #268bd2 }
/* NameProperty */ .highlight-chroma .highlight-py { color: #268bd2 }
/* NameTag */ .highlight-chroma .highlight-nt { color: #268bd2; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #268bd2 }
/* NameVariableClass */ .highlight-chroma .highlight-vc { color: #268bd2 }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #268bd2 }
/* NameVariableInstance */ .highlight-chroma .highlight-vi { color: #268bd2 }
/* NameVariableMagic */ .highlight-chroma .highlight-vm { color: #268bd2 }
/* Literal */ .highlight-chroma .highlight-l { color: #2aa198 }
/* LiteralDate */ .highlight-chroma .highlight-ld { color: #2aa198 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #2aa198 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #2aa198 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #2aa198 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #2aa198 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #2aa198 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #2aa198 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #2aa198 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #2aa198 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #2aa198 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #2aa198 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #2aa198 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #2aa198 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #2aa198 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #2aa198 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #2aa198; font-weight: bold }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #2aa198; font-weight: bold }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #2aa198; font-weight: bold }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #2aa198; font-weight: bold }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #2aa198; font-weight: bold }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #2aa198; font-weight: bold }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #2aa198; font-weight: bold }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #859900 }
/* Comment */ .highlight-chroma .highlight-c { color: #93a1a1; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #93a1a1; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #93a1a1; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #93a1a1; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #93a1a1; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #93a1a1; font-style: italic }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #93a1a1; font-style: italic }
/* Generic */ .highlight-chroma .highlight-g { color: #d33682 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #d33682 }
/* GenericEmph */ .highlight-chroma .highlight-ge { color: #d33682 }
/* GenericError */ .highlight-chroma .highlight-gr { color: #d33682 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #d33682 }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #d33682 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #d33682 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #d33682 }
/* GenericStrong */ .highlight-chroma .highlight-gs { color: #d33682 }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #d33682 }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #d33682 }
/* GenericUnderline */ .highlight-chroma .highlight-gl { color: #d33682 }
/*
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #fdf6e3;
color: #657b83;
}
.hljs-comment,
.hljs-quote {
color: #93a1a1;
}
/* Solarized Green */
.hljs-keyword,
.hljs-selector-tag,
.hljs-addition {
color: #859900;
}
/* Solarized Cyan */
.hljs-number,
.hljs-string,
.hljs-meta .hljs-meta-string,
.hljs-literal,
.hljs-doctag,
.hljs-regexp {
color: #2aa198;
}
/* Solarized Blue */
.hljs-title,
.hljs-section,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class {
color: #268bd2;
}
/* Solarized Yellow */
.hljs-attribute,
.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-class .hljs-title,
.hljs-type {
color: #b58900;
}
/* Solarized Orange */
.hljs-symbol,
.hljs-bullet,
.hljs-subst,
.hljs-meta,
.hljs-meta .hljs-keyword,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-link {
color: #cb4b16;
}
/* Solarized Red */
.hljs-built_in,
.hljs-deletion {
color: #dc322f;
}
.hljs-formula {
background: #eee8d5;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@ -0,0 +1,144 @@
/* Background */ .highlight-bg { color: #e5e5e5; background-color: #000000 }
/* PreWrapper */ .highlight-chroma { color: #e5e5e5; background-color: #000000; }
/* Error */ .highlight-chroma .highlight-err { color: #ff0000 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #191919 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #727272 }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #727272 }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #ffffff; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #ffffff; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #ffffff; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #ffffff; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #ffffff; font-weight: bold }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #ffffff; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #ffffff; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #007f7f }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #ffffff; font-weight: bold }
/* NameTag */ .highlight-chroma .highlight-nt { font-weight: bold }
/* LiteralDate */ .highlight-chroma .highlight-ld { color: #ffff00; font-weight: bold }
/* LiteralString */ .highlight-chroma .highlight-s { color: #00ffff; font-weight: bold }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #00ffff; font-weight: bold }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #00ffff; font-weight: bold }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #00ffff; font-weight: bold }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #00ffff; font-weight: bold }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #00ffff; font-weight: bold }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #00ffff; font-weight: bold }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #00ffff; font-weight: bold }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #00ffff; font-weight: bold }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #00ffff; font-weight: bold }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #00ffff; font-weight: bold }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #00ffff; font-weight: bold }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #00ffff; font-weight: bold }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #00ffff; font-weight: bold }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #ffff00; font-weight: bold }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #ffff00; font-weight: bold }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #ffff00; font-weight: bold }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #ffff00; font-weight: bold }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #ffff00; font-weight: bold }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #ffff00; font-weight: bold }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #ffff00; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #007f7f }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #007f7f }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #007f7f }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #007f7f }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #007f7f }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #00ff00; font-weight: bold }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #00ff00; font-weight: bold }
/* GenericHeading */ .highlight-chroma .highlight-gh { font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { font-weight: bold }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/*
xt256.css
Contact: initbar [at] protonmail [dot] ch
: github.com/initbar
*/
.hljs {
display: block;
overflow-x: auto;
color: #eaeaea;
background: #000;
padding: 0.5em;
}
.hljs-subst {
color: #eaeaea;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
.hljs-builtin-name,
.hljs-type {
color: #eaeaea;
}
.hljs-params {
color: #da0000;
}
.hljs-literal,
.hljs-number,
.hljs-name {
color: #ff0000;
font-weight: bolder;
}
.hljs-comment {
color: #969896;
}
.hljs-selector-id,
.hljs-quote {
color: #00ffff;
}
.hljs-template-variable,
.hljs-variable,
.hljs-title {
color: #00ffff;
font-weight: bold;
}
.hljs-selector-class,
.hljs-keyword,
.hljs-symbol {
color: #fff000;
}
.hljs-string,
.hljs-bullet {
color: #00ff00;
}
.hljs-tag,
.hljs-section {
color: #000fff;
}
.hljs-selector-tag {
color: #000fff;
font-weight: bold;
}
.hljs-attribute,
.hljs-built_in,
.hljs-regexp,
.hljs-link {
color: #ff00ff;
}
.hljs-meta {
color: #fff;
font-weight: bolder;
}

View File

@ -0,0 +1,183 @@
/* Background */ .highlight-bg { background-color: #f8f8f8 }
/* PreWrapper */ .highlight-chroma { background-color: #f8f8f8; }
/* Other */ .highlight-chroma .highlight-x { color: #000000 }
/* Error */ .highlight-chroma .highlight-err { color: #a40000 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #dfdfdf }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #204a87; font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #204a87; font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #204a87; font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #204a87; font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #204a87; font-weight: bold }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #204a87; font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #204a87; font-weight: bold }
/* Name */ .highlight-chroma .highlight-n { color: #000000 }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #c4a000 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #204a87 }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { color: #3465a4 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #000000 }
/* NameConstant */ .highlight-chroma .highlight-no { color: #000000 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #5c35cc; font-weight: bold }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #ce5c00 }
/* NameException */ .highlight-chroma .highlight-ne { color: #cc0000; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #000000 }
/* NameFunctionMagic */ .highlight-chroma .highlight-fm { color: #000000 }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #f57900 }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #000000 }
/* NameOther */ .highlight-chroma .highlight-nx { color: #000000 }
/* NameProperty */ .highlight-chroma .highlight-py { color: #000000 }
/* NameTag */ .highlight-chroma .highlight-nt { color: #204a87; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #000000 }
/* NameVariableClass */ .highlight-chroma .highlight-vc { color: #000000 }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #000000 }
/* NameVariableInstance */ .highlight-chroma .highlight-vi { color: #000000 }
/* NameVariableMagic */ .highlight-chroma .highlight-vm { color: #000000 }
/* Literal */ .highlight-chroma .highlight-l { color: #000000 }
/* LiteralDate */ .highlight-chroma .highlight-ld { color: #000000 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #4e9a06 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #4e9a06 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #4e9a06 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #4e9a06 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #4e9a06 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #8f5902; font-style: italic }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #4e9a06 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #4e9a06 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #4e9a06 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #4e9a06 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #4e9a06 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #4e9a06 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #4e9a06 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #4e9a06 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #0000cf; font-weight: bold }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #0000cf; font-weight: bold }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #0000cf; font-weight: bold }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #0000cf; font-weight: bold }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #0000cf; font-weight: bold }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #0000cf; font-weight: bold }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #0000cf; font-weight: bold }
/* Operator */ .highlight-chroma .highlight-o { color: #ce5c00; font-weight: bold }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #204a87; font-weight: bold }
/* Punctuation */ .highlight-chroma .highlight-p { color: #000000; font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #8f5902; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #8f5902; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #8f5902; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #8f5902; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #8f5902; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #8f5902; font-style: italic }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #8f5902; font-style: italic }
/* Generic */ .highlight-chroma .highlight-g { color: #000000 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #a40000 }
/* GenericEmph */ .highlight-chroma .highlight-ge { color: #000000; font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #ef2929 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #000080; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #00a000 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #000000; font-style: italic }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #8f5902 }
/* GenericStrong */ .highlight-chroma .highlight-gs { color: #000000; font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #800080; font-weight: bold }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #a40000; font-weight: bold }
/* GenericUnderline */ .highlight-chroma .highlight-gl { color: #000000; text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #f8f8f8; text-decoration: underline }
/* a11y-light theme */
/* Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css */
/* @author: ericwbailey */
/* Comment */
.hljs-comment,
.hljs-quote {
color: #696969;
}
/* Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-deletion {
color: #d91e18;
}
/* Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-meta,
.hljs-link {
color: #aa5d00;
}
/* Yellow */
.hljs-attribute {
color: #aa5d00;
}
/* Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #008000;
}
/* Blue */
.hljs-title,
.hljs-section {
color: #007faa;
}
/* Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #7928a1;
}
.hljs {
display: block;
overflow-x: auto;
background: #fefefe;
color: #545454;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
@media screen and (-ms-high-contrast: active) {
.hljs-addition,
.hljs-attribute,
.hljs-built_in,
.hljs-builtin-name,
.hljs-bullet,
.hljs-comment,
.hljs-link,
.hljs-literal,
.hljs-meta,
.hljs-number,
.hljs-params,
.hljs-string,
.hljs-symbol,
.hljs-type,
.hljs-quote {
color: highlight;
}
.hljs-keyword,
.hljs-selector-tag {
font-weight: bold;
}
}

View File

@ -0,0 +1,167 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { color: #a61717; background-color: #e3d2d2 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { font-weight: bold }
/* KeywordConstant */ .highlight-chroma .highlight-kc { font-weight: bold }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { font-weight: bold }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { font-weight: bold }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { font-weight: bold }
/* KeywordReserved */ .highlight-chroma .highlight-kr { font-weight: bold }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #445588; font-weight: bold }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #008080 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #999999 }
/* NameClass */ .highlight-chroma .highlight-nc { color: #445588; font-weight: bold }
/* NameConstant */ .highlight-chroma .highlight-no { color: #008080 }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #800080 }
/* NameException */ .highlight-chroma .highlight-ne { color: #990000; font-weight: bold }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #990000; font-weight: bold }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #555555 }
/* NameTag */ .highlight-chroma .highlight-nt { color: #000080 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #008080 }
/* LiteralString */ .highlight-chroma .highlight-s { color: #bb8844 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #bb8844 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #bb8844 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #bb8844 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #bb8844 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #bb8844 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #bb8844 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #bb8844 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #bb8844 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #bb8844 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #bb8844 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #808000 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #bb8844 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #bb8844 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #009999 }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #009999 }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #009999 }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #009999 }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #009999 }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #009999 }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #009999 }
/* Operator */ .highlight-chroma .highlight-o { font-weight: bold }
/* OperatorWord */ .highlight-chroma .highlight-ow { font-weight: bold }
/* Comment */ .highlight-chroma .highlight-c { color: #999988; font-style: italic }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #999988; font-style: italic }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #999988; font-style: italic }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #999988; font-style: italic }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #999999; font-weight: bold; font-style: italic }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #999999; font-weight: bold }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #999999; font-weight: bold }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #000000; background-color: #ffdddd }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #aa0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #999999 }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #000000; background-color: #ddffdd }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #555555 }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #aaaaaa }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #aa0000 }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/* TextWhitespace */ .highlight-chroma .highlight-w { color: #bbbbbb }
/*
Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #F0F0F0;
}
/* 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;
}

View File

@ -0,0 +1,144 @@
/* Background */ .highlight-bg { color: #cccccc; background-color: #000000 }
/* PreWrapper */ .highlight-chroma { color: #cccccc; background-color: #000000; }
/* Error */ .highlight-chroma .highlight-err { }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #191919 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #666666 }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #666666 }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #cdcd00 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #cdcd00 }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #00cd00 }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #cd00cd }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #cdcd00 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #cdcd00 }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #00cd00 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #cd00cd }
/* NameClass */ .highlight-chroma .highlight-nc { color: #00cdcd }
/* NameException */ .highlight-chroma .highlight-ne { color: #666699; font-weight: bold }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #00cdcd }
/* LiteralString */ .highlight-chroma .highlight-s { color: #cd0000 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #cd0000 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #cd0000 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #cd0000 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #cd0000 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #cd0000 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #cd0000 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #cd0000 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #cd0000 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #cd0000 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #cd0000 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #cd0000 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #cd0000 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #cd0000 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #cd00cd }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #cd00cd }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #cd00cd }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #cd00cd }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #cd00cd }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #cd00cd }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #cd00cd }
/* Operator */ .highlight-chroma .highlight-o { color: #3399cc }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #cdcd00 }
/* Comment */ .highlight-chroma .highlight-c { color: #000080 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #000080 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #000080 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #000080 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #cd0000; font-weight: bold }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #000080 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #000080 }
/* GenericDeleted */ .highlight-chroma .highlight-gd { color: #cd0000 }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericError */ .highlight-chroma .highlight-gr { color: #ff0000 }
/* GenericHeading */ .highlight-chroma .highlight-gh { color: #000080; font-weight: bold }
/* GenericInserted */ .highlight-chroma .highlight-gi { color: #00cd00 }
/* GenericOutput */ .highlight-chroma .highlight-go { color: #888888 }
/* GenericPrompt */ .highlight-chroma .highlight-gp { color: #000080; font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { color: #800080; font-weight: bold }
/* GenericTraceback */ .highlight-chroma .highlight-gt { color: #0044dd }
/* GenericUnderline */ .highlight-chroma .highlight-gl { text-decoration: underline }
/*
Qt Creator dark color scheme
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #000000;
}
.hljs,
.hljs-subst,
.hljs-tag,
.hljs-title {
color: #aaaaaa;
}
.hljs-strong,
.hljs-emphasis {
color: #a8a8a2;
}
.hljs-bullet,
.hljs-quote,
.hljs-number,
.hljs-regexp,
.hljs-literal {
color: #ff55ff;
}
.hljs-code
.hljs-selector-class {
color: #aaaaff;
}
.hljs-emphasis,
.hljs-stronge,
.hljs-type {
font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-function,
.hljs-section,
.hljs-symbol,
.hljs-name {
color: #ffff55;
}
.hljs-attribute {
color: #ff5555;
}
.hljs-variable,
.hljs-params,
.hljs-class .hljs-title {
color: #8888ff;
}
.hljs-string,
.hljs-selector-id,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-type,
.hljs-built_in,
.hljs-builtin-name,
.hljs-template-tag,
.hljs-template-variable,
.hljs-addition,
.hljs-link {
color: #ff55ff;
}
.hljs-comment,
.hljs-meta,
.hljs-deletion {
color: #55ffff;
}

View File

@ -0,0 +1,113 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #0000ff }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #0000ff }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #0000ff }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #0000ff }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #0000ff }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #0000ff }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #2b91af }
/* NameClass */ .highlight-chroma .highlight-nc { color: #2b91af }
/* LiteralString */ .highlight-chroma .highlight-s { color: #a31515 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #a31515 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #a31515 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #a31515 }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #a31515 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #a31515 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #a31515 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #a31515 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #a31515 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #a31515 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #a31515 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #a31515 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #a31515 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #a31515 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #0000ff }
/* Comment */ .highlight-chroma .highlight-c { color: #008000 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #008000 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #008000 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #008000 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #008000 }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #0000ff }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #0000ff }
/* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
/* GenericHeading */ .highlight-chroma .highlight-gh { font-weight: bold }
/* GenericPrompt */ .highlight-chroma .highlight-gp { font-weight: bold }
/* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
/* GenericSubheading */ .highlight-chroma .highlight-gu { font-weight: bold }
/*
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;
}
.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;
}

View File

@ -0,0 +1,174 @@
/* Background */ .highlight-bg { background-color: #ffffff }
/* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
/* Error */ .highlight-chroma .highlight-err { color: #000000 }
/* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
/* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .highlight-chroma .highlight-line { display: flex; }
/* Keyword */ .highlight-chroma .highlight-k { color: #a90d91 }
/* KeywordConstant */ .highlight-chroma .highlight-kc { color: #a90d91 }
/* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #a90d91 }
/* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #a90d91 }
/* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #a90d91 }
/* KeywordReserved */ .highlight-chroma .highlight-kr { color: #a90d91 }
/* KeywordType */ .highlight-chroma .highlight-kt { color: #a90d91 }
/* Name */ .highlight-chroma .highlight-n { color: #000000 }
/* NameAttribute */ .highlight-chroma .highlight-na { color: #836c28 }
/* NameBuiltin */ .highlight-chroma .highlight-nb { color: #a90d91 }
/* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { color: #5b269a }
/* NameClass */ .highlight-chroma .highlight-nc { color: #3f6e75 }
/* NameConstant */ .highlight-chroma .highlight-no { color: #000000 }
/* NameDecorator */ .highlight-chroma .highlight-nd { color: #000000 }
/* NameEntity */ .highlight-chroma .highlight-ni { color: #000000 }
/* NameException */ .highlight-chroma .highlight-ne { color: #000000 }
/* NameFunction */ .highlight-chroma .highlight-nf { color: #000000 }
/* NameFunctionMagic */ .highlight-chroma .highlight-fm { color: #000000 }
/* NameLabel */ .highlight-chroma .highlight-nl { color: #000000 }
/* NameNamespace */ .highlight-chroma .highlight-nn { color: #000000 }
/* NameOther */ .highlight-chroma .highlight-nx { color: #000000 }
/* NameProperty */ .highlight-chroma .highlight-py { color: #000000 }
/* NameTag */ .highlight-chroma .highlight-nt { color: #000000 }
/* NameVariable */ .highlight-chroma .highlight-nv { color: #000000 }
/* NameVariableClass */ .highlight-chroma .highlight-vc { color: #000000 }
/* NameVariableGlobal */ .highlight-chroma .highlight-vg { color: #000000 }
/* NameVariableInstance */ .highlight-chroma .highlight-vi { color: #000000 }
/* NameVariableMagic */ .highlight-chroma .highlight-vm { color: #000000 }
/* Literal */ .highlight-chroma .highlight-l { color: #1c01ce }
/* LiteralDate */ .highlight-chroma .highlight-ld { color: #1c01ce }
/* LiteralString */ .highlight-chroma .highlight-s { color: #c41a16 }
/* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #c41a16 }
/* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #c41a16 }
/* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #2300ce }
/* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #c41a16 }
/* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #c41a16 }
/* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #c41a16 }
/* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #c41a16 }
/* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #c41a16 }
/* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #c41a16 }
/* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #c41a16 }
/* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #c41a16 }
/* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #c41a16 }
/* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #c41a16 }
/* LiteralNumber */ .highlight-chroma .highlight-m { color: #1c01ce }
/* LiteralNumberBin */ .highlight-chroma .highlight-mb { color: #1c01ce }
/* LiteralNumberFloat */ .highlight-chroma .highlight-mf { color: #1c01ce }
/* LiteralNumberHex */ .highlight-chroma .highlight-mh { color: #1c01ce }
/* LiteralNumberInteger */ .highlight-chroma .highlight-mi { color: #1c01ce }
/* LiteralNumberIntegerLong */ .highlight-chroma .highlight-il { color: #1c01ce }
/* LiteralNumberOct */ .highlight-chroma .highlight-mo { color: #1c01ce }
/* Operator */ .highlight-chroma .highlight-o { color: #000000 }
/* OperatorWord */ .highlight-chroma .highlight-ow { color: #000000 }
/* Comment */ .highlight-chroma .highlight-c { color: #177500 }
/* CommentHashbang */ .highlight-chroma .highlight-ch { color: #177500 }
/* CommentMultiline */ .highlight-chroma .highlight-cm { color: #177500 }
/* CommentSingle */ .highlight-chroma .highlight-c1 { color: #177500 }
/* CommentSpecial */ .highlight-chroma .highlight-cs { color: #177500 }
/* CommentPreproc */ .highlight-chroma .highlight-cp { color: #633820 }
/* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #633820 }
/*
XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #fff;
color: black;
}
/* Gray DOCTYPE selectors like WebKit */
.xml .hljs-meta {
color: #c0c0c0;
}
.hljs-comment,
.hljs-quote {
color: #007400;
}
.hljs-tag,
.hljs-attribute,
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-name {
color: #aa0d91;
}
.hljs-variable,
.hljs-template-variable {
color: #3F6E74;
}
.hljs-code,
.hljs-string,
.hljs-meta-string {
color: #c41a16;
}
.hljs-regexp,
.hljs-link {
color: #0E0EFF;
}
.hljs-title,
.hljs-symbol,
.hljs-bullet,
.hljs-number {
color: #1c00cf;
}
.hljs-section,
.hljs-meta {
color: #643820;
}
.hljs-class .hljs-title,
.hljs-type,
.hljs-built_in,
.hljs-builtin-name,
.hljs-params {
color: #5c2699;
}
.hljs-attr {
color: #836C28;
}
.hljs-subst {
color: #000;
}
.hljs-formula {
background-color: #eee;
font-style: italic;
}
.hljs-addition {
background-color: #baeeba;
}
.hljs-deletion {
background-color: #ffc8bd;
}
.hljs-selector-id,
.hljs-selector-class {
color: #9b703f;
}
.hljs-doctag,
.hljs-strong {
font-weight: bold;
}
.hljs-emphasis {
font-style: italic;
}

View File

@ -0,0 +1,30 @@
hljs.registerLanguage("yul",(()=>{"use strict";function e(){try{return!0
}catch(e){return!1}}
var a=/-?(\b0[xX]([a-fA-F0-9]_?)*[a-fA-F0-9]|(\b[1-9](_?\d)*(\.((\d_?)*\d)?)?|\.\d(_?\d)*)([eE][-+]?\d(_?\d)*)?|\b0)(?!\w|\$)/
;e()&&(a=a.source.replace(/\\b/g,"(?<!\\$)\\b"));var s={className:"number",
begin:a,relevance:0},t={
keyword:"assembly let function if switch case default for leave break continue u256 jump jumpi stop return revert selfdestruct invalid",
built_in:"add sub mul div sdiv mod smod exp not lt gt slt sgt eq iszero and or xor byte shl shr sar addmod mulmod signextend keccak256 pc pop dup1 dup2 dup3 dup4 dup5 dup6 dup7 dup8 dup9 dup10 dup11 dup12 dup13 dup14 dup15 dup16 swap1 swap2 swap3 swap4 swap5 swap6 swap7 swap8 swap9 swap10 swap11 swap12 swap13 swap14 swap15 swap16 mload mstore mstore8 sload sstore msize gas address balance selfbalance caller callvalue calldataload calldatasize calldatacopy codesize codecopy extcodesize extcodecopy returndatasize returndatacopy extcodehash create create2 call callcode delegatecall staticcall log0 log1 log2 log3 log4 chainid origin gasprice basefee blockhash coinbase timestamp number difficulty gaslimit",
literal:"true false"},i={className:"string",
begin:/\bhex'(([0-9a-fA-F]{2}_?)*[0-9a-fA-F]{2})?'/},l={className:"string",
begin:/\bhex"(([0-9a-fA-F]{2}_?)*[0-9a-fA-F]{2})?"/};function d(e){
return e.inherit(e.APOS_STRING_MODE,{begin:/(\bunicode)?'/})}function r(e){
return e.inherit(e.QUOTE_STRING_MODE,{begin:/(\bunicode)?"/})}var n={
SOL_ASSEMBLY_KEYWORDS:t,baseAssembly:e=>{
var a=d(e),n=r(e),o=/[A-Za-z_$][A-Za-z_$0-9.]*/,c=e.inherit(e.TITLE_MODE,{
begin:/[A-Za-z$_][0-9A-Za-z$_]*/,lexemes:o,keywords:t}),u={className:"params",
begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,lexemes:o,keywords:t,
contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,n,s]},b={
className:"operator",begin:/:=|->/};return{keywords:t,lexemes:o,
contains:[a,n,i,l,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s,b,{
className:"function",lexemes:o,beginKeywords:"function",end:"{",excludeEnd:!0,
contains:[c,u,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,b]}]}},
solAposStringMode:d,solQuoteStringMode:r,HEX_APOS_STRING_MODE:i,
HEX_QUOTE_STRING_MODE:l,SOL_NUMBER:s,isNegativeLookbehindAvailable:e}
;const{SOL_ASSEMBLY_KEYWORDS:o,baseAssembly:c,isNegativeLookbehindAvailable:u}=n
;return e=>{var a={keyword:o.keyword+" object code data",
built_in:o.built_in+" datasize dataoffset datacopy setimmutable loadimmutable linkersymbol memoryguard",
literal:o.literal},s=/\bverbatim_[1-9]?[0-9]i_[1-9]?[0-9]o\b(?!\$)/
;u()&&(s=s.source.replace(/\\b/,"(?<!\\$)\\b"));var t={className:"built_in",
begin:s},i=c(e);return e.inherit(i,{keywords:a,contains:i.contains.concat([t])})
}})());

View File

@ -0,0 +1,85 @@
window.VditorI18n = {
'alignCenter': 'Center',
'alignLeft': 'Left',
'alignRight': 'Right',
'alternateText': 'Alternate text',
'bold': 'Blod',
'both': 'editor & preview',
'check': 'Task List',
'close': 'Close',
'code': 'Code Block',
'code-theme': 'Code Block Theme Preview',
'column': 'Column',
'comment': 'Comment',
'confirm': 'Confirm',
'content-theme': 'Content Theme Preview',
'copied': 'Copied',
'copy': 'Copy',
'delete-column': 'Delete Row',
'delete-row': 'Delete Column',
'devtools': 'DevTools',
'down': 'Down',
'downloadTip': 'The browser does not support the download function',
'edit': 'Edit',
'edit-mode': 'Toggle Edit Mode',
'emoji': 'Emoji',
'export': 'Export',
'fileTypeError': 'file type is error',
'footnoteRef': 'Footnote Ref',
'fullscreen': 'Toggle Fullscreen',
'generate': 'Generating',
'headings': 'Headings',
'heading1': 'Heading 1',
'heading2': 'Heading 2',
'heading3': 'Heading 3',
'heading4': 'Heading 4',
'heading5': 'Heading 5',
'heading6': 'Heading 6',
'help': 'Help',
'imageURL': 'image URL',
'indent': 'Indent',
'info': 'Info',
'inline-code': 'Inline Code',
'insert-after': 'Insert line after',
'insert-before': 'Insert line Before',
'insertColumnLeft': 'Insert 1 left',
'insertColumnRight': 'Insert 1 right',
'insertRowAbove': 'Insert 1 above',
'insertRowBelow': 'Insert 1 below',
'instantRendering': 'Instant Rendering',
'italic': 'Italic',
'language': 'Language',
'line': 'Line',
'link': 'Link',
'linkRef': 'Link Ref',
'list': 'List',
'more': 'More',
'nameEmpty': 'Name is empty',
'ordered-list': 'Order List',
'outdent': 'Outdent',
'outline': 'Outline',
'over': 'over',
'performanceTip': 'Real-time preview requires ${x}ms, you can close it',
'preview': 'Preview',
'quote': 'Quote',
'record': 'Start Record/End Record',
'record-tip': 'The device does not support recording',
'recording': 'recording...',
'redo': 'Redo',
'remove': 'Remove',
'row': 'Row',
'spin': 'Spin',
'splitView': 'Split View',
'strike': 'Strike',
'table': 'Table',
'textIsNotEmpty': 'text(no empty)',
'title': 'Title',
'tooltipText': 'Tooltip text',
'undo': 'Undo',
'up': 'Up',
'update': 'Update',
'upload': 'Upload image or file',
'uploadError': 'upload error',
'uploading': 'uploading...',
'wysiwyg': 'WYSIWYG',
}

View File

@ -0,0 +1,85 @@
window.VditorI18n = {
'alignCenter': '中央',
'alignLeft': '左側',
'alignRight': '右側',
'alternateText': 'イメージタグ',
'bold': '太く',
'both': 'エディター & プレビュー',
'check': 'チェックリスト',
'close': '閉じる',
'code': 'コードブロック挿入',
'code-theme': 'コードブロックテーマ',
'column': '行列',
'comment': 'コメント',
'confirm': '確認',
'content-theme': 'コンテンツテーマ',
'copied': 'コピー完了',
'copy': 'コピー',
'delete-column': '列 消去',
'delete-row': '行 消去',
'devtools': '開発ツール',
'down': 'ダウンロード',
'downloadTip': 'ブラウザがダウンロード機能をサポートしていません。',
'edit': '修正',
'edit-mode': '編集モード',
'emoji': '絵文字',
'export': '書き出し',
'fileTypeError': 'サポートしていません。',
'footnoteRef': '脚注参照',
'fullscreen': '全体画面',
'generate': '作成する',
'headings': 'タイトル大きさ',
'heading1': '第1レベルの見出し',
'heading2': '第2レベルの見出し',
'heading3': '3レベルの見出し',
'heading4': 'Heading 4',
'heading5': '5レベルの見出し',
'heading6': '6レベルの見出し',
'help': 'ヘルプ',
'imageURL': 'イメージ URL',
'indent': '字下げ',
'info': '情報',
'inline-code': 'インラインコード',
'insert-after': 'ブロックの後ろに入力',
'insert-before': 'ブロックの前に入力',
'insertColumnLeft': '左側に列を挿入',
'insertColumnRight': '右側に列を挿入',
'insertRowAbove': '上に行を挿入',
'insertRowBelow': '下に行を挿入',
'instantRendering': 'インスタントレンダリング',
'italic': '斜体',
'language': '言語',
'line': '段落分割',
'link': 'リンク',
'linkRef': 'リンク参照',
'list': 'リスト',
'more': '詳しく見る',
'nameEmpty': '名前が入力されていません。',
'ordered-list': '順序のあるリスト',
'outdent': 'ぶら下げインデント',
'outline': '概要',
'over': 'オーバー',
'performanceTip': 'リアルタイムプレビューには、${x}msが必要でエディター/プレビューボタンをクリックして閉じる事が出来ます。',
'preview': 'プレビュー',
'quote': '引用段落',
'record': '録音開始/録音終了',
'record-tip': '録音がサポートされていません。',
'recording': '録音中...',
'redo': '戻る',
'remove': '消去',
'row': '列',
'spin': 'スピン',
'splitView': 'マークダウン',
'strike': '取り消し線',
'table': '表 挿入',
'textIsNotEmpty': 'テキスト(no empty)',
'title': '題名',
'tooltipText': 'ツールチップ',
'undo': '取り消す',
'up': '戻る',
'update': 'アップデート',
'upload': 'イメージをダウンロードする',
'uploadError': 'アップロード失敗',
'uploading': 'アップロード中',
'wysiwyg': 'ウィジウィグ',
}

View File

@ -0,0 +1,85 @@
window.VditorI18n = {
'alignCenter': '가운데',
'alignLeft': '왼쪽',
'alignRight': '오른쪽',
'alternateText': '이미지 태그',
'bold': '굵게',
'both': '에디터 & 미리보기',
'check': '체크박스',
'close': '닫기',
'code': '코드블럭삽입',
'code-theme': '코드블럭테마',
'column': '행',
'comment': '코멘트',
'confirm': '확인',
'content-theme': '컨텐츠테마',
'copied': '복사완료',
'copy': '복사',
'delete-column': '열 삭제',
'delete-row': '행 삭제',
'devtools': '개발툴',
'down': '다운',
'downloadTip': '브라우저가 다운로드 기능을 지원하지 않습니다',
'edit': '수정',
'edit-mode': '편집모드',
'emoji': '이모지',
'export': '내보내기',
'fileTypeError': '지원하지않습니다.',
'footnoteRef': '각주참조',
'fullscreen': '전체화면',
'generate': '생성',
'headings': '제목크기',
'heading1': '첫 번째 수준 제목',
'heading2': '두 번째 수준 제목',
'heading3': '3 단계 제목',
'heading4': '제목 4',
'heading5': '5 단계 제목',
'heading6': '6 단계 제목',
'help': '도움말',
'imageURL': '이미지 URL',
'indent': '들여쓰기',
'info': '정보',
'inline-code': '인라인코드',
'insert-after': '블락 뒤로 입력',
'insert-before': '블락 앞으로 입력',
'insertColumnLeft': '왼쪽에 열 삽입',
'insertColumnRight': '오른쪽에 열 삽입',
'insertRowAbove': '위에 행 삽입',
'insertRowBelow': '아래에 행 삽입',
'instantRendering': '타이포라',
'italic': '기울임꼴',
'language': '언어',
'line': '문단나눔',
'link': '링크',
'linkRef': '링크 참조',
'list': '순서없는 목록',
'more': '더보기',
'nameEmpty': '이름이 비어있습니다.',
'ordered-list': '순서있는 목록',
'outdent': '내어쓰기',
'outline': '개요',
'over': '오버',
'performanceTip': '실시간 미리보기에는 ${x}ms가 필요하며 에디터/미리보기 버튼을 클릭하여 닫을 수 있습니다.',
'preview': '미리보기',
'quote': '인용단락',
'record': '녹음시작/녹음종료',
'record-tip': '녹음을 지원하지 않습니다.',
'recording': '녹음중...',
'redo': '되돌리기',
'remove': '삭제',
'row': '열',
'spin': '회전',
'splitView': '마크다운',
'strike': '취소선',
'table': '표삽입',
'textIsNotEmpty': '텍스트(no empty)',
'title': '표제',
'tooltipText': '툴팁',
'undo': '취소하기',
'up': '위로',
'update': '업데이트',
'upload': '이미지 업로드하기',
'uploadError': '업로드 실패',
'uploading': '업로드중...',
'wysiwyg': '위지위그',
}

View File

@ -0,0 +1,85 @@
window.VditorI18n = {
'alignCenter': 'Выровнять по центру',
'alignLeft': 'Выровнять по левому краю',
'alignRight': 'Выровнять по правому краю',
'alternateText': 'Альтернативный текст',
'bold': 'Полужирный текст',
'both': 'Редактор с предпросмотром',
'check': 'Список задач',
'close': 'Закрыть',
'code': 'Блок кода',
'code-theme': 'Тема отображения блока кода',
'column': 'Количество столбцов',
'comment': 'Комментарий',
'confirm': 'Подтвердить',
'content-theme': 'Тема отображения контента',
'copied': 'Скопировано',
'copy': 'Копировать',
'delete-column': 'Удалить столбец',
'delete-row': 'Удалить строку',
'devtools': 'Граф документа',
'down': 'Переместить вниз',
'downloadTip': 'Браузер не поддерживает функции загрузки',
'edit': 'Редактирование',
'edit-mode': 'Переключить режим редактирования',
'emoji': 'Смайлы',
'export': 'Экспорт',
'fileTypeError': 'Ошибка типа файла',
'footnoteRef': 'Сноска',
'fullscreen': 'Переключиться на полный экран',
'generate': 'Генерация',
'headings': 'Заголовки',
'heading1': 'Заголовок первого уровня',
'heading2': 'Заголовок второго уровня',
'heading3': 'Трехуровневый заголовок',
'heading4': 'Заголовок 4',
'heading5': 'Пятиуровневый заголовок',
'heading6': 'Шестиуровневый заголовок',
'help': 'Помощь',
'imageURL': 'Ссылка на картинку',
'indent': 'Отступ',
'info': 'Информация о редакторе',
'inline-code': 'Встроенный код ',
'insert-after': 'Вставить линию после этой строки',
'insert-before': 'Вставить линию перед этой строкой',
'insertColumnLeft': 'Вставить столбец слева',
'insertColumnRight': 'Вставить столбец справа',
'insertRowAbove': 'Вставить строку сверху',
'insertRowBelow': 'Вставить строку снизу',
'instantRendering': 'Мгновенный рендеринг',
'italic': 'Курсив',
'language': 'Синтаксис',
'line': 'Линия',
'link': 'Ссылка',
'linkRef': 'Вставить ссылку',
'list': 'Список',
'more': 'Дополнительно',
'nameEmpty': 'Имя пустое',
'ordered-list': 'Упорядоченный список',
'outdent': 'Выступ',
'outline': 'Содержание',
'over': 'Над',
'performanceTip': 'Предварительный просмотр в реальном времени требует ${x}мс, вы можете закрыть его',
'preview': 'Предпросмотр',
'quote': 'Цитата',
'record': 'Начать запись/Завершить запись',
'record-tip': 'Устройство не поддерживает запись',
'recording': 'Запись...',
'redo': 'Вернуть',
'remove': 'Удалить',
'row': 'Количество строк',
'spin': 'Прокрутка',
'splitView': 'Разделенный просмотр',
'strike': 'Зачеркнутый текст',
'table': 'Таблица',
'textIsNotEmpty': 'Текст (непустой)',
'title': 'Заголовок',
'tooltipText': 'Текст всплывающей подсказки',
'undo': 'Отменить',
'up': 'Переместить вверх',
'update': 'Обновить',
'upload': 'Загрузить изображение или файл',
'uploadError': 'Ошибка загрузки',
'uploading': 'Загрузка...',
'wysiwyg': 'Редактор WYSIWYG',
}

View File

@ -0,0 +1,85 @@
window.VditorI18n = {
'alignCenter': '居中',
'alignLeft': '居左',
'alignRight': '居右',
'alternateText': '替代文本',
'bold': '粗体',
'both': '编辑 & 预览',
'check': '任务列表',
'close': '关闭',
'code': '代码块',
'code-theme': '代码块主题预览',
'column': '列',
'comment': '评论',
'confirm': '确定',
'content-theme': '内容主题预览',
'copied': '已复制',
'copy': '复制',
'delete-column': '删除列',
'delete-row': '删除行',
'devtools': '开发者工具',
'down': '下',
'downloadTip': '该浏览器不支持下载功能',
'edit': '编辑',
'edit-mode': '切换编辑模式',
'emoji': '表情',
'export': '导出',
'fileTypeError': '文件类型不允许上传,请压缩后再试',
'footnoteRef': '脚注标识',
'fullscreen': '全屏切换',
'generate': '生成中',
'headings': '标题',
'heading1': '一级标题',
'heading2': '二级标题',
'heading3': '三级标题',
'heading4': '四级标题',
'heading5': '五级标题',
'heading6': '六级标题',
'help': '帮助',
'imageURL': '图片地址',
'indent': '列表缩进',
'info': '关于',
'inline-code': '行内代码',
'insert-after': '末尾插入行',
'insert-before': '起始插入行',
'insertColumnLeft': '在左边插入一列',
'insertColumnRight': '在右边插入一列',
'insertRowAbove': '在上方插入一行',
'insertRowBelow': '在下方插入一行',
'instantRendering': '即时渲染',
'italic': '斜体',
'language': '语言',
'line': '分隔线',
'link': '链接',
'linkRef': '引用标识',
'list': '无序列表',
'more': '更多',
'nameEmpty': '文件名不能为空',
'ordered-list': '有序列表',
'outdent': '列表反向缩进',
'outline': '大纲',
'over': '超过',
'performanceTip': '实时预览需 ${x}ms可点击编辑 & 预览按钮进行关闭',
'preview': '预览',
'quote': '引用',
'record': '开始录音/结束录音',
'record-tip': '该设备不支持录音功能',
'recording': '录音中...',
'redo': '重做',
'remove': '删除',
'row': '行',
'spin': '旋转',
'splitView': '分屏预览',
'strike': '删除线',
'table': '表格',
'textIsNotEmpty': '文本(不能为空)',
'title': '标题',
'tooltipText': '提示文本',
'undo': '撤销',
'up': '上',
'update': '更新',
'upload': '上传图片或文件',
'uploadError': '上传错误',
'uploading': '上传中...',
'wysiwyg': '所见即所得',
}

View File

@ -0,0 +1,85 @@
window.VditorI18n = {
'alignCenter': '置中',
'alignLeft': '置左',
'alignRight': '置右',
'alternateText': '替代文字',
'bold': '粗體',
'both': '編輯 & 預覽',
'check': '任務列表',
'close': '關閉',
'code': '代碼塊',
'code-theme': '代碼塊主題預覽',
'column': '欄',
'comment': '評論',
'confirm': '確定',
'content-theme': '內容主題預覽',
'copied': '已複製',
'copy': '複製',
'delete-column': '刪除欄',
'delete-row': '刪除列',
'devtools': '開發者工具',
'down': '下',
'downloadTip': '該瀏覽器不支持下載功能',
'edit': '編輯',
'edit-mode': '切換編輯模式',
'emoji': '表情',
'export': '匯出',
'fileTypeError': '檔案類型不允許上傳',
'footnoteRef': '腳註參考',
'fullscreen': '全螢幕切換',
'generate': '生成中',
'headings': '標題',
'heading1': '一級標題',
'heading2': '二級標題',
'heading3': '三級標題',
'heading4': '四級標題',
'heading5': '五級標題',
'heading6': '六級標題',
'help': '幫助',
'imageURL': '圖片位址',
'indent': '列表縮排',
'info': '關於',
'inline-code': '行內代碼',
'insert-after': '末尾插入列',
'insert-before': '起始插入列',
'insertColumnLeft': '在左邊插入一欄',
'insertColumnRight': '在右邊插入一欄',
'insertRowAbove': '在上方插入一行',
'insertRowBelow': '在下方插入一行',
'instantRendering': '即時渲染',
'italic': '斜體',
'language': '語言',
'line': '分隔線',
'link': '連結',
'linkRef': '連結參考',
'list': '無序列表',
'more': '更多',
'nameEmpty': '文件名不能為空',
'ordered-list': '有序列表',
'outdent': '列表反向縮排',
'outline': '大綱',
'over': '超過',
'performanceTip': '即時預覽需 ${x}ms可點擊編輯 & 預覽按鈕進行關閉',
'preview': '預覽',
'quote': '引用',
'record': '開始錄音/結束錄音',
'record-tip': '該設備不支持錄音功能',
'recording': '錄音中...',
'redo': '重做',
'remove': '刪除',
'row': '列',
'spin': '旋轉',
'splitView': '分割預覽',
'strike': '刪除縣',
'table': '表格',
'textIsNotEmpty': '文字(不能為空)',
'title': '標題',
'tooltipText': '提示文字',
'undo': '撤銷',
'up': '上',
'update': '更新',
'upload': '上傳圖片或文件',
'uploadError': '上傳錯誤',
'uploading': '上傳中...',
'wysiwyg': '所見即所得',
}

View File

@ -0,0 +1,174 @@
document.body.insertAdjacentHTML('afterBegin', `<svg style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<symbol id="vditor-icon-comment" viewBox="0 0 32 32">
<path d="M18.177 12.965c-0.825 0-1.464 0.639-1.464 1.428s0.639 1.428 1.464 1.428c0.754 0 1.393-0.639 1.393-1.428s-0.639-1.428-1.393-1.428zM8.178 12.965c-0.825 0-1.464 0.639-1.464 1.428s0.639 1.428 1.464 1.428c0.754 0 1.393-0.639 1.393-1.428s-0.639-1.428-1.393-1.428z"></path>
<path d="M29.641 10.251c-1.637-2.234-3.964-3.878-6.663-4.622l-0.086-0.020v0.004c-0.611-0.679-1.3-1.303-2.071-1.861-5.846-4.25-14.053-2.953-18.32 2.893-3.439 4.75-3.293 11.139 0.214 15.678l0.029 4.735c0 0.114 0.018 0.229 0.054 0.336 0.15 0.467 0.581 0.799 1.089 0.799 0.123 0 0.241-0.019 0.351-0.055l-0.008 0.002 4.521-1.425c1.196 0.425 2.432 0.668 3.66 0.736l-0.018 0.014c3.182 2.318 7.353 3.014 11.178 1.75l4.539 1.478c0.114 0.036 0.232 0.057 0.354 0.057 0.632 0 1.143-0.511 1.143-1.143v-4.785c3.146-4.271 3.228-10.174 0.036-14.571zM9.249 24.179l-0.429-0.179-3.535 1.107-0.036-3.714-0.286-0.321c-3.021-3.686-3.221-8.996-0.393-12.892 3.443-4.721 10.042-5.764 14.749-2.357 4.721 3.432 5.767 10.021 2.357 14.713-2.861 3.925-7.982 5.375-12.428 3.643zM27.284 23.572l-0.286 0.357 0.036 3.714-3.5-1.178-0.429 0.179c-2 0.743-4.132 0.803-6.107 0.25l-0.007-0.004c2.782-0.871 5.098-2.559 6.731-4.781l0.026-0.036c2.728-3.761 3.171-8.485 1.586-12.514l0.021 0.014c0.821 0.589 1.575 1.325 2.214 2.214 2.593 3.557 2.446 8.399-0.286 11.785z"></path>
<path d="M13.177 12.965c-0.825 0-1.464 0.639-1.464 1.428s0.639 1.428 1.464 1.428c0.754 0 1.393-0.639 1.393-1.428s-0.639-1.428-1.393-1.428z"></path>
</symbol>
<symbol id="vditor-icon-mp-wechat" viewBox="0 0 32 32">
<path d="M6.927 17.719s-3.040-3.431-2.915-6.942c0.16-4.453 4.738-10.257 11.359-10.257 1.884 0 5.653 0 10.328 5.52 0.249 0.302-15.075-3.84-18.772 11.679z"></path>
<path d="M17.477 9.301s3.946-1.298 7.271-0.178c4.222 1.422 8.693 6.826 6.809 13.182-0.533 1.804-1.609 5.413-8.231 8.32-0.356 0.16 10.613-13.351-5.849-21.323z"></path>
<path d="M10.944 24.332c-1.938 2.035-3.751 1.742-3.751 1.742l0.578-3.191c-5.235-3.44-6.373-10.328-6.453-10.106-2.444 6.817-0.916 11.377 0.027 13.004 3.315 5.733 11.982 7.351 17.484 3.893 2.969-1.867 4.533-7.057 4.533-7.057-5.298 2.338-9.342 2.569-12.417 1.715z"></path>
</symbol>
<symbol id="vditor-icon-code-theme" viewBox="0 0 32 32">
<path d="M25.785 24.935c1.681 0 3.054-1.392 3.054-3.096 0-2.058-3.054-5.416-3.054-5.416s-3.054 3.358-3.054 5.416c0 1.704 1.373 3.096 3.054 3.096zM11.28 23.239c0.273 0.273 0.715 0.273 0.985 0l9.851-9.847c0.273-0.273 0.273-0.715 0-0.985l-9.847-9.847c-0.023-0.023-0.050-0.046-0.077-0.065l-3.008-3.008c-0.063-0.062-0.15-0.101-0.246-0.101s-0.183 0.039-0.246 0.101l-1.846 1.846c-0.062 0.063-0.101 0.15-0.101 0.246s0.039 0.183 0.101 0.246l2.585 2.585-7.993 7.997c-0.273 0.273-0.273 0.715 0 0.985l9.843 9.847zM11.777 5.984l6.881 6.881h-13.759l6.878-6.881zM31.078 27.693h-30.157c-0.169 0-0.308 0.138-0.308 0.308v3.077c0 0.169 0.138 0.308 0.308 0.308h30.157c0.169 0 0.308-0.138 0.308-0.308v-3.077c0-0.169-0.138-0.308-0.308-0.308z"></path>
</symbol>
<symbol id="vditor-icon-quote" viewBox="0 0 32 32">
<path d="M31.452 15.517l-30.82-15.452c-0.125-0.063-0.269-0.077-0.405-0.044-0.313 0.077-0.508 0.394-0.431 0.711l3.176 12.976c0.048 0.195 0.192 0.354 0.383 0.416l5.442 1.868-5.438 1.868c-0.192 0.066-0.335 0.221-0.38 0.416l-3.183 12.995c-0.033 0.136-0.018 0.28 0.044 0.402 0.144 0.291 0.497 0.409 0.792 0.265l30.82-15.364c0.114-0.055 0.206-0.151 0.265-0.262 0.144-0.295 0.026-0.648-0.265-0.796zM3.429 27.58l1.853-7.575 10.876-3.732c0.085-0.029 0.155-0.096 0.184-0.184 0.052-0.155-0.029-0.321-0.184-0.376l-10.876-3.729-1.846-7.546 23.138 11.602-23.145 11.54z"></path>
</symbol>
<symbol id="vditor-icon-after" viewBox="0 0 32 32">
<path d="M31.636 28.045h-31.272c-0.202 0-0.364 0.162-0.364 0.36v2.697c0 0.198 0.162 0.36 0.364 0.36h31.272c0.202 0 0.364-0.162 0.364-0.36v-2.697c0-0.198-0.162-0.36-0.364-0.36zM15.717 23.056c0.066 0.084 0.169 0.138 0.283 0.138s0.217-0.054 0.283-0.137l0.001-0.001 5.034-6.369c0.184-0.234 0.018-0.58-0.283-0.58h-3.33v-15.209c0-0.198-0.162-0.36-0.36-0.36h-2.697c-0.198 0-0.36 0.162-0.36 0.36v15.204h-3.321c-0.301 0-0.467 0.346-0.283 0.58l5.034 6.373z"></path>
</symbol>
<symbol id="vditor-icon-before" viewBox="0 0 32 32">
<path d="M31.636 0.539h-31.272c-0.202 0-0.364 0.162-0.364 0.36v2.697c0 0.198 0.162 0.36 0.364 0.36h31.272c0.202 0 0.364-0.162 0.364-0.36v-2.697c0-0.198-0.162-0.36-0.364-0.36zM16.283 8.944c-0.066-0.084-0.169-0.138-0.283-0.138s-0.217 0.054-0.283 0.137l-0.001 0.001-5.034 6.369c-0.048 0.060-0.076 0.137-0.076 0.221 0 0.198 0.161 0.359 0.359 0.359 0 0 0.001 0 0.001 0h3.321v15.209c0 0.198 0.162 0.36 0.36 0.36h2.697c0.198 0 0.36-0.162 0.36-0.36v-15.204h3.33c0.301 0 0.467-0.346 0.283-0.58l-5.034-6.373z"></path>
</symbol>
<symbol id="vditor-icon-headings" viewBox="0 0 32 32">
<path d="M8.889 14.222h14.222v-12.444c0-0.982 0.796-1.778 1.778-1.778s1.778 0.796 1.778 1.778v0 28.444c0 0.982-0.796 1.778-1.778 1.778s-1.778-0.796-1.778-1.778v0-12.444h-14.222v12.444c0 0.982-0.796 1.778-1.778 1.778s-1.778-0.796-1.778-1.778v0-28.444c0-0.982 0.796-1.778 1.778-1.778s1.778 0.796 1.778 1.778v0z"></path>
</symbol>
<symbol id="vditor-icon-line" viewBox="0 0 32 32">
<path d="M31.68 14.56h-31.36c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32z"></path>
</symbol>
<symbol id="vditor-icon-code" viewBox="0 0 32 32">
<path d="M31.862 16.604c0.27-0.583 0.144-1.297-0.358-1.749l-6.422-5.782c-0.617-0.555-1.567-0.506-2.122 0.111s-0.506 1.567 0.111 2.122l5.206 4.688-5.237 4.716c-0.617 0.555-0.667 1.506-0.111 2.122s1.506 0.667 2.122 0.111l6.422-5.782c0.177-0.159 0.307-0.351 0.39-0.557zM3.725 15.981l5.206-4.688c0.617-0.555 0.667-1.506 0.111-2.122s-1.506-0.667-2.122-0.111l-6.422 5.782c-0.502 0.452-0.629 1.166-0.358 1.749 0.083 0.207 0.213 0.398 0.39 0.557l6.422 5.782c0.617 0.555 1.567 0.506 2.122-0.111s0.506-1.567-0.111-2.122l-5.237-4.716zM20.305 4.173c0.78 0.284 1.182 1.146 0.898 1.926l-7.581 20.83c-0.284 0.78-1.146 1.182-1.926 0.898s-1.182-1.146-0.898-1.926l7.581-20.83c0.284-0.78 1.146-1.182 1.926-0.898z"></path>
</symbol>
<symbol id="vditor-icon-inline-code" viewBox="0 0 32 32">
<path d="M31.862 16.604c0.27-0.583 0.144-1.297-0.358-1.749l-6.422-5.782c-0.617-0.555-1.567-0.506-2.122 0.111v0 0c-0.555 0.617-0.506 1.567 0.111 2.122l5.206 4.688-5.237 4.716c-0.617 0.555-0.667 1.506-0.111 2.122s1.506 0.667 2.122 0.111l6.422-5.782c0.177-0.159 0.307-0.351 0.39-0.557zM3.725 15.981l5.206-4.688c0.617-0.555 0.667-1.506 0.111-2.122v0 0c-0.555-0.617-1.506-0.667-2.122-0.111v0l-6.422 5.782c-0.502 0.452-0.629 1.166-0.358 1.749 0.083 0.207 0.213 0.398 0.39 0.557l6.422 5.782c0.617 0.555 1.567 0.506 2.122-0.111s0.506-1.567-0.111-2.122l-5.237-4.716z"></path>
</symbol>
<symbol id="vditor-icon-both" viewBox="0 0 32 32">
<path d="M31.858 22.232l-0.007-0.007c-1.575-3.332-4.014-5.047-7.261-5.047s-5.686 1.718-7.265 5.047v0.004c-0.193 0.411-0.193 0.889 0 1.3 1.579 3.329 4.018 5.043 7.265 5.043s5.686-1.718 7.265-5.047c0.193-0.411 0.193-0.886 0.004-1.293zM24.59 26.286c-2.218 0-3.836-1.071-5.040-3.411 1.2-2.339 2.822-3.411 5.040-3.411s3.836 1.071 5.040 3.411c-1.2 2.339-2.822 3.411-5.040 3.411z"></path>
<path d="M22.607 22.893c0 1.105 0.895 2 2 2s2-0.895 2-2v0c0-1.105-0.895-2-2-2s-2 0.895-2 2v0z"></path>
<path d="M2.571 6h25.144v9.036h2.572v-10.465c0-0.632-0.511-1.143-1.143-1.143h-28.001c-0.632 0-1.143 0.511-1.143 1.143v18.572c0 0.632 0.511 1.143 1.143 1.143h12.572v-2.572h-11.143v-15.715z"></path>
<path d="M23.604 9.789l-1.314-1.314c-0.111-0.111-0.293-0.111-0.404 0l-6.565 6.572-3.075-3.079c-0.111-0.111-0.293-0.111-0.404 0l-5.154 5.154c-0.111 0.111-0.111 0.293 0 0.404l1.314 1.314c0.111 0.111 0.293 0.111 0.404 0l3.636-3.636 3.075 3.079c0.111 0.111 0.293 0.111 0.404 0l8.082-8.090c0.114-0.111 0.114-0.293 0-0.404z"></path>
</symbol>
<symbol id="vditor-icon-theme" viewBox="0 0 32 32">
<path d="M30.249 0.637h-8.207c-0.693 0-1.309 0.474-1.473 1.166-0.497 2.102-2.38 3.61-4.569 3.61s-4.072-1.508-4.569-3.61c-0.161-0.673-0.758-1.166-1.47-1.166-0.001 0-0.002 0-0.003 0h-8.207c-0.967 0-1.751 0.784-1.751 1.751v0 10.030c0 0.967 0.784 1.751 1.751 1.751v0h2.985v15.443c0 0.967 0.784 1.751 1.751 1.751v0h19.025c0.967 0 1.751-0.784 1.751-1.751v0-15.443h2.985c0.967 0 1.751-0.784 1.751-1.751v0-10.030c0-0.967-0.784-1.751-1.751-1.751v0zM29.134 11.303h-4.736v17.194h-16.796v-17.194h-4.736v-7.801h6.101c1.122 2.834 3.881 4.776 7.033 4.776s5.91-1.942 7.033-4.776h6.102v7.801z"></path>
</symbol>
<symbol id="vditor-icon-resize" viewBox="0 0 128 32">
<path d="M1.28 0c-0.704 0-1.28 0.163-1.28 0.365 0 0.291 0 2.618 0 2.909 0 0.198 0.576 0.362 1.28 0.362 12.544 0 112.896 0 125.44 0 0.704 0 1.28-0.163 1.28-0.362 0-0.291 0-2.618 0-2.909 0-0.202-0.576-0.365-1.28-0.365-25.088 0-112.896 0-125.44 0zM1.28 28.365c-0.704 0-1.28 0.163-1.28 0.362 0 0.291 0 2.618 0 2.909 0 0.202 0.576 0.365 1.28 0.365 12.544 0 112.896 0 125.44 0 0.704 0 1.28-0.163 1.28-0.365 0-0.291 0-2.618 0-2.909 0-0.198-0.576-0.362-1.28-0.362-25.088 0-112.896 0-125.44 0zM1.28 14.182c-0.704 0-1.28 0.163-1.28 0.362 0 0.291 0 2.621 0 2.912 0 0.198 0.576 0.362 1.28 0.362 12.544 0 112.896 0 125.44 0 0.704 0 1.28-0.163 1.28-0.362 0-0.291 0-2.621 0-2.912 0-0.198-0.576-0.362-1.28-0.362-25.088 0-112.896 0-125.44 0z"></path>
</symbol>
<symbol id="vditor-icon-export" viewBox="0 0 32 32">
<path d="M31.399 26.042h-2.202c-0.172 0-0.315 0.143-0.315 0.315v2.529h-25.769v-25.773h25.773v2.529c0 0.172 0.143 0.315 0.315 0.315h2.202c0.172 0 0.315-0.139 0.315-0.315v-4.1c0-0.696-0.561-1.256-1.256-1.256h-28.92c-0.696 0-1.256 0.561-1.256 1.256v28.916c0 0.696 0.561 1.256 1.256 1.256h28.916c0.696 0 1.256-0.561 1.256-1.256v-4.1c0-0.176-0.143-0.315-0.315-0.315zM32.16 15.742l-5.807-4.583c-0.217-0.172-0.532-0.016-0.532 0.258v3.11h-12.85c-0.18 0-0.327 0.147-0.327 0.327v2.292c0 0.18 0.147 0.327 0.327 0.327h12.85v3.11c0 0.274 0.319 0.43 0.532 0.258l5.807-4.583c0.077-0.060 0.126-0.153 0.126-0.258s-0.049-0.197-0.125-0.257l-0.001-0.001z"></path>
</symbol>
<symbol id="vditor-icon-copy" viewBox="0 0 32 32">
<path d="M27.429 0h-19.143c-0.157 0-0.286 0.129-0.286 0.286v2c0 0.157 0.129 0.286 0.286 0.286h17.714v24.571c0 0.157 0.129 0.286 0.286 0.286h2c0.157 0 0.286-0.129 0.286-0.286v-26c0-0.632-0.511-1.143-1.143-1.143zM22.857 4.571h-18.286c-0.632 0-1.143 0.511-1.143 1.143v18.954c0 0.304 0.121 0.593 0.336 0.807l6.189 6.189c0.079 0.079 0.168 0.143 0.264 0.196v0.068h0.15c0.125 0.046 0.257 0.071 0.393 0.071h12.096c0.632 0 1.143-0.511 1.143-1.143v-25.143c0-0.632-0.511-1.143-1.143-1.143zM10.214 28.293l-3.075-3.079h3.075v3.079zM21.429 29.429h-8.929v-5.071c0-0.789-0.639-1.429-1.429-1.429h-5.071v-15.786h15.429v22.286z"></path>
</symbol>
<symbol id="vditor-icon-pause" viewBox="0 0 32 32">
<path d="M6.095 0h3.81v32h-3.81zM25.524 0h-3.048c-0.21 0-0.381 0.171-0.381 0.381v31.238c0 0.21 0.171 0.381 0.381 0.381h3.048c0.21 0 0.381-0.171 0.381-0.381v-31.238c0-0.21-0.171-0.381-0.381-0.381z"></path>
</symbol>
<symbol id="vditor-icon-preview" viewBox="0 0 32 32">
<path d="M31.788 15.053c-3.479-7.329-8.738-11.017-15.788-11.017-7.054 0-12.309 3.688-15.788 11.021-0.134 0.277-0.212 0.602-0.212 0.945s0.078 0.668 0.218 0.958l-0.006-0.013c3.479 7.329 8.738 11.017 15.788 11.017 7.054 0 12.309-3.688 15.788-11.021 0.283-0.595 0.283-1.284 0-1.89zM16 25.322c-5.92 0-10.254-3.002-13.311-9.322 3.057-6.32 7.391-9.322 13.311-9.322s10.254 3.002 13.311 9.322c-3.053 6.32-7.388 9.322-13.311 9.322zM15.853 9.541c-3.567 0-6.459 2.892-6.459 6.459s2.892 6.459 6.459 6.459 6.459-2.892 6.459-6.459-2.892-6.459-6.459-6.459zM15.853 20.11c-2.272 0-4.11-1.839-4.11-4.11s1.839-4.11 4.11-4.11 4.11 1.839 4.11 4.11-1.839 4.11-4.11 4.11z"></path>
</symbol>
<symbol id="vditor-icon-edit" viewBox="0 0 32 32">
<path d="M31.68 16h-2.24c-0.176 0-0.32 0.144-0.32 0.32v12.8h-26.239v-26.239h12.8c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32h-14.4c-0.708 0-1.28 0.572-1.28 1.28v29.439c0 0.708 0.572 1.28 1.28 1.28h29.439c0.708 0 1.28-0.572 1.28-1.28v-14.4c0-0.176-0.144-0.32-0.32-0.32z"></path>
<path d="M9.756 16.916l-0.076 4.756c-0.004 0.356 0.284 0.648 0.64 0.648h0.016l4.72-0.116c0.080-0.004 0.16-0.036 0.216-0.092l16.635-16.599c0.124-0.124 0.124-0.328 0-0.452l-4.972-4.968c-0.064-0.064-0.144-0.092-0.228-0.092s-0.164 0.032-0.228 0.092l-16.631 16.599c-0.056 0.058-0.091 0.137-0.092 0.224v0zM12.296 17.86l14.412-14.38 1.808 1.804-14.42 14.388-1.828 0.044 0.028-1.856z"></path>
</symbol>
<symbol id="vditor-icon-info" viewBox="0 0 32 32">
<path d="M13.124 3.056c0 1.589 1.288 2.876 2.876 2.876s2.876-1.288 2.876-2.876v0c0-1.589-1.288-2.876-2.876-2.876s-2.876 1.288-2.876 2.876v0zM17.438 10.607h-2.876c-0.198 0-0.36 0.162-0.36 0.36v20.854c0 0.198 0.162 0.36 0.36 0.36h2.876c0.198 0 0.36-0.162 0.36-0.36v-20.854c0-0.198-0.162-0.36-0.36-0.36z"></path>
</symbol>
<symbol id="vditor-icon-help" viewBox="0 0 32 32">
<path d="M26.419 6.445c-0.579-1.265-1.402-2.402-2.452-3.374-2.133-1.98-4.965-3.072-7.967-3.072s-5.834 1.091-7.967 3.068c-1.050 0.976-1.873 2.109-2.452 3.378-0.604 1.323-0.91 2.725-0.91 4.172v1.116c0 0.256 0.207 0.463 0.463 0.463h2.233c0.256 0 0.463-0.207 0.463-0.463v-1.116c0-4.114 3.663-7.458 8.169-7.458s8.169 3.345 8.169 7.458c0 1.687-0.599 3.274-1.736 4.597-1.125 1.311-2.712 2.249-4.469 2.646-1.005 0.227-1.91 0.794-2.551 1.604-0.615 0.772-0.987 1.76-0.988 2.836v1.299c0 0.256 0.207 0.463 0.463 0.463h2.233c0.256 0 0.463-0.207 0.463-0.463v-1.298c0-0.649 0.451-1.22 1.075-1.36 2.414-0.546 4.606-1.848 6.173-3.667 0.79-0.922 1.406-1.947 1.832-3.059 0.442-1.153 0.666-2.365 0.666-3.597 0-1.447-0.306-2.853-0.91-4.172zM16 27.369c-1.278 0-2.315 1.038-2.315 2.315s1.038 2.315 2.315 2.315 2.315-1.038 2.315-2.315-1.038-2.315-2.315-2.315z"></path>
</symbol>
<symbol id="vditor-icon-strike" viewBox="0 0 32 32">
<path d="M31.714 14.643h-13.646c-0.357-0.071-0.732-0.143-1.129-0.214-0.568-0.104-0.793-0.146-1.1-0.207-1.832-0.357-2.936-0.714-3.814-1.221-1.254-0.732-1.864-1.725-1.864-3.039 0-1.321 0.543-2.418 1.571-3.179 1.014-0.75 2.457-1.146 4.171-1.146 1.957 0 3.468 0.514 4.493 1.529 0.521 0.514 0.904 1.146 1.136 1.879 0.046 0.146 0.1 0.357 0.154 0.636 0.032 0.171 0.186 0.293 0.354 0.293h2.6c0.2 0 0.361-0.164 0.361-0.361v-0.036c-0.025-0.243-0.046-0.432-0.071-0.571-0.261-1.554-1-2.918-2.132-3.939-1.586-1.446-3.918-2.207-6.739-2.207-2.582 0-4.907 0.646-6.546 1.818-0.914 0.657-1.621 1.471-2.093 2.418-0.482 0.968-0.725 2.086-0.725 3.318 0 1.054 0.204 1.946 0.618 2.732 0.296 0.561 0.7 1.054 1.218 1.5h-8.243c-0.157 0-0.286 0.129-0.286 0.286v2.143c0 0.157 0.129 0.286 0.286 0.286h15.471c0.075 0.014 0.139 0.029 0.211 0.043 1.104 0.221 1.768 0.371 2.379 0.543 0.821 0.232 1.45 0.475 1.971 0.768 1.279 0.721 1.904 1.757 1.904 3.179 0 1.261-0.554 2.386-1.557 3.171-1.089 0.854-2.7 1.3-4.661 1.3-1.561 0-2.882-0.304-3.936-0.893-1.039-0.582-1.754-1.421-2.132-2.482-0.029-0.079-0.061-0.186-0.096-0.321-0.043-0.157-0.189-0.268-0.346-0.268h-2.846c-0.2 0-0.361 0.164-0.361 0.361v0.036c0.007 0.082 0.014 0.15 0.021 0.204 0.232 1.743 1.082 3.171 2.525 4.243 1.682 1.243 4.050 1.9 6.85 1.9 3.007 0 5.529-0.707 7.293-2.046 0.893-0.675 1.579-1.507 2.039-2.464 0.464-0.968 0.704-2.068 0.704-3.268 0-1.136-0.207-2.086-0.636-2.907-0.207-0.4-0.468-0.768-0.779-1.1h7.411c0.157 0 0.286-0.129 0.286-0.286v-2.143c-0.002-0.156-0.129-0.282-0.286-0.282 0 0 0 0-0 0v0z"></path>
</symbol>
<symbol id="vditor-icon-contract" viewBox="0 0 32 32">
<path d="M31.9 2.040l-1.94-1.94c-0.062-0.062-0.148-0.1-0.243-0.1s-0.181 0.038-0.243 0.1l-6.774 6.778-2.352-2.353c-0.062-0.062-0.147-0.1-0.241-0.1-0.175 0-0.319 0.131-0.339 0.3l-0 0.002-1.011 8.133c-0.026 0.224 0.159 0.409 0.383 0.383l8.137-1.011c0.284-0.034 0.4-0.378 0.202-0.581l-2.352-2.352 6.778-6.778c0.129-0.129 0.129-0.348-0.004-0.482zM12.86 18.757l-8.137 1.011c-0.284 0.034-0.4 0.383-0.202 0.581l2.353 2.352-6.774 6.774c-0.062 0.062-0.1 0.148-0.1 0.243s0.038 0.181 0.1 0.243l1.94 1.94c0.133 0.133 0.353 0.133 0.486 0l6.778-6.778 2.352 2.352c0.062 0.062 0.147 0.1 0.241 0.1 0.175 0 0.319-0.131 0.339-0.3l0-0.002 1.006-8.133c0.002-0.014 0.003-0.030 0.003-0.046 0-0.188-0.152-0.34-0.34-0.34-0.016 0-0.032 0.001-0.048 0.003l0.002-0z"></path>
</symbol>
<symbol id="vditor-icon-record" viewBox="0 0 32 32">
<path d="M27.786 13.929c0-0.157-0.129-0.286-0.286-0.286h-2.143c-0.157 0-0.286 0.129-0.286 0.286 0 5.011-4.061 9.071-9.071 9.071s-9.071-4.061-9.071-9.071c0-0.157-0.129-0.286-0.286-0.286h-2.143c-0.157 0-0.286 0.129-0.286 0.286 0 6.025 4.521 10.996 10.357 11.7v3.657h-5.189c-0.489 0-0.882 0.511-0.882 1.143v1.286c0 0.157 0.1 0.286 0.221 0.286h14.557c0.121 0 0.221-0.129 0.221-0.286v-1.286c0-0.632-0.393-1.143-0.882-1.143h-5.332v-3.639c5.904-0.643 10.5-5.643 10.5-11.718zM16 20c3.354 0 6.071-2.686 6.071-6v-8c0-3.314-2.718-6-6.071-6s-6.071 2.686-6.071 6v8c0 3.314 2.718 6 6.071 6zM12.643 6c0-1.807 1.496-3.286 3.357-3.286s3.357 1.479 3.357 3.286v8c0 1.807-1.496 3.286-3.357 3.286s-3.357-1.479-3.357-3.286v-8z"></path>
</symbol>
<symbol id="vditor-icon-bold" viewBox="0 0 32 32">
<path d="M24.078 14.67c1.461-1.522 2.357-3.578 2.357-5.839v-0.443c0-4.678-3.83-8.474-8.552-8.474h-12.865c-0.657 0-1.191 0.535-1.191 1.191v29.526c0 0.709 0.574 1.283 1.283 1.283h13.857c5.087 0 9.209-4.096 9.209-9.152v-0.478c0-3.174-1.626-5.97-4.096-7.613zM8 4.087h9.77c2.483 0 4.491 1.93 4.491 4.317v0.413c0 2.383-2.013 4.317-4.491 4.317h-9.77v-9.048zM23.939 22.757c0 2.735-2.248 4.952-5.022 4.952h-10.917v-10.374h10.917c2.774 0 5.022 2.217 5.022 4.952v0.47z"></path>
</symbol>
<symbol id="vditor-icon-bug" viewBox="0 0 32 32">
<path d="M8.571 7.714h2c0.157 0 0.286-0.129 0.286-0.286 0-1.011 0.211-1.9 0.611-2.625 0.379-0.693 0.929-1.243 1.621-1.621 0.729-0.396 1.614-0.611 2.625-0.611h0.571c1.011 0 1.9 0.211 2.625 0.611 0.693 0.379 1.243 0.929 1.621 1.621 0.396 0.729 0.611 1.614 0.611 2.625 0 0.157 0.129 0.286 0.286 0.286h2c0.157 0 0.286-0.129 0.286-0.286 0-1.429-0.314-2.739-0.925-3.861-0.614-1.125-1.518-2.029-2.643-2.643-1.121-0.611-2.432-0.925-3.861-0.925h-0.571c-1.429 0-2.739 0.314-3.861 0.925-1.125 0.614-2.029 1.518-2.643 2.643-0.611 1.121-0.925 2.432-0.925 3.861 0 0.157 0.129 0.286 0.286 0.286z"></path>
<path d="M31.286 16h-5.286v-3.571c2.743 0 4.964-2.221 4.964-4.964 0-0.157-0.129-0.286-0.286-0.286h-2.143c-0.157 0-0.286 0.129-0.286 0.286 0 1.243-1.007 2.25-2.25 2.25h-20c-1.243 0-2.25-1.007-2.25-2.25 0-0.157-0.129-0.286-0.286-0.286h-2.143c-0.157 0-0.286 0.129-0.286 0.286 0 2.743 2.221 4.964 4.964 4.964v3.571h-5.286c-0.157 0-0.286 0.129-0.286 0.286v2c0 0.157 0.129 0.286 0.286 0.286h5.286v3.429c0 0.232 0.007 0.464 0.025 0.689-2.45 1.046-4.168 3.479-4.168 6.311 0 0.157 0.129 0.286 0.286 0.286h2c0.157 0 0.286-0.129 0.286-0.286 0-1.579 0.854-2.961 2.129-3.704 0.214 0.614 0.486 1.2 0.811 1.75 0.868 1.482 2.107 2.721 3.589 3.589s3.204 1.364 5.043 1.364 3.564-0.496 5.046-1.364c1.482-0.868 2.721-2.107 3.589-3.589 0.325-0.554 0.596-1.139 0.811-1.75 1.271 0.743 2.125 2.125 2.125 3.704 0 0.157 0.129 0.286 0.286 0.286h2c0.157 0 0.286-0.129 0.286-0.286 0-2.832-1.718-5.264-4.168-6.311 0.014-0.229 0.025-0.457 0.025-0.689v-3.429h5.286c0.157 0 0.286-0.129 0.286-0.286v-2c0-0.157-0.129-0.286-0.286-0.286zM23.286 22c0 1.314-0.346 2.571-0.993 3.675-0.632 1.082-1.536 1.986-2.618 2.618-1.104 0.646-2.361 0.993-3.675 0.993s-2.571-0.346-3.675-0.993c-1.082-0.632-1.986-1.536-2.618-2.618-0.646-1.104-0.993-2.361-0.993-3.675v-9.571h14.571v9.571z"></path>
</symbol>
<symbol id="vditor-icon-play" viewBox="0 0 32 32">
<path d="M25.263 15.159l-17.308-14.927c-0.645-0.555-1.591-0.055-1.591 0.841v29.853c0 0.895 0.945 1.395 1.591 0.841l17.308-14.927c0.495-0.427 0.495-1.255 0-1.682z"></path>
</symbol>
<symbol id="vditor-icon-check" viewBox="0 0 32 32">
<path d="M12.844 21.828c0.234 0.323 0.61 0.531 1.034 0.531s0.8-0.208 1.031-0.527l0.003-0.004 8.424-11.68c0.152-0.212 0-0.508-0.26-0.508h-1.876c-0.408 0-0.796 0.196-1.036 0.532l-6.284 8.72-2.848-3.952c-0.24-0.332-0.624-0.532-1.036-0.532h-1.876c-0.26 0-0.412 0.296-0.26 0.508l4.984 6.912z"></path>
<path d="M30.72 0h-29.44c-0.708 0-1.28 0.572-1.28 1.28v29.44c0 0.708 0.572 1.28 1.28 1.28h29.44c0.708 0 1.28-0.572 1.28-1.28v-29.44c0-0.708-0.572-1.28-1.28-1.28zM29.12 29.12h-26.24v-26.24h26.24v26.24z"></path>
</symbol>
<symbol id="vditor-icon-upload" viewBox="0 0 32 32">
<path d="M16.225 14.107c-0.053-0.067-0.134-0.11-0.225-0.11s-0.172 0.043-0.225 0.109l-0 0.001-4 5.061c-0.038 0.048-0.061 0.109-0.061 0.176 0 0.157 0.128 0.285 0.285 0.285 0 0 0 0 0.001 0h2.639v8.657c0 0.157 0.129 0.286 0.286 0.286h2.143c0.157 0 0.286-0.129 0.286-0.286v-8.654h2.646c0.239 0 0.371-0.275 0.225-0.461l-4-5.064z"></path>
<path d="M26.693 10.811c-1.636-4.314-5.804-7.382-10.686-7.382s-9.050 3.064-10.686 7.379c-3.061 0.804-5.321 3.593-5.321 6.907 0 3.946 3.196 7.143 7.139 7.143h1.432c0.157 0 0.286-0.129 0.286-0.286v-2.143c0-0.157-0.129-0.286-0.286-0.286h-1.432c-1.204 0-2.336-0.479-3.179-1.346-0.839-0.864-1.286-2.029-1.246-3.236 0.032-0.943 0.354-1.829 0.936-2.575 0.596-0.761 1.432-1.314 2.361-1.561l1.354-0.354 0.496-1.307c0.307-0.814 0.736-1.575 1.275-2.264 0.537-0.685 1.154-1.273 1.844-1.764l0.027-0.018c1.468-1.032 3.196-1.579 5-1.579s3.532 0.546 5 1.579c0.711 0.5 1.339 1.1 1.871 1.782 0.539 0.689 0.968 1.454 1.275 2.264l0.493 1.304 1.35 0.357c1.936 0.521 3.289 2.282 3.289 4.289 0 1.182-0.461 2.296-1.296 3.132-0.796 0.801-1.899 1.296-3.117 1.296-0.004 0-0.008 0-0.012 0h-1.431c-0.157 0-0.286 0.129-0.286 0.286v2.143c0 0.157 0.129 0.286 0.286 0.286h1.432c3.943 0 7.139-3.196 7.139-7.143 0-3.311-2.254-6.096-5.307-6.904z"></path>
</symbol>
<symbol id="vditor-icon-trashcan" viewBox="0 0 32 32">
<path d="M9.92 2.88h-0.32c0.176 0 0.32-0.144 0.32-0.32v0.32h12.16v-0.32c0 0.176 0.144 0.32 0.32 0.32h-0.32v2.88h2.88v-3.2c0-1.412-1.148-2.56-2.56-2.56h-12.8c-1.412 0-2.56 1.148-2.56 2.56v3.2h2.88v-2.88zM30.080 5.76h-28.16c-0.708 0-1.28 0.572-1.28 1.28v1.28c0 0.176 0.144 0.32 0.32 0.32h2.416l0.988 20.92c0.064 1.364 1.192 2.44 2.556 2.44h18.16c1.368 0 2.492-1.072 2.556-2.44l0.988-20.92h2.416c0.176 0 0.32-0.144 0.32-0.32v-1.28c0-0.708-0.572-1.28-1.28-1.28zM24.772 29.12h-17.544l-0.968-20.48h19.48l-0.968 20.48z"></path>
</symbol>
<symbol id="vditor-icon-more" viewBox="0 0 32 32">
<path d="M0 15.952c0 1.473 1.194 2.667 2.667 2.667s2.667-1.194 2.667-2.667v0c0-1.473-1.194-2.667-2.667-2.667s-2.667 1.194-2.667 2.667v0zM13.333 15.952c0 1.473 1.194 2.667 2.667 2.667s2.667-1.194 2.667-2.667v0c0-1.473-1.194-2.667-2.667-2.667s-2.667 1.194-2.667 2.667v0zM26.667 15.952c0 1.473 1.194 2.667 2.667 2.667s2.667-1.194 2.667-2.667v0c0-1.473-1.194-2.667-2.667-2.667s-2.667 1.194-2.667 2.667v0z"></path>
</symbol>
<symbol id="vditor-icon-fullscreen" viewBox="0 0 32 32">
<path d="M31.592 0.003l-8.601 1.068c-0.3 0.036-0.423 0.4-0.214 0.614l2.487 2.487-6.978 6.978c-0.065 0.066-0.106 0.157-0.106 0.257s0.040 0.191 0.106 0.257l2.050 2.050c0.141 0.141 0.373 0.141 0.514 0l6.983-6.983 2.487 2.487c0.065 0.065 0.155 0.106 0.255 0.106 0.185 0 0.337-0.139 0.358-0.318l0-0.002 1.064-8.596c0.002-0.015 0.003-0.032 0.003-0.049 0-0.198-0.161-0.359-0.359-0.359-0.017 0-0.034 0.001-0.051 0.004l0.002-0zM11.663 18.287c-0.066-0.065-0.157-0.106-0.257-0.106s-0.191 0.040-0.257 0.106l-6.978 6.982-2.487-2.487c-0.065-0.065-0.155-0.106-0.255-0.106-0.185 0-0.337 0.139-0.358 0.318l-0 0.002-1.068 8.596c-0.027 0.236 0.168 0.432 0.405 0.405l8.601-1.068c0.3-0.036 0.423-0.4 0.214-0.614l-2.487-2.487 6.983-6.983c0.141-0.141 0.141-0.373 0-0.514l-2.055-2.046z"></path>
</symbol>
<symbol id="vditor-icon-emoji" viewBox="0 0 32 32">
<path d="M8 12.75c0 0.947 0.768 1.714 1.714 1.714s1.714-0.768 1.714-1.714v0c0-0.947-0.768-1.714-1.714-1.714s-1.714 0.768-1.714 1.714v0zM20.571 12.75c0 0.947 0.767 1.714 1.714 1.714s1.714-0.768 1.714-1.714v0c0-0.947-0.767-1.714-1.714-1.714s-1.714 0.768-1.714 1.714v0zM16 0c-8.836 0-16 7.164-16 16s7.164 16 16 16 16-7.164 16-16-7.164-16-16-16zM25.393 25.393c-1.221 1.221-2.643 2.179-4.225 2.85-1.632 0.693-3.371 1.043-5.168 1.043s-3.536-0.35-5.171-1.043c-1.643-0.704-3.045-1.666-4.225-2.85l-0-0c-1.221-1.221-2.179-2.643-2.85-4.225-0.689-1.632-1.039-3.371-1.039-5.168s0.35-3.536 1.043-5.171c0.704-1.643 1.666-3.045 2.85-4.225l0-0c1.221-1.221 2.643-2.179 4.225-2.85 1.632-0.689 3.371-1.039 5.168-1.039s3.536 0.35 5.171 1.043c1.643 0.704 3.045 1.666 4.225 2.85l0 0c1.221 1.221 2.179 2.643 2.85 4.225 0.689 1.632 1.039 3.371 1.039 5.168s-0.35 3.536-1.043 5.171c-0.703 1.642-1.665 3.043-2.849 4.221l-0.001 0.001zM21.429 16.75h-1.718c-0.15 0-0.279 0.114-0.289 0.264-0.136 1.768-1.618 3.164-3.421 3.164s-3.289-1.396-3.421-3.164c-0.011-0.15-0.139-0.264-0.289-0.264h-1.718c-0 0-0 0-0 0-0.158 0-0.286 0.128-0.286 0.286 0 0.005 0 0.010 0 0.015l-0-0.001c0.157 3.011 2.661 5.414 5.714 5.414s5.557-2.404 5.714-5.414c0-0.004 0-0.009 0-0.014 0-0.158-0.128-0.286-0.286-0.286-0 0-0 0-0 0h0z"></path>
</symbol>
<symbol id="vditor-icon-align-center" viewBox="0 0 32 32">
<path d="M6.080 4.72h19.84c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32h-19.84c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32zM25.92 21.68c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32h-19.84c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h19.84zM31.68 27.28h-31.36c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32zM31.68 10.32h-31.36c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32z"></path>
</symbol>
<symbol id="vditor-icon-align-left" viewBox="0 0 32 32">
<path d="M0.32 4.72h19.84c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32h-19.84c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32zM0.32 21.68h19.84c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32h-19.84c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32zM31.68 27.28h-31.36c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32zM31.68 10.32h-31.36c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32z"></path>
</symbol>
<symbol id="vditor-icon-align-right" viewBox="0 0 32 32">
<path d="M31.68 1.84h-19.84c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h19.84c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32zM31.68 18.8h-19.84c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h19.84c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32zM31.68 27.28h-31.36c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32zM31.68 10.32h-31.36c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32z"></path>
</symbol>
<symbol id="vditor-icon-delete-column" viewBox="0 0 32 32">
<path d="M21.563 21.195c-0.056-0.048-0.128-0.076-0.204-0.076h-2.188c-0.096 0-0.184 0.044-0.244 0.116l-2.928 3.512-2.924-3.512c-0.060-0.072-0.152-0.116-0.244-0.116h-2.192c-0.076 0-0.148 0.028-0.204 0.076-0.136 0.112-0.156 0.316-0.040 0.452l4.091 4.911-4.096 4.915c-0.112 0.136-0.096 0.336 0.040 0.452 0.056 0.048 0.128 0.076 0.204 0.076h2.188c0.096 0 0.184-0.044 0.244-0.116l2.924-3.512 2.924 3.512c0.060 0.072 0.152 0.116 0.244 0.116h2.2c0.076 0 0.148-0.028 0.204-0.076 0.136-0.112 0.156-0.316 0.040-0.452l-4.091-4.915 4.096-4.915c0.112-0.136 0.092-0.336-0.044-0.448zM14.4 17.28h3.2c0.176 0 0.32-0.144 0.32-0.32v-16.638c0-0.176-0.144-0.32-0.32-0.32h-3.2c-0.176 0-0.32 0.144-0.32 0.32v16.638c0 0.176 0.144 0.32 0.32 0.32zM9.521 10.961h-6.639v-9.999c0-0.132-0.108-0.24-0.24-0.24h-2.4c-0.132 0-0.24 0.108-0.24 0.24v11.679c0 0.664 0.536 1.2 1.2 1.2h8.319c0.132 0 0.24-0.108 0.24-0.24v-2.4c0-0.132-0.108-0.24-0.24-0.24zM31.758 0.722h-2.4c-0.132 0-0.24 0.108-0.24 0.24v9.999h-6.639c-0.132 0-0.24 0.108-0.24 0.24v2.4c0 0.132 0.108 0.24 0.24 0.24h8.319c0.664 0 1.2-0.536 1.2-1.2v-11.679c0-0.132-0.108-0.24-0.24-0.24z"></path>
</symbol>
<symbol id="vditor-icon-delete-row" viewBox="0 0 32 32">
<path d="M28.129 16l4.035-4.843c0.11-0.134 0.095-0.331-0.039-0.445-0.055-0.047-0.126-0.075-0.201-0.075h-2.156c-0.095 0-0.181 0.043-0.24 0.114l-2.888 3.464-2.881-3.46c-0.059-0.071-0.15-0.114-0.24-0.114h-2.159c-0.075 0-0.146 0.028-0.201 0.075-0.134 0.11-0.154 0.311-0.039 0.445l4.031 4.839-4.035 4.843c-0.11 0.134-0.095 0.331 0.039 0.445 0.055 0.047 0.126 0.075 0.201 0.075h2.156c0.095 0 0.181-0.043 0.24-0.114l2.881-3.46 2.881 3.46c0.059 0.071 0.15 0.114 0.24 0.114h2.167c0.075 0 0.146-0.028 0.201-0.075 0.134-0.11 0.154-0.311 0.039-0.445l-4.031-4.843zM16.946 14.108h-16.393c-0.173 0-0.315 0.142-0.315 0.315v3.153c0 0.173 0.142 0.315 0.315 0.315h16.393c0.173 0 0.315-0.142 0.315-0.315v-3.152c0-0.173-0.142-0.315-0.315-0.315zM13.636 22.147h-2.364c-0.13 0-0.236 0.106-0.236 0.236v6.541h-9.852c-0.13 0-0.236 0.106-0.236 0.236v2.364c0 0.13 0.106 0.236 0.236 0.236h11.507c0.654 0 1.182-0.528 1.182-1.182v-8.197c0-0.13-0.106-0.236-0.236-0.236zM1.183 3.075h9.852v6.541c0 0.13 0.106 0.236 0.236 0.236h2.364c0.13 0 0.236-0.106 0.236-0.236v-8.197c0-0.654-0.528-1.182-1.182-1.182h-11.507c-0.13 0-0.236 0.106-0.236 0.236v2.364c0 0.13 0.106 0.236 0.236 0.236z"></path>
</symbol>
<symbol id="vditor-icon-down" viewBox="0 0 32 32">
<path d="M31.663 5.221h-3.158c-0.215 0-0.417 0.105-0.543 0.278l-11.962 16.489-11.962-16.489c-0.126-0.173-0.328-0.278-0.543-0.278h-3.158c-0.274 0-0.434 0.312-0.274 0.535l14.847 20.468c0.539 0.741 1.642 0.741 2.177 0l14.847-20.468c0.164-0.223 0.004-0.535-0.269-0.535z"></path>
</symbol>
<symbol id="vditor-icon-insert-row" viewBox="0 0 32 32">
<path d="M30.668 23.040h-29.336c-0.736 0-1.332-0.572-1.332-1.28v-18.56c0-0.708 0.596-1.28 1.332-1.28h29.332c0.736 0 1.332 0.572 1.332 1.28v18.56c0.004 0.708-0.592 1.28-1.328 1.28zM9.92 4.8h-7.040v6.4h7.040v-6.4zM9.92 13.76h-7.040v6.4h7.040v-6.4zM19.52 4.8h-7.040v6.4h7.040v-6.4zM19.52 13.76h-7.040v6.4h7.040v-6.4zM29.12 4.8h-7.040v6.4h7.040v-6.4zM29.12 13.76h-7.040v6.4h7.040v-6.4zM31.68 30.080h-31.36c-0.176 0-0.32-0.144-0.32-0.32v-3.2c0-0.176 0.144-0.32 0.32-0.32h31.36c0.176 0 0.32 0.144 0.32 0.32v3.2c0 0.176-0.144 0.32-0.32 0.32z"></path>
</symbol>
<symbol id="vditor-icon-insert-rowb" viewBox="0 0 32 32">
<path d="M30.668 8.96h-29.336c-0.736 0-1.332 0.572-1.332 1.28v18.56c0 0.708 0.596 1.28 1.332 1.28h29.332c0.736 0 1.332-0.572 1.332-1.28v-18.56c0.004-0.708-0.592-1.28-1.328-1.28zM9.92 27.2h-7.040v-6.4h7.040v6.4zM9.92 18.24h-7.040v-6.4h7.040v6.4zM19.52 27.2h-7.040v-6.4h7.040v6.4zM19.52 18.24h-7.040v-6.4h7.040v6.4zM29.12 27.2h-7.040v-6.4h7.040v6.4zM29.12 18.24h-7.040v-6.4h7.040v6.4zM31.68 1.92h-31.36c-0.176 0-0.32 0.144-0.32 0.32v3.2c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-3.2c0-0.176-0.144-0.32-0.32-0.32z"></path>
</symbol>
<symbol id="vditor-icon-insert-column" viewBox="0 0 32 32">
<path d="M29.76 0h-3.2c-0.176 0-0.32 0.144-0.32 0.32v31.36c0 0.176 0.144 0.32 0.32 0.32h3.2c0.176 0 0.32-0.144 0.32-0.32v-31.36c0-0.176-0.144-0.32-0.32-0.32zM21.76 0h-18.56c-0.708 0-1.28 0.596-1.28 1.332v29.332c0 0.736 0.572 1.332 1.28 1.332h18.56c0.708 0 1.28-0.596 1.28-1.332v-29.332c0-0.736-0.572-1.332-1.28-1.332zM11.2 29.12h-6.4v-7.040h6.4v7.040zM11.2 19.52h-6.4v-7.040h6.4v7.040zM11.2 9.92h-6.4v-7.040h6.4v7.040zM20.16 29.12h-6.4v-7.040h6.4v7.040zM20.16 19.52h-6.4v-7.040h6.4v7.040zM20.16 9.92h-6.4v-7.040h6.4v7.040z"></path>
</symbol>
<symbol id="vditor-icon-insert-columnb" viewBox="0 0 32 32">
<path d="M2.24 32h3.2c0.176 0 0.32-0.144 0.32-0.32v-31.36c0-0.176-0.144-0.32-0.32-0.32h-3.2c-0.176 0-0.32 0.144-0.32 0.32v31.36c0 0.176 0.144 0.32 0.32 0.32zM10.24 32h18.56c0.708 0 1.28-0.596 1.28-1.332v-29.332c0-0.736-0.572-1.332-1.28-1.332h-18.56c-0.708 0-1.28 0.596-1.28 1.332v29.332c0 0.736 0.572 1.332 1.28 1.332zM20.8 2.88h6.4v7.040h-6.4v-7.040zM20.8 12.48h6.4v7.040h-6.4v-7.040zM20.8 22.080h6.4v7.040h-6.4v-7.040zM11.84 2.88h6.4v7.040h-6.4v-7.040zM11.84 12.48h6.4v7.040h-6.4v-7.040zM11.84 22.080h6.4v7.040h-6.4v-7.040z"></path>
</symbol>
<symbol id="vditor-icon-italic" viewBox="0 0 32 32">
<path d="M29 0h-19.636c-0.2 0-0.364 0.164-0.364 0.364v2.909c0 0.2 0.164 0.364 0.364 0.364h8.236l-7.091 24.727h-7.373c-0.2 0-0.364 0.164-0.364 0.364v2.909c0 0.2 0.164 0.364 0.364 0.364h19.636c0.2 0 0.364-0.164 0.364-0.364v-2.909c0-0.2-0.164-0.364-0.364-0.364h-8.482l7.091-24.727h7.618c0.2 0 0.364-0.164 0.364-0.364v-2.909c0-0.2-0.164-0.364-0.364-0.364z"></path>
</symbol>
<symbol id="vditor-icon-link" viewBox="0 0 32 32">
<path d="M18.583 22.391c-0.060-0.060-0.144-0.097-0.235-0.097s-0.175 0.037-0.235 0.097l-4.841 4.841c-2.242 2.242-6.025 2.479-8.5 0-2.479-2.479-2.242-6.258 0-8.5l4.841-4.841c0.129-0.129 0.129-0.342 0-0.471l-1.658-1.658c-0.060-0.060-0.144-0.097-0.235-0.097s-0.175 0.037-0.235 0.097l-4.841 4.841c-3.525 3.525-3.525 9.229 0 12.75s9.229 3.525 12.75 0l4.841-4.841c0.129-0.129 0.129-0.342 0-0.471l-1.65-1.65zM29.358 2.642c-3.525-3.525-9.229-3.525-12.75 0l-4.846 4.841c-0.060 0.060-0.097 0.144-0.097 0.235s0.037 0.175 0.097 0.235l1.654 1.654c0.129 0.129 0.342 0.129 0.471 0l4.842-4.841c2.242-2.242 6.025-2.479 8.5 0 2.479 2.479 2.242 6.258 0 8.5l-4.841 4.841c-0.060 0.060-0.097 0.144-0.097 0.235s0.037 0.175 0.097 0.235l1.658 1.658c0.129 0.129 0.342 0.129 0.471 0l4.841-4.841c3.521-3.525 3.521-9.229 0-12.754zM20.087 10.179c-0.060-0.060-0.144-0.097-0.235-0.097s-0.175 0.037-0.235 0.097l-9.437 9.433c-0.060 0.060-0.097 0.144-0.097 0.235s0.037 0.175 0.097 0.235l1.65 1.65c0.129 0.129 0.342 0.129 0.471 0l9.433-9.433c0.129-0.129 0.129-0.342 0-0.471l-1.646-1.65z"></path>
</symbol>
<symbol id="vditor-icon-outdent" viewBox="0 0 32 32">
<path d="M11.84 13.2h19.2c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32h-19.2c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32zM11.52 21.36c0 0.176 0.144 0.32 0.32 0.32h19.2c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32h-19.2c-0.176 0-0.32 0.144-0.32 0.32v2.24zM31.68 1.92h-31.36c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32zM31.68 27.2h-31.36c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32zM0.136 16.276l6.252 4.924c0.232 0.184 0.576 0.020 0.576-0.276v-9.848c0-0.296-0.34-0.46-0.576-0.276l-6.252 4.924c-0.082 0.065-0.135 0.164-0.135 0.276s0.053 0.211 0.134 0.275l0.001 0.001z"></path>
</symbol>
<symbol id="vditor-icon-indent" viewBox="0 0 32 32">
<path d="M11.84 13.2h19.2c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32h-19.2c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32zM11.52 21.36c0 0.176 0.144 0.32 0.32 0.32h19.2c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32h-19.2c-0.176 0-0.32 0.144-0.32 0.32v2.24zM31.68 1.92h-31.36c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32zM31.68 27.2h-31.36c-0.176 0-0.32 0.144-0.32 0.32v2.24c0 0.176 0.144 0.32 0.32 0.32h31.36c0.176 0 0.32-0.144 0.32-0.32v-2.24c0-0.176-0.144-0.32-0.32-0.32zM1.216 21.204l6.252-4.924c0.083-0.065 0.135-0.166 0.135-0.278s-0.053-0.213-0.134-0.277l-0.001-0.001-6.252-4.928c-0.232-0.184-0.576-0.020-0.576 0.276v9.852c0 0 0 0 0 0 0 0.197 0.159 0.356 0.356 0.356 0.083 0 0.16-0.029 0.221-0.077l-0.001 0.001z"></path>
</symbol>
<symbol id="vditor-icon-ordered-list" viewBox="0 0 32 32">
<path d="M31.692 25.538h-22.462c-0.169 0-0.308 0.138-0.308 0.308v2.154c0 0.169 0.138 0.308 0.308 0.308h22.462c0.169 0 0.308-0.138 0.308-0.308v-2.154c0-0.169-0.138-0.308-0.308-0.308zM31.692 3.692h-22.462c-0.169 0-0.308 0.138-0.308 0.308v2.154c0 0.169 0.138 0.308 0.308 0.308h22.462c0.169 0 0.308-0.138 0.308-0.308v-2.154c0-0.169-0.138-0.308-0.308-0.308zM31.692 14.615h-22.462c-0.169 0-0.308 0.138-0.308 0.308v2.154c0 0.169 0.138 0.308 0.308 0.308h22.462c0.169 0 0.308-0.138 0.308-0.308v-2.154c0-0.169-0.138-0.308-0.308-0.308zM4.615 23.692h-4.462c-0.085 0-0.154 0.069-0.154 0.154v1.308c0 0.085 0.069 0.154 0.154 0.154h2.785v0.788h-1.373c-0.085 0-0.154 0.069-0.154 0.154v1.308c0 0.085 0.069 0.154 0.154 0.154h1.373v0.827h-2.785c-0.085 0-0.154 0.069-0.154 0.154v1.308c0 0.085 0.069 0.154 0.154 0.154h4.462c0.085 0 0.154-0.069 0.154-0.154v-6.154c0-0.085-0.069-0.154-0.154-0.154zM0.154 3.538h1.462v4.615c0 0.085 0.069 0.154 0.154 0.154h1.538c0.085 0 0.154-0.069 0.154-0.154v-6c0-0.169-0.138-0.308-0.308-0.308h-3c-0.085 0-0.154 0.069-0.154 0.154v1.385c0 0.085 0.069 0.154 0.154 0.154zM4.615 12.769h-4.462c-0.085 0-0.154 0.069-0.154 0.154v1.385c0 0.085 0.069 0.154 0.154 0.154h2.631l-2.704 2.988c-0.049 0.055-0.080 0.128-0.081 0.207v1.419c0 0.085 0.069 0.154 0.154 0.154h4.462c0.085 0 0.154-0.069 0.154-0.154v-1.385c0-0.085-0.069-0.154-0.154-0.154h-2.631l2.704-2.988c0.049-0.055 0.080-0.128 0.081-0.207v-1.419c0-0.085-0.069-0.154-0.154-0.154z"></path>
</symbol>
<symbol id="vditor-icon-redo" viewBox="0 0 32 32">
<path d="M25.848 29.084c3.744-2.928 6.152-7.488 6.152-12.608 0-8.836-7.14-15.984-15.976-15.996-8.848-0.012-16.024 7.152-16.024 15.996 0 5.008 2.3 9.476 5.904 12.408 0.14 0.112 0.344 0.088 0.456-0.052l1.576-2.020c0.108-0.136 0.084-0.332-0.048-0.444-0.324-0.264-0.636-0.548-0.936-0.848-1.14-1.136-2.066-2.486-2.712-3.985l-0.032-0.083c-0.672-1.572-1.008-3.248-1.008-4.976s0.336-3.404 1.004-4.98c0.644-1.524 1.568-2.892 2.744-4.068s2.544-2.1 4.068-2.744c1.58-0.668 3.256-1.004 4.984-1.004s3.404 0.336 4.98 1.004c1.524 0.644 2.892 1.568 4.068 2.744s2.1 2.544 2.744 4.068c0.668 1.576 1.004 3.252 1.004 4.98s-0.336 3.404-1.004 4.98c-0.678 1.582-1.604 2.932-2.744 4.068l-0 0c-0.372 0.372-0.764 0.72-1.172 1.040l-1.628-2.084c-0.059-0.076-0.15-0.124-0.253-0.124-0.15 0-0.276 0.103-0.31 0.242l-0 0.002-1.584 6.488c-0.048 0.2 0.104 0.396 0.308 0.396l6.68 0.032c0.268 0 0.42-0.308 0.252-0.516l-1.492-1.916z"></path>
</symbol>
<symbol id="vditor-icon-table" viewBox="0 0 32 32">
<path d="M30.857 3.429h-29.714c-0.632 0-1.143 0.511-1.143 1.143v22.857c0 0.632 0.511 1.143 1.143 1.143h29.714c0.632 0 1.143-0.511 1.143-1.143v-22.857c0-0.632-0.511-1.143-1.143-1.143zM29.429 10.857h-7.571v-4.857h7.571v4.857zM29.429 18.857h-7.571v-5.714h7.571v5.714zM12.429 13.143h7.143v5.714h-7.143v-5.714zM19.571 10.857h-7.143v-4.857h7.143v4.857zM2.571 13.143h7.571v5.714h-7.571v-5.714zM2.571 6h7.571v4.857h-7.571v-4.857zM2.571 21.143h7.571v4.857h-7.571v-4.857zM12.429 21.143h7.143v4.857h-7.143v-4.857zM29.429 26h-7.571v-4.857h7.571v4.857z"></path>
</symbol>
<symbol id="vditor-icon-undo" viewBox="0 0 32 32">
<path d="M15.976 0.48c-8.836 0.012-15.976 7.16-15.976 15.996 0 5.12 2.408 9.68 6.152 12.608l-1.5 1.92c-0.164 0.212-0.012 0.52 0.252 0.516l6.68-0.032c0.208 0 0.36-0.196 0.308-0.396l-1.58-6.492c-0.035-0.141-0.161-0.244-0.311-0.244-0.103 0-0.194 0.048-0.253 0.123l-0.001 0.001-1.628 2.084c-0.408-0.32-0.8-0.668-1.172-1.040-1.14-1.136-2.066-2.486-2.712-3.985l-0.032-0.083c-0.668-1.576-1.004-3.252-1.004-4.98s0.336-3.404 1.004-4.98c0.644-1.524 1.568-2.892 2.744-4.068s2.544-2.1 4.068-2.744c1.58-0.668 3.256-1.004 4.984-1.004s3.404 0.336 4.98 1.004c1.524 0.644 2.892 1.568 4.068 2.744s2.1 2.544 2.744 4.068c0.668 1.576 1.004 3.252 1.004 4.98s-0.336 3.404-1.004 4.98c-0.678 1.582-1.604 2.932-2.744 4.068l-0 0c-0.3 0.3-0.612 0.58-0.936 0.848-0.072 0.059-0.117 0.147-0.117 0.246 0 0.075 0.026 0.144 0.070 0.198l-0-0.001 1.576 2.020c0.112 0.14 0.316 0.164 0.456 0.052 3.604-2.936 5.904-7.404 5.904-12.412 0-8.844-7.176-16.008-16.024-15.996z"></path>
</symbol>
<symbol id="vditor-icon-list" viewBox="0 0 32 32">
<path d="M31.686 3.451h-22.902c-0.173 0-0.314 0.141-0.314 0.314v2.196c0 0.173 0.141 0.314 0.314 0.314h22.902c0.173 0 0.314-0.141 0.314-0.314v-2.196c0-0.173-0.141-0.314-0.314-0.314zM31.686 14.588h-22.902c-0.173 0-0.314 0.141-0.314 0.314v2.196c0 0.173 0.141 0.314 0.314 0.314h22.902c0.173 0 0.314-0.141 0.314-0.314v-2.196c0-0.173-0.141-0.314-0.314-0.314zM31.686 25.726h-22.902c-0.173 0-0.314 0.141-0.314 0.314v2.196c0 0.173 0.141 0.314 0.314 0.314h22.902c0.173 0 0.314-0.141 0.314-0.314v-2.196c0-0.173-0.141-0.314-0.314-0.314zM0 4.863c0 1.213 0.983 2.196 2.196 2.196s2.196-0.983 2.196-2.196v0c0-1.213-0.983-2.196-2.196-2.196s-2.196 0.983-2.196 2.196v0zM0 16c0 1.213 0.983 2.196 2.196 2.196s2.196-0.983 2.196-2.196v0c0-1.213-0.983-2.196-2.196-2.196s-2.196 0.983-2.196 2.196v0zM0 27.137c0 1.213 0.983 2.196 2.196 2.196s2.196-0.983 2.196-2.196v0c0-1.213-0.983-2.196-2.196-2.196s-2.196 0.983-2.196 2.196v0z"></path>
</symbol>
<symbol id="vditor-icon-up" viewBox="0 0 32 32">
<path d="M31.936 26.244l-14.846-20.466c-0.539-0.741-1.642-0.741-2.177 0l-14.85 20.466c-0.040 0.055-0.064 0.124-0.064 0.198 0 0.186 0.151 0.337 0.337 0.337 0 0 0.001 0 0.001 0h3.158c0.215 0 0.417-0.105 0.543-0.278l11.961-16.488 11.961 16.488c0.126 0.173 0.328 0.278 0.543 0.278h3.158c0.274 0 0.434-0.312 0.274-0.535z"></path>
</symbol>
<symbol id="vditor-icon-zhihu" viewBox="0 0 32 32">
<path d="M18.245 3.993v24.401h2.555l1.073 3.041 4.532-3.041h5.601v-24.401h-13.761zM28.795 25.162h-2.551l-3.199 2.147-0.758-2.147h-0.767v-17.837h7.27v17.837zM16.601 14.931h-5.656c0.089-1.912 0.183-4.442 0.281-7.364h5.575l-0.004-0.345c0-0.026-0.009-0.626-0.098-1.239-0.089-0.639-0.281-1.486-0.894-1.486h-9.353c0.187-0.877 0.669-2.969 1.252-3.995l0.273-0.477-0.549-0.030c-0.034 0-0.835-0.038-1.763 0.451-1.521 0.809-2.202 2.402-2.5 3.595-0.784 3.113-1.9 5.277-2.372 6.201-0.141 0.273-0.226 0.434-0.264 0.545-0.077 0.209-0.034 0.417 0.119 0.554 0.447 0.405 1.627-0.124 1.64-0.128 0.026-0.013 0.055-0.026 0.094-0.043 0.592-0.268 2.347-1.065 2.973-3.599h2.415c0.030 1.371 0.132 5.895 0.124 7.364h-6.005l-0.089 0.064c-0.984 0.72-1.299 2.692-1.312 2.777l-0.060 0.392h7.113c-0.524 3.335-1.129 4.83-1.448 5.426-0.158 0.298-0.311 0.596-0.456 0.886-0.907 1.797-1.849 3.654-5.379 6.542-0.153 0.119-0.298 0.341-0.204 0.584 0.102 0.268 0.396 0.388 1.048 0.388 0.23 0 0.503-0.013 0.826-0.043 2.125-0.187 4.293-0.767 5.754-3.731 0.724-1.495 1.35-3.054 1.87-4.638l5.814 6.815 0.213-0.511c0.034-0.081 0.809-1.972 0.217-4.085l-0.021-0.077-4.604-5.239-0.937 0.707c0.273-1.112 0.451-2.125 0.532-3.028h6.759v-0.341c0-1.708-0.788-2.722-0.818-2.764l-0.102-0.128z"></path>
</symbol>
</defs>
</svg>`)

View File

@ -0,0 +1,195 @@
document.body.insertAdjacentHTML('afterBegin', `<svg style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<symbol id="vditor-icon-comment" viewBox="0 0 32 32">
<path d="M28.8 24.272l-1.872-1.872h-23.728v-19.2h25.6v21.072zM28.8 0h-25.6c-1.76 0-3.2 1.44-3.2 3.2v19.2c0 1.76 1.44 3.2 3.2 3.2h22.4l6.4 6.4v-28.8c0-1.76-1.44-3.2-3.2-3.2z"></path>
</symbol>
<symbol id="vditor-icon-headings" viewBox="0 0 32 32">
<path d="M1.050 0.007h6.279v31.993h-6.279v-31.993z"></path>
<path d="M24.671 0h6.279v31.993h-6.279v-31.993z"></path>
<path d="M5.159 12.845h21.683v6.317h-21.683v-6.317z"></path>
</symbol>
<symbol id="vditor-icon-before" viewBox="0 0 32 32">
<path d="M1.462 26.507h21.543v-3.276h-21.543v3.276z"></path>
<path d="M1.462 9.928h16.48v-3.276h-16.48v3.276z"></path>
<path d="M1.462 18.217h21.543v-3.276h-21.543v3.276z"></path>
<path d="M24.366 8.29l6.171-5.952-2.43-2.338-8.619 8.29 8.619 8.29 2.43-2.337-6.171-5.953z"></path>
</symbol>
<symbol id="vditor-icon-after" viewBox="0 0 32 32">
<path d="M1.462 5.493h21.543v3.276h-21.543v-3.276z"></path>
<path d="M1.462 22.072h16.48v3.276h-16.48v-3.276z"></path>
<path d="M1.462 13.783h21.543v3.276h-21.543v-3.276z"></path>
<path d="M24.366 23.71l6.171 5.952-2.43 2.338-8.619-8.29 8.619-8.29 2.43 2.337-6.171 5.953z"></path>
</symbol>
<symbol id="vditor-icon-delete-column" viewBox="0 0 32 32">
<path d="M5.279 0v23.265h3.538v-23.265h-3.538z"></path>
<path d="M23.183 0v23.265h3.538v-23.265h-3.538z"></path>
<path d="M14.231 0v17.797h3.538v-17.797h-3.538z"></path>
<path d="M16 28.387l3.613 3.613 2.023-2.023-3.613-3.613 3.613-3.613-2.023-2.023-3.613 3.613-3.613-3.613-2.023 2.023 3.613 3.613-3.613 3.613 2.023 2.023 3.613-3.613z"></path>
</symbol>
<symbol id="vditor-icon-delete-row" viewBox="0 0 32 32">
<path d="M0 5.279h23.265v3.538h-23.265v-3.538z"></path>
<path d="M0 23.183h23.265v3.538h-23.265v-3.538z"></path>
<path d="M0 14.231h17.797v3.538h-17.797v-3.538z"></path>
<path d="M28.387 16l3.613 3.613-2.023 2.023-3.613-3.613-3.613 3.613-2.023-2.023 3.613-3.613-3.613-3.613 2.023-2.023 3.613 3.613 3.613-3.613 2.023 2.023-3.613 3.613z"></path>
</symbol>
<symbol id="vditor-icon-insert-row" viewBox="0 0 32 32">
<path d="M1.462 5.493h21.543v3.276h-21.543v-3.276z"></path>
<path d="M1.462 22.072h16.48v3.276h-16.48v-3.276z"></path>
<path d="M1.462 13.783h21.543v3.276h-21.543v-3.276z"></path>
<path d="M24.366 23.71l6.171 5.952-2.43 2.338-8.619-8.29 8.619-8.29 2.43 2.337-6.171 5.953z"></path>
</symbol>
<symbol id="vditor-icon-insert-rowb" viewBox="0 0 32 32">
<path d="M1.462 26.507h21.543v-3.276h-21.543v3.276z"></path>
<path d="M1.462 9.928h16.48v-3.276h-16.48v3.276z"></path>
<path d="M1.462 18.217h21.543v-3.276h-21.543v3.276z"></path>
<path d="M24.366 8.29l6.171-5.952-2.43-2.338-8.619 8.29 8.619 8.29 2.43-2.337-6.171-5.953z"></path>
</symbol>
<symbol id="vditor-icon-insert-column" viewBox="0 0 32 32">
<path d="M5.493 1.462v21.543h3.276v-21.543h-3.276z"></path>
<path d="M22.072 1.462v16.48h3.276v-16.48h-3.276z"></path>
<path d="M13.783 1.462v21.543h3.276v-21.543h-3.276z"></path>
<path d="M23.71 24.366l5.952 6.171 2.338-2.43-8.29-8.619-8.29 8.619 2.337 2.43 5.953-6.171z"></path>
</symbol>
<symbol id="vditor-icon-insert-columnb" viewBox="0 0 32 32">
<path d="M26.507 1.462v21.543h-3.276v-21.543h3.276z"></path>
<path d="M9.928 1.462v16.48h-3.276v-16.48h3.276z"></path>
<path d="M18.217 1.462v21.543h-3.276v-21.543h3.276z"></path>
<path d="M8.29 24.366l-5.952 6.171-2.338-2.43 8.29-8.619 8.29 8.619-2.337 2.43-5.953-6.171z"></path>
</symbol>
<symbol id="vditor-icon-code-theme" viewBox="0 0 32 32">
<path d="M28.444 12.444v16h-24.924v-24.889h16v-3.556h-15.964c-1.956 0-3.556 1.6-3.556 3.556v24.889c0 1.956 1.6 3.556 3.556 3.556h24.889c1.956 0 3.556-1.6 3.556-3.556v-16h-3.556zM23.218 8.782l1.671 3.662 1.671-3.662 3.662-1.671-3.662-1.671-1.671-3.662-1.671 3.662-3.662 1.671zM16 8.889l-2.222 4.889-4.889 2.222 4.889 2.222 2.222 4.889 2.222-4.889 4.889-2.222-4.889-2.222z"></path>
</symbol>
<symbol id="vditor-icon-code" viewBox="0 0 32 32">
<path d="M9.946 8.501l-2.204-1.832-7.742 9.331 7.742 9.331 2.204-1.832-6.225-7.499 6.225-7.499zM8.844 17.431h2.862v-2.862h-2.862v2.862zM23.156 14.569h-2.862v2.862h2.862v-2.862zM14.569 17.431h2.862v-2.862h-2.862v2.862zM24.258 6.669l-2.204 1.832 6.225 7.499-6.225 7.499 2.204 1.832 7.742-9.331-7.742-9.331z"></path>
</symbol>
<symbol id="vditor-icon-table" viewBox="0 0 32 32">
<path d="M22.801 2.286h-22.801v27.429h32v-27.429h-9.199zM19.372 5.714v4.571h-6.801v-4.571h6.801zM19.372 13.714v4.571h-6.801v-4.571h6.801zM3.429 5.714h5.714v4.571h-5.714v-4.571zM3.429 13.714h5.714v4.571h-5.714v-4.571zM3.429 26.286v-4.571h5.714v4.571h-5.714zM12.571 26.286v-4.571h6.801v4.571h-6.801zM28.571 26.286h-5.77v-4.571h5.77v4.571zM28.571 18.286h-5.77v-4.571h5.77v4.571zM22.801 10.286v-4.571h5.77v4.571h-5.77z"></path>
</symbol>
<symbol id="vditor-icon-export" viewBox="0 0 32 32">
<path d="M28.444 28.444h-24.889v-24.889h12.444v-3.556h-12.444c-1.973 0-3.556 1.6-3.556 3.556v24.889c0 1.956 1.582 3.556 3.556 3.556h24.889c1.956 0 3.556-1.6 3.556-3.556v-12.444h-3.556v12.444zM19.556 0v3.556h6.382l-17.476 17.476 2.507 2.507 17.476-17.476v6.382h3.556v-12.444h-12.444z"></path>
</symbol>
<symbol id="vditor-icon-resize" viewBox="0 0 128 32">
<path d="M128 32v-5.334h-128v5.334h128zM128 18.666v-5.331h-128v5.331h128zM0 5.334h128v-5.334h-128v5.334z"></path>
</symbol>
<symbol id="vditor-icon-edit" viewBox="0 0 32 32">
<path d="M19.66 10.703l1.635 1.635-16.104 16.104h-1.635v-1.635l16.104-16.104zM26.059 0.002c-0.444 0-0.907 0.178-1.244 0.515l-3.253 3.253 6.666 6.666 3.253-3.253c0.693-0.693 0.693-1.813 0-2.506l-4.159-4.159c-0.355-0.355-0.8-0.515-1.262-0.515zM19.66 5.673l-19.66 19.66v6.666h6.666l19.66-19.66-6.666-6.666z"></path>
</symbol>
<symbol id="vditor-icon-quote" viewBox="0 0 32 32">
<path d="M27.769 26.667h-9.316l3.556-7.111h-4.231v-14.222h14.222v12.871l-4.231 8.462zM24.213 23.111h1.351l2.88-5.76v-8.462h-7.111v7.111h6.436l-3.556 7.111zM9.991 26.667h-9.316l3.556-7.111h-4.231v-14.222h14.222v12.871l-4.231 8.462zM6.436 23.111h1.351l2.88-5.76v-8.462h-7.111v7.111h6.436l-3.556 7.111z"></path>
</symbol>
<symbol id="vditor-icon-strike" viewBox="0 0 32 32">
<path d="M12.444 29.333h7.111v-5.333h-7.111v5.333zM3.556 2.667v5.333h8.889v5.333h7.111v-5.333h8.889v-5.333h-24.889zM0 20.444h32v-3.556h-32v3.556z"></path>
</symbol>
<symbol id="vditor-icon-line" viewBox="0 0 32 32">
<path d="M0 14h32v4h-32v-4z"></path>
</symbol>
<symbol id="vditor-icon-both" viewBox="0 0 32 32">
<path d="M2.909 3.636h26.182c1.6 0 2.909 1.309 2.909 2.909v18.909c0 1.6-1.309 2.909-2.909 2.909h-26.182c-1.6 0-2.909-1.309-2.909-2.909v-18.909c0-1.6 1.309-2.909 2.909-2.909zM29.091 25.455v-18.909h-11.636v18.909h11.636zM2.909 25.455h11.636v-18.909h-11.636v18.909zM13.091 11.636h-8.727v2.182h8.727zM13.091 15.273h-8.727v2.182h8.727zM13.091 18.909h-8.727v2.182h8.727z"></path>
</symbol>
<symbol id="vditor-icon-copy" viewBox="0 0 32 32">
<path d="M22.545-0h-17.455c-1.6 0-2.909 1.309-2.909 2.909v20.364h2.909v-20.364h17.455v-2.909zM26.909 5.818h-16c-1.6 0-2.909 1.309-2.909 2.909v20.364c0 1.6 1.309 2.909 2.909 2.909h16c1.6 0 2.909-1.309 2.909-2.909v-20.364c0-1.6-1.309-2.909-2.909-2.909zM26.909 29.091h-16v-20.364h16v20.364z"></path>
</symbol>
<symbol id="vditor-icon-trashcan" viewBox="0 0 32 32">
<path d="M23.111 10.667v17.778h-14.222v-17.778h14.222zM20.444 0h-8.889l-1.778 1.778h-6.222v3.556h24.889v-3.556h-6.222l-1.778-1.778zM26.667 7.111h-21.333v21.333c0 1.956 1.6 3.556 3.556 3.556h14.222c1.956 0 3.556-1.6 3.556-3.556v-21.333z"></path>
</symbol>
<symbol id="vditor-icon-more" viewBox="0 0 32 32">
<path d="M4 12c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zM28 12c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zM16 12c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z"></path>
</symbol>
<symbol id="vditor-icon-upload" viewBox="0 0 32 32">
<path d="M25.8 13.387c-0.907-4.6-4.947-8.053-9.8-8.053-3.853 0-7.2 2.187-8.867 5.387-4.013 0.427-7.133 3.827-7.133 7.947 0 4.413 3.587 8 8 8h17.333c3.68 0 6.667-2.987 6.667-6.667 0-3.52-2.733-6.373-6.2-6.613zM25.333 24h-17.333c-2.947 0-5.333-2.387-5.333-5.333 0-2.733 2.040-5.013 4.747-5.293l1.427-0.147 0.667-1.267c1.267-2.44 3.747-3.96 6.493-3.96 3.493 0 6.507 2.48 7.187 5.907l0.4 2 2.040 0.147c2.080 0.133 3.707 1.88 3.707 3.947 0 2.2-1.8 4-4 4zM10.667 17.333h3.4v4h3.867v-4h3.4l-5.333-5.333z"></path>
</symbol>
<symbol id="vditor-icon-bug" viewBox="0 0 32 32">
<path d="M30.222 8.889h-4.996c-0.8-1.387-1.902-2.578-3.236-3.484l2.898-2.898-2.507-2.507-3.858 3.858c-0.818-0.196-1.653-0.302-2.524-0.302s-1.707 0.107-2.507 0.302l-3.876-3.858-2.507 2.507 2.88 2.898c-1.316 0.907-2.418 2.098-3.218 3.484h-4.996v3.556h3.716c-0.089 0.587-0.16 1.173-0.16 1.778v1.778h-3.556v3.556h3.556v1.778c0 0.604 0.071 1.191 0.16 1.778h-3.716v3.556h4.996c1.849 3.182 5.28 5.333 9.227 5.333s7.378-2.151 9.227-5.333h4.996v-3.556h-3.716c0.089-0.587 0.16-1.173 0.16-1.778v-1.778h3.556v-3.556h-3.556v-1.778c0-0.604-0.071-1.191-0.16-1.778h3.716v-3.556zM23.111 16v5.333c0 0.391-0.053 0.836-0.124 1.244l-0.178 1.156-0.658 1.156c-1.28 2.204-3.627 3.556-6.151 3.556s-4.871-1.369-6.151-3.556l-0.658-1.138-0.178-1.156c-0.071-0.409-0.124-0.853-0.124-1.262v-7.111c0-0.409 0.053-0.853 0.124-1.244l0.178-1.156 0.658-1.156c0.533-0.924 1.28-1.724 2.151-2.329l1.013-0.693 1.316-0.32c0.551-0.142 1.12-0.213 1.671-0.213 0.569 0 1.12 0.071 1.689 0.213l1.209 0.284 1.084 0.747c0.889 0.604 1.618 1.387 2.151 2.329l0.676 1.156 0.178 1.156c0.071 0.391 0.124 0.836 0.124 1.227v1.778zM12.444 19.556h7.111v3.556h-7.111zM12.444 12.445h7.111v3.556h-7.111z"></path>
</symbol>
<symbol id="vditor-icon-contract" viewBox="0 0 32 32">
<path d="M32 2.256l-8.464 8.464 5.264 5.28h-12.8v-12.8l5.264 5.264 8.48-8.464 2.256 2.256zM2.256 32l8.464-8.464 5.28 5.264v-12.8h-12.8l5.264 5.264-8.464 8.48 2.256 2.256z"></path>
</symbol>
<symbol id="vditor-icon-inline-code" viewBox="0 0 32 32">
<path d="M11.84 23.36l-7.36-7.36 7.36-7.36-2.24-2.24-9.6 9.6 9.6 9.6 2.24-2.24zM20.16 23.36l7.36-7.36-7.36-7.36 2.24-2.24 9.6 9.6-9.6 9.6-2.24-2.24z"></path>
</symbol>
<symbol id="vditor-icon-down" viewBox="0 0 32 32">
<path d="M3.76 6.12l12.24 12.213 12.24-12.213 3.76 3.76-16 16-16-16 3.76-3.76z"></path>
</symbol>
<symbol id="vditor-icon-up" viewBox="0 0 32 32">
<path d="M3.76 25.88l12.24-12.213 12.24 12.213 3.76-3.76-16-16-16 16 3.76 3.76z"></path>
</symbol>
<symbol id="vditor-icon-check" viewBox="0 0 32 32">
<path d="M28.444 0h-24.889c-1.956 0-3.556 1.6-3.556 3.556v24.889c0 1.956 1.6 3.556 3.556 3.556h24.889c1.956 0 3.556-1.6 3.556-3.556v-24.889c0-1.956-1.6-3.556-3.556-3.556zM28.444 28.445h-24.889v-24.889h24.889v24.889zM26.649 10.667l-2.507-2.524-11.716 11.716-4.587-4.569-2.524 2.507 7.111 7.093z"></path>
</symbol>
<symbol id="vditor-icon-theme" viewBox="0 0 32 32">
<path d="M16 32c-8.816 0-16-7.184-16-16s7.184-16 16-16 16 6.464 16 14.4c0 5.296-4.304 9.6-9.6 9.6h-2.832c-0.448 0-0.8 0.352-0.8 0.8 0 0.192 0.080 0.368 0.208 0.528 0.656 0.752 1.024 1.696 1.024 2.672 0 2.208-1.792 4-4 4zM16 3.2c-7.056 0-12.8 5.744-12.8 12.8s5.744 12.8 12.8 12.8c0.448 0 0.8-0.352 0.8-0.8 0-0.256-0.128-0.448-0.224-0.56-0.656-0.736-1.008-1.68-1.008-2.64 0-2.208 1.792-4 4-4h2.832c3.536 0 6.4-2.864 6.4-6.4 0-6.176-5.744-11.2-12.8-11.2z"></path>
<path d="M9.6 15.2c0 1.325-1.075 2.4-2.4 2.4s-2.4-1.075-2.4-2.4c0-1.325 1.075-2.4 2.4-2.4s2.4 1.075 2.4 2.4z"></path>
<path d="M14.4 8.8c0 1.325-1.075 2.4-2.4 2.4s-2.4-1.075-2.4-2.4c0-1.325 1.075-2.4 2.4-2.4s2.4 1.075 2.4 2.4z"></path>
<path d="M22.4 8.8c0 1.325-1.075 2.4-2.4 2.4s-2.4-1.075-2.4-2.4c0-1.325 1.075-2.4 2.4-2.4s2.4 1.075 2.4 2.4z"></path>
<path d="M27.2 15.2c0 1.325-1.075 2.4-2.4 2.4s-2.4-1.075-2.4-2.4c0-1.325 1.075-2.4 2.4-2.4s2.4 1.075 2.4 2.4z"></path>
</symbol>
<symbol id="vditor-icon-help" viewBox="0 0 32 32">
<path d="M14.4 25.6h3.2v-3.2h-3.2v3.2zM16 0c-8.832 0-16 7.168-16 16s7.168 16 16 16 16-7.168 16-16-7.168-16-16-16zM16 28.8c-7.056 0-12.8-5.744-12.8-12.8s5.744-12.8 12.8-12.8 12.8 5.744 12.8 12.8-5.744 12.8-12.8 12.8zM16 6.4c-3.536 0-6.4 2.864-6.4 6.4h3.2c0-1.76 1.44-3.2 3.2-3.2s3.2 1.44 3.2 3.2c0 3.2-4.8 2.8-4.8 8h3.2c0-3.6 4.8-4 4.8-8 0-3.536-2.864-6.4-6.4-6.4z"></path>
</symbol>
<symbol id="vditor-icon-info" viewBox="0 0 32 32">
<path d="M14.4 8h3.2v3.2h-3.2zM14.4 14.4h3.2v9.6h-3.2zM16 0c-8.832 0-16 7.168-16 16s7.168 16 16 16 16-7.168 16-16-7.168-16-16-16zM16 28.8c-7.056 0-12.8-5.744-12.8-12.8s5.744-12.8 12.8-12.8 12.8 5.744 12.8 12.8-5.744 12.8-12.8 12.8z"></path>
</symbol>
<symbol id="vditor-icon-fullscreen" viewBox="0 0 32 32">
<path d="M32 14.222v-14.222h-14.222l5.849 5.849-17.778 17.778-5.849-5.849v14.222h14.222l-5.849-5.849 17.778-17.778z"></path>
</symbol>
<symbol id="vditor-icon-preview" viewBox="0 0 32 32">
<path d="M16 8c5.513 0 10.429 3.098 12.829 8-2.4 4.902-7.302 8-12.829 8s-10.429-3.098-12.829-8c2.4-4.902 7.316-8 12.829-8zM16 5.091c-7.273 0-13.484 4.524-16 10.909 2.516 6.385 8.727 10.909 16 10.909s13.484-4.524 16-10.909c-2.516-6.385-8.727-10.909-16-10.909zM16 12.364c2.007 0 3.636 1.629 3.636 3.636s-1.629 3.636-3.636 3.636-3.636-1.629-3.636-3.636 1.629-3.636 3.636-3.636zM16 9.455c-3.607 0-6.545 2.938-6.545 6.545s2.938 6.545 6.545 6.545 6.545-2.938 6.545-6.545-2.938-6.545-6.545-6.545z"></path>
</symbol>
<symbol id="vditor-icon-record" viewBox="0 0 32 32">
<path d="M24.928 15.17h2.844q0 4.267-2.963 7.467t-7.151 3.832v5.531h-3.319v-5.531q-4.188-0.632-7.151-3.832t-2.963-7.467h2.844q0 3.714 2.647 6.123t6.281 2.41 6.281-2.41 2.647-6.123zM13.946 4.899v10.43q0 0.79 0.593 1.383t1.462 0.593q0.79 0 1.383-0.553t0.593-1.422l0.079-10.43q0-0.869-0.632-1.462t-1.422-0.593-1.422 0.593-0.632 1.462zM16 20.227q-2.054 0-3.556-1.501t-1.501-3.556v-10.114q0-2.054 1.501-3.556t3.556-1.501 3.556 1.501 1.501 3.556v10.114q0 2.054-1.501 3.556t-3.556 1.501z"></path>
</symbol>
<symbol id="vditor-icon-pause" viewBox="0 0 32 32">
<path d="M20.617 0h9.128v32h-9.128v-32zM2.255 32v-32h9.128v32h-9.128z"></path>
</symbol>
<symbol id="vditor-icon-play" viewBox="0 0 32 32">
<path d="M3.436 0l25.128 16-25.128 16v-32z"></path>
</symbol>
<symbol id="vditor-icon-emoji" viewBox="0 0 32 32">
<path d="M16 24.789q-2.779 0-4.995-1.54t-3.192-4.019h2.629q1.878 3.155 5.559 3.155t5.559-3.155h2.629q-0.977 2.479-3.192 4.019t-4.995 1.54zM16 28.845q5.258 0 9.052-3.793t3.793-9.052-3.793-9.052-9.052-3.793-9.052 3.793-3.793 9.052 3.793 9.052 9.052 3.793zM16 0q6.61 0 11.305 4.695t4.695 11.305-4.695 11.305-11.305 4.695-11.305-4.695-4.695-11.305 4.695-11.305 11.305-4.695zM10.366 14.423q-0.977 0-1.69-0.714t-0.714-1.69 0.714-1.69 1.69-0.714 1.69 0.714 0.714 1.69-0.714 1.69-1.69 0.714zM21.634 14.423q-0.977 0-1.69-0.714t-0.714-1.69 0.714-1.69 1.69-0.714 1.69 0.714 0.714 1.69-0.714 1.69-1.69 0.714z"></path>
</symbol>
<symbol id="vditor-icon-link" viewBox="0 0 32 32">
<path d="M24.038 7.962q3.305 0 5.634 2.366t2.329 5.671-2.329 5.671-5.634 2.366h-6.46v-3.080h6.46q2.028 0 3.493-1.465t1.465-3.493-1.465-3.493-3.493-1.465h-6.46v-3.080h6.46zM9.615 17.577v-3.155h12.77v3.155h-12.77zM3.005 16q0 2.028 1.465 3.493t3.493 1.465h6.46v3.080h-6.46q-3.305 0-5.634-2.366t-2.329-5.671 2.329-5.671 5.634-2.366h6.46v3.080h-6.46q-2.028 0-3.493 1.465t-1.465 3.493z"></path>
</symbol>
<symbol id="vditor-icon-redo" viewBox="0 0 32 32">
<path d="M26.422 14.605l5.578-5.651v14.092h-14.092l5.725-5.651q-3.523-2.936-8.073-2.936-3.743 0-7.229 2.495t-4.661 6.092l-3.67-1.174q1.615-4.991 5.908-8.147t9.651-3.156q6.239 0 10.862 4.037z"></path>
</symbol>
<symbol id="vditor-icon-undo" viewBox="0 0 32 32">
<path d="M16.44 10.569q5.358 0 9.615 3.156t5.945 8.147l-3.67 1.174q-1.248-3.817-4.514-6.202t-7.376-2.385q-4.55 0-8.073 2.936l5.725 5.651h-14.092v-14.092l5.578 5.651q4.624-4.037 10.862-4.037z"></path>
</symbol>
<symbol id="vditor-icon-align-center" viewBox="0 0 32 32">
<path d="M0 0h32v3.583h-32v-3.583zM7.083 7.083h17.833v3.583h-17.833v-3.583zM0 17.75v-3.5h32v3.5h-32zM0 32v-3.583h32v3.583h-32zM7.083 21.333h17.833v3.583h-17.833v-3.583z"></path>
</symbol>
<symbol id="vditor-icon-align-left" viewBox="0 0 32 32">
<path d="M0 0h32v3.583h-32v-3.583zM0 32v-3.583h32v3.583h-32zM0 17.75v-3.5h32v3.5h-32zM21.333 7.083v3.583h-21.333v-3.583h21.333zM21.333 21.333v3.583h-21.333v-3.583h21.333z"></path>
</symbol>
<symbol id="vditor-icon-align-right" viewBox="0 0 32 32">
<path d="M0 0h32v3.583h-32v-3.583zM10.667 10.667v-3.583h21.333v3.583h-21.333zM0 17.75v-3.5h32v3.5h-32zM10.667 24.917v-3.583h21.333v3.583h-21.333zM0 32v-3.583h32v3.583h-32z"></path>
</symbol>
<symbol id="vditor-icon-bold" viewBox="0 0 32 32">
<path d="M18.569 26.328q1.498 0 2.462-1.017t0.963-2.408-0.963-2.408-2.462-1.017h-8.027v6.849h8.027zM10.542 5.779v6.85h6.85q1.391 0 2.408-1.017t1.017-2.408-1.017-2.408-2.408-1.017h-6.849zM23.385 15.518q4.923 2.248 4.923 7.813 0 3.639-2.408 6.154t-6.047 2.515h-16.161v-32h14.341q3.853 0 6.475 2.676t2.622 6.528-3.746 6.314z"></path>
</symbol>
<symbol id="vditor-icon-indent" viewBox="0 0 32 32">
<path d="M14.25 17.75v-3.5h17.75v3.5h-17.75zM14.25 10.667v-3.583h17.75v3.583h-17.75zM0 0h32v3.583h-32v-3.583zM0 32v-3.583h32v3.583h-32zM0 16l7.083-7.083v14.167zM14.25 24.917v-3.583h17.75v3.583h-17.75z"></path>
</symbol>
<symbol id="vditor-icon-outdent" viewBox="0 0 32 32">
<path d="M14.25 17.75v-3.5h17.75v3.5h-17.75zM14.25 10.667v-3.583h17.75v3.583h-17.75zM0 0h32v3.583h-32v-3.583zM14.25 24.917v-3.583h17.75v3.583h-17.75zM0 8.917l7.083 7.083-7.083 7.083v-14.167zM0 32v-3.583h32v3.583h-32z"></path>
</symbol>
<symbol id="vditor-icon-italic" viewBox="0 0 32 32">
<path d="M11.398 0h18.301v6.849h-6.421l-7.706 18.301h5.030v6.849h-18.301v-6.849h6.421l7.706-18.301h-5.030v-6.849z"></path>
</symbol>
<symbol id="vditor-icon-list" viewBox="0 0 32 32">
<path d="M7.777 3.929h24.223v3.403h-24.223v-3.403zM7.777 17.701v-3.403h24.223v3.403h-24.223zM7.777 28.071v-3.403h24.223v3.403h-24.223zM2.592 23.777q1.053 0 1.823 0.77t0.77 1.823-0.77 1.823-1.823 0.77-1.823-0.77-0.77-1.823 0.77-1.823 1.823-0.77zM2.592 3.038q1.053 0 1.823 0.729t0.77 1.863-0.77 1.863-1.823 0.729-1.823-0.729-0.77-1.863 0.77-1.863 1.823-0.729zM2.592 13.408q1.053 0 1.823 0.729t0.77 1.863-0.77 1.863-1.823 0.729-1.823-0.729-0.77-1.863 0.77-1.863 1.823-0.729z"></path>
</symbol>
<symbol id="vditor-icon-ordered-list" viewBox="0 0 32 32">
<path d="M8.375 17.659v-3.319h23.625v3.319h-23.625zM8.375 27.773v-3.319h23.625v3.319h-23.625zM8.375 4.227h23.625v3.319h-23.625v-3.319zM0 14.341v-1.738h5.057v1.58l-3.081 3.477h3.081v1.738h-5.057v-1.58l3.002-3.477h-3.002zM1.659 9.284v-5.057h-1.659v-1.738h3.319v6.795h-1.659zM0 24.454v-1.738h5.057v6.795h-5.057v-1.738h3.319v-0.79h-1.659v-1.738h1.659v-0.79h-3.319z"></path>
</symbol>
<symbol id="vditor-icon-mp-wechat" viewBox="0 0 32 32">
<path d="M6.927 17.719s-3.040-3.431-2.915-6.942c0.16-4.453 4.738-10.257 11.359-10.257 1.884 0 5.653 0 10.328 5.52 0.249 0.302-15.075-3.84-18.772 11.679z"></path>
<path d="M17.477 9.301s3.946-1.298 7.271-0.178c4.222 1.422 8.693 6.826 6.809 13.182-0.533 1.804-1.609 5.413-8.231 8.32-0.356 0.16 10.613-13.351-5.849-21.323z"></path>
<path d="M10.944 24.332c-1.938 2.035-3.751 1.742-3.751 1.742l0.578-3.191c-5.235-3.44-6.373-10.328-6.453-10.106-2.444 6.817-0.916 11.377 0.027 13.004 3.315 5.733 11.982 7.351 17.484 3.893 2.969-1.867 4.533-7.057 4.533-7.057-5.298 2.338-9.342 2.569-12.417 1.715z"></path>
</symbol>
<symbol id="vditor-icon-zhihu" viewBox="0 0 32 32">
<path d="M17.167 17.769s0-2.583-1.25-2.667c-1.25-0.167-5.167 0-5.167 0v-8h5.833s-0.083-2.667-1.167-2.667h-9.5l1.583-4.25s-2.333 0.167-3.25 1.667c-0.833 1.5-3.5 9.167-3.5 9.167s0.917 0.417 2.417-0.75c1.5-1.083 2-3.083 2-3.083l2.75-0.167 0.083 8.083s-4.917-0.083-5.833 0c-1 0.083-1.5 2.667-1.5 2.667h7.417s-0.667 4.583-2.5 7.75c-1.917 3.333-5.583 5.917-5.583 5.917s2.583 1.083 5.167-0.417 4.417-8.083 4.417-8.083l5.917 7.417s0.5-3.5-0.083-4.583c-0.667-1-4.167-5-4.167-5l-1.5 1.333 1.083-4.417 6.333 0.083zM18.667 4.269l-0.083 23.999h2.417l0.833 2.917 4.25-2.917h5.917v-23.999h-13.333zM29.333 25.602h-2.75l-3.5 2.667-0.75-2.667h-0.75v-18.582h7.75v18.582z"></path>
</symbol>
</defs>
</svg>`)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More