mirror of
https://github.com/he0119/typecho-highlightjs.git
synced 2025-03-13 10:40:55 +08:00
joyqi
This commit is contained in:
parent
8c99da7ded
commit
75224f88b6
42
LICENSE
42
LICENSE
@ -1,21 +1,29 @@
|
||||
MIT License
|
||||
BSD 3-Clause License
|
||||
|
||||
Copyright (c) 2021 hemengyang
|
||||
Copyright (c) 2021, joyqi
|
||||
All rights reserved.
|
||||
|
||||
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:
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
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.
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the copyright holder nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
188
Plugin.php
Normal file
188
Plugin.php
Normal file
@ -0,0 +1,188 @@
|
||||
<?php
|
||||
|
||||
namespace TypechoPlugin\HighlightJs;
|
||||
|
||||
use Typecho\Plugin\PluginInterface;
|
||||
use Typecho\Widget\Helper\Form;
|
||||
use Utils\Helper;
|
||||
use Widget\Archive;
|
||||
use Widget\Base\Comments;
|
||||
use Widget\Base\Contents;
|
||||
|
||||
if (!defined('__TYPECHO_ROOT_DIR__')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Highlight.JS插件,智能实现代码高亮
|
||||
*
|
||||
* @package Highlight Js
|
||||
* @author joyqi
|
||||
* @version 1.1.0
|
||||
* @since 1.2.0
|
||||
* @link https://github.com/joyqi/typecho-plugins
|
||||
*/
|
||||
class Plugin implements PluginInterface
|
||||
{
|
||||
/**
|
||||
* 激活插件方法,如果激活失败,直接抛出异常
|
||||
*/
|
||||
public static function activate()
|
||||
{
|
||||
Contents::pluginHandle()->contentEx = __CLASS__ . '::parse';
|
||||
Contents::pluginHandle()->excerptEx = __CLASS__ . '::parse';
|
||||
Comments::pluginHandle()->contentEx = __CLASS__ . '::parse';
|
||||
Archive::pluginHandle()->header = __CLASS__ . '::header';
|
||||
Archive::pluginHandle()->footer = __CLASS__ . '::footer';
|
||||
}
|
||||
|
||||
/**
|
||||
* 禁用插件方法,如果禁用失败,直接抛出异常
|
||||
*/
|
||||
public static function deactivate()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取插件配置面板
|
||||
*
|
||||
* @param Form $form 配置面板
|
||||
*/
|
||||
public static function config(Form $form)
|
||||
{
|
||||
$compatibilityMode = new Form\Element\Radio('compatibilityMode', [
|
||||
0 => _t('不启用'),
|
||||
1 => _t('启用')
|
||||
], 0, _t('兼容模式'), _t('兼容模式一般用于对以前没有使用Markdown语法解析的文章'));
|
||||
$form->addInput($compatibilityMode->addRule('enum', _t('必须选择一个模式'), [0, 1]));
|
||||
|
||||
$styles = array_map('basename', glob(dirname(__FILE__) . '/res/styles/*.css'));
|
||||
$styles = array_combine($styles, $styles);
|
||||
$style = new Form\Element\Select('style', $styles, 'default.css',
|
||||
_t('代码配色样式'));
|
||||
$form->addInput($style->addRule('enum', _t('必须选择配色样式'), $styles));
|
||||
}
|
||||
|
||||
/**
|
||||
* 个人用户的配置面板
|
||||
*
|
||||
* @param Form $form
|
||||
*/
|
||||
public static function personalConfig(Form $form)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* 输出头部css
|
||||
*/
|
||||
public static function header($header, Archive $archive)
|
||||
{
|
||||
if ($archive->is('single')) {
|
||||
$cssUrl = Helper::options()->pluginUrl . '/HighlightJs/res/styles/'
|
||||
. Helper::options()->plugin('HighlightJs')->style;
|
||||
echo '<link rel="stylesheet" type="text/css" href="' . $cssUrl . '" />';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 输出尾部js
|
||||
*/
|
||||
public static function footer(Archive $archive)
|
||||
{
|
||||
if ($archive->is('single')) {
|
||||
$jsUrl = Helper::options()->pluginUrl . '/HighlightJs/res/highlight.pack.js';
|
||||
echo '<script type="text/javascript" src="' . $jsUrl . '"></script>';
|
||||
echo '<script type="text/javascript">window.onload = function () {
|
||||
var codes = document.getElementsByTagName("pre"),
|
||||
hlNames = {
|
||||
actionscript : /^as[1-3]$/i,
|
||||
cmake : /^(make|makefile)$/i,
|
||||
cs : /^csharp$/i,
|
||||
css : /^css[1-3]$/i,
|
||||
delphi : /^pascal$/i,
|
||||
javascript : /^js$/i,
|
||||
markdown : /^md$/i,
|
||||
objectivec : /^objective\-c$/i,
|
||||
php : /^php[1-6]$/i,
|
||||
sql : /^mysql$/i,
|
||||
xml : /^(html|html5|xhtml)$/i
|
||||
}, hlLangs = hljs.LANGUAGES;
|
||||
|
||||
for (var i = 0; i < codes.length; i ++) {
|
||||
var children = codes[i].getElementsByTagName("code"), highlighted = false;
|
||||
|
||||
if (children.length > 0) {
|
||||
var code = children[0], className = code.className;
|
||||
|
||||
if (!!className) {
|
||||
if (0 == className.indexOf("language-")) {
|
||||
var lang = className.substring(5).toLowerCase(), finalLang;
|
||||
|
||||
if (hlLangs[lang]) {
|
||||
finalLang = lang;
|
||||
} else {
|
||||
for (var l in hlNames) {
|
||||
if (lang.match(hlNames[l])) {
|
||||
finalLang = l;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!!finalLang) {
|
||||
var result = hljs.highlight(finalLang, code.textContent, true);
|
||||
code.innerHTML = result.value;
|
||||
highlighted = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!highlighted) {
|
||||
var html = code.innerHTML;
|
||||
code.innerHTML = html.replace(/<\/?[a-z]+[^>]*>/ig, "");
|
||||
hljs.highlightBlock(code, "", false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}</script>';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 插件实现方法
|
||||
*
|
||||
* @access public
|
||||
* @return string
|
||||
*/
|
||||
public static function parse($text, $widget, $lastResult): string
|
||||
{
|
||||
$text = empty($lastResult) ? $text : $lastResult;
|
||||
|
||||
if (!Helper::options()->plugin('HighlightJs')->compatibilityMode) {
|
||||
return $text;
|
||||
}
|
||||
|
||||
if ($widget instanceof Archive || $widget instanceof Comments) {
|
||||
$isMarkdown = $widget instanceof Comments ? Helper::options()->commentsMarkdown : $widget->isMarkdown;
|
||||
|
||||
return preg_replace_callback("/<(code|pre)(\s*[^>]*)>(.*?)<\/\\1>/is", function ($matches) use ($isMarkdown) {
|
||||
if ('code' == $matches[1] && !$isMarkdown) {
|
||||
$language = $matches[2];
|
||||
|
||||
if (!empty($language)) {
|
||||
if (preg_match("/^\s*(class|lang|language)=\"(?:lang-|language-)?([_a-z0-9-]+)\"$/i", $language, $out)) {
|
||||
$language = ' class="' . trim($out[2]) . '"';
|
||||
} elseif (preg_match("/\s*([_a-z0-9]+)/i", $language, $out)) {
|
||||
$language = ' class="language-' . trim($out[1]) . '"';
|
||||
}
|
||||
}
|
||||
|
||||
return "<pre><code{$language}>" . htmlspecialchars(trim($matches[3])) . "</code></pre>";
|
||||
}
|
||||
|
||||
return $matches[0];
|
||||
}, $text);
|
||||
} else {
|
||||
return $text;
|
||||
}
|
||||
}
|
||||
}
|
1
res/highlight.pack.js
Normal file
1
res/highlight.pack.js
Normal file
File diff suppressed because one or more lines are too long
160
res/styles/arta.css
Normal file
160
res/styles/arta.css
Normal file
@ -0,0 +1,160 @@
|
||||
/*
|
||||
Date: 17.V.2011
|
||||
Author: pumbur <pumbur@pumbur.net>
|
||||
*/
|
||||
|
||||
pre code
|
||||
{
|
||||
display: block; padding: 0.5em;
|
||||
background: #222;
|
||||
}
|
||||
|
||||
pre .profile .header *,
|
||||
pre .ini .title,
|
||||
pre .nginx .title
|
||||
{
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .javadoc,
|
||||
pre .preprocessor,
|
||||
pre .preprocessor .title,
|
||||
pre .pragma,
|
||||
pre .shebang,
|
||||
pre .profile .summary,
|
||||
pre .diff,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .tag,
|
||||
pre .template_comment,
|
||||
pre .css .rules,
|
||||
pre .tex .special
|
||||
{
|
||||
color: #444;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .symbol,
|
||||
pre .diff .change,
|
||||
pre .regexp,
|
||||
pre .xml .attribute,
|
||||
pre .smalltalk .char,
|
||||
pre .xml .value,
|
||||
pre .ini .value,
|
||||
pre .clojure .attribute,
|
||||
pre .coffeescript .attribute
|
||||
{
|
||||
color: #ffcc33;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .addition
|
||||
{
|
||||
color: #00cc66;
|
||||
}
|
||||
|
||||
pre .built_in,
|
||||
pre .literal,
|
||||
pre .vhdl .typename,
|
||||
pre .go .constant,
|
||||
pre .go .typename,
|
||||
pre .ini .keyword,
|
||||
pre .lua .title,
|
||||
pre .perl .variable,
|
||||
pre .php .variable,
|
||||
pre .mel .variable,
|
||||
pre .django .variable,
|
||||
pre .css .funtion,
|
||||
pre .smalltalk .method,
|
||||
pre .hexcolor,
|
||||
pre .important,
|
||||
pre .flow,
|
||||
pre .inheritance,
|
||||
pre .parser3 .variable
|
||||
{
|
||||
color: #32AAEE;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .tag .title,
|
||||
pre .css .tag,
|
||||
pre .css .class,
|
||||
pre .css .id,
|
||||
pre .css .pseudo,
|
||||
pre .css .attr_selector,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in,
|
||||
pre .winutils,
|
||||
pre .tex .command,
|
||||
pre .request,
|
||||
pre .status
|
||||
{
|
||||
color: #6644aa;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .ruby .constant,
|
||||
pre .vala .constant,
|
||||
pre .parent,
|
||||
pre .deletion,
|
||||
pre .template_tag,
|
||||
pre .css .keyword,
|
||||
pre .objectivec .class .id,
|
||||
pre .smalltalk .class,
|
||||
pre .lisp .keyword,
|
||||
pre .apache .tag,
|
||||
pre .nginx .variable,
|
||||
pre .envvar,
|
||||
pre .bash .variable,
|
||||
pre .go .built_in,
|
||||
pre .vbscript .built_in,
|
||||
pre .lua .built_in,
|
||||
pre .rsl .built_in,
|
||||
pre .tail,
|
||||
pre .avrasm .label,
|
||||
pre .tex .formula,
|
||||
pre .tex .formula *
|
||||
{
|
||||
color: #bb1166;
|
||||
}
|
||||
|
||||
pre .yardoctag,
|
||||
pre .phpdoc,
|
||||
pre .profile .header,
|
||||
pre .ini .title,
|
||||
pre .apache .tag,
|
||||
pre .parser3 .title
|
||||
{
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata
|
||||
{
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .javascript,
|
||||
pre .css,
|
||||
pre .xml,
|
||||
pre .subst,
|
||||
pre .diff .chunk,
|
||||
pre .css .value,
|
||||
pre .css .attribute,
|
||||
pre .lisp .string,
|
||||
pre .lisp .number,
|
||||
pre .tail .params,
|
||||
pre .container,
|
||||
pre .haskell *,
|
||||
pre .erlang *,
|
||||
pre .erlang_repl *
|
||||
{
|
||||
color: #aaa;
|
||||
}
|
50
res/styles/ascetic.css
Normal file
50
res/styles/ascetic.css
Normal file
@ -0,0 +1,50 @@
|
||||
/*
|
||||
|
||||
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: white; color: black;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .filter .argument,
|
||||
pre .addition,
|
||||
pre .change,
|
||||
pre .apache .tag,
|
||||
pre .apache .cbracket,
|
||||
pre .nginx .built_in,
|
||||
pre .tex .formula {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .shebang,
|
||||
pre .doctype,
|
||||
pre .pi,
|
||||
pre .javadoc,
|
||||
pre .deletion,
|
||||
pre .apache .sqbracket {
|
||||
color: #CCC;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .tag .title,
|
||||
pre .ini .title,
|
||||
pre .lisp .title,
|
||||
pre .clojure .title,
|
||||
pre .http .title,
|
||||
pre .nginx .title,
|
||||
pre .css .tag,
|
||||
pre .winutils,
|
||||
pre .flow,
|
||||
pre .apache .tag,
|
||||
pre .tex .command,
|
||||
pre .request,
|
||||
pre .status {
|
||||
font-weight: bold;
|
||||
}
|
105
res/styles/brown_paper.css
Normal file
105
res/styles/brown_paper.css
Normal file
@ -0,0 +1,105 @@
|
||||
/*
|
||||
|
||||
Brown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background:#b7a68e url(./brown_papersq.png);
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .change,
|
||||
pre .winutils,
|
||||
pre .flow,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in,
|
||||
pre .nginx .title,
|
||||
pre .tex .special,
|
||||
pre .request,
|
||||
pre .status {
|
||||
color:#005599;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst,
|
||||
pre .tag .keyword {
|
||||
color: #363C69;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .title,
|
||||
pre .haskell .type,
|
||||
pre .tag .value,
|
||||
pre .css .rules .value,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .ruby .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .ruby .class .parent,
|
||||
pre .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .django .template_tag,
|
||||
pre .django .variable,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoc,
|
||||
pre .ruby .string,
|
||||
pre .django .filter .argument,
|
||||
pre .smalltalk .localvars,
|
||||
pre .smalltalk .array,
|
||||
pre .attr_selector,
|
||||
pre .pseudo,
|
||||
pre .addition,
|
||||
pre .stream,
|
||||
pre .envvar,
|
||||
pre .apache .tag,
|
||||
pre .apache .cbracket,
|
||||
pre .tex .number {
|
||||
color: #2C009F;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .java .annotation,
|
||||
pre .python .decorator,
|
||||
pre .template_comment,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .deletion,
|
||||
pre .shebang,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in,
|
||||
pre .tex .formula {
|
||||
color: #802022;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .css .id,
|
||||
pre .phpdoc,
|
||||
pre .title,
|
||||
pre .haskell .type,
|
||||
pre .vbscript .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .rsl .built_in,
|
||||
pre .smalltalk .class,
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .winutils,
|
||||
pre .bash .variable,
|
||||
pre .apache .tag,
|
||||
pre .tex .command {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.8;
|
||||
}
|
BIN
res/styles/brown_papersq.png
Normal file
BIN
res/styles/brown_papersq.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
105
res/styles/dark.css
Normal file
105
res/styles/dark.css
Normal file
@ -0,0 +1,105 @@
|
||||
/*
|
||||
|
||||
Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #444;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .change,
|
||||
pre .winutils,
|
||||
pre .flow,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in,
|
||||
pre .nginx .title,
|
||||
pre .tex .special {
|
||||
color: white;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst {
|
||||
color: #DDD;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .title,
|
||||
pre .haskell .type,
|
||||
pre .ini .title,
|
||||
pre .tag .value,
|
||||
pre .css .rules .value,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .ruby .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .ruby .class .parent,
|
||||
pre .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .django .template_tag,
|
||||
pre .django .variable,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoc,
|
||||
pre .ruby .string,
|
||||
pre .django .filter .argument,
|
||||
pre .smalltalk .localvars,
|
||||
pre .smalltalk .array,
|
||||
pre .attr_selector,
|
||||
pre .pseudo,
|
||||
pre .addition,
|
||||
pre .stream,
|
||||
pre .envvar,
|
||||
pre .apache .tag,
|
||||
pre .apache .cbracket,
|
||||
pre .tex .command,
|
||||
pre .prompt,
|
||||
pre .coffeescript .attribute {
|
||||
color: #D88;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .java .annotation,
|
||||
pre .python .decorator,
|
||||
pre .template_comment,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .deletion,
|
||||
pre .shebang,
|
||||
pre .apache .sqbracket,
|
||||
pre .tex .formula {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .title,
|
||||
pre .css .id,
|
||||
pre .phpdoc,
|
||||
pre .haskell .type,
|
||||
pre .vbscript .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .rsl .built_in,
|
||||
pre .smalltalk .class,
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .winutils,
|
||||
pre .bash .variable,
|
||||
pre .apache .tag,
|
||||
pre .tex .special,
|
||||
pre .request,
|
||||
pre .status {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
153
res/styles/default.css
Normal file
153
res/styles/default.css
Normal file
@ -0,0 +1,153 @@
|
||||
/*
|
||||
|
||||
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #F0F0F0;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst,
|
||||
pre .tag .title,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in,
|
||||
pre .nginx .title {
|
||||
color: black;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .title,
|
||||
pre .constant,
|
||||
pre .parent,
|
||||
pre .tag .value,
|
||||
pre .rules .value,
|
||||
pre .rules .value .number,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .haml .symbol,
|
||||
pre .ruby .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .aggregate,
|
||||
pre .template_tag,
|
||||
pre .django .variable,
|
||||
pre .smalltalk .class,
|
||||
pre .addition,
|
||||
pre .flow,
|
||||
pre .stream,
|
||||
pre .bash .variable,
|
||||
pre .apache .tag,
|
||||
pre .apache .cbracket,
|
||||
pre .tex .command,
|
||||
pre .tex .special,
|
||||
pre .erlang_repl .function_or_atom,
|
||||
pre .asciidoc .header,
|
||||
pre .markdown .header,
|
||||
pre .coffeescript .attribute {
|
||||
color: #800;
|
||||
}
|
||||
|
||||
pre .smartquote,
|
||||
pre .comment,
|
||||
pre .annotation,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .asciidoc .blockquote,
|
||||
pre .markdown .blockquote {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .date,
|
||||
pre .regexp,
|
||||
pre .literal,
|
||||
pre .hexcolor,
|
||||
pre .smalltalk .symbol,
|
||||
pre .smalltalk .char,
|
||||
pre .go .constant,
|
||||
pre .change,
|
||||
pre .lasso .variable,
|
||||
pre .makefile .variable,
|
||||
pre .asciidoc .bullet,
|
||||
pre .markdown .bullet,
|
||||
pre .asciidoc .link_url,
|
||||
pre .markdown .link_url {
|
||||
color: #080;
|
||||
}
|
||||
|
||||
pre .label,
|
||||
pre .javadoc,
|
||||
pre .ruby .string,
|
||||
pre .decorator,
|
||||
pre .filter .argument,
|
||||
pre .localvars,
|
||||
pre .array,
|
||||
pre .attr_selector,
|
||||
pre .important,
|
||||
pre .pseudo,
|
||||
pre .pi,
|
||||
pre .haml .bullet,
|
||||
pre .doctype,
|
||||
pre .deletion,
|
||||
pre .envvar,
|
||||
pre .shebang,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in,
|
||||
pre .tex .formula,
|
||||
pre .erlang_repl .reserved,
|
||||
pre .prompt,
|
||||
pre .asciidoc .link_label,
|
||||
pre .markdown .link_label,
|
||||
pre .vhdl .attribute,
|
||||
pre .clojure .attribute,
|
||||
pre .asciidoc .attribute,
|
||||
pre .lasso .attribute,
|
||||
pre .coffeescript .property,
|
||||
pre .makefile .phony {
|
||||
color: #88F
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .id,
|
||||
pre .title,
|
||||
pre .built_in,
|
||||
pre .aggregate,
|
||||
pre .css .tag,
|
||||
pre .javadoctag,
|
||||
pre .phpdoc,
|
||||
pre .yardoctag,
|
||||
pre .smalltalk .class,
|
||||
pre .winutils,
|
||||
pre .bash .variable,
|
||||
pre .apache .tag,
|
||||
pre .go .typename,
|
||||
pre .tex .command,
|
||||
pre .asciidoc .strong,
|
||||
pre .markdown .strong,
|
||||
pre .request,
|
||||
pre .status {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .asciidoc .emphasis,
|
||||
pre .markdown .emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .nginx .built_in {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .lasso .markup,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
132
res/styles/docco.css
Normal file
132
res/styles/docco.css
Normal file
@ -0,0 +1,132 @@
|
||||
/*
|
||||
Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
color: #000;
|
||||
background: #f8f8ff
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .javadoc {
|
||||
color: #408080;
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .assignment,
|
||||
pre .literal,
|
||||
pre .css .rule .keyword,
|
||||
pre .winutils,
|
||||
pre .javascript .title,
|
||||
pre .lisp .title,
|
||||
pre .subst {
|
||||
color: #954121;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .hexcolor {
|
||||
color: #40a070
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula {
|
||||
color: #219161;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .id {
|
||||
color: #19469D;
|
||||
}
|
||||
pre .params {
|
||||
color: #00F;
|
||||
}
|
||||
|
||||
pre .javascript .title,
|
||||
pre .lisp .title,
|
||||
pre .subst {
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
pre .class .title,
|
||||
pre .haskell .label,
|
||||
pre .tex .command {
|
||||
color: #458;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .tag,
|
||||
pre .tag .title,
|
||||
pre .rules .property,
|
||||
pre .django .tag .keyword {
|
||||
color: #000080;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .variable,
|
||||
pre .instancevar,
|
||||
pre .lisp .body {
|
||||
color: #008080
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
color: #B68
|
||||
}
|
||||
|
||||
pre .class {
|
||||
color: #458;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .ruby .symbol .keyword,
|
||||
pre .ruby .symbol .keymethods,
|
||||
pre .lisp .keyword,
|
||||
pre .tex .special,
|
||||
pre .input_number {
|
||||
color: #990073
|
||||
}
|
||||
|
||||
pre .builtin,
|
||||
pre .constructor,
|
||||
pre .built_in,
|
||||
pre .lisp .title {
|
||||
color: #0086b3
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .shebang,
|
||||
pre .cdata {
|
||||
color: #999;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
background: #fdd
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
background: #dfd
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
background: #0086b3
|
||||
}
|
||||
|
||||
pre .chunk {
|
||||
color: #aaa
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
opacity: 0.5;
|
||||
}
|
113
res/styles/far.css
Normal file
113
res/styles/far.css
Normal file
@ -0,0 +1,113 @@
|
||||
/*
|
||||
|
||||
FAR Style (c) MajestiC <majestic2k@gmail.com>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #000080;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst {
|
||||
color: #0FF;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .ruby .string,
|
||||
pre .haskell .type,
|
||||
pre .tag .value,
|
||||
pre .css .rules .value,
|
||||
pre .css .rules .value .number,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .ruby .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .django .template_tag,
|
||||
pre .django .variable,
|
||||
pre .smalltalk .class,
|
||||
pre .addition,
|
||||
pre .apache .tag,
|
||||
pre .apache .cbracket,
|
||||
pre .tex .command,
|
||||
pre .clojure .title,
|
||||
pre .coffeescript .attribute {
|
||||
color: #FF0;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .css .id,
|
||||
pre .title,
|
||||
pre .haskell .type,
|
||||
pre .vbscript .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .rsl .built_in,
|
||||
pre .smalltalk .class,
|
||||
pre .xml .tag .title,
|
||||
pre .winutils,
|
||||
pre .flow,
|
||||
pre .change,
|
||||
pre .envvar,
|
||||
pre .bash .variable,
|
||||
pre .tex .special,
|
||||
pre .clojure .built_in {
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .phpdoc,
|
||||
pre .javadoc,
|
||||
pre .java .annotation,
|
||||
pre .template_comment,
|
||||
pre .deletion,
|
||||
pre .apache .sqbracket,
|
||||
pre .tex .formula {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .date,
|
||||
pre .regexp,
|
||||
pre .literal,
|
||||
pre .smalltalk .symbol,
|
||||
pre .smalltalk .char,
|
||||
pre .clojure .attribute {
|
||||
color: #0F0;
|
||||
}
|
||||
|
||||
pre .python .decorator,
|
||||
pre .django .filter .argument,
|
||||
pre .smalltalk .localvars,
|
||||
pre .smalltalk .array,
|
||||
pre .attr_selector,
|
||||
pre .pseudo,
|
||||
pre .xml .pi,
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .shebang,
|
||||
pre .nginx .built_in,
|
||||
pre .prompt {
|
||||
color: #008080;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .css .id,
|
||||
pre .title,
|
||||
pre .haskell .type,
|
||||
pre .vbscript .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .rsl .built_in,
|
||||
pre .smalltalk .class,
|
||||
pre .winutils,
|
||||
pre .flow,
|
||||
pre .apache .tag,
|
||||
pre .nginx .built_in,
|
||||
pre .tex .command,
|
||||
pre .tex .special,
|
||||
pre .request,
|
||||
pre .status {
|
||||
font-weight: bold;
|
||||
}
|
133
res/styles/foundation.css
vendored
Normal file
133
res/styles/foundation.css
vendored
Normal file
@ -0,0 +1,133 @@
|
||||
/*
|
||||
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
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
pre .header,
|
||||
pre .decorator,
|
||||
pre .annotation {
|
||||
color: #000077;
|
||||
}
|
||||
|
||||
pre .horizontal_rule,
|
||||
pre .link_url,
|
||||
pre .emphasis,
|
||||
pre .attribute {
|
||||
color: #070;
|
||||
}
|
||||
|
||||
pre .emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .link_label,
|
||||
pre .strong,
|
||||
pre .value,
|
||||
pre .string,
|
||||
pre .scss .value .string {
|
||||
color: #d14;
|
||||
}
|
||||
|
||||
pre .strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .blockquote,
|
||||
pre .comment {
|
||||
color: #998;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .asciidoc .title,
|
||||
pre .function .title {
|
||||
color: #900;
|
||||
}
|
||||
|
||||
pre .class {
|
||||
color: #458;
|
||||
}
|
||||
|
||||
pre .id,
|
||||
pre .pseudo,
|
||||
pre .constant,
|
||||
pre .hexcolor {
|
||||
color: teal;
|
||||
}
|
||||
|
||||
pre .variable {
|
||||
color: #336699;
|
||||
}
|
||||
|
||||
pre .bullet,
|
||||
pre .javadoc {
|
||||
color: #997700;
|
||||
}
|
||||
|
||||
pre .pi,
|
||||
pre .doctype {
|
||||
color: #3344bb;
|
||||
}
|
||||
|
||||
pre .code,
|
||||
pre .number {
|
||||
color: #099;
|
||||
}
|
||||
|
||||
pre .important {
|
||||
color: #f00;
|
||||
}
|
||||
|
||||
pre .smartquote,
|
||||
pre .label {
|
||||
color: #970;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .pragma {
|
||||
color: #579;
|
||||
}
|
||||
|
||||
pre .reserved,
|
||||
pre .keyword,
|
||||
pre .scss .value {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
background-color: #fff0ff;
|
||||
color: #880088;
|
||||
}
|
||||
|
||||
pre .symbol {
|
||||
color: #990073;
|
||||
}
|
||||
|
||||
pre .symbol .string {
|
||||
color: #a60;
|
||||
}
|
||||
|
||||
pre .tag {
|
||||
color: #007700;
|
||||
}
|
||||
|
||||
pre .at_rule,
|
||||
pre .at_rule .keyword {
|
||||
color: #088;
|
||||
}
|
||||
|
||||
pre .at_rule .preprocessor {
|
||||
color: #808;
|
||||
}
|
||||
|
||||
pre .scss .tag,
|
||||
pre .scss .attribute {
|
||||
color: #339;
|
||||
}
|
130
res/styles/github.css
Normal file
130
res/styles/github.css
Normal file
@ -0,0 +1,130 @@
|
||||
/*
|
||||
|
||||
github.com style (c) Vasily Polovnyov <vast@whiteants.net>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
color: #333;
|
||||
background: #f8f8ff
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .javadoc {
|
||||
color: #998;
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .css .rule .keyword,
|
||||
pre .winutils,
|
||||
pre .javascript .title,
|
||||
pre .nginx .title,
|
||||
pre .subst,
|
||||
pre .request,
|
||||
pre .status {
|
||||
color: #333;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .hexcolor,
|
||||
pre .ruby .constant {
|
||||
color: #099;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula {
|
||||
color: #d14
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .id,
|
||||
pre .coffeescript .params,
|
||||
pre .scss .preprocessor {
|
||||
color: #900;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .javascript .title,
|
||||
pre .lisp .title,
|
||||
pre .clojure .title,
|
||||
pre .subst {
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
pre .class .title,
|
||||
pre .haskell .type,
|
||||
pre .vhdl .literal,
|
||||
pre .tex .command {
|
||||
color: #458;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .tag,
|
||||
pre .tag .title,
|
||||
pre .rules .property,
|
||||
pre .django .tag .keyword {
|
||||
color: #000080;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .variable,
|
||||
pre .lisp .body {
|
||||
color: #008080
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
color: #009926
|
||||
}
|
||||
|
||||
pre .class {
|
||||
color: #458;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .lisp .keyword,
|
||||
pre .tex .special,
|
||||
pre .prompt {
|
||||
color: #990073
|
||||
}
|
||||
|
||||
pre .built_in,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in {
|
||||
color: #0086b3
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .shebang,
|
||||
pre .cdata {
|
||||
color: #999;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
background: #fdd
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
background: #dfd
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
background: #0086b3
|
||||
}
|
||||
|
||||
pre .chunk {
|
||||
color: #aaa
|
||||
}
|
146
res/styles/googlecode.css
Normal file
146
res/styles/googlecode.css
Normal file
@ -0,0 +1,146 @@
|
||||
/*
|
||||
|
||||
Google Code style (c) Aahan Krish <geekpanth3r@gmail.com>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: white; color: black;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc,
|
||||
pre .comment * {
|
||||
color: #800;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .method,
|
||||
pre .list .title,
|
||||
pre .clojure .built_in,
|
||||
pre .nginx .title,
|
||||
pre .tag .title,
|
||||
pre .setting .value,
|
||||
pre .winutils,
|
||||
pre .tex .command,
|
||||
pre .http .title,
|
||||
pre .request,
|
||||
pre .status {
|
||||
color: #008;
|
||||
}
|
||||
|
||||
pre .envvar,
|
||||
pre .tex .special {
|
||||
color: #660;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .cdata,
|
||||
pre .filter .argument,
|
||||
pre .attr_selector,
|
||||
pre .apache .cbracket,
|
||||
pre .date,
|
||||
pre .regexp,
|
||||
pre .coffeescript .attribute {
|
||||
color: #080;
|
||||
}
|
||||
|
||||
pre .sub .identifier,
|
||||
pre .pi,
|
||||
pre .tag,
|
||||
pre .tag .keyword,
|
||||
pre .decorator,
|
||||
pre .ini .title,
|
||||
pre .shebang,
|
||||
pre .prompt,
|
||||
pre .hexcolor,
|
||||
pre .rules .value,
|
||||
pre .css .value .number,
|
||||
pre .literal,
|
||||
pre .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .number,
|
||||
pre .css .function,
|
||||
pre .clojure .attribute {
|
||||
color: #066;
|
||||
}
|
||||
|
||||
pre .class .title,
|
||||
pre .haskell .type,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoctag,
|
||||
pre .yardoctag,
|
||||
pre .phpdoc,
|
||||
pre .typename,
|
||||
pre .tag .attribute,
|
||||
pre .doctype,
|
||||
pre .class .id,
|
||||
pre .built_in,
|
||||
pre .setting,
|
||||
pre .params,
|
||||
pre .variable,
|
||||
pre .clojure .title {
|
||||
color: #606;
|
||||
}
|
||||
|
||||
pre .css .tag,
|
||||
pre .rules .property,
|
||||
pre .pseudo,
|
||||
pre .subst {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
pre .css .class, pre .css .id {
|
||||
color: #9B703F;
|
||||
}
|
||||
|
||||
pre .value .important {
|
||||
color: #ff7700;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .rules .keyword {
|
||||
color: #C5AF75;
|
||||
}
|
||||
|
||||
pre .annotation,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in {
|
||||
color: #9B859D;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .preprocessor *,
|
||||
pre .pragma {
|
||||
color: #444;
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
background-color: #EEE;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .diff .header,
|
||||
pre .chunk {
|
||||
color: #808080;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
background-color: #BCCFF9;
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
background-color: #BAEEBA;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
background-color: #FFC8BD;
|
||||
}
|
||||
|
||||
pre .comment .yardoctag {
|
||||
font-weight: bold;
|
||||
}
|
122
res/styles/idea.css
Normal file
122
res/styles/idea.css
Normal file
@ -0,0 +1,122 @@
|
||||
/*
|
||||
|
||||
Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
color: #000;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
pre .subst,
|
||||
pre .title {
|
||||
font-weight: normal;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc,
|
||||
pre .diff .header {
|
||||
color: #808080;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .annotation,
|
||||
pre .decorator,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .doctype,
|
||||
pre .pi,
|
||||
pre .chunk,
|
||||
pre .shebang,
|
||||
pre .apache .cbracket,
|
||||
pre .prompt,
|
||||
pre .http .title {
|
||||
color: #808000;
|
||||
}
|
||||
|
||||
pre .tag,
|
||||
pre .pi {
|
||||
background: #efefef;
|
||||
}
|
||||
|
||||
pre .tag .title,
|
||||
pre .id,
|
||||
pre .attr_selector,
|
||||
pre .pseudo,
|
||||
pre .literal,
|
||||
pre .keyword,
|
||||
pre .hexcolor,
|
||||
pre .css .function,
|
||||
pre .ini .title,
|
||||
pre .css .class,
|
||||
pre .list .title,
|
||||
pre .clojure .title,
|
||||
pre .nginx .title,
|
||||
pre .tex .command,
|
||||
pre .request,
|
||||
pre .status {
|
||||
font-weight: bold;
|
||||
color: #000080;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .rules .keyword,
|
||||
pre .number,
|
||||
pre .date,
|
||||
pre .regexp,
|
||||
pre .tex .special {
|
||||
font-weight: bold;
|
||||
color: #0000ff;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .regexp {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .value,
|
||||
pre .filter .argument,
|
||||
pre .css .function .params,
|
||||
pre .apache .tag {
|
||||
color: #008000;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .char,
|
||||
pre .tex .formula {
|
||||
color: #000;
|
||||
background: #d0eded;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .phpdoc,
|
||||
pre .yardoctag,
|
||||
pre .javadoctag {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
pre .variable,
|
||||
pre .envvar,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in {
|
||||
color: #660e7a;
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
background: #baeeba;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
background: #ffc8bd;
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
background: #bccff9;
|
||||
}
|
105
res/styles/ir_black.css
Normal file
105
res/styles/ir_black.css
Normal file
@ -0,0 +1,105 @@
|
||||
/*
|
||||
IR_Black style (c) Vasily Mikhailitchenko <vaskas@programica.ru>
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #000; color: #f8f8f8;
|
||||
}
|
||||
|
||||
pre .shebang,
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc {
|
||||
color: #7c7c7c;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .tag,
|
||||
pre .tex .command,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .clojure .attribute {
|
||||
color: #96CBFE;
|
||||
}
|
||||
|
||||
pre .sub .keyword,
|
||||
pre .method,
|
||||
pre .list .title,
|
||||
pre .nginx .title {
|
||||
color: #FFFFB6;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .cdata,
|
||||
pre .filter .argument,
|
||||
pre .attr_selector,
|
||||
pre .apache .cbracket,
|
||||
pre .date,
|
||||
pre .coffeescript .attribute {
|
||||
color: #A8FF60;
|
||||
}
|
||||
|
||||
pre .subst {
|
||||
color: #DAEFA3;
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
color: #E9C062;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .sub .identifier,
|
||||
pre .pi,
|
||||
pre .decorator,
|
||||
pre .tex .special,
|
||||
pre .haskell .type,
|
||||
pre .constant,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoctag,
|
||||
pre .yardoctag,
|
||||
pre .phpdoc,
|
||||
pre .nginx .built_in {
|
||||
color: #FFFFB6;
|
||||
}
|
||||
|
||||
pre .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .number,
|
||||
pre .variable,
|
||||
pre .vbscript,
|
||||
pre .literal {
|
||||
color: #C6C5FE;
|
||||
}
|
||||
|
||||
pre .css .tag {
|
||||
color: #96CBFE;
|
||||
}
|
||||
|
||||
pre .css .rules .property,
|
||||
pre .css .id {
|
||||
color: #FFFFB6;
|
||||
}
|
||||
|
||||
pre .css .class {
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
pre .hexcolor {
|
||||
color: #C6C5FE;
|
||||
}
|
||||
|
||||
pre .number {
|
||||
color:#FF73FD;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.7;
|
||||
}
|
123
res/styles/magula.css
Normal file
123
res/styles/magula.css
Normal file
@ -0,0 +1,123 @@
|
||||
/*
|
||||
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
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in {
|
||||
color: black;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .title,
|
||||
pre .parent,
|
||||
pre .tag .value,
|
||||
pre .rules .value,
|
||||
pre .rules .value .number,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .ruby .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .aggregate,
|
||||
pre .template_tag,
|
||||
pre .django .variable,
|
||||
pre .smalltalk .class,
|
||||
pre .addition,
|
||||
pre .flow,
|
||||
pre .stream,
|
||||
pre .bash .variable,
|
||||
pre .apache .cbracket,
|
||||
pre .coffeescript .attribute {
|
||||
color: #050;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .annotation,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .chunk {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .date,
|
||||
pre .regexp,
|
||||
pre .literal,
|
||||
pre .smalltalk .symbol,
|
||||
pre .smalltalk .char,
|
||||
pre .change,
|
||||
pre .tex .special {
|
||||
color: #800;
|
||||
}
|
||||
|
||||
pre .label,
|
||||
pre .javadoc,
|
||||
pre .ruby .string,
|
||||
pre .decorator,
|
||||
pre .filter .argument,
|
||||
pre .localvars,
|
||||
pre .array,
|
||||
pre .attr_selector,
|
||||
pre .pseudo,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .deletion,
|
||||
pre .envvar,
|
||||
pre .shebang,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in,
|
||||
pre .tex .formula,
|
||||
pre .prompt,
|
||||
pre .clojure .attribute {
|
||||
color: #00e;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .id,
|
||||
pre .phpdoc,
|
||||
pre .title,
|
||||
pre .built_in,
|
||||
pre .aggregate,
|
||||
pre .smalltalk .class,
|
||||
pre .winutils,
|
||||
pre .bash .variable,
|
||||
pre .apache .tag,
|
||||
pre .xml .tag,
|
||||
pre .tex .command,
|
||||
pre .request,
|
||||
pre .status {
|
||||
font-weight: bold;
|
||||
color: navy;
|
||||
}
|
||||
|
||||
pre .nginx .built_in {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* --- */
|
||||
pre .apache .tag {
|
||||
font-weight: bold;
|
||||
color: blue;
|
||||
}
|
||||
|
62
res/styles/mono-blue.css
Normal file
62
res/styles/mono-blue.css
Normal file
@ -0,0 +1,62 @@
|
||||
/*
|
||||
Five-color theme from a single blue hue.
|
||||
*/
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #EAEEF3; color: #00193A;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .title,
|
||||
pre .important,
|
||||
pre .request,
|
||||
pre .header,
|
||||
pre .javadoctag {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .chunk,
|
||||
pre .template_comment {
|
||||
color: #738191;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .title,
|
||||
pre .parent,
|
||||
pre .built_in,
|
||||
pre .literal,
|
||||
pre .filename,
|
||||
pre .value,
|
||||
pre .addition,
|
||||
pre .tag,
|
||||
pre .argument,
|
||||
pre .link_label,
|
||||
pre .blockquote,
|
||||
pre .header {
|
||||
color: #0048AB;
|
||||
}
|
||||
|
||||
pre .decorator,
|
||||
pre .prompt,
|
||||
pre .yardoctag,
|
||||
pre .subst,
|
||||
pre .symbol,
|
||||
pre .doctype,
|
||||
pre .regexp,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .pi,
|
||||
pre .attribute,
|
||||
pre .attr_selector,
|
||||
pre .javadoc,
|
||||
pre .xmlDocTag,
|
||||
pre .deletion,
|
||||
pre .shebang,
|
||||
pre .string .variable,
|
||||
pre .link_url,
|
||||
pre .bullet,
|
||||
pre .sqbracket,
|
||||
pre .phony {
|
||||
color: #4C81C9;
|
||||
}
|
127
res/styles/monokai.css
Normal file
127
res/styles/monokai.css
Normal file
@ -0,0 +1,127 @@
|
||||
/*
|
||||
Monokai style - ported by Luigi Maselli - http://grigio.org
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #272822;
|
||||
}
|
||||
|
||||
pre .tag,
|
||||
pre .tag .title,
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .strong,
|
||||
pre .change,
|
||||
pre .winutils,
|
||||
pre .flow,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in,
|
||||
pre .nginx .title,
|
||||
pre .tex .special {
|
||||
color: #F92672;
|
||||
}
|
||||
|
||||
pre code {
|
||||
color: #DDD;
|
||||
}
|
||||
|
||||
pre code .constant,
|
||||
pre .asciidoc .code {
|
||||
color: #66D9EF;
|
||||
}
|
||||
|
||||
pre .code,
|
||||
pre .class .title,
|
||||
pre .header {
|
||||
color: white;
|
||||
}
|
||||
|
||||
pre .link_label,
|
||||
pre .attribute,
|
||||
pre .symbol,
|
||||
pre .symbol .string,
|
||||
pre .value,
|
||||
pre .regexp {
|
||||
color: #BF79DB;
|
||||
}
|
||||
|
||||
pre .link_url,
|
||||
pre .tag .value,
|
||||
pre .string,
|
||||
pre .bullet,
|
||||
pre .subst,
|
||||
pre .title,
|
||||
pre .emphasis,
|
||||
pre .haskell .type,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .ruby .class .parent,
|
||||
pre .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .django .template_tag,
|
||||
pre .django .variable,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoc,
|
||||
pre .django .filter .argument,
|
||||
pre .smalltalk .localvars,
|
||||
pre .smalltalk .array,
|
||||
pre .attr_selector,
|
||||
pre .pseudo,
|
||||
pre .addition,
|
||||
pre .stream,
|
||||
pre .envvar,
|
||||
pre .apache .tag,
|
||||
pre .apache .cbracket,
|
||||
pre .tex .command,
|
||||
pre .prompt {
|
||||
color: #A6E22E;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .java .annotation,
|
||||
pre .smartquote,
|
||||
pre .blockquote,
|
||||
pre .horizontal_rule,
|
||||
pre .python .decorator,
|
||||
pre .template_comment,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .deletion,
|
||||
pre .shebang,
|
||||
pre .apache .sqbracket,
|
||||
pre .tex .formula {
|
||||
color: #75715E;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .css .id,
|
||||
pre .phpdoc,
|
||||
pre .title,
|
||||
pre .header,
|
||||
pre .haskell .type,
|
||||
pre .vbscript .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .rsl .built_in,
|
||||
pre .smalltalk .class,
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .winutils,
|
||||
pre .bash .variable,
|
||||
pre .apache .tag,
|
||||
pre .tex .special,
|
||||
pre .request,
|
||||
pre .status {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
102
res/styles/monokai_sublime.css
Normal file
102
res/styles/monokai_sublime.css
Normal file
@ -0,0 +1,102 @@
|
||||
/*
|
||||
|
||||
Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block;
|
||||
padding: 0.5em;
|
||||
background: #23241f;
|
||||
}
|
||||
pre .tag,
|
||||
pre code {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
pre .keyword,
|
||||
pre .function,
|
||||
pre .literal,
|
||||
pre .change,
|
||||
pre .winutils,
|
||||
pre .flow,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in,
|
||||
pre .nginx .title,
|
||||
pre .tex .special {
|
||||
color: #66d9ef;
|
||||
}
|
||||
pre .variable,
|
||||
pre .params {
|
||||
color: #fd9720;
|
||||
}
|
||||
pre .constant {
|
||||
color: #66d9ef;
|
||||
}
|
||||
pre .title,
|
||||
pre .class .title,
|
||||
pre .css .class {
|
||||
color: #a6e22e;
|
||||
}
|
||||
pre .attribute,
|
||||
pre .symbol,
|
||||
pre .symbol .string,
|
||||
pre .tag .title,
|
||||
pre .value,
|
||||
pre .css .tag {
|
||||
color: #f92672;
|
||||
}
|
||||
pre .number,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .regexp {
|
||||
color: #ae81ff;
|
||||
}
|
||||
pre .tag .value,
|
||||
pre .string,
|
||||
pre .css .id,
|
||||
pre .subst,
|
||||
pre .haskell .type,
|
||||
pre .ruby .class .parent,
|
||||
pre .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .django .template_tag,
|
||||
pre .django .variable,
|
||||
pre .smalltalk .class,
|
||||
pre .django .filter .argument,
|
||||
pre .smalltalk .localvars,
|
||||
pre .smalltalk .array,
|
||||
pre .attr_selector,
|
||||
pre .pseudo,
|
||||
pre .addition,
|
||||
pre .stream,
|
||||
pre .envvar,
|
||||
pre .apache .tag,
|
||||
pre .apache .cbracket,
|
||||
pre .tex .command,
|
||||
pre .prompt {
|
||||
color: #e6db74;
|
||||
}
|
||||
pre .comment,
|
||||
pre .javadoc,
|
||||
pre .java .annotation,
|
||||
pre .python .decorator,
|
||||
pre .template_comment,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .deletion,
|
||||
pre .shebang,
|
||||
pre .apache .sqbracket,
|
||||
pre .tex .formula {
|
||||
color: #75715e;
|
||||
}
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula {
|
||||
opacity: 0.5;
|
||||
}
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
154
res/styles/obsidian.css
Normal file
154
res/styles/obsidian.css
Normal file
@ -0,0 +1,154 @@
|
||||
/**
|
||||
* Obsidian style
|
||||
* ported by Alexander Marenin (http://github.com/ioncreature)
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #282B2E;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .change,
|
||||
pre .winutils,
|
||||
pre .flow,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in,
|
||||
pre .nginx .title,
|
||||
pre .css .id,
|
||||
pre .tex .special {
|
||||
color: #93C763;
|
||||
}
|
||||
|
||||
pre .number {
|
||||
color: #FFCD22;
|
||||
}
|
||||
|
||||
pre code {
|
||||
color: #E0E2E4;
|
||||
}
|
||||
|
||||
pre .css .tag,
|
||||
pre .css .pseudo {
|
||||
color: #D0D2B5;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre code .constant {
|
||||
color: #668BB0;
|
||||
}
|
||||
|
||||
pre .xml .attribute {
|
||||
color: #B3B689;
|
||||
}
|
||||
|
||||
pre .xml .tag .value {
|
||||
color: #E8E2B7;
|
||||
}
|
||||
|
||||
pre .code,
|
||||
pre .class .title,
|
||||
pre .header {
|
||||
color: white;
|
||||
}
|
||||
|
||||
pre .class,
|
||||
pre .hexcolor {
|
||||
color: #93C763;
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
color: #D39745;
|
||||
}
|
||||
|
||||
pre .at_rule,
|
||||
pre .at_rule .keyword {
|
||||
color: #A082BD;
|
||||
}
|
||||
|
||||
pre .doctype {
|
||||
color: #557182;
|
||||
}
|
||||
|
||||
pre .link_url,
|
||||
pre .tag,
|
||||
pre .tag .title,
|
||||
pre .bullet,
|
||||
pre .subst,
|
||||
pre .emphasis,
|
||||
pre .haskell .type,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .ruby .class .parent,
|
||||
pre .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .django .template_tag,
|
||||
pre .django .variable,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoc,
|
||||
pre .django .filter .argument,
|
||||
pre .smalltalk .localvars,
|
||||
pre .smalltalk .array,
|
||||
pre .attr_selector,
|
||||
pre .pseudo,
|
||||
pre .addition,
|
||||
pre .stream,
|
||||
pre .envvar,
|
||||
pre .apache .tag,
|
||||
pre .apache .cbracket,
|
||||
pre .tex .command,
|
||||
pre .prompt {
|
||||
color: #8CBBAD;
|
||||
}
|
||||
|
||||
pre .string {
|
||||
color: #EC7600;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .java .annotation,
|
||||
pre .blockquote,
|
||||
pre .horizontal_rule,
|
||||
pre .python .decorator,
|
||||
pre .template_comment,
|
||||
pre .pi,
|
||||
pre .deletion,
|
||||
pre .shebang,
|
||||
pre .apache .sqbracket,
|
||||
pre .tex .formula {
|
||||
color: #818E96;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .css .id,
|
||||
pre .phpdoc,
|
||||
pre .title,
|
||||
pre .header,
|
||||
pre .haskell .type,
|
||||
pre .vbscript .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .rsl .built_in,
|
||||
pre .smalltalk .class,
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .winutils,
|
||||
pre .bash .variable,
|
||||
pre .apache .tag,
|
||||
pre .tex .special,
|
||||
pre .request,
|
||||
pre .at_rule .keyword,
|
||||
pre .status {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
105
res/styles/pojoaque.css
Normal file
105
res/styles/pojoaque.css
Normal file
@ -0,0 +1,105 @@
|
||||
/*
|
||||
|
||||
Pojoaque Style by Jason Tate
|
||||
http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
|
||||
Based on Solarized Style from http://ethanschoonover.com/solarized
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
color: #DCCF8F;
|
||||
background: url(./pojoaque.jpg) repeat scroll left top #181914;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .doctype,
|
||||
pre .lisp .string,
|
||||
pre .javadoc {
|
||||
color: #586e75;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .css .rule .keyword,
|
||||
pre .winutils,
|
||||
pre .javascript .title,
|
||||
pre .method,
|
||||
pre .addition,
|
||||
pre .css .tag,
|
||||
pre .clojure .title,
|
||||
pre .nginx .title {
|
||||
color: #B64926;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .command,
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula,
|
||||
pre .regexp,
|
||||
pre .hexcolor {
|
||||
color: #468966;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .localvars,
|
||||
pre .function .title,
|
||||
pre .chunk,
|
||||
pre .decorator,
|
||||
pre .built_in,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in,
|
||||
pre .identifier,
|
||||
pre .id {
|
||||
color: #FFB03B;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .variable,
|
||||
pre .lisp .body,
|
||||
pre .smalltalk .number,
|
||||
pre .constant,
|
||||
pre .class .title,
|
||||
pre .parent,
|
||||
pre .haskell .type {
|
||||
color: #b58900;
|
||||
}
|
||||
|
||||
pre .css .attribute {
|
||||
color: #b89859;
|
||||
}
|
||||
|
||||
pre .css .number,pre .css .hexcolor{
|
||||
color: #DCCF8F;
|
||||
}
|
||||
|
||||
pre .css .class {
|
||||
color: #d3a60c;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .pi,
|
||||
pre .shebang,
|
||||
pre .symbol,
|
||||
pre .symbol .string,
|
||||
pre .diff .change,
|
||||
pre .special,
|
||||
pre .attr_selector,
|
||||
pre .important,
|
||||
pre .subst,
|
||||
pre .cdata {
|
||||
color: #cb4b16;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
color: #dc322f;
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
background: #073642;
|
||||
}
|
BIN
res/styles/pojoaque.jpg
Normal file
BIN
res/styles/pojoaque.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
182
res/styles/railscasts.css
Normal file
182
res/styles/railscasts.css
Normal file
@ -0,0 +1,182 @@
|
||||
/*
|
||||
|
||||
Railscasts-like style (c) Visoft, Inc. (Damien White)
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block;
|
||||
padding: 0.5em;
|
||||
background: #232323;
|
||||
color: #E6E1DC;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc,
|
||||
pre .shebang {
|
||||
color: #BC9458;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .ruby .function .keyword,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .nginx .title,
|
||||
pre .method,
|
||||
pre .list .title {
|
||||
color: #C26230;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .number,
|
||||
pre .regexp,
|
||||
pre .tag .value,
|
||||
pre .cdata,
|
||||
pre .filter .argument,
|
||||
pre .attr_selector,
|
||||
pre .apache .cbracket,
|
||||
pre .date,
|
||||
pre .tex .command,
|
||||
pre .markdown .link_label {
|
||||
color: #A5C261;
|
||||
}
|
||||
|
||||
pre .subst {
|
||||
color: #519F50;
|
||||
}
|
||||
|
||||
pre .tag,
|
||||
pre .tag .keyword,
|
||||
pre .tag .title,
|
||||
pre .doctype,
|
||||
pre .sub .identifier,
|
||||
pre .pi,
|
||||
pre .input_number {
|
||||
color: #E8BF6A;
|
||||
}
|
||||
|
||||
pre .identifier {
|
||||
color: #D0D0FF;
|
||||
}
|
||||
|
||||
pre .class .title,
|
||||
pre .haskell .type,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoctag,
|
||||
pre .yardoctag,
|
||||
pre .phpdoc {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
pre .constant {
|
||||
color: #DA4939;
|
||||
}
|
||||
|
||||
|
||||
pre .symbol,
|
||||
pre .built_in,
|
||||
pre .ruby .symbol .string,
|
||||
pre .ruby .symbol .identifier,
|
||||
pre .markdown .link_url,
|
||||
pre .attribute {
|
||||
color: #6D9CBE;
|
||||
}
|
||||
|
||||
pre .markdown .link_url {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
|
||||
pre .params,
|
||||
pre .variable,
|
||||
pre .clojure .attribute {
|
||||
color: #D0D0FF;
|
||||
}
|
||||
|
||||
pre .css .tag,
|
||||
pre .rules .property,
|
||||
pre .pseudo,
|
||||
pre .tex .special {
|
||||
color: #CDA869;
|
||||
}
|
||||
|
||||
pre .css .class {
|
||||
color: #9B703F;
|
||||
}
|
||||
|
||||
pre .rules .keyword {
|
||||
color: #C5AF75;
|
||||
}
|
||||
|
||||
pre .rules .value {
|
||||
color: #CF6A4C;
|
||||
}
|
||||
|
||||
pre .css .id {
|
||||
color: #8B98AB;
|
||||
}
|
||||
|
||||
pre .annotation,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in {
|
||||
color: #9B859D;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .preprocessor *
|
||||
pre .pragma {
|
||||
color: #8996A8 !important;
|
||||
}
|
||||
|
||||
pre .hexcolor,
|
||||
pre .css .value .number {
|
||||
color: #A5C261;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .decorator,
|
||||
pre .css .function {
|
||||
color: #FFC66D;
|
||||
}
|
||||
|
||||
pre .diff .header,
|
||||
pre .chunk {
|
||||
background-color: #2F33AB;
|
||||
color: #E6E1DC;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
background-color: #4A410D;
|
||||
color: #F8F8F8;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
background-color: #144212;
|
||||
color: #E6E1DC;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
background-color: #600;
|
||||
color: #E6E1DC;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.7;
|
||||
}
|
115
res/styles/rainbow.css
Normal file
115
res/styles/rainbow.css
Normal file
@ -0,0 +1,115 @@
|
||||
/*
|
||||
|
||||
Style with support for rainbow parens
|
||||
|
||||
*/
|
||||
|
||||
pre ::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
|
||||
pre ::selection { background:#FF5E99; color:#fff; text-shadow: none; }
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #474949; color: #D1D9E1;
|
||||
}
|
||||
|
||||
|
||||
pre .body,
|
||||
pre .collection {
|
||||
color: #D1D9E1;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .doctype,
|
||||
pre .lisp .string,
|
||||
pre .javadoc {
|
||||
color: #969896;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .clojure .attribute,
|
||||
pre .winutils,
|
||||
pre .javascript .title,
|
||||
pre .addition,
|
||||
pre .css .tag {
|
||||
color: #cc99cc;
|
||||
}
|
||||
|
||||
pre .number { color: #f99157; }
|
||||
|
||||
pre .command,
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula,
|
||||
pre .regexp,
|
||||
pre .hexcolor {
|
||||
color: #8abeb7;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .localvars,
|
||||
pre .function .title,
|
||||
pre .chunk,
|
||||
pre .decorator,
|
||||
pre .built_in,
|
||||
pre .lisp .title,
|
||||
pre .identifier
|
||||
{
|
||||
color: #b5bd68;
|
||||
}
|
||||
|
||||
pre .class .keyword
|
||||
{
|
||||
color: #f2777a;
|
||||
}
|
||||
|
||||
pre .variable,
|
||||
pre .lisp .body,
|
||||
pre .smalltalk .number,
|
||||
pre .constant,
|
||||
pre .class .title,
|
||||
pre .parent,
|
||||
pre .haskell .label,
|
||||
pre .id,
|
||||
pre .lisp .title,
|
||||
pre .clojure .title .built_in {
|
||||
color: #ffcc66;
|
||||
}
|
||||
|
||||
pre .tag .title,
|
||||
pre .rules .property,
|
||||
pre .django .tag .keyword,
|
||||
pre .clojure .title .built_in {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .clojure .title {
|
||||
color: #81a2be;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .pi,
|
||||
pre .shebang,
|
||||
pre .symbol,
|
||||
pre .symbol .string,
|
||||
pre .diff .change,
|
||||
pre .special,
|
||||
pre .attr_selector,
|
||||
pre .important,
|
||||
pre .subst,
|
||||
pre .cdata {
|
||||
color: #f99157;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
color: #dc322f;
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
background: #eee8d5;
|
||||
}
|
113
res/styles/school_book.css
Normal file
113
res/styles/school_book.css
Normal file
@ -0,0 +1,113 @@
|
||||
/*
|
||||
|
||||
School Book style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 15px 0.5em 0.5em 30px;
|
||||
font-size: 11px !important;
|
||||
line-height:16px !important;
|
||||
}
|
||||
|
||||
pre{
|
||||
background:#f6f6ae url(./school_book.png);
|
||||
border-top: solid 2px #d2e8b9;
|
||||
border-bottom: solid 1px #d2e8b9;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .change,
|
||||
pre .winutils,
|
||||
pre .flow,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in,
|
||||
pre .nginx .title,
|
||||
pre .tex .special {
|
||||
color:#005599;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst,
|
||||
pre .tag .keyword {
|
||||
color: #3E5915;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .title,
|
||||
pre .haskell .type,
|
||||
pre .tag .value,
|
||||
pre .css .rules .value,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .ruby .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .ruby .class .parent,
|
||||
pre .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .django .template_tag,
|
||||
pre .django .variable,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoc,
|
||||
pre .ruby .string,
|
||||
pre .django .filter .argument,
|
||||
pre .smalltalk .localvars,
|
||||
pre .smalltalk .array,
|
||||
pre .attr_selector,
|
||||
pre .pseudo,
|
||||
pre .addition,
|
||||
pre .stream,
|
||||
pre .envvar,
|
||||
pre .apache .tag,
|
||||
pre .apache .cbracket,
|
||||
pre .nginx .built_in,
|
||||
pre .tex .command,
|
||||
pre .coffeescript .attribute {
|
||||
color: #2C009F;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .java .annotation,
|
||||
pre .python .decorator,
|
||||
pre .template_comment,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .deletion,
|
||||
pre .shebang,
|
||||
pre .apache .sqbracket {
|
||||
color: #E60415;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .css .id,
|
||||
pre .phpdoc,
|
||||
pre .title,
|
||||
pre .haskell .type,
|
||||
pre .vbscript .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .rsl .built_in,
|
||||
pre .smalltalk .class,
|
||||
pre .xml .tag .title,
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .winutils,
|
||||
pre .bash .variable,
|
||||
pre .apache .tag,
|
||||
pre .tex .command,
|
||||
pre .request,
|
||||
pre .status {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
BIN
res/styles/school_book.png
Normal file
BIN
res/styles/school_book.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 486 B |
92
res/styles/solarized_dark.css
Normal file
92
res/styles/solarized_dark.css
Normal file
@ -0,0 +1,92 @@
|
||||
/*
|
||||
|
||||
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #002b36; color: #839496;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .doctype,
|
||||
pre .pi,
|
||||
pre .lisp .string,
|
||||
pre .javadoc {
|
||||
color: #586e75;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .winutils,
|
||||
pre .method,
|
||||
pre .addition,
|
||||
pre .css .tag,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .nginx .title {
|
||||
color: #859900;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .command,
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .rules .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula,
|
||||
pre .regexp,
|
||||
pre .hexcolor {
|
||||
color: #2aa198;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .localvars,
|
||||
pre .chunk,
|
||||
pre .decorator,
|
||||
pre .built_in,
|
||||
pre .identifier,
|
||||
pre .vhdl .literal,
|
||||
pre .id,
|
||||
pre .css .function {
|
||||
color: #268bd2;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .variable,
|
||||
pre .lisp .body,
|
||||
pre .smalltalk .number,
|
||||
pre .constant,
|
||||
pre .class .title,
|
||||
pre .parent,
|
||||
pre .haskell .type {
|
||||
color: #b58900;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .preprocessor .keyword,
|
||||
pre .pragma,
|
||||
pre .shebang,
|
||||
pre .symbol,
|
||||
pre .symbol .string,
|
||||
pre .diff .change,
|
||||
pre .special,
|
||||
pre .attr_selector,
|
||||
pre .important,
|
||||
pre .subst,
|
||||
pre .cdata,
|
||||
pre .clojure .title,
|
||||
pre .css .pseudo {
|
||||
color: #cb4b16;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
color: #dc322f;
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
background: #073642;
|
||||
}
|
92
res/styles/solarized_light.css
Normal file
92
res/styles/solarized_light.css
Normal file
@ -0,0 +1,92 @@
|
||||
/*
|
||||
|
||||
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #fdf6e3; color: #657b83;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .doctype,
|
||||
pre .pi,
|
||||
pre .lisp .string,
|
||||
pre .javadoc {
|
||||
color: #93a1a1;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .winutils,
|
||||
pre .method,
|
||||
pre .addition,
|
||||
pre .css .tag,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .nginx .title {
|
||||
color: #859900;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .command,
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .rules .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula,
|
||||
pre .regexp,
|
||||
pre .hexcolor {
|
||||
color: #2aa198;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .localvars,
|
||||
pre .chunk,
|
||||
pre .decorator,
|
||||
pre .built_in,
|
||||
pre .identifier,
|
||||
pre .vhdl .literal,
|
||||
pre .id,
|
||||
pre .css .function {
|
||||
color: #268bd2;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .variable,
|
||||
pre .lisp .body,
|
||||
pre .smalltalk .number,
|
||||
pre .constant,
|
||||
pre .class .title,
|
||||
pre .parent,
|
||||
pre .haskell .type {
|
||||
color: #b58900;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .preprocessor .keyword,
|
||||
pre .pragma,
|
||||
pre .shebang,
|
||||
pre .symbol,
|
||||
pre .symbol .string,
|
||||
pre .diff .change,
|
||||
pre .special,
|
||||
pre .attr_selector,
|
||||
pre .important,
|
||||
pre .subst,
|
||||
pre .cdata,
|
||||
pre .clojure .title,
|
||||
pre .css .pseudo {
|
||||
color: #cb4b16;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
color: #dc322f;
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
background: #eee8d5;
|
||||
}
|
160
res/styles/sunburst.css
Normal file
160
res/styles/sunburst.css
Normal file
@ -0,0 +1,160 @@
|
||||
/*
|
||||
|
||||
Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #000; color: #f8f8f8;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc {
|
||||
color: #aeaeae;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .ruby .function .keyword,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .nginx .title {
|
||||
color: #E28964;
|
||||
}
|
||||
|
||||
pre .function .keyword,
|
||||
pre .sub .keyword,
|
||||
pre .method,
|
||||
pre .list .title {
|
||||
color: #99CF50;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .cdata,
|
||||
pre .filter .argument,
|
||||
pre .attr_selector,
|
||||
pre .apache .cbracket,
|
||||
pre .date,
|
||||
pre .tex .command,
|
||||
pre .coffeescript .attribute {
|
||||
color: #65B042;
|
||||
}
|
||||
|
||||
pre .subst {
|
||||
color: #DAEFA3;
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
color: #E9C062;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .sub .identifier,
|
||||
pre .pi,
|
||||
pre .tag,
|
||||
pre .tag .keyword,
|
||||
pre .decorator,
|
||||
pre .shebang,
|
||||
pre .prompt {
|
||||
color: #89BDFF;
|
||||
}
|
||||
|
||||
pre .class .title,
|
||||
pre .haskell .type,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoctag,
|
||||
pre .yardoctag,
|
||||
pre .phpdoc {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
pre .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .number {
|
||||
color: #3387CC;
|
||||
}
|
||||
|
||||
pre .params,
|
||||
pre .variable,
|
||||
pre .clojure .attribute {
|
||||
color: #3E87E3;
|
||||
}
|
||||
|
||||
pre .css .tag,
|
||||
pre .rules .property,
|
||||
pre .pseudo,
|
||||
pre .tex .special {
|
||||
color: #CDA869;
|
||||
}
|
||||
|
||||
pre .css .class {
|
||||
color: #9B703F;
|
||||
}
|
||||
|
||||
pre .rules .keyword {
|
||||
color: #C5AF75;
|
||||
}
|
||||
|
||||
pre .rules .value {
|
||||
color: #CF6A4C;
|
||||
}
|
||||
|
||||
pre .css .id {
|
||||
color: #8B98AB;
|
||||
}
|
||||
|
||||
pre .annotation,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in {
|
||||
color: #9B859D;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .pragma {
|
||||
color: #8996A8;
|
||||
}
|
||||
|
||||
pre .hexcolor,
|
||||
pre .css .value .number {
|
||||
color: #DD7B3B;
|
||||
}
|
||||
|
||||
pre .css .function {
|
||||
color: #DAD085;
|
||||
}
|
||||
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .tex .formula {
|
||||
background-color: #0E2231;
|
||||
color: #F8F8F8;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
background-color: #4A410D;
|
||||
color: #F8F8F8;
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
background-color: #253B22;
|
||||
color: #F8F8F8;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
background-color: #420E09;
|
||||
color: #F8F8F8;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
52
res/styles/tomorrow-night-blue.css
Normal file
52
res/styles/tomorrow-night-blue.css
Normal file
@ -0,0 +1,52 @@
|
||||
/* Tomorrow Night Blue Theme */
|
||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||
.tomorrow-comment, pre .comment, pre .title {
|
||||
color: #7285b7;
|
||||
}
|
||||
|
||||
.tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
|
||||
color: #ff9da4;
|
||||
}
|
||||
|
||||
.tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
|
||||
color: #ffc58f;
|
||||
}
|
||||
|
||||
.tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
|
||||
color: #ffeead;
|
||||
}
|
||||
|
||||
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
||||
color: #d1f1a9;
|
||||
}
|
||||
|
||||
.tomorrow-aqua, pre .css .hexcolor {
|
||||
color: #99ffff;
|
||||
}
|
||||
|
||||
.tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
|
||||
color: #bbdaff;
|
||||
}
|
||||
|
||||
.tomorrow-purple, pre .keyword, pre .javascript .function {
|
||||
color: #ebbbff;
|
||||
}
|
||||
|
||||
pre code {
|
||||
display: block;
|
||||
background: #002451;
|
||||
color: white;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
51
res/styles/tomorrow-night-bright.css
Normal file
51
res/styles/tomorrow-night-bright.css
Normal file
@ -0,0 +1,51 @@
|
||||
/* Tomorrow Night Bright Theme */
|
||||
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||
.tomorrow-comment, pre .comment, pre .title {
|
||||
color: #969896;
|
||||
}
|
||||
|
||||
.tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
|
||||
color: #d54e53;
|
||||
}
|
||||
|
||||
.tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
|
||||
color: #e78c45;
|
||||
}
|
||||
|
||||
.tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
|
||||
color: #e7c547;
|
||||
}
|
||||
|
||||
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
||||
color: #b9ca4a;
|
||||
}
|
||||
|
||||
.tomorrow-aqua, pre .css .hexcolor {
|
||||
color: #70c0b1;
|
||||
}
|
||||
|
||||
.tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
|
||||
color: #7aa6da;
|
||||
}
|
||||
|
||||
.tomorrow-purple, pre .keyword, pre .javascript .function {
|
||||
color: #c397d8;
|
||||
}
|
||||
|
||||
pre code {
|
||||
display: block;
|
||||
background: black;
|
||||
color: #eaeaea;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
51
res/styles/tomorrow-night-eighties.css
Normal file
51
res/styles/tomorrow-night-eighties.css
Normal file
@ -0,0 +1,51 @@
|
||||
/* Tomorrow Night Eighties Theme */
|
||||
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||
.tomorrow-comment, pre .comment, pre .title {
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
|
||||
color: #f2777a;
|
||||
}
|
||||
|
||||
.tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
|
||||
color: #f99157;
|
||||
}
|
||||
|
||||
.tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
|
||||
color: #ffcc66;
|
||||
}
|
||||
|
||||
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
||||
color: #99cc99;
|
||||
}
|
||||
|
||||
.tomorrow-aqua, pre .css .hexcolor {
|
||||
color: #66cccc;
|
||||
}
|
||||
|
||||
.tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
|
||||
color: #6699cc;
|
||||
}
|
||||
|
||||
.tomorrow-purple, pre .keyword, pre .javascript .function {
|
||||
color: #cc99cc;
|
||||
}
|
||||
|
||||
pre code {
|
||||
display: block;
|
||||
background: #2d2d2d;
|
||||
color: #cccccc;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
52
res/styles/tomorrow-night.css
Normal file
52
res/styles/tomorrow-night.css
Normal file
@ -0,0 +1,52 @@
|
||||
/* Tomorrow Night Theme */
|
||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||
.tomorrow-comment, pre .comment, pre .title {
|
||||
color: #969896;
|
||||
}
|
||||
|
||||
.tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
|
||||
color: #cc6666;
|
||||
}
|
||||
|
||||
.tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
|
||||
color: #de935f;
|
||||
}
|
||||
|
||||
.tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
|
||||
color: #f0c674;
|
||||
}
|
||||
|
||||
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
||||
color: #b5bd68;
|
||||
}
|
||||
|
||||
.tomorrow-aqua, pre .css .hexcolor {
|
||||
color: #8abeb7;
|
||||
}
|
||||
|
||||
.tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
|
||||
color: #81a2be;
|
||||
}
|
||||
|
||||
.tomorrow-purple, pre .keyword, pre .javascript .function {
|
||||
color: #b294bb;
|
||||
}
|
||||
|
||||
pre code {
|
||||
display: block;
|
||||
background: #1d1f21;
|
||||
color: #c5c8c6;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
49
res/styles/tomorrow.css
Normal file
49
res/styles/tomorrow.css
Normal file
@ -0,0 +1,49 @@
|
||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||
.tomorrow-comment, pre .comment, pre .title {
|
||||
color: #8e908c;
|
||||
}
|
||||
|
||||
.tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
|
||||
color: #c82829;
|
||||
}
|
||||
|
||||
.tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
|
||||
color: #f5871f;
|
||||
}
|
||||
|
||||
.tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
|
||||
color: #eab700;
|
||||
}
|
||||
|
||||
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
||||
color: #718c00;
|
||||
}
|
||||
|
||||
.tomorrow-aqua, pre .css .hexcolor {
|
||||
color: #3e999f;
|
||||
}
|
||||
|
||||
.tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
|
||||
color: #4271ae;
|
||||
}
|
||||
|
||||
.tomorrow-purple, pre .keyword, pre .javascript .function {
|
||||
color: #8959a8;
|
||||
}
|
||||
|
||||
pre code {
|
||||
display: block;
|
||||
background: white;
|
||||
color: #4d4d4c;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
89
res/styles/vs.css
Normal file
89
res/styles/vs.css
Normal file
@ -0,0 +1,89 @@
|
||||
/*
|
||||
|
||||
Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
|
||||
|
||||
*/
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: white; color: black;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .annotation,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .apache .cbracket {
|
||||
color: rgb(0, 128, 0);
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .id,
|
||||
pre .built_in,
|
||||
pre .smalltalk .class,
|
||||
pre .winutils,
|
||||
pre .bash .variable,
|
||||
pre .tex .command,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .nginx .title,
|
||||
pre .xml .tag,
|
||||
pre .xml .tag .value {
|
||||
color: rgb(0, 0, 255);
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .title,
|
||||
pre .parent,
|
||||
pre .tag .value,
|
||||
pre .rules .value,
|
||||
pre .rules .value .number,
|
||||
pre .ruby .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .aggregate,
|
||||
pre .template_tag,
|
||||
pre .django .variable,
|
||||
pre .addition,
|
||||
pre .flow,
|
||||
pre .stream,
|
||||
pre .apache .tag,
|
||||
pre .date,
|
||||
pre .tex .formula,
|
||||
pre .coffeescript .attribute {
|
||||
color: rgb(163, 21, 21);
|
||||
}
|
||||
|
||||
pre .ruby .string,
|
||||
pre .decorator,
|
||||
pre .filter .argument,
|
||||
pre .localvars,
|
||||
pre .array,
|
||||
pre .attr_selector,
|
||||
pre .pseudo,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .deletion,
|
||||
pre .envvar,
|
||||
pre .shebang,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .userType,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in,
|
||||
pre .tex .special,
|
||||
pre .prompt {
|
||||
color: rgb(43, 145, 175);
|
||||
}
|
||||
|
||||
pre .phpdoc,
|
||||
pre .javadoc,
|
||||
pre .xmlDocTag {
|
||||
color: rgb(128, 128, 128);
|
||||
}
|
||||
|
||||
pre .vhdl .typename { font-weight: bold; }
|
||||
pre .vhdl .string { color: #666666; }
|
||||
pre .vhdl .literal { color: rgb(163, 21, 21); }
|
||||
pre .vhdl .attribute { color: #00B0E8; }
|
||||
|
||||
pre .xml .attribute { color: rgb(255, 0, 0); }
|
157
res/styles/xcode.css
Normal file
157
res/styles/xcode.css
Normal file
@ -0,0 +1,157 @@
|
||||
/*
|
||||
|
||||
XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #fff; color: black;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc,
|
||||
pre .comment * {
|
||||
color: rgb(0,106,0);
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .nginx .title {
|
||||
color: rgb(170,13,145);
|
||||
}
|
||||
pre .method,
|
||||
pre .list .title,
|
||||
pre .tag .title,
|
||||
pre .setting .value,
|
||||
pre .winutils,
|
||||
pre .tex .command,
|
||||
pre .http .title,
|
||||
pre .request,
|
||||
pre .status {
|
||||
color: #008;
|
||||
}
|
||||
|
||||
pre .envvar,
|
||||
pre .tex .special {
|
||||
color: #660;
|
||||
}
|
||||
|
||||
pre .string {
|
||||
color: rgb(196,26,22);
|
||||
}
|
||||
pre .tag .value,
|
||||
pre .cdata,
|
||||
pre .filter .argument,
|
||||
pre .attr_selector,
|
||||
pre .apache .cbracket,
|
||||
pre .date,
|
||||
pre .regexp {
|
||||
color: #080;
|
||||
}
|
||||
|
||||
pre .sub .identifier,
|
||||
pre .pi,
|
||||
pre .tag,
|
||||
pre .tag .keyword,
|
||||
pre .decorator,
|
||||
pre .ini .title,
|
||||
pre .shebang,
|
||||
pre .prompt,
|
||||
pre .hexcolor,
|
||||
pre .rules .value,
|
||||
pre .css .value .number,
|
||||
pre .symbol,
|
||||
pre .symbol .string,
|
||||
pre .number,
|
||||
pre .css .function,
|
||||
pre .clojure .title,
|
||||
pre .clojure .built_in,
|
||||
pre .function .title,
|
||||
pre .coffeescript .attribute {
|
||||
color: rgb(28,0,207);
|
||||
}
|
||||
|
||||
pre .class .title,
|
||||
pre .haskell .type,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoctag,
|
||||
pre .yardoctag,
|
||||
pre .phpdoc,
|
||||
pre .typename,
|
||||
pre .tag .attribute,
|
||||
pre .doctype,
|
||||
pre .class .id,
|
||||
pre .built_in,
|
||||
pre .setting,
|
||||
pre .params,
|
||||
pre .clojure .attribute {
|
||||
color: rgb(92,38,153);
|
||||
}
|
||||
|
||||
pre .variable {
|
||||
color: rgb(63,110,116);
|
||||
}
|
||||
pre .css .tag,
|
||||
pre .rules .property,
|
||||
pre .pseudo,
|
||||
pre .subst {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
pre .css .class, pre .css .id {
|
||||
color: #9B703F;
|
||||
}
|
||||
|
||||
pre .value .important {
|
||||
color: #ff7700;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .rules .keyword {
|
||||
color: #C5AF75;
|
||||
}
|
||||
|
||||
pre .annotation,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in {
|
||||
color: #9B859D;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .preprocessor *,
|
||||
pre .pragma {
|
||||
color: rgb(100,56,32);
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
background-color: #EEE;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .diff .header,
|
||||
pre .chunk {
|
||||
color: #808080;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
background-color: #BCCFF9;
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
background-color: #BAEEBA;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
background-color: #FFC8BD;
|
||||
}
|
||||
|
||||
pre .comment .yardoctag {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .method .id {
|
||||
color: #000;
|
||||
}
|
117
res/styles/zenburn.css
Normal file
117
res/styles/zenburn.css
Normal file
@ -0,0 +1,117 @@
|
||||
/*
|
||||
|
||||
Zenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>
|
||||
based on dark.css by Ivan Sagalaev
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #3F3F3F;
|
||||
color: #DCDCDC;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .tag,
|
||||
pre .css .class,
|
||||
pre .css .id,
|
||||
pre .lisp .title,
|
||||
pre .nginx .title,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .clojure .attribute {
|
||||
color: #E3CEAB;
|
||||
}
|
||||
|
||||
pre .django .template_tag,
|
||||
pre .django .variable,
|
||||
pre .django .filter .argument {
|
||||
color: #DCDCDC;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .date {
|
||||
color: #8CD0D3;
|
||||
}
|
||||
|
||||
pre .dos .envvar,
|
||||
pre .dos .stream,
|
||||
pre .variable,
|
||||
pre .apache .sqbracket {
|
||||
color: #EFDCBC;
|
||||
}
|
||||
|
||||
pre .dos .flow,
|
||||
pre .diff .change,
|
||||
pre .python .exception,
|
||||
pre .python .built_in,
|
||||
pre .literal,
|
||||
pre .tex .special {
|
||||
color: #EFEFAF;
|
||||
}
|
||||
|
||||
pre .diff .chunk,
|
||||
pre .subst {
|
||||
color: #8F8F8F;
|
||||
}
|
||||
|
||||
pre .dos .keyword,
|
||||
pre .python .decorator,
|
||||
pre .title,
|
||||
pre .haskell .type,
|
||||
pre .diff .header,
|
||||
pre .ruby .class .parent,
|
||||
pre .apache .tag,
|
||||
pre .nginx .built_in,
|
||||
pre .tex .command,
|
||||
pre .prompt {
|
||||
color: #efef8f;
|
||||
}
|
||||
|
||||
pre .dos .winutils,
|
||||
pre .ruby .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .ruby .string {
|
||||
color: #DCA3A3;
|
||||
}
|
||||
|
||||
pre .diff .deletion,
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .built_in,
|
||||
pre .sql .aggregate,
|
||||
pre .javadoc,
|
||||
pre .smalltalk .class,
|
||||
pre .smalltalk .localvars,
|
||||
pre .smalltalk .array,
|
||||
pre .css .rules .value,
|
||||
pre .attr_selector,
|
||||
pre .pseudo,
|
||||
pre .apache .cbracket,
|
||||
pre .tex .formula,
|
||||
pre .coffeescript .attribute {
|
||||
color: #CC9393;
|
||||
}
|
||||
|
||||
pre .shebang,
|
||||
pre .diff .addition,
|
||||
pre .comment,
|
||||
pre .java .annotation,
|
||||
pre .template_comment,
|
||||
pre .pi,
|
||||
pre .doctype {
|
||||
color: #7F9F7F;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user