Upgraded to Highlight.js 8.0
This commit is contained in:
parent
3c37584b40
commit
fe7bb53b33
827
public/res/libs/highlight/CHANGES.md
Normal file
827
public/res/libs/highlight/CHANGES.md
Normal file
@ -0,0 +1,827 @@
|
||||
## Version 8.0 beta
|
||||
|
||||
This new major release is quite a big overhaul bringing both new features and
|
||||
some backwards incompatible changes. However, chances are that the majority of
|
||||
users won't be affected by the latter: the basic scenario described in the
|
||||
README is left intact.
|
||||
|
||||
Here's what did change in an incompatible way:
|
||||
|
||||
- We're now prefixing all classes located in [CSS classes reference][cr] with
|
||||
`hljs-`, by default, because some class names would collide with other
|
||||
people's stylesheets. If you were using an older version, you might still want
|
||||
the previous behavior, but still want to upgrade. To suppress this new
|
||||
behavior, you would initialize like so:
|
||||
|
||||
```html
|
||||
<script type="text/javascript">
|
||||
hljs.configure({classPrefix: ''});
|
||||
hljs.initHighlightingOnLoad();
|
||||
</script>
|
||||
```
|
||||
|
||||
- `tabReplace` and `useBR` that were used in different places are also unified
|
||||
into the global options object and are to be set using `configure(options)`.
|
||||
This function is documented in our [API docs][]. Also note that these
|
||||
parameters are gone from `highlightBlock` and `fixMarkup` which are now also
|
||||
rely on `configure`.
|
||||
|
||||
- We removed public-facing (though undocumented) object `hljs.LANGUAGES` which
|
||||
was used to register languages with the library in favor of two new methods:
|
||||
`registerLanguage` and `getLanguage`. Both are documented in our [API docs][].
|
||||
|
||||
- Result returned from `highlight` and `highlightAuto` no longer contains two
|
||||
separate attributes contributing to relevance score, `relevance` and
|
||||
`keyword_count`. They are now unified in `relevance`.
|
||||
|
||||
Another technically compatible change that nonetheless might need attention:
|
||||
|
||||
- The structure of the NPM package was refactored, so if you had installed it
|
||||
locally, you'll have to update your paths. The usual `require('highlight.js')`
|
||||
works as before. This is contributed by [Dmitry Smolin][].
|
||||
|
||||
New features:
|
||||
|
||||
- Languages now can be recognized by multiple names like "js" for JavaScript or
|
||||
"html" for, well, HTML (which earlier insisted on calling it "xml"). These
|
||||
aliases can be specified in the class attribute of the code container in your
|
||||
HTML as well as in various API calls. For now there are only a few very common
|
||||
aliases but we'll expand it in the future. All of them are listed in the
|
||||
[class reference][].
|
||||
|
||||
- Language detection can now be restricted to a subset of languages relevant in
|
||||
a given context — a web page or even a single highlighting call. This is
|
||||
especially useful for node.js build that includes all the known languages.
|
||||
Another example is a StackOverflow-style site where users specify languages
|
||||
as tags rather than in the markdown-formatted code snippets. This is
|
||||
documented in the [API reference][] (see methods `highlightAuto` and
|
||||
`configure`).
|
||||
|
||||
- Language definition syntax streamlined with [variants][] and
|
||||
[beginKeywords][].
|
||||
|
||||
New languages and styles:
|
||||
|
||||
- *Oxygene* by [Carlo Kok][]
|
||||
- *Mathematica* by [Daniel Kvasnička][]
|
||||
- *Autohotkey* by [Seongwon Lee][]
|
||||
- *Atelier* family of styles in 10 variants by [Bram de Haan][]
|
||||
- *Paraíso* styles by [Jan T. Sott][]
|
||||
|
||||
Miscelleanous improvements:
|
||||
|
||||
- Highlighting `=>` prompts in Clojure.
|
||||
- [Jeremy Hull][] fixed a lot of styles for consistency.
|
||||
- Finally, highlighting PHP and HTML [mixed in peculiar ways][php-html].
|
||||
- Objective C and C# now properly highlight titles in method definition.
|
||||
- Big overhaul of relevance counting for a number of languages. Please do report
|
||||
bugs about mis-detection of non-trivial code snippets!
|
||||
|
||||
[cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html
|
||||
[api docs]: http://highlightjs.readthedocs.org/en/latest/api.html
|
||||
[variants]: https://groups.google.com/d/topic/highlightjs/VoGC9-1p5vk/discussion
|
||||
[beginKeywords]: https://github.com/isagalaev/highlight.js/commit/6c7fdea002eb3949577a85b3f7930137c7c3038d
|
||||
[php-html]: https://twitter.com/highlightjs/status/408890903017689088
|
||||
|
||||
[Carlo Kok]: https://github.com/carlokok
|
||||
[Bram de Haan]: https://github.com/atelierbram
|
||||
[Daniel Kvasnička]: https://github.com/dkvasnicka
|
||||
[Dmitry Smolin]: https://github.com/dimsmol
|
||||
[Jeremy Hull]: https://github.com/sourrust
|
||||
[Seongwon Lee]: https://github.com/dlimpid
|
||||
[Jan T. Sott]: https://github.com/idleberg
|
||||
|
||||
|
||||
## Version 7.5
|
||||
|
||||
A catch-up release dealing with some of the accumulated contributions. This one
|
||||
is probably will be the last before the 8.0 which will be slightly backwards
|
||||
incompatible regarding some advanced use-cases.
|
||||
|
||||
One outstanding change in this version is the addition of 6 languages to the
|
||||
[hosted script][d]: Markdown, ObjectiveC, CoffeeScript, Apache, Nginx and
|
||||
Makefile. It now weighs about 6K more but we're going to keep it under 30K.
|
||||
|
||||
New languages:
|
||||
|
||||
- OCaml by [Mehdi Dogguy][mehdid] and [Nicolas Braud-Santoni][nbraud]
|
||||
- [LiveCode Server][lcs] by [Ralf Bitter][revig]
|
||||
- Scilab by [Sylvestre Ledru][sylvestre]
|
||||
- basic support for Makefile by [Ivan Sagalaev][isagalaev]
|
||||
|
||||
Improvements:
|
||||
|
||||
- Ruby's got support for characters like `?A`, `?1`, `?\012` etc. and `%r{..}`
|
||||
regexps.
|
||||
- Clojure now allows a function call in the beginning of s-expressions
|
||||
`(($filter "myCount") (arr 1 2 3 4 5))`.
|
||||
- Haskell's got new keywords and now recognizes more things like pragmas,
|
||||
preprocessors, modules, containers, FFIs etc. Thanks to [Zena Treep][treep]
|
||||
for the implementation and to [Jeremy Hull][sourrust] for guiding it.
|
||||
- Miscelleanous fixes in PHP, Brainfuck, SCSS, Asciidoc, CMake, Python and F#.
|
||||
|
||||
[mehdid]: https://github.com/mehdid
|
||||
[nbraud]: https://github.com/nbraud
|
||||
[revig]: https://github.com/revig
|
||||
[lcs]: http://livecode.com/developers/guides/server/
|
||||
[sylvestre]: https://github.com/sylvestre
|
||||
[isagalaev]: https://github.com/isagalaev
|
||||
[treep]: https://github.com/treep
|
||||
[sourrust]: https://github.com/sourrust
|
||||
[d]: http://highlightjs.org/download/
|
||||
|
||||
|
||||
## New core developers
|
||||
|
||||
The latest long period of almost complete inactivity in the project coincided
|
||||
with growing interest to it led to a decision that now seems completely obvious:
|
||||
we need more core developers.
|
||||
|
||||
So without further ado let me welcome to the core team two long-time
|
||||
contributors: [Jeremy Hull][] and [Oleg
|
||||
Efimov][].
|
||||
|
||||
Hope now we'll be able to work through stuff faster!
|
||||
|
||||
P.S. The historical commit is [here][1] for the record.
|
||||
|
||||
[Jeremy Hull]: https://github.com/sourrust
|
||||
[Oleg Efimov]: https://github.com/sannis
|
||||
[1]: https://github.com/isagalaev/highlight.js/commit/f3056941bda56d2b72276b97bc0dd5f230f2473f
|
||||
|
||||
|
||||
## Version 7.4
|
||||
|
||||
This long overdue version is a snapshot of the current source tree with all the
|
||||
changes that happened during the past year. Sorry for taking so long!
|
||||
|
||||
Along with the changes in code highlight.js has finally got its new home at
|
||||
<http://highlightjs.org/>, moving from its craddle on Software Maniacs which it
|
||||
outgrew a long time ago. Be sure to report any bugs about the site to
|
||||
<mailto:info@highlightjs.org>.
|
||||
|
||||
On to what's new…
|
||||
|
||||
New languages:
|
||||
|
||||
- Handlebars templates by [Robin Ward][]
|
||||
- Oracle Rules Language by [Jason Jacobson][]
|
||||
- F# by [Joans Follesø][]
|
||||
- AsciiDoc and Haml by [Dan Allen][]
|
||||
- Lasso by [Eric Knibbe][]
|
||||
- SCSS by [Kurt Emch][]
|
||||
- VB.NET by [Poren Chiang][]
|
||||
- Mizar by [Kelley van Evert][]
|
||||
|
||||
[Robin Ward]: https://github.com/eviltrout
|
||||
[Jason Jacobson]: https://github.com/jayce7
|
||||
[Joans Follesø]: https://github.com/follesoe
|
||||
[Dan Allen]: https://github.com/mojavelinux
|
||||
[Eric Knibbe]: https://github.com/EricFromCanada
|
||||
[Kurt Emch]: https://github.com/kemch
|
||||
[Poren Chiang]: https://github.com/rschiang
|
||||
[Kelley van Evert]: https://github.com/kelleyvanevert
|
||||
|
||||
New style themes:
|
||||
|
||||
- Monokai Sublime by [noformnocontent][]
|
||||
- Railscasts by [Damien White][]
|
||||
- Obsidian by [Alexander Marenin][]
|
||||
- Docco by [Simon Madine][]
|
||||
- Mono Blue by [Ivan Sagalaev][] (uses a single color hue for everything)
|
||||
- Foundation by [Dan Allen][]
|
||||
|
||||
[noformnocontent]: http://nn.mit-license.org/
|
||||
[Damien White]: https://github.com/visoft
|
||||
[Alexander Marenin]: https://github.com/ioncreature
|
||||
[Simon Madine]: https://github.com/thingsinjars
|
||||
[Ivan Sagalaev]: https://github.com/isagalaev
|
||||
|
||||
Other notable changes:
|
||||
|
||||
- Corrected many corner cases in CSS.
|
||||
- Dropped Python 2 version of the build tool.
|
||||
- Implemented building for the AMD format.
|
||||
- Updated Rust keywords (thanks to [Dmitry Medvinsky][]).
|
||||
- Literal regexes can now be used in language definitions.
|
||||
- CoffeeScript highlighting is now significantly more robust and rich due to
|
||||
input from [Cédric Néhémie][].
|
||||
|
||||
[Dmitry Medvinsky]: https://github.com/dmedvinsky
|
||||
[Cédric Néhémie]: https://github.com/abe33
|
||||
|
||||
|
||||
## Version 7.3
|
||||
|
||||
- Since this version highlight.js no longer works in IE version 8 and older.
|
||||
It's made it possible to reduce the library size and dramatically improve code
|
||||
readability and made it easier to maintain. Time to go forward!
|
||||
|
||||
- New languages: AppleScript (by [Nathan Grigg][ng] and [Dr. Drang][dd]) and
|
||||
Brainfuck (by [Evgeny Stepanischev][bolk]).
|
||||
|
||||
- Improvements to existing languages:
|
||||
|
||||
- interpreter prompt in Python (`>>>` and `...`)
|
||||
- @-properties and classes in CoffeeScript
|
||||
- E4X in JavaScript (by [Oleg Efimov][oe])
|
||||
- new keywords in Perl (by [Kirk Kimmel][kk])
|
||||
- big Ruby syntax update (by [Vasily Polovnyov][vast])
|
||||
- small fixes in Bash
|
||||
|
||||
- Also Oleg Efimov did a great job of moving all the docs for language and style
|
||||
developers and contributors from the old wiki under the source code in the
|
||||
"docs" directory. Now these docs are nicely presented at
|
||||
<http://highlightjs.readthedocs.org/>.
|
||||
|
||||
[ng]: https://github.com/nathan11g
|
||||
[dd]: https://github.com/drdrang
|
||||
[bolk]: https://github.com/bolknote
|
||||
[oe]: https://github.com/Sannis
|
||||
[kk]: https://github.com/kimmel
|
||||
[vast]: https://github.com/vast
|
||||
|
||||
|
||||
## Version 7.2
|
||||
|
||||
A regular bug-fix release without any significant new features. Enjoy!
|
||||
|
||||
|
||||
## Version 7.1
|
||||
|
||||
A Summer crop:
|
||||
|
||||
- [Marc Fornos][mf] made the definition for Clojure along with the matching
|
||||
style Rainbow (which, of course, works for other languages too).
|
||||
- CoffeeScript support continues to improve getting support for regular
|
||||
expressions.
|
||||
- Yoshihide Jimbo ported to highlight.js [five Tomorrow styles][tm] from the
|
||||
[project by Chris Kempson][tm0].
|
||||
- Thanks to [Casey Duncun][cd] the library can now be built in the popular
|
||||
[AMD format][amd].
|
||||
- And last but not least, we've got a fair number of correctness and consistency
|
||||
fixes, including a pretty significant refactoring of Ruby.
|
||||
|
||||
[mf]: https://github.com/mfornos
|
||||
[tm]: http://jmblog.github.com/color-themes-for-highlightjs/
|
||||
[tm0]: https://github.com/ChrisKempson/Tomorrow-Theme
|
||||
[cd]: https://github.com/caseman
|
||||
[amd]: http://requirejs.org/docs/whyamd.html
|
||||
|
||||
|
||||
## Version 7.0
|
||||
|
||||
The reason for the new major version update is a global change of keyword syntax
|
||||
which resulted in the library getting smaller once again. For example, the
|
||||
hosted build is 2K less than at the previous version while supporting two new
|
||||
languages.
|
||||
|
||||
Notable changes:
|
||||
|
||||
- The library now works not only in a browser but also with [node.js][]. It is
|
||||
installable with `npm install highlight.js`. [API][] docs are available on our
|
||||
wiki.
|
||||
|
||||
- The new unique feature (apparently) among syntax highlighters is highlighting
|
||||
*HTTP* headers and an arbitrary language in the request body. The most useful
|
||||
languages here are *XML* and *JSON* both of which highlight.js does support.
|
||||
Here's [the detailed post][p] about the feature.
|
||||
|
||||
- Two new style themes: a dark "south" *[Pojoaque][]* by Jason Tate and an
|
||||
emulation of*XCode* IDE by [Angel Olloqui][ao].
|
||||
|
||||
- Three new languages: *D* by [Aleksandar Ružičić][ar], *R* by [Joe Cheng][jc]
|
||||
and *GLSL* by [Sergey Tikhomirov][st].
|
||||
|
||||
- *Nginx* syntax has become a million times smaller and more universal thanks to
|
||||
remaking it in a more generic manner that doesn't require listing all the
|
||||
directives in the known universe.
|
||||
|
||||
- Function titles are now highlighted in *PHP*.
|
||||
|
||||
- *Haskell* and *VHDL* were significantly reworked to be more rich and correct
|
||||
by their respective maintainers [Jeremy Hull][sr] and [Igor Kalnitsky][ik].
|
||||
|
||||
And last but not least, many bugs have been fixed around correctness and
|
||||
language detection.
|
||||
|
||||
Overall highlight.js currently supports 51 languages and 20 style themes.
|
||||
|
||||
[node.js]: http://nodejs.org/
|
||||
[api]: http://softwaremaniacs.org/wiki/doku.php/highlight.js:api
|
||||
[p]: http://softwaremaniacs.org/blog/2012/05/10/http-and-json-in-highlight-js/en/
|
||||
[pojoaque]: http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
|
||||
[ao]: https://github.com/angelolloqui
|
||||
[ar]: https://github.com/raleksandar
|
||||
[jc]: https://github.com/jcheng5
|
||||
[st]: https://github.com/tikhomirov
|
||||
[sr]: https://github.com/sourrust
|
||||
[ik]: https://github.com/ikalnitsky
|
||||
|
||||
|
||||
## Version 6.2
|
||||
|
||||
A lot of things happened in highlight.js since the last version! We've got nine
|
||||
new contributors, the discussion group came alive, and the main branch on GitHub
|
||||
now counts more than 350 followers. Here are most significant results coming
|
||||
from all this activity:
|
||||
|
||||
- 5 (five!) new languages: Rust, ActionScript, CoffeeScript, MatLab and
|
||||
experimental support for markdown. Thanks go to [Andrey Vlasovskikh][av],
|
||||
[Alexander Myadzel][am], [Dmytrii Nagirniak][dn], [Oleg Efimov][oe], [Denis
|
||||
Bardadym][db] and [John Crepezzi][jc].
|
||||
|
||||
- 2 new style themes: Monokai by [Luigi Maselli][lm] and stylistic imitation of
|
||||
another well-known highlighter Google Code Prettify by [Aahan Krish][ak].
|
||||
|
||||
- A vast number of [correctness fixes and code refactorings][log], mostly made
|
||||
by [Oleg Efimov][oe] and [Evgeny Stepanischev][es].
|
||||
|
||||
[av]: https://github.com/vlasovskikh
|
||||
[am]: https://github.com/myadzel
|
||||
[dn]: https://github.com/dnagir
|
||||
[oe]: https://github.com/Sannis
|
||||
[db]: https://github.com/btd
|
||||
[jc]: https://github.com/seejohnrun
|
||||
[lm]: http://grigio.org/
|
||||
[ak]: https://github.com/geekpanth3r
|
||||
[es]: https://github.com/bolknote
|
||||
[log]: https://github.com/isagalaev/highlight.js/commits/
|
||||
|
||||
|
||||
## Version 6.1 — Solarized
|
||||
|
||||
[Jeremy Hull][jh] has implemented my dream feature — a port of [Solarized][]
|
||||
style theme famous for being based on the intricate color theory to achieve
|
||||
correct contrast and color perception. It is now available for highlight.js in
|
||||
both variants — light and dark.
|
||||
|
||||
This version also adds a new original style Arta. Its author pumbur maintains a
|
||||
[heavily modified fork of highlight.js][pb] on GitHub.
|
||||
|
||||
[jh]: https://github.com/sourrust
|
||||
[solarized]: http://ethanschoonover.com/solarized
|
||||
[pb]: https://github.com/pumbur/highlight.js
|
||||
|
||||
|
||||
## Version 6.0
|
||||
|
||||
New major version of the highlighter has been built on a significantly
|
||||
refactored syntax. Due to this it's even smaller than the previous one while
|
||||
supporting more languages!
|
||||
|
||||
New languages are:
|
||||
|
||||
- Haskell by [Jeremy Hull][sourrust]
|
||||
- Erlang in two varieties — module and REPL — made collectively by [Nikolay
|
||||
Zakharov][desh], [Dmitry Kovega][arhibot] and [Sergey Ignatov][ignatov]
|
||||
- Objective C by [Valerii Hiora][vhbit]
|
||||
- Vala by [Antono Vasiljev][antono]
|
||||
- Go by [Stephan Kountso][steplg]
|
||||
|
||||
[sourrust]: https://github.com/sourrust
|
||||
[desh]: http://desh.su/
|
||||
[arhibot]: https://github.com/arhibot
|
||||
[ignatov]: https://github.com/ignatov
|
||||
[vhbit]: https://github.com/vhbit
|
||||
[antono]: https://github.com/antono
|
||||
[steplg]: https://github.com/steplg
|
||||
|
||||
Also this version is marginally faster and fixes a number of small long-standing
|
||||
bugs.
|
||||
|
||||
Developer overview of the new language syntax is available in a [blog post about
|
||||
recent beta release][beta].
|
||||
|
||||
[beta]: http://softwaremaniacs.org/blog/2011/04/25/highlight-js-60-beta/en/
|
||||
|
||||
P.S. New version is not yet available on a Yandex' CDN, so for now you have to
|
||||
download [your own copy][d].
|
||||
|
||||
[d]: /soft/highlight/en/download/
|
||||
|
||||
|
||||
## Version 5.14
|
||||
|
||||
Fixed bugs in HTML/XML detection and relevance introduced in previous
|
||||
refactoring.
|
||||
|
||||
Also test.html now shows the second best result of language detection by
|
||||
relevance.
|
||||
|
||||
|
||||
## Version 5.13
|
||||
|
||||
Past weekend began with a couple of simple additions for existing languages but
|
||||
ended up in a big code refactoring bringing along nice improvements for language
|
||||
developers.
|
||||
|
||||
### For users
|
||||
|
||||
- Description of C++ has got new keywords from the upcoming [C++ 0x][] standard.
|
||||
- Description of HTML has got new tags from [HTML 5][].
|
||||
- CSS-styles have been unified to use consistent padding and also have lost
|
||||
pop-outs with names of detected languages.
|
||||
- [Igor Kalnitsky][ik] has sent two new language descriptions: CMake и VHDL.
|
||||
|
||||
This makes total number of languages supported by highlight.js to reach 35.
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- Custom classes on `<pre>` tags are not being overridden anymore
|
||||
- More correct highlighting of code blocks inside non-`<pre>` containers:
|
||||
highlighter now doesn't insist on replacing them with its own container and
|
||||
just replaces the contents.
|
||||
- Small fixes in browser compatibility and heuristics.
|
||||
|
||||
[c++ 0x]: http://ru.wikipedia.org/wiki/C%2B%2B0x
|
||||
[html 5]: http://en.wikipedia.org/wiki/HTML5
|
||||
[ik]: http://kalnitsky.org.ua/
|
||||
|
||||
### For developers
|
||||
|
||||
The most significant change is the ability to include language submodes right
|
||||
under `contains` instead of defining explicit named submodes in the main array:
|
||||
|
||||
contains: [
|
||||
'string',
|
||||
'number',
|
||||
{begin: '\\n', end: hljs.IMMEDIATE_RE}
|
||||
]
|
||||
|
||||
This is useful for auxiliary modes needed only in one place to define parsing.
|
||||
Note that such modes often don't have `className` and hence won't generate a
|
||||
separate `<span>` in the resulting markup. This is similar in effect to
|
||||
`noMarkup: true`. All existing languages have been refactored accordingly.
|
||||
|
||||
Test file test.html has at last become a real test. Now it not only puts the
|
||||
detected language name under the code snippet but also tests if it matches the
|
||||
expected one. Test summary is displayed right above all language snippets.
|
||||
|
||||
|
||||
## CDN
|
||||
|
||||
Fine people at [Yandex][] agreed to host highlight.js on their big fast servers.
|
||||
[Link up][l]!
|
||||
|
||||
[yandex]: http://yandex.com/
|
||||
[l]: http://softwaremaniacs.org/soft/highlight/en/download/
|
||||
|
||||
|
||||
## Version 5.10 — "Paris".
|
||||
|
||||
Though I'm on a vacation in Paris, I decided to release a new version with a
|
||||
couple of small fixes:
|
||||
|
||||
- Tomas Vitvar discovered that TAB replacement doesn't always work when used
|
||||
with custom markup in code
|
||||
- SQL parsing is even more rigid now and doesn't step over SmallTalk in tests
|
||||
|
||||
|
||||
## Version 5.9
|
||||
|
||||
A long-awaited version is finally released.
|
||||
|
||||
New languages:
|
||||
|
||||
- Andrew Fedorov made a definition for Lua
|
||||
- a long-time highlight.js contributor [Peter Leonov][pl] made a definition for
|
||||
Nginx config
|
||||
- [Vladimir Moskva][vm] made a definition for TeX
|
||||
|
||||
[pl]: http://kung-fu-tzu.ru/
|
||||
[vm]: http://fulc.ru/
|
||||
|
||||
Fixes for existing languages:
|
||||
|
||||
- [Loren Segal][ls] reworked the Ruby definition and added highlighting for
|
||||
[YARD][] inline documentation
|
||||
- the definition of SQL has become more solid and now it shouldn't be overly
|
||||
greedy when it comes to language detection
|
||||
|
||||
[ls]: http://gnuu.org/
|
||||
[yard]: http://yardoc.org/
|
||||
|
||||
The highlighter has become more usable as a library allowing to do highlighting
|
||||
from initialization code of JS frameworks and in ajax methods (see.
|
||||
readme.eng.txt).
|
||||
|
||||
Also this version drops support for the [WordPress][wp] plugin. Everyone is
|
||||
welcome to [pick up its maintenance][p] if needed.
|
||||
|
||||
[wp]: http://wordpress.org/
|
||||
[p]: http://bazaar.launchpad.net/~isagalaev/+junk/highlight/annotate/342/src/wp_highlight.js.php
|
||||
|
||||
|
||||
## Version 5.8
|
||||
|
||||
- Jan Berkel has contributed a definition for Scala. +1 to hotness!
|
||||
- All CSS-styles are rewritten to work only inside `<pre>` tags to avoid
|
||||
conflicts with host site styles.
|
||||
|
||||
|
||||
## Version 5.7.
|
||||
|
||||
Fixed escaping of quotes in VBScript strings.
|
||||
|
||||
|
||||
## Version 5.5
|
||||
|
||||
This version brings a small change: now .ini-files allow digits, underscores and
|
||||
square brackets in key names.
|
||||
|
||||
|
||||
## Version 5.4
|
||||
|
||||
Fixed small but upsetting bug in the packer which caused incorrect highlighting
|
||||
of explicitly specified languages. Thanks to Andrew Fedorov for precise
|
||||
diagnostics!
|
||||
|
||||
|
||||
## Version 5.3
|
||||
|
||||
The version to fulfil old promises.
|
||||
|
||||
The most significant change is that highlight.js now preserves custom user
|
||||
markup in code along with its own highlighting markup. This means that now it's
|
||||
possible to use, say, links in code. Thanks to [Vladimir Dolzhenko][vd] for the
|
||||
[initial proposal][1] and for making a proof-of-concept patch.
|
||||
|
||||
Also in this version:
|
||||
|
||||
- [Vasily Polovnyov][vp] has sent a GitHub-like style and has implemented
|
||||
support for CSS @-rules and Ruby symbols.
|
||||
- Yura Zaripov has sent two styles: Brown Paper and School Book.
|
||||
- Oleg Volchkov has sent a definition for [Parser 3][p3].
|
||||
|
||||
[1]: http://softwaremaniacs.org/forum/highlightjs/6612/
|
||||
[p3]: http://www.parser.ru/
|
||||
[vp]: http://vasily.polovnyov.ru/
|
||||
[vd]: http://dolzhenko.blogspot.com/
|
||||
|
||||
|
||||
## Version 5.2
|
||||
|
||||
- at last it's possible to replace indentation TABs with something sensible (e.g. 2 or 4 spaces)
|
||||
- new keywords and built-ins for 1C by Sergey Baranov
|
||||
- a couple of small fixes to Apache highlighting
|
||||
|
||||
|
||||
## Version 5.1
|
||||
|
||||
This is one of those nice version consisting entirely of new and shiny
|
||||
contributions!
|
||||
|
||||
- [Vladimir Ermakov][vooon] created highlighting for AVR Assembler
|
||||
- [Ruslan Keba][rukeba] created highlighting for Apache config file. Also his
|
||||
original visual style for it is now available for all highlight.js languages
|
||||
under the name "Magula".
|
||||
- [Shuen-Huei Guan][drake] (aka Drake) sent new keywords for RenderMan
|
||||
languages. Also thanks go to [Konstantin Evdokimenko][ke] for his advice on
|
||||
the matter.
|
||||
|
||||
[vooon]: http://vehq.ru/about/
|
||||
[rukeba]: http://rukeba.com/
|
||||
[drake]: http://drakeguan.org/
|
||||
[ke]: http://k-evdokimenko.moikrug.ru/
|
||||
|
||||
|
||||
## Version 5.0
|
||||
|
||||
The main change in the new major version of highlight.js is a mechanism for
|
||||
packing several languages along with the library itself into a single compressed
|
||||
file. Now sites using several languages will load considerably faster because
|
||||
the library won't dynamically include additional files while loading.
|
||||
|
||||
Also this version fixes a long-standing bug with Javascript highlighting that
|
||||
couldn't distinguish between regular expressions and division operations.
|
||||
|
||||
And as usually there were a couple of minor correctness fixes.
|
||||
|
||||
Great thanks to all contributors! Keep using highlight.js.
|
||||
|
||||
|
||||
## Version 4.3
|
||||
|
||||
This version comes with two contributions from [Jason Diamond][jd]:
|
||||
|
||||
- language definition for C# (yes! it was a long-missed thing!)
|
||||
- Visual Studio-like highlighting style
|
||||
|
||||
Plus there are a couple of minor bug fixes for parsing HTML and XML attributes.
|
||||
|
||||
[jd]: http://jason.diamond.name/weblog/
|
||||
|
||||
|
||||
## Version 4.2
|
||||
|
||||
The biggest news is highlighting for Lisp, courtesy of Vasily Polovnyov. It's
|
||||
somewhat experimental meaning that for highlighting "keywords" it doesn't use
|
||||
any pre-defined set of a Lisp dialect. Instead it tries to highlight first word
|
||||
in parentheses wherever it makes sense. I'd like to ask people programming in
|
||||
Lisp to confirm if it's a good idea and send feedback to [the forum][f].
|
||||
|
||||
Other changes:
|
||||
|
||||
- Smalltalk was excluded from DEFAULT_LANGUAGES to save traffic
|
||||
- [Vladimir Epifanov][voldmar] has implemented javascript style switcher for
|
||||
test.html
|
||||
- comments now allowed inside Ruby function definition
|
||||
- [MEL][] language from [Shuen-Huei Guan][drake]
|
||||
- whitespace now allowed between `<pre>` and `<code>`
|
||||
- better auto-detection of C++ and PHP
|
||||
- HTML allows embedded VBScript (`<% .. %>`)
|
||||
|
||||
[f]: http://softwaremaniacs.org/forum/highlightjs/
|
||||
[voldmar]: http://voldmar.ya.ru/
|
||||
[mel]: http://en.wikipedia.org/wiki/Maya_Embedded_Language
|
||||
[drake]: http://drakeguan.org/
|
||||
|
||||
|
||||
## Version 4.1
|
||||
|
||||
Languages:
|
||||
|
||||
- Bash from Vah
|
||||
- DOS bat-files from Alexander Makarov (Sam)
|
||||
- Diff files from Vasily Polovnyov
|
||||
- Ini files from myself though initial idea was from Sam
|
||||
|
||||
Styles:
|
||||
|
||||
- Zenburn from Vladimir Epifanov, this is an imitation of a
|
||||
[well-known theme for Vim][zenburn].
|
||||
- Ascetic from myself, as a realization of ideals of non-flashy highlighting:
|
||||
just one color in only three gradations :-)
|
||||
|
||||
In other news. [One small bug][bug] was fixed, built-in keywords were added for
|
||||
Python and C++ which improved auto-detection for the latter (it was shame that
|
||||
[my wife's blog][alenacpp] had issues with it from time to time). And lastly
|
||||
thanks go to Sam for getting rid of my stylistic comments in code that were
|
||||
getting in the way of [JSMin][].
|
||||
|
||||
[zenburn]: http://en.wikipedia.org/wiki/Zenburn
|
||||
[alenacpp]: http://alenacpp.blogspot.com/
|
||||
[bug]: http://softwaremaniacs.org/forum/viewtopic.php?id=1823
|
||||
[jsmin]: http://code.google.com/p/jsmin-php/
|
||||
|
||||
|
||||
## Version 4.0
|
||||
|
||||
New major version is a result of vast refactoring and of many contributions.
|
||||
|
||||
Visible new features:
|
||||
|
||||
- Highlighting of embedded languages. Currently is implemented highlighting of
|
||||
Javascript and CSS inside HTML.
|
||||
- Bundled 5 ready-made style themes!
|
||||
|
||||
Invisible new features:
|
||||
|
||||
- Highlight.js no longer pollutes global namespace. Only one object and one
|
||||
function for backward compatibility.
|
||||
- Performance is further increased by about 15%.
|
||||
|
||||
Changing of a major version number caused by a new format of language definition
|
||||
files. If you use some third-party language files they should be updated.
|
||||
|
||||
|
||||
## Version 3.5
|
||||
|
||||
A very nice version in my opinion fixing a number of small bugs and slightly
|
||||
increased speed in a couple of corner cases. Thanks to everybody who reports
|
||||
bugs in he [forum][f] and by email!
|
||||
|
||||
There is also a new language — XML. A custom XML formerly was detected as HTML
|
||||
and didn't highlight custom tags. In this version I tried to make custom XML to
|
||||
be detected and highlighted by its own rules. Which by the way include such
|
||||
things as CDATA sections and processing instructions (`<? ... ?>`).
|
||||
|
||||
[f]: http://softwaremaniacs.org/forum/viewforum.php?id=6
|
||||
|
||||
|
||||
## Version 3.3
|
||||
|
||||
[Vladimir Gubarkov][xonix] has provided an interesting and useful addition.
|
||||
File export.html contains a little program that shows and allows to copy and
|
||||
paste an HTML code generated by the highlighter for any code snippet. This can
|
||||
be useful in situations when one can't use the script itself on a site.
|
||||
|
||||
|
||||
[xonix]: http://xonixx.blogspot.com/
|
||||
|
||||
|
||||
## Version 3.2 consists completely of contributions:
|
||||
|
||||
- Vladimir Gubarkov has described SmallTalk
|
||||
- Yuri Ivanov has described 1C
|
||||
- Peter Leonov has packaged the highlighter as a Firefox extension
|
||||
- Vladimir Ermakov has compiled a mod for phpBB
|
||||
|
||||
Many thanks to you all!
|
||||
|
||||
|
||||
## Version 3.1
|
||||
|
||||
Three new languages are available: Django templates, SQL and Axapta. The latter
|
||||
two are sent by [Dmitri Roudakov][1]. However I've almost entirely rewrote an
|
||||
SQL definition but I'd never started it be it from the ground up :-)
|
||||
|
||||
The engine itself has got a long awaited feature of grouping keywords
|
||||
("keyword", "built-in function", "literal"). No more hacks!
|
||||
|
||||
[1]: http://roudakov.ru/
|
||||
|
||||
|
||||
## Version 3.0
|
||||
|
||||
It is major mainly because now highlight.js has grown large and has become
|
||||
modular. Now when you pass it a list of languages to highlight it will
|
||||
dynamically load into a browser only those languages.
|
||||
|
||||
Also:
|
||||
|
||||
- Konstantin Evdokimenko of [RibKit][] project has created a highlighting for
|
||||
RenderMan Shading Language and RenderMan Interface Bytestream. Yay for more
|
||||
languages!
|
||||
- Heuristics for C++ and HTML got better.
|
||||
- I've implemented (at last) a correct handling of backslash escapes in C-like
|
||||
languages.
|
||||
|
||||
There is also a small backwards incompatible change in the new version. The
|
||||
function initHighlighting that was used to initialize highlighting instead of
|
||||
initHighlightingOnLoad a long time ago no longer works. If you by chance still
|
||||
use it — replace it with the new one.
|
||||
|
||||
[RibKit]: http://ribkit.sourceforge.net/
|
||||
|
||||
|
||||
## Version 2.9
|
||||
|
||||
Highlight.js is a parser, not just a couple of regular expressions. That said
|
||||
I'm glad to announce that in the new version 2.9 has support for:
|
||||
|
||||
- in-string substitutions for Ruby -- `#{...}`
|
||||
- strings from from numeric symbol codes (like #XX) for Delphi
|
||||
|
||||
|
||||
## Version 2.8
|
||||
|
||||
A maintenance release with more tuned heuristics. Fully backwards compatible.
|
||||
|
||||
|
||||
## Version 2.7
|
||||
|
||||
- Nikita Ledyaev presents highlighting for VBScript, yay!
|
||||
- A couple of bugs with escaping in strings were fixed thanks to Mickle
|
||||
- Ongoing tuning of heuristics
|
||||
|
||||
Fixed bugs were rather unpleasant so I encourage everyone to upgrade!
|
||||
|
||||
|
||||
## Version 2.4
|
||||
|
||||
- Peter Leonov provides another improved highlighting for Perl
|
||||
- Javascript gets a new kind of keywords — "literals". These are the words
|
||||
"true", "false" and "null"
|
||||
|
||||
Also highlight.js homepage now lists sites that use the library. Feel free to
|
||||
add your site by [dropping me a message][mail] until I find the time to build a
|
||||
submit form.
|
||||
|
||||
[mail]: mailto:Maniac@SoftwareManiacs.Org
|
||||
|
||||
|
||||
## Version 2.3
|
||||
|
||||
This version fixes IE breakage in previous version. My apologies to all who have
|
||||
already downloaded that one!
|
||||
|
||||
|
||||
## Version 2.2
|
||||
|
||||
- added highlighting for Javascript
|
||||
- at last fixed parsing of Delphi's escaped apostrophes in strings
|
||||
- in Ruby fixed highlighting of keywords 'def' and 'class', same for 'sub' in
|
||||
Perl
|
||||
|
||||
|
||||
## Version 2.0
|
||||
|
||||
- Ruby support by [Anton Kovalyov][ak]
|
||||
- speed increased by orders of magnitude due to new way of parsing
|
||||
- this same way allows now correct highlighting of keywords in some tricky
|
||||
places (like keyword "End" at the end of Delphi classes)
|
||||
|
||||
[ak]: http://anton.kovalyov.net/
|
||||
|
||||
|
||||
## Version 1.0
|
||||
|
||||
Version 1.0 of javascript syntax highlighter is released!
|
||||
|
||||
It's the first version available with English description. Feel free to post
|
||||
your comments and question to [highlight.js forum][forum]. And don't be afraid
|
||||
if you find there some fancy Cyrillic letters -- it's for Russian users too :-)
|
||||
|
||||
[forum]: http://softwaremaniacs.org/forum/viewforum.php?id=6
|
@ -28,9 +28,9 @@ If you use different markup or need to apply highlighting dynamically, read
|
||||
|
||||
- Style themes are available in the download package or as hosted files.
|
||||
To create a custom style for your site see the class reference in the file
|
||||
[classref.txt][cr] from the downloaded package.
|
||||
[CSS classes reference][cr] from the downloaded package.
|
||||
|
||||
[cr]: http://github.com/isagalaev/highlight.js/blob/master/classref.txt
|
||||
[cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html
|
||||
|
||||
|
||||
## node.js
|
||||
@ -89,9 +89,9 @@ styling:
|
||||
|
||||
```html
|
||||
<script type="text/javascript">
|
||||
hljs.tabReplace = ' '; // 4 spaces
|
||||
hljs.configure({tabReplace: ' '}); // 4 spaces
|
||||
// ... or
|
||||
hljs.tabReplace = '<span class="indent">\t</span>';
|
||||
hljs.configure({tabReplace: '<span class="indent">\t</span>'});
|
||||
|
||||
hljs.initHighlightingOnLoad();
|
||||
</script>
|
||||
@ -100,9 +100,9 @@ styling:
|
||||
## Custom initialization
|
||||
|
||||
If you use different markup for code blocks you can initialize them manually
|
||||
with `highlightBlock(code, tabReplace, useBR)` function. It takes a DOM element
|
||||
containing the code to highlight and optionally a string with which to replace
|
||||
TAB characters.
|
||||
with `highlightBlock(code)` function. It takes a DOM element containing the
|
||||
code to highlight and optionally a string with which to replace TAB
|
||||
characters.
|
||||
|
||||
Initialization using, for example, jQuery might look like this:
|
||||
|
||||
@ -117,11 +117,11 @@ the page. Just make sure you don't do it twice for already highlighted
|
||||
blocks.
|
||||
|
||||
If your code container relies on `<br>` tags instead of line breaks (i.e. if
|
||||
it's not `<pre>`) pass `true` into the third parameter of `highlightBlock`
|
||||
to make highlight.js use `<br>` in the output:
|
||||
it's not `<pre>`) set the `useBR` option to `true`:
|
||||
|
||||
```javascript
|
||||
$('div.code').each(function(i, e) {hljs.highlightBlock(e, null, true)});
|
||||
hljs.configure({useBR: true});
|
||||
$('div.code').each(function(i, e) {hljs.highlightBlock(e)});
|
||||
```
|
||||
|
||||
|
||||
@ -160,7 +160,7 @@ on a site.
|
||||
|
||||
## Meta
|
||||
|
||||
- Version: 7.5
|
||||
- Version: 8.0
|
||||
- URL: http://highlightjs.org/
|
||||
|
||||
For the license terms see LICENSE files.
|
||||
|
@ -30,10 +30,9 @@ Highlight.js нужен для подсветки синтаксиса в при
|
||||
|
||||
- Стилевые темы можно найти в загруженном архиве или также использовать
|
||||
захостенные. Чтобы сделать собственный стиль для своего сайта, вам
|
||||
будет полезен справочник классов в файле [classref.txt][cr], который тоже
|
||||
есть в архиве.
|
||||
будет полезен [CSS classes reference][cr], который тоже есть в архиве.
|
||||
|
||||
[cr]: http://github.com/isagalaev/highlight.js/blob/master/classref.txt
|
||||
[cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html
|
||||
|
||||
|
||||
## node.js
|
||||
@ -92,9 +91,9 @@ require(["highlight.js/build/highlight.pack"], function(hljs){
|
||||
|
||||
```html
|
||||
<script type="text/javascript">
|
||||
hljs.tabReplace = ' '; // 4 spaces
|
||||
hljs.configure({tabReplace: ' '}); // 4 spaces
|
||||
// ... or
|
||||
hljs.tabReplace = '<span class="indent">\t</span>';
|
||||
hljs.configure({tabReplace: '<span class="indent">\t</span>'});
|
||||
|
||||
hljs.initHighlightingOnLoad();
|
||||
</script>
|
||||
@ -104,9 +103,8 @@ require(["highlight.js/build/highlight.pack"], function(hljs){
|
||||
## Инициализация вручную
|
||||
|
||||
Если вы используете другие теги для блоков кода, вы можете инициализировать их
|
||||
явно с помощью функции `highlightBlock(code, tabReplace, useBR)`. Она принимает
|
||||
DOM-элемент с текстом расцвечиваемого кода и опционально - строчку для замены
|
||||
символов TAB.
|
||||
явно с помощью функции `highlightBlock(code)`. Она принимает DOM-элемент с
|
||||
текстом расцвечиваемого кода и опционально - строчку для замены символов TAB.
|
||||
|
||||
Например с использованием jQuery код инициализации может выглядеть так:
|
||||
|
||||
@ -121,10 +119,11 @@ $(document).ready(function() {
|
||||
повторно для уже раскрашенных блоков.
|
||||
|
||||
Если ваш блок кода использует `<br>` вместо переводов строки (т.е. если это не
|
||||
`<pre>`), передайте `true` третьим параметром в `highlightBlock`:
|
||||
`<pre>`), включите опцию `useBR`:
|
||||
|
||||
```javascript
|
||||
$('div.code').each(function(i, e) {hljs.highlightBlock(e, null, true)});
|
||||
hljs.configure({useBR: true});
|
||||
$('div.code').each(function(i, e) {hljs.highlightBlock(e)});
|
||||
```
|
||||
|
||||
|
||||
@ -165,7 +164,7 @@ highlight.js.
|
||||
|
||||
## Координаты
|
||||
|
||||
- Версия: 7.5
|
||||
- Версия: 8.0
|
||||
- URL: http://highlightjs.org/
|
||||
|
||||
Лицензионное соглашение читайте в файле LICENSE.
|
||||
|
@ -1,733 +0,0 @@
|
||||
This is a full list of available classes corresponding to languages'
|
||||
syntactic structures. The parentheses after language name contain identifiers
|
||||
used as class names in `<code>` element.
|
||||
|
||||
Python ("python"):
|
||||
|
||||
keyword keyword
|
||||
built_in built-in objects (None, False, True and Ellipsis)
|
||||
number number
|
||||
string string (of any type)
|
||||
comment comment
|
||||
decorator @-decorator for functions
|
||||
function function header "def some_name(...):"
|
||||
class class header "class SomeName(...):"
|
||||
title name of a function or a class inside a header
|
||||
params everything inside parentheses in a function's or class' header
|
||||
|
||||
Python profiler results ("profile"):
|
||||
|
||||
number number
|
||||
string string
|
||||
built_in built-in function entry
|
||||
filename filename in an entry
|
||||
summary profiling summary
|
||||
header header of table of results
|
||||
keyword column header
|
||||
function function name in an entry (including parentheses)
|
||||
title actual name of a function in an entry (excluding parentheses)
|
||||
prompt interpreter prompt (>>> or ...)
|
||||
|
||||
Ruby ("ruby"):
|
||||
|
||||
keyword keyword
|
||||
string string
|
||||
subst in-string substitution (#{...})
|
||||
comment comment
|
||||
yardoctag YARD tag
|
||||
function function header "def some_name(...):"
|
||||
class class header "class SomeName(...):"
|
||||
title name of a function or a class inside a header
|
||||
parent name of a parent class
|
||||
symbol symbol
|
||||
|
||||
Haml ("haml"):
|
||||
|
||||
tag any tag starting with "%"
|
||||
title tag's name
|
||||
attribute tag's attribute
|
||||
keyword tag's attribute that is a keyword
|
||||
string attribute's value that is a string
|
||||
value attribute's value, shorthand id or class for tag
|
||||
comment comment
|
||||
doctype !!! declaration
|
||||
bullet line defined by variable
|
||||
|
||||
Perl ("perl"):
|
||||
|
||||
keyword keyword
|
||||
comment comment
|
||||
number number
|
||||
string string
|
||||
regexp regular expression
|
||||
sub subroutine header (from "sub" till "{")
|
||||
variable variable starting with "$", "%", "@"
|
||||
operator operator
|
||||
pod plain old doc
|
||||
|
||||
PHP ("php"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string (of any type)
|
||||
comment comment
|
||||
phpdoc phpdoc params in comments
|
||||
variable variable starting with "$"
|
||||
preprocessor preprocessor marks: "<?php" and "?>"
|
||||
|
||||
Scala ("scala"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment comment
|
||||
annotation annotation
|
||||
javadoc javadoc comment
|
||||
javadoctag @-tag in javadoc
|
||||
class class header
|
||||
title class name inside a header
|
||||
params everything in parentheses inside a class header
|
||||
inheritance keywords "extends" and "with" inside class header
|
||||
|
||||
Go ("go"):
|
||||
|
||||
comment comment
|
||||
string string constant
|
||||
number number
|
||||
keyword language keywords
|
||||
constant true false nil iota
|
||||
typename built-in plain types (int, string etc.)
|
||||
built_in built-in functions
|
||||
|
||||
HTML, XML ("xml"):
|
||||
|
||||
tag any tag from "<" till ">"
|
||||
attribute tag's attribute with or without value
|
||||
value attribute's value
|
||||
comment comment
|
||||
pi processing instruction (<? ... ?>)
|
||||
doctype <!DOCTYPE ... > declaration
|
||||
cdata CDATA section
|
||||
|
||||
Lasso ("lasso"):
|
||||
|
||||
preprocessor delimiters and interpreter flags
|
||||
shebang Lasso 9 shell script header
|
||||
comment single- or multi-line comment
|
||||
javadoc doc comment
|
||||
keyword keyword
|
||||
literal keyword representing a value
|
||||
built_in built-in types and variables
|
||||
number number
|
||||
string string
|
||||
variable variable reference starting with "#" or "$"
|
||||
tag tag literal
|
||||
attribute named or rest parameter in method signature
|
||||
class type, trait, or method header
|
||||
title name following "define" inside a header
|
||||
|
||||
CSS ("css"):
|
||||
|
||||
tag tag in selectors
|
||||
id #some_name in selectors
|
||||
class .some_name in selectors
|
||||
at_rule @-rule till first "{" or ";"
|
||||
attr_selector attribute selector (square brackets in a[href^=http://])
|
||||
pseudo pseudo classes and elemens (:after, ::after etc.)
|
||||
comment comment
|
||||
rules everything from "{" till "}"
|
||||
attribute property name inside a rule
|
||||
value property value inside a rule, from ":" till ";" or
|
||||
till the end of rule block
|
||||
number number within a value
|
||||
string string within a value
|
||||
hexcolor hex color (#FFFFFF) within a value
|
||||
function CSS function within a value
|
||||
important "!important" symbol
|
||||
|
||||
SCSS ("scss"):
|
||||
|
||||
tag tag in selectors
|
||||
id #some_name in selectors
|
||||
class .some_name in selectors
|
||||
at_rule @-rule till first "{" or ";"
|
||||
attr_selector attribute selector (square brackets in a[href^=http://])
|
||||
pseudo pseudo classes and elemens (:after, ::after etc.)
|
||||
comment comment
|
||||
rules everything from "{" till "}"
|
||||
attribute property name inside a rule
|
||||
value property value inside a rule, from ":" till ";" or
|
||||
till the end of rule block
|
||||
number number within a value
|
||||
string string within a value
|
||||
hexcolor hex color (#FFFFFF) within a value
|
||||
function CSS function within a value
|
||||
important "!important" symbol
|
||||
variable variable starting with "$"
|
||||
preprocessor keywords after @
|
||||
|
||||
Markdown ("markdown"):
|
||||
|
||||
header header
|
||||
bullet list bullet
|
||||
emphasis emphasis
|
||||
strong strong emphasis
|
||||
blockquote blockquote
|
||||
code code
|
||||
horizontal_rule horizontal rule
|
||||
link_label link label
|
||||
link_url link url
|
||||
|
||||
AsciiDoc ("asciidoc"):
|
||||
|
||||
header heading
|
||||
bullet list or labeled bullet
|
||||
emphasis emphasis
|
||||
strong strong emphasis
|
||||
blockquote blockquote
|
||||
code inline or block code
|
||||
horizontal_rule horizontal rule
|
||||
link_label link or image label
|
||||
link_url link or image url
|
||||
comment comment
|
||||
attribute document attribute, block attributes
|
||||
label admonition label
|
||||
|
||||
Django ("django"):
|
||||
|
||||
keyword HTML tag in HTML, default tags and default filters in templates
|
||||
tag any tag from "<" till ">"
|
||||
comment comment
|
||||
doctype <!DOCTYPE ... > declaration
|
||||
attribute tag's attribute with or withou value
|
||||
value attribute's value
|
||||
template_tag template tag {% .. %}
|
||||
variable template variable {{ .. }}
|
||||
template_comment template comment, both {# .. #} and {% comment %}
|
||||
filter filter from "|" till the next filter or the end of tag
|
||||
argument filter argument
|
||||
|
||||
Handlebars ("handlebars"):
|
||||
|
||||
expression expression to be evaluated
|
||||
variable variable
|
||||
begin-block the beginning of a block
|
||||
end-block the ending of a block
|
||||
string string
|
||||
|
||||
JSON ("json"):
|
||||
|
||||
number number
|
||||
literal "true", "false" and "null"
|
||||
string string value
|
||||
attribute name of an object property
|
||||
value value of an object property
|
||||
|
||||
JavaScript ("javascript"):
|
||||
|
||||
keyword keyword
|
||||
comment comment
|
||||
number number
|
||||
literal special literal: "true", "false" and "null"
|
||||
string string
|
||||
regexp regular expression
|
||||
function header of a function
|
||||
title name of a function inside a header
|
||||
params parentheses and everything inside them in a function's header
|
||||
|
||||
CoffeeScript ("coffeescript"):
|
||||
|
||||
keyword keyword
|
||||
comment comment
|
||||
number number
|
||||
literal special literal: "true", "false" and "null"
|
||||
built_in built-in objects and functions ("window", "console", "require", etc...)
|
||||
string string
|
||||
subst #{ ... } interpolation in double-quoted strings
|
||||
regexp regular expression
|
||||
function header of a function
|
||||
class header of a class
|
||||
title name of a function variable inside a header
|
||||
params parentheses and everything inside them in a function's header
|
||||
property @-property within class and functions
|
||||
|
||||
ActionScript ("actionscript"):
|
||||
|
||||
comment comment
|
||||
string string
|
||||
number number
|
||||
keyword keywords
|
||||
literal literal
|
||||
reserved reserved keyword
|
||||
title name of declaration (package, class or function)
|
||||
preprocessor preprocessor directive (import, include)
|
||||
type type of returned value (for functions)
|
||||
package package (named or not)
|
||||
class class/interface
|
||||
function function
|
||||
param params of function
|
||||
rest_arg rest argument of function
|
||||
|
||||
VBScript ("vbscript"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment comment
|
||||
built_in built-in function
|
||||
|
||||
VB.Net ("vbnet"):
|
||||
|
||||
keyword keyword
|
||||
built_in built-in types
|
||||
literal "true", "false" and "nothing"
|
||||
string string
|
||||
comment comment
|
||||
xmlDocTag xmldoc tag ("'''", "<!--", "-->", "<..>")
|
||||
preprocessor preprocessor directive
|
||||
|
||||
HTTP ("http"):
|
||||
|
||||
request first line of a request
|
||||
status first line of a response
|
||||
attribute header name
|
||||
string header value or query string in a request line
|
||||
number status code
|
||||
|
||||
Lua ("lua"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment comment
|
||||
built_in built-in operator
|
||||
function header of a function
|
||||
title name of a function inside a header
|
||||
params everything inside parentheses in a function's header
|
||||
long_brackets multiline string in [=[ .. ]=]
|
||||
|
||||
Delphi ("delphi"):
|
||||
|
||||
keyword keyword
|
||||
comment comment (of any type)
|
||||
number number
|
||||
string string
|
||||
function header of a function, procedure, constructor and destructor
|
||||
title name of a function, procedure, constructor or destructor
|
||||
inside a header
|
||||
params everything inside parentheses in a function's header
|
||||
class class' body from "= class" till "end;"
|
||||
|
||||
Java ("java"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment commment
|
||||
annotaion annotation
|
||||
javadoc javadoc comment
|
||||
class class header from "class" till "{"
|
||||
title class name inside a header
|
||||
params everything in parentheses inside a class header
|
||||
inheritance keywords "extends" and "implements" inside class header
|
||||
|
||||
C++ ("cpp"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string and character
|
||||
comment comment
|
||||
preprocessor preprocessor directive
|
||||
stl_container instantiation of STL containers ("vector<...>")
|
||||
|
||||
Objective C ("objectivec"):
|
||||
|
||||
keyword keyword
|
||||
built_in Cocoa/Cocoa Touch constants and classes
|
||||
number number
|
||||
string string
|
||||
comment comment
|
||||
preprocessor preprocessor directive
|
||||
class interface/implementation, protocol and forward class declaration
|
||||
variable properties and struct accesors
|
||||
|
||||
Vala ("vala"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment comment
|
||||
class class definitions
|
||||
title in class definition
|
||||
constant ALL_UPPER_CASE
|
||||
|
||||
C# ("cs"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment commment
|
||||
xmlDocTag xmldoc tag ("///", "<!--", "-->", "<..>")
|
||||
|
||||
F# ("fsharp"):
|
||||
|
||||
keywords keyword
|
||||
number number
|
||||
string string
|
||||
commment comment
|
||||
class any custom F# type
|
||||
title the name of a custom F# type
|
||||
annotation any attribute
|
||||
|
||||
OCaml ("ocaml"):
|
||||
keywords keyword
|
||||
number number
|
||||
string string
|
||||
commment comment
|
||||
class any custom OCaml type
|
||||
title the name of a custom OCaml type
|
||||
annotation any attribute
|
||||
|
||||
D ("d"):
|
||||
|
||||
comment comment
|
||||
string string constant
|
||||
number number
|
||||
keyword language keywords (including @attributes)
|
||||
constant true false null
|
||||
built_in built-in plain types (int, string etc.)
|
||||
|
||||
RenderMan RSL ("rsl"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string (including @"..")
|
||||
comment comment
|
||||
preprocessor preprocessor directive
|
||||
shader sahder keywords
|
||||
shading shading keywords
|
||||
built_in built-in function
|
||||
|
||||
RenderMan RIB ("rib"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment comment
|
||||
commands command
|
||||
|
||||
Maya Embedded Language ("mel"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment comment
|
||||
variable variable
|
||||
|
||||
SQL ("sql"):
|
||||
|
||||
keyword keyword (mostly SQL'92 and SQL'99)
|
||||
number number
|
||||
string string (of any type: "..", '..', `..`)
|
||||
comment comment
|
||||
aggregate aggregate function
|
||||
|
||||
Smalltalk ("smalltalk"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment commment
|
||||
symbol symbol
|
||||
array array
|
||||
class name of a class
|
||||
char char
|
||||
localvars block of local variables
|
||||
|
||||
Lisp ("lisp"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment commment
|
||||
variable variable
|
||||
literal b, t and nil
|
||||
list non-quoted list
|
||||
title first symbol in a non-quoted list
|
||||
body remainder of the non-quoted list
|
||||
quoted quoted list, both "(quote .. )" and "'(..)"
|
||||
|
||||
Clojure ("clojure"):
|
||||
|
||||
comment comments and hints
|
||||
string string
|
||||
number number
|
||||
collection collections
|
||||
attribute :keyword
|
||||
title function name (built-in or user defined)
|
||||
built_in built-in function name
|
||||
|
||||
Ini ("ini"):
|
||||
|
||||
title title of a section
|
||||
value value of a setting of any type
|
||||
string string
|
||||
number number
|
||||
keyword boolean value keyword
|
||||
|
||||
Apache ("apache"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
comment commment
|
||||
literal On and Off
|
||||
sqbracket variables in rewrites "%{..}"
|
||||
cbracket options in rewrites "[..]"
|
||||
tag begin and end of a configuration section
|
||||
|
||||
Nginx ("nginx"):
|
||||
|
||||
title directive title
|
||||
string string
|
||||
number number
|
||||
comment comment
|
||||
built_in built-in constant
|
||||
variable $-variable
|
||||
regexp regexp
|
||||
|
||||
Diff ("diff"):
|
||||
|
||||
header file header
|
||||
chunk chunk header within a file
|
||||
addition added lines
|
||||
deletion deleted lines
|
||||
change changed lines
|
||||
|
||||
DOS ("dos"):
|
||||
|
||||
keyword keyword
|
||||
flow batch control keyword
|
||||
stream DOS special files ("con", "prn", ...)
|
||||
winutils some commands (see dos.js specifically)
|
||||
envvar environment variables
|
||||
|
||||
Bash ("bash"):
|
||||
|
||||
keyword keyword
|
||||
string string
|
||||
number number
|
||||
comment comment
|
||||
literal special literal: "true" и "false"
|
||||
variable variable
|
||||
shebang script interpreter header
|
||||
|
||||
Makefile ("makefile"):
|
||||
|
||||
keyword keyword ".PHONY" within the phony line
|
||||
string string
|
||||
comment comment
|
||||
variable $(..) variable
|
||||
title target title
|
||||
constant constant within the initial definition
|
||||
|
||||
CMake ("cmake"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment commment
|
||||
envvar $-variable
|
||||
operator operator (LESS, STREQUAL, MATCHES, etc)
|
||||
|
||||
Axapta ("axapta"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment commment
|
||||
class class header from "class" till "{"
|
||||
title class name inside a header
|
||||
params everything in parentheses inside a class header
|
||||
inheritance keywords "extends" and "implements" inside class header
|
||||
preprocessor preprocessor directive
|
||||
|
||||
Oracle Rules Language ("ruleslanguage"):
|
||||
|
||||
comment comment
|
||||
string string constant
|
||||
number number
|
||||
keyword language keywords
|
||||
built_in built-in functions
|
||||
array array stem
|
||||
|
||||
1C ("1c"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
date date
|
||||
string string
|
||||
comment commment
|
||||
function header of function or procudure
|
||||
title function name inside a header
|
||||
params everything in parentheses inside a function header
|
||||
preprocessor preprocessor directive
|
||||
|
||||
AVR assembler ("avrasm"):
|
||||
|
||||
keyword keyword
|
||||
built_in pre-defined register
|
||||
number number
|
||||
string string
|
||||
comment commment
|
||||
label label
|
||||
preprocessor preprocessor directive
|
||||
localvars substitution in .macro
|
||||
|
||||
VHDL ("vhdl"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
comment commment
|
||||
literal signal logical value
|
||||
typename typename
|
||||
attribute signal attribute
|
||||
|
||||
Parser3 ("parser3"):
|
||||
|
||||
keyword keyword
|
||||
number number
|
||||
comment commment
|
||||
variable variable starting with "$"
|
||||
preprocessor preprocessor directive
|
||||
title user-defined name starting with "@"
|
||||
|
||||
LiveCode Server ("livecodeserver"):
|
||||
|
||||
variable variable starting with "g", "t", "p", "s", "$_"
|
||||
string string
|
||||
comment comment
|
||||
number number
|
||||
title name of a command or a function
|
||||
keyword keyword
|
||||
constant constant
|
||||
operator operator
|
||||
built_in built_in functions and commands
|
||||
function header of a function
|
||||
command header of a command
|
||||
preprocessor preprocessor marks: "<?", "<?rev", "<?lc", "<?livecode" and "?>"
|
||||
|
||||
TeX ("tex"):
|
||||
|
||||
comment comment
|
||||
number number
|
||||
command command
|
||||
parameter parameter
|
||||
formula formula
|
||||
special special symbol
|
||||
|
||||
Haskell ("haskell"):
|
||||
|
||||
comment comment
|
||||
pragma GHC pragma
|
||||
preprocessor CPP preprocessor directive
|
||||
keyword keyword
|
||||
number number
|
||||
string string
|
||||
title function or variable name
|
||||
type value, type or type class constructor name (i.e. capitalized)
|
||||
container (..., ...) or {...; ...} list in declaration or record
|
||||
module module declaration
|
||||
import import declaration
|
||||
class type class or instance declaration
|
||||
typedef type declaration (type, newtype, data)
|
||||
default default declaration
|
||||
infix infix declaration
|
||||
foreign FFI declaration
|
||||
shebang shebang line
|
||||
|
||||
Erlang ("erlang"):
|
||||
|
||||
comment comment
|
||||
string string
|
||||
number number
|
||||
keyword keyword
|
||||
record_name record access (#record_name)
|
||||
title name of declaration function
|
||||
variable variable (starts with capital letter or with _)
|
||||
pp.keywords module's attribute (-attribute)
|
||||
function_name atom or atom:atom in case of function call
|
||||
|
||||
Rust ("rust"):
|
||||
|
||||
comment comment
|
||||
string string
|
||||
number number
|
||||
keyword keyword
|
||||
title name of declaration
|
||||
preprocessor preprocessor directive
|
||||
|
||||
Matlab ("matlab"):
|
||||
|
||||
comment comment
|
||||
string string
|
||||
number number
|
||||
keyword keyword
|
||||
title function name
|
||||
function function
|
||||
param params of function
|
||||
matrix matrix in [ .. ]
|
||||
cell cell in { .. }
|
||||
|
||||
Scilab ("scilab"):
|
||||
|
||||
comment comment
|
||||
string string
|
||||
number number
|
||||
keyword keyword
|
||||
title function name
|
||||
function function
|
||||
param params of function
|
||||
matrix matrix in [ .. ]
|
||||
|
||||
R ("r"):
|
||||
|
||||
comment comment
|
||||
string string constant
|
||||
number number
|
||||
keyword language keywords (function, if) plus "structural"
|
||||
functions (attach, require, setClass)
|
||||
literal special literal: TRUE, FALSE, NULL, NA, etc.
|
||||
|
||||
OpenGL Shading Language ("glsl"):
|
||||
|
||||
comment comment
|
||||
number number
|
||||
preprocessor preprocessor directive
|
||||
keyword keyword
|
||||
built_in GLSL built-in functions and variables
|
||||
literal true false
|
||||
|
||||
AppleScript ("applescript"):
|
||||
|
||||
keyword keyword
|
||||
command core AppleScript command
|
||||
constant AppleScript built in constant
|
||||
type AppleScript variable type (integer, etc.)
|
||||
property Applescript built in property (length, etc.)
|
||||
number number
|
||||
string string
|
||||
comment comment
|
||||
title name of a handler
|
||||
|
||||
Brainfuck ("brainfuck"):
|
||||
|
||||
title Brainfuck while loop command
|
||||
literal Brainfuck inc and dec commands
|
||||
comment comment
|
||||
string Brainfuck input and output commands
|
||||
|
||||
Mizar ("mizar"):
|
||||
|
||||
keyword keyword
|
||||
comment comment
|
File diff suppressed because one or more lines are too long
@ -3,158 +3,158 @@ Date: 17.V.2011
|
||||
Author: pumbur <pumbur@pumbur.net>
|
||||
*/
|
||||
|
||||
pre code
|
||||
.hljs
|
||||
{
|
||||
display: block; padding: 0.5em;
|
||||
background: #222;
|
||||
}
|
||||
|
||||
pre .profile .header *,
|
||||
pre .ini .title,
|
||||
pre .nginx .title
|
||||
.profile .hljs-header *,
|
||||
.ini .hljs-title,
|
||||
.nginx .hljs-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
|
||||
.hljs-comment,
|
||||
.hljs-javadoc,
|
||||
.hljs-preprocessor,
|
||||
.hljs-preprocessor .hljs-title,
|
||||
.hljs-pragma,
|
||||
.hljs-shebang,
|
||||
.profile .hljs-summary,
|
||||
.diff,
|
||||
.hljs-pi,
|
||||
.hljs-doctype,
|
||||
.hljs-tag,
|
||||
.hljs-template_comment,
|
||||
.css .hljs-rules,
|
||||
.tex .hljs-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
|
||||
.hljs-string,
|
||||
.hljs-symbol,
|
||||
.diff .hljs-change,
|
||||
.hljs-regexp,
|
||||
.xml .hljs-attribute,
|
||||
.smalltalk .hljs-char,
|
||||
.xml .hljs-value,
|
||||
.ini .hljs-value,
|
||||
.clojure .hljs-attribute,
|
||||
.coffeescript .hljs-attribute
|
||||
{
|
||||
color: #ffcc33;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .addition
|
||||
.hljs-number,
|
||||
.hljs-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
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.vhdl .hljs-typename,
|
||||
.go .hljs-constant,
|
||||
.go .hljs-typename,
|
||||
.ini .hljs-keyword,
|
||||
.lua .hljs-title,
|
||||
.perl .hljs-variable,
|
||||
.php .hljs-variable,
|
||||
.mel .hljs-variable,
|
||||
.django .hljs-variable,
|
||||
.css .funtion,
|
||||
.smalltalk .method,
|
||||
.hljs-hexcolor,
|
||||
.hljs-important,
|
||||
.hljs-flow,
|
||||
.hljs-inheritance,
|
||||
.parser3 .hljs-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
|
||||
.hljs-keyword,
|
||||
.hljs-tag .hljs-title,
|
||||
.css .hljs-tag,
|
||||
.css .hljs-class,
|
||||
.css .hljs-id,
|
||||
.css .hljs-pseudo,
|
||||
.css .hljs-attr_selector,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-built_in,
|
||||
.hljs-winutils,
|
||||
.tex .hljs-command,
|
||||
.hljs-request,
|
||||
.hljs-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 *
|
||||
.hljs-title,
|
||||
.ruby .hljs-constant,
|
||||
.vala .hljs-constant,
|
||||
.hljs-parent,
|
||||
.hljs-deletion,
|
||||
.hljs-template_tag,
|
||||
.css .hljs-keyword,
|
||||
.objectivec .hljs-class .hljs-id,
|
||||
.smalltalk .hljs-class,
|
||||
.lisp .hljs-keyword,
|
||||
.apache .hljs-tag,
|
||||
.nginx .hljs-variable,
|
||||
.hljs-envvar,
|
||||
.bash .hljs-variable,
|
||||
.go .hljs-built_in,
|
||||
.vbscript .hljs-built_in,
|
||||
.lua .hljs-built_in,
|
||||
.rsl .hljs-built_in,
|
||||
.tail,
|
||||
.avrasm .hljs-label,
|
||||
.tex .hljs-formula,
|
||||
.tex .hljs-formula *
|
||||
{
|
||||
color: #bb1166;
|
||||
}
|
||||
|
||||
pre .yardoctag,
|
||||
pre .phpdoc,
|
||||
pre .profile .header,
|
||||
pre .ini .title,
|
||||
pre .apache .tag,
|
||||
pre .parser3 .title
|
||||
.hljs-yardoctag,
|
||||
.hljs-phpdoc,
|
||||
.profile .hljs-header,
|
||||
.ini .hljs-title,
|
||||
.apache .hljs-tag,
|
||||
.parser3 .hljs-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
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-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 *
|
||||
.hljs,
|
||||
.javascript,
|
||||
.css,
|
||||
.xml,
|
||||
.hljs-subst,
|
||||
.diff .hljs-chunk,
|
||||
.css .hljs-value,
|
||||
.css .hljs-attribute,
|
||||
.lisp .hljs-string,
|
||||
.lisp .hljs-number,
|
||||
.tail .hljs-params,
|
||||
.hljs-container,
|
||||
.haskell *,
|
||||
.erlang *,
|
||||
.erlang_repl *
|
||||
{
|
||||
color: #aaa;
|
||||
}
|
||||
|
@ -4,47 +4,47 @@ Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiac
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.hljs-string,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-filter .hljs-argument,
|
||||
.hljs-addition,
|
||||
.hljs-change,
|
||||
.apache .hljs-tag,
|
||||
.apache .hljs-cbracket,
|
||||
.nginx .hljs-built_in,
|
||||
.tex .hljs-formula {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .shebang,
|
||||
pre .doctype,
|
||||
pre .pi,
|
||||
pre .javadoc,
|
||||
pre .deletion,
|
||||
pre .apache .sqbracket {
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.hljs-shebang,
|
||||
.hljs-doctype,
|
||||
.hljs-pi,
|
||||
.hljs-javadoc,
|
||||
.hljs-deletion,
|
||||
.apache .hljs-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 {
|
||||
.hljs-keyword,
|
||||
.hljs-tag .hljs-title,
|
||||
.ini .hljs-title,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-title,
|
||||
.http .hljs-title,
|
||||
.nginx .hljs-title,
|
||||
.css .hljs-tag,
|
||||
.hljs-winutils,
|
||||
.hljs-flow,
|
||||
.apache .hljs-tag,
|
||||
.tex .hljs-command,
|
||||
.hljs-request,
|
||||
.hljs-status {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
93
public/res/libs/highlight/styles/atelier-dune.dark.css
Normal file
93
public/res/libs/highlight/styles/atelier-dune.dark.css
Normal file
@ -0,0 +1,93 @@
|
||||
/* Base16 Atelier Dune Dark - Theme */
|
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
|
||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||
|
||||
/* Atelier Dune Dark Comment */
|
||||
.hljs-comment,
|
||||
.hljs-title {
|
||||
color: #999580;
|
||||
}
|
||||
|
||||
/* Atelier Dune Dark Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #d73737;
|
||||
}
|
||||
|
||||
/* Atelier Dune Dark Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #b65611;
|
||||
}
|
||||
|
||||
/* Atelier Dune Dark Yellow */
|
||||
.ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #cfb017;
|
||||
}
|
||||
|
||||
/* Atelier Dune Dark Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #60ac39;
|
||||
}
|
||||
|
||||
/* Atelier Dune Dark Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #1fad83;
|
||||
}
|
||||
|
||||
/* Atelier Dune Dark Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #6684e1;
|
||||
}
|
||||
|
||||
/* Atelier Dune Dark Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #b854d4;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #292824;
|
||||
color: #a6a28c;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
93
public/res/libs/highlight/styles/atelier-dune.light.css
Normal file
93
public/res/libs/highlight/styles/atelier-dune.light.css
Normal file
@ -0,0 +1,93 @@
|
||||
/* Base16 Atelier Dune Light - Theme */
|
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
|
||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||
|
||||
/* Atelier Dune Light Comment */
|
||||
.hljs-comment,
|
||||
.hljs-title {
|
||||
color: #7d7a68;
|
||||
}
|
||||
|
||||
/* Atelier Dune Light Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #d73737;
|
||||
}
|
||||
|
||||
/* Atelier Dune Light Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #b65611;
|
||||
}
|
||||
|
||||
/* Atelier Dune Light Yellow */
|
||||
.hljs-ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #cfb017;
|
||||
}
|
||||
|
||||
/* Atelier Dune Light Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #60ac39;
|
||||
}
|
||||
|
||||
/* Atelier Dune Light Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #1fad83;
|
||||
}
|
||||
|
||||
/* Atelier Dune Light Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #6684e1;
|
||||
}
|
||||
|
||||
/* Atelier Dune Light Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #b854d4;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #fefbec;
|
||||
color: #6e6b5e;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
93
public/res/libs/highlight/styles/atelier-forest.dark.css
Normal file
93
public/res/libs/highlight/styles/atelier-forest.dark.css
Normal file
@ -0,0 +1,93 @@
|
||||
/* 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) */
|
||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||
|
||||
/* Atelier Forest Dark Comment */
|
||||
.hljs-comment,
|
||||
.hljs-title {
|
||||
color: #9c9491;
|
||||
}
|
||||
|
||||
/* Atelier Forest Dark Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #f22c40;
|
||||
}
|
||||
|
||||
/* Atelier Forest Dark Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #df5320;
|
||||
}
|
||||
|
||||
/* Atelier Forest Dark Yellow */
|
||||
.hljs-ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #d5911a;
|
||||
}
|
||||
|
||||
/* Atelier Forest Dark Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #5ab738;
|
||||
}
|
||||
|
||||
/* Atelier Forest Dark Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #00ad9c;
|
||||
}
|
||||
|
||||
/* Atelier Forest Dark Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #407ee7;
|
||||
}
|
||||
|
||||
/* Atelier Forest Dark Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #6666ea;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #2c2421;
|
||||
color: #a8a19f;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
93
public/res/libs/highlight/styles/atelier-forest.light.css
Normal file
93
public/res/libs/highlight/styles/atelier-forest.light.css
Normal file
@ -0,0 +1,93 @@
|
||||
/* Base16 Atelier Forest Light - 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) */
|
||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||
|
||||
/* Atelier Forest Light Comment */
|
||||
.hljs-comment,
|
||||
.hljs-title {
|
||||
color: #766e6b;
|
||||
}
|
||||
|
||||
/* Atelier Forest Light Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #f22c40;
|
||||
}
|
||||
|
||||
/* Atelier Forest Light Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #df5320;
|
||||
}
|
||||
|
||||
/* Atelier Forest Light Yellow */
|
||||
.hljs-ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #d5911a;
|
||||
}
|
||||
|
||||
/* Atelier Forest Light Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #5ab738;
|
||||
}
|
||||
|
||||
/* Atelier Forest Light Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #00ad9c;
|
||||
}
|
||||
|
||||
/* Atelier Forest Light Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #407ee7;
|
||||
}
|
||||
|
||||
/* Atelier Forest Light Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #6666ea;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #f1efee;
|
||||
color: #68615e;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
93
public/res/libs/highlight/styles/atelier-heath.dark.css
Normal file
93
public/res/libs/highlight/styles/atelier-heath.dark.css
Normal file
@ -0,0 +1,93 @@
|
||||
/* Base16 Atelier Heath Dark - 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) */
|
||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||
|
||||
/* Atelier Heath Dark Comment */
|
||||
.hljs-comment,
|
||||
.hljs-title {
|
||||
color: #9e8f9e;
|
||||
}
|
||||
|
||||
/* Atelier Heath Dark Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #ca402b;
|
||||
}
|
||||
|
||||
/* Atelier Heath Dark Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #a65926;
|
||||
}
|
||||
|
||||
/* Atelier Heath Dark Yellow */
|
||||
.hljs-ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #bb8a35;
|
||||
}
|
||||
|
||||
/* Atelier Heath Dark Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #379a37;
|
||||
}
|
||||
|
||||
/* Atelier Heath Dark Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #159393;
|
||||
}
|
||||
|
||||
/* Atelier Heath Dark Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #516aec;
|
||||
}
|
||||
|
||||
/* Atelier Heath Dark Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #7b59c0;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #292329;
|
||||
color: #ab9bab;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
93
public/res/libs/highlight/styles/atelier-heath.light.css
Normal file
93
public/res/libs/highlight/styles/atelier-heath.light.css
Normal file
@ -0,0 +1,93 @@
|
||||
/* 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) */
|
||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||
|
||||
/* Atelier Heath Light Comment */
|
||||
.hljs-comment,
|
||||
.hljs-title {
|
||||
color: #776977;
|
||||
}
|
||||
|
||||
/* Atelier Heath Light Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #ca402b;
|
||||
}
|
||||
|
||||
/* Atelier Heath Light Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #a65926;
|
||||
}
|
||||
|
||||
/* Atelier Heath Light Yellow */
|
||||
.hljs-ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #bb8a35;
|
||||
}
|
||||
|
||||
/* Atelier Heath Light Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #379a37;
|
||||
}
|
||||
|
||||
/* Atelier Heath Light Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #159393;
|
||||
}
|
||||
|
||||
/* Atelier Heath Light Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #516aec;
|
||||
}
|
||||
|
||||
/* Atelier Heath Light Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #7b59c0;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #f7f3f7;
|
||||
color: #695d69;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
93
public/res/libs/highlight/styles/atelier-lakeside.dark.css
Normal file
93
public/res/libs/highlight/styles/atelier-lakeside.dark.css
Normal file
@ -0,0 +1,93 @@
|
||||
/* Base16 Atelier Lakeside Dark - Theme */
|
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
|
||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||
|
||||
/* Atelier Lakeside Dark Comment */
|
||||
.hljs-comment,
|
||||
.hljs-title {
|
||||
color: #7195a8;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Dark Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #d22d72;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Dark Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #935c25;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Dark Yellow */
|
||||
.hljs-ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #8a8a0f;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Dark Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #568c3b;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Dark Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #2d8f6f;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Dark Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #257fad;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Dark Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #5d5db1;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #1f292e;
|
||||
color: #7ea2b4;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
93
public/res/libs/highlight/styles/atelier-lakeside.light.css
Normal file
93
public/res/libs/highlight/styles/atelier-lakeside.light.css
Normal file
@ -0,0 +1,93 @@
|
||||
/* Base16 Atelier Lakeside Light - Theme */
|
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
|
||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||
|
||||
/* Atelier Lakeside Light Comment */
|
||||
.hljs-comment,
|
||||
.hljs-title {
|
||||
color: #5a7b8c;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Light Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #d22d72;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Light Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #935c25;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Light Yellow */
|
||||
.hljs-ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #8a8a0f;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Light Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #568c3b;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Light Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #2d8f6f;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Light Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #257fad;
|
||||
}
|
||||
|
||||
/* Atelier Lakeside Light Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #5d5db1;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #ebf8ff;
|
||||
color: #516d7b;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
93
public/res/libs/highlight/styles/atelier-seaside.dark.css
Normal file
93
public/res/libs/highlight/styles/atelier-seaside.dark.css
Normal file
@ -0,0 +1,93 @@
|
||||
/* Base16 Atelier Seaside Dark - Theme */
|
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */
|
||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||
|
||||
/* Atelier Seaside Dark Comment */
|
||||
.hljs-comment,
|
||||
.hljs-title {
|
||||
color: #809980;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Dark Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #e6193c;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Dark Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #87711d;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Dark Yellow */
|
||||
.hljs-ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #c3c322;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Dark Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #29a329;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Dark Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #1999b3;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Dark Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #3d62f5;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Dark Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #ad2bee;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #242924;
|
||||
color: #8ca68c;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
93
public/res/libs/highlight/styles/atelier-seaside.light.css
Normal file
93
public/res/libs/highlight/styles/atelier-seaside.light.css
Normal file
@ -0,0 +1,93 @@
|
||||
/* Base16 Atelier Seaside Light - Theme */
|
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */
|
||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||
|
||||
/* Atelier Seaside Light Comment */
|
||||
.hljs-comment,
|
||||
.hljs-title {
|
||||
color: #687d68;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Light Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #e6193c;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Light Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #87711d;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Light Yellow */
|
||||
.hljs-ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #c3c322;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Light Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #29a329;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Light Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #1999b3;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Light Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #3d62f5;
|
||||
}
|
||||
|
||||
/* Atelier Seaside Light Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #ad2bee;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #f0fff0;
|
||||
color: #5e6e5e;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
@ -4,102 +4,102 @@ Brown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.hljs-keyword,
|
||||
.hljs-literal,
|
||||
.hljs-change,
|
||||
.hljs-winutils,
|
||||
.hljs-flow,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-built_in,
|
||||
.nginx .hljs-title,
|
||||
.tex .hljs-special,
|
||||
.hljs-request,
|
||||
.hljs-status {
|
||||
color:#005599;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst,
|
||||
pre .tag .keyword {
|
||||
.hljs,
|
||||
.hljs-subst,
|
||||
.hljs-tag .hljs-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 {
|
||||
.hljs-string,
|
||||
.hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.hljs-tag .hljs-value,
|
||||
.css .hljs-rules .hljs-value,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.ruby .hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.ruby .hljs-class .hljs-parent,
|
||||
.hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.django .hljs-template_tag,
|
||||
.django .hljs-variable,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-javadoc,
|
||||
.ruby .hljs-string,
|
||||
.django .hljs-filter .hljs-argument,
|
||||
.smalltalk .hljs-localvars,
|
||||
.smalltalk .hljs-array,
|
||||
.hljs-attr_selector,
|
||||
.hljs-pseudo,
|
||||
.hljs-addition,
|
||||
.hljs-stream,
|
||||
.hljs-envvar,
|
||||
.apache .hljs-tag,
|
||||
.apache .hljs-cbracket,
|
||||
.tex .hljs-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 {
|
||||
.hljs-comment,
|
||||
.java .hljs-annotation,
|
||||
.python .hljs-decorator,
|
||||
.hljs-template_comment,
|
||||
.hljs-pi,
|
||||
.hljs-doctype,
|
||||
.hljs-deletion,
|
||||
.hljs-shebang,
|
||||
.apache .hljs-sqbracket,
|
||||
.nginx .hljs-built_in,
|
||||
.tex .hljs-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 {
|
||||
.hljs-keyword,
|
||||
.hljs-literal,
|
||||
.css .hljs-id,
|
||||
.hljs-phpdoc,
|
||||
.hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.vbscript .hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.rsl .hljs-built_in,
|
||||
.smalltalk .hljs-class,
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk,
|
||||
.hljs-winutils,
|
||||
.bash .hljs-variable,
|
||||
.apache .hljs-tag,
|
||||
.tex .hljs-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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
@ -4,102 +4,102 @@ Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Or
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.hljs-keyword,
|
||||
.hljs-literal,
|
||||
.hljs-change,
|
||||
.hljs-winutils,
|
||||
.hljs-flow,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-built_in,
|
||||
.nginx .hljs-title,
|
||||
.tex .hljs-special {
|
||||
color: white;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst {
|
||||
.hljs,
|
||||
.hljs-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 {
|
||||
.hljs-string,
|
||||
.hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.ini .hljs-title,
|
||||
.hljs-tag .hljs-value,
|
||||
.css .hljs-rules .hljs-value,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.ruby .hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.ruby .hljs-class .hljs-parent,
|
||||
.hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.django .hljs-template_tag,
|
||||
.django .hljs-variable,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-javadoc,
|
||||
.ruby .hljs-string,
|
||||
.django .hljs-filter .hljs-argument,
|
||||
.smalltalk .hljs-localvars,
|
||||
.smalltalk .hljs-array,
|
||||
.hljs-attr_selector,
|
||||
.hljs-pseudo,
|
||||
.hljs-addition,
|
||||
.hljs-stream,
|
||||
.hljs-envvar,
|
||||
.apache .hljs-tag,
|
||||
.apache .hljs-cbracket,
|
||||
.tex .hljs-command,
|
||||
.hljs-prompt,
|
||||
.coffeescript .hljs-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 {
|
||||
.hljs-comment,
|
||||
.java .hljs-annotation,
|
||||
.python .hljs-decorator,
|
||||
.hljs-template_comment,
|
||||
.hljs-pi,
|
||||
.hljs-doctype,
|
||||
.hljs-deletion,
|
||||
.hljs-shebang,
|
||||
.apache .hljs-sqbracket,
|
||||
.tex .hljs-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 {
|
||||
.hljs-keyword,
|
||||
.hljs-literal,
|
||||
.hljs-title,
|
||||
.css .hljs-id,
|
||||
.hljs-phpdoc,
|
||||
.haskell .hljs-type,
|
||||
.vbscript .hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.rsl .hljs-built_in,
|
||||
.smalltalk .hljs-class,
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk,
|
||||
.hljs-winutils,
|
||||
.bash .hljs-variable,
|
||||
.apache .hljs-tag,
|
||||
.tex .hljs-special,
|
||||
.hljs-request,
|
||||
.hljs-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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -4,150 +4,150 @@ Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiac
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
background: #F0F0F0;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst,
|
||||
pre .tag .title,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in,
|
||||
pre .nginx .title {
|
||||
.hljs,
|
||||
.hljs-subst,
|
||||
.hljs-tag .hljs-title,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-built_in,
|
||||
.nginx .hljs-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 {
|
||||
.hljs-string,
|
||||
.hljs-title,
|
||||
.hljs-constant,
|
||||
.hljs-parent,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-rules .hljs-value,
|
||||
.hljs-rules .hljs-value .hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.haml .hljs-symbol,
|
||||
.ruby .hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.hljs-aggregate,
|
||||
.hljs-template_tag,
|
||||
.django .hljs-variable,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-addition,
|
||||
.hljs-flow,
|
||||
.hljs-stream,
|
||||
.bash .hljs-variable,
|
||||
.apache .hljs-tag,
|
||||
.apache .hljs-cbracket,
|
||||
.tex .hljs-command,
|
||||
.tex .hljs-special,
|
||||
.erlang_repl .hljs-function_or_atom,
|
||||
.asciidoc .hljs-header,
|
||||
.markdown .hljs-header,
|
||||
.coffeescript .hljs-attribute {
|
||||
color: #800;
|
||||
}
|
||||
|
||||
pre .smartquote,
|
||||
pre .comment,
|
||||
pre .annotation,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .asciidoc .blockquote,
|
||||
pre .markdown .blockquote {
|
||||
.smartquote,
|
||||
.hljs-comment,
|
||||
.hljs-annotation,
|
||||
.hljs-template_comment,
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk,
|
||||
.asciidoc .hljs-blockquote,
|
||||
.markdown .hljs-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 {
|
||||
.hljs-number,
|
||||
.hljs-date,
|
||||
.hljs-regexp,
|
||||
.hljs-literal,
|
||||
.hljs-hexcolor,
|
||||
.smalltalk .hljs-symbol,
|
||||
.smalltalk .hljs-char,
|
||||
.go .hljs-constant,
|
||||
.hljs-change,
|
||||
.lasso .hljs-variable,
|
||||
.makefile .hljs-variable,
|
||||
.asciidoc .hljs-bullet,
|
||||
.markdown .hljs-bullet,
|
||||
.asciidoc .hljs-link_url,
|
||||
.markdown .hljs-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 {
|
||||
.hljs-label,
|
||||
.hljs-javadoc,
|
||||
.ruby .hljs-string,
|
||||
.hljs-decorator,
|
||||
.hljs-filter .hljs-argument,
|
||||
.hljs-localvars,
|
||||
.hljs-array,
|
||||
.hljs-attr_selector,
|
||||
.hljs-important,
|
||||
.hljs-pseudo,
|
||||
.hljs-pi,
|
||||
.haml .hljs-bullet,
|
||||
.hljs-doctype,
|
||||
.hljs-deletion,
|
||||
.hljs-envvar,
|
||||
.hljs-shebang,
|
||||
.apache .hljs-sqbracket,
|
||||
.nginx .hljs-built_in,
|
||||
.tex .hljs-formula,
|
||||
.erlang_repl .hljs-reserved,
|
||||
.hljs-prompt,
|
||||
.asciidoc .hljs-link_label,
|
||||
.markdown .hljs-link_label,
|
||||
.vhdl .hljs-attribute,
|
||||
.clojure .hljs-attribute,
|
||||
.asciidoc .hljs-attribute,
|
||||
.lasso .hljs-attribute,
|
||||
.coffeescript .hljs-property,
|
||||
.hljs-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 {
|
||||
.hljs-keyword,
|
||||
.hljs-id,
|
||||
.hljs-title,
|
||||
.hljs-built_in,
|
||||
.hljs-aggregate,
|
||||
.css .hljs-tag,
|
||||
.hljs-javadoctag,
|
||||
.hljs-phpdoc,
|
||||
.hljs-yardoctag,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-winutils,
|
||||
.bash .hljs-variable,
|
||||
.apache .hljs-tag,
|
||||
.go .hljs-typename,
|
||||
.tex .hljs-command,
|
||||
.asciidoc .hljs-strong,
|
||||
.markdown .hljs-strong,
|
||||
.hljs-request,
|
||||
.hljs-status {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .asciidoc .emphasis,
|
||||
pre .markdown .emphasis {
|
||||
.asciidoc .hljs-emphasis,
|
||||
.markdown .hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .nginx .built_in {
|
||||
.nginx .hljs-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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.lasso .markup,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -2,131 +2,131 @@
|
||||
Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
color: #000;
|
||||
background: #f8f8ff
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .javadoc {
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.diff .hljs-header,
|
||||
.hljs-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 {
|
||||
.hljs-keyword,
|
||||
.assignment,
|
||||
.hljs-literal,
|
||||
.css .rule .hljs-keyword,
|
||||
.hljs-winutils,
|
||||
.javascript .hljs-title,
|
||||
.lisp .hljs-title,
|
||||
.hljs-subst {
|
||||
color: #954121;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .hexcolor {
|
||||
.hljs-number,
|
||||
.hljs-hexcolor {
|
||||
color: #40a070
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula {
|
||||
.hljs-string,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-phpdoc,
|
||||
.tex .hljs-formula {
|
||||
color: #219161;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .id {
|
||||
.hljs-title,
|
||||
.hljs-id {
|
||||
color: #19469D;
|
||||
}
|
||||
pre .params {
|
||||
.hljs-params {
|
||||
color: #00F;
|
||||
}
|
||||
|
||||
pre .javascript .title,
|
||||
pre .lisp .title,
|
||||
pre .subst {
|
||||
.javascript .hljs-title,
|
||||
.lisp .hljs-title,
|
||||
.hljs-subst {
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
pre .class .title,
|
||||
pre .haskell .label,
|
||||
pre .tex .command {
|
||||
.hljs-class .hljs-title,
|
||||
.haskell .hljs-label,
|
||||
.tex .hljs-command {
|
||||
color: #458;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .tag,
|
||||
pre .tag .title,
|
||||
pre .rules .property,
|
||||
pre .django .tag .keyword {
|
||||
.hljs-tag,
|
||||
.hljs-tag .hljs-title,
|
||||
.hljs-rules .hljs-property,
|
||||
.django .hljs-tag .hljs-keyword {
|
||||
color: #000080;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .variable,
|
||||
pre .instancevar,
|
||||
pre .lisp .body {
|
||||
.hljs-attribute,
|
||||
.hljs-variable,
|
||||
.instancevar,
|
||||
.lisp .hljs-body {
|
||||
color: #008080
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
.hljs-regexp {
|
||||
color: #B68
|
||||
}
|
||||
|
||||
pre .class {
|
||||
.hljs-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 {
|
||||
.hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.ruby .hljs-symbol .hljs-keyword,
|
||||
.ruby .hljs-symbol .keymethods,
|
||||
.lisp .hljs-keyword,
|
||||
.tex .hljs-special,
|
||||
.input_number {
|
||||
color: #990073
|
||||
}
|
||||
|
||||
pre .builtin,
|
||||
pre .constructor,
|
||||
pre .built_in,
|
||||
pre .lisp .title {
|
||||
.builtin,
|
||||
.constructor,
|
||||
.hljs-built_in,
|
||||
.lisp .hljs-title {
|
||||
color: #0086b3
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .shebang,
|
||||
pre .cdata {
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-pi,
|
||||
.hljs-doctype,
|
||||
.hljs-shebang,
|
||||
.hljs-cdata {
|
||||
color: #999;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
.hljs-deletion {
|
||||
background: #fdd
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
.hljs-addition {
|
||||
background: #dfd
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
.diff .hljs-change {
|
||||
background: #0086b3
|
||||
}
|
||||
|
||||
pre .chunk {
|
||||
.hljs-chunk {
|
||||
color: #aaa
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
.tex .hljs-formula {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -4,110 +4,110 @@ FAR Style (c) MajestiC <majestic2k@gmail.com>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
background: #000080;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst {
|
||||
.hljs,
|
||||
.hljs-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 {
|
||||
.hljs-string,
|
||||
.ruby .hljs-string,
|
||||
.haskell .hljs-type,
|
||||
.hljs-tag .hljs-value,
|
||||
.css .hljs-rules .hljs-value,
|
||||
.css .hljs-rules .hljs-value .hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.ruby .hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.django .hljs-template_tag,
|
||||
.django .hljs-variable,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-addition,
|
||||
.apache .hljs-tag,
|
||||
.apache .hljs-cbracket,
|
||||
.tex .hljs-command,
|
||||
.clojure .hljs-title,
|
||||
.coffeescript .hljs-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 {
|
||||
.hljs-keyword,
|
||||
.css .hljs-id,
|
||||
.hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.vbscript .hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.rsl .hljs-built_in,
|
||||
.smalltalk .hljs-class,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.hljs-winutils,
|
||||
.hljs-flow,
|
||||
.hljs-change,
|
||||
.hljs-envvar,
|
||||
.bash .hljs-variable,
|
||||
.tex .hljs-special,
|
||||
.clojure .hljs-built_in {
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .phpdoc,
|
||||
pre .javadoc,
|
||||
pre .java .annotation,
|
||||
pre .template_comment,
|
||||
pre .deletion,
|
||||
pre .apache .sqbracket,
|
||||
pre .tex .formula {
|
||||
.hljs-comment,
|
||||
.hljs-phpdoc,
|
||||
.hljs-javadoc,
|
||||
.java .hljs-annotation,
|
||||
.hljs-template_comment,
|
||||
.hljs-deletion,
|
||||
.apache .hljs-sqbracket,
|
||||
.tex .hljs-formula {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .date,
|
||||
pre .regexp,
|
||||
pre .literal,
|
||||
pre .smalltalk .symbol,
|
||||
pre .smalltalk .char,
|
||||
pre .clojure .attribute {
|
||||
.hljs-number,
|
||||
.hljs-date,
|
||||
.hljs-regexp,
|
||||
.hljs-literal,
|
||||
.smalltalk .hljs-symbol,
|
||||
.smalltalk .hljs-char,
|
||||
.clojure .hljs-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 {
|
||||
.python .hljs-decorator,
|
||||
.django .hljs-filter .hljs-argument,
|
||||
.smalltalk .hljs-localvars,
|
||||
.smalltalk .hljs-array,
|
||||
.hljs-attr_selector,
|
||||
.hljs-pseudo,
|
||||
.xml .hljs-pi,
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk,
|
||||
.hljs-shebang,
|
||||
.nginx .hljs-built_in,
|
||||
.hljs-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 {
|
||||
.hljs-keyword,
|
||||
.css .hljs-id,
|
||||
.hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.vbscript .hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.rsl .hljs-built_in,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-winutils,
|
||||
.hljs-flow,
|
||||
.apache .hljs-tag,
|
||||
.nginx .hljs-built_in,
|
||||
.tex .hljs-command,
|
||||
.tex .hljs-special,
|
||||
.hljs-request,
|
||||
.hljs-status {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
96
public/res/libs/highlight/styles/foundation.css
vendored
96
public/res/libs/highlight/styles/foundation.css
vendored
@ -6,128 +6,128 @@ Version: 1.0
|
||||
Date: 2013-04-02
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
pre .header,
|
||||
pre .decorator,
|
||||
pre .annotation {
|
||||
.hljs-header,
|
||||
.hljs-decorator,
|
||||
.hljs-annotation {
|
||||
color: #000077;
|
||||
}
|
||||
|
||||
pre .horizontal_rule,
|
||||
pre .link_url,
|
||||
pre .emphasis,
|
||||
pre .attribute {
|
||||
.hljs-horizontal_rule,
|
||||
.hljs-link_url,
|
||||
.hljs-emphasis,
|
||||
.hljs-attribute {
|
||||
color: #070;
|
||||
}
|
||||
|
||||
pre .emphasis {
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .link_label,
|
||||
pre .strong,
|
||||
pre .value,
|
||||
pre .string,
|
||||
pre .scss .value .string {
|
||||
.hljs-link_label,
|
||||
.hljs-strong,
|
||||
.hljs-value,
|
||||
.hljs-string,
|
||||
.scss .hljs-value .hljs-string {
|
||||
color: #d14;
|
||||
}
|
||||
|
||||
pre .strong {
|
||||
.hljs-strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .blockquote,
|
||||
pre .comment {
|
||||
.hljs-blockquote,
|
||||
.hljs-comment {
|
||||
color: #998;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .asciidoc .title,
|
||||
pre .function .title {
|
||||
.asciidoc .hljs-title,
|
||||
.hljs-function .hljs-title {
|
||||
color: #900;
|
||||
}
|
||||
|
||||
pre .class {
|
||||
.hljs-class {
|
||||
color: #458;
|
||||
}
|
||||
|
||||
pre .id,
|
||||
pre .pseudo,
|
||||
pre .constant,
|
||||
pre .hexcolor {
|
||||
.hljs-id,
|
||||
.hljs-pseudo,
|
||||
.hljs-constant,
|
||||
.hljs-hexcolor {
|
||||
color: teal;
|
||||
}
|
||||
|
||||
pre .variable {
|
||||
.hljs-variable {
|
||||
color: #336699;
|
||||
}
|
||||
|
||||
pre .bullet,
|
||||
pre .javadoc {
|
||||
.hljs-bullet,
|
||||
.hljs-javadoc {
|
||||
color: #997700;
|
||||
}
|
||||
|
||||
pre .pi,
|
||||
pre .doctype {
|
||||
.hljs-pi,
|
||||
.hljs-doctype {
|
||||
color: #3344bb;
|
||||
}
|
||||
|
||||
pre .code,
|
||||
pre .number {
|
||||
.hljs-code,
|
||||
.hljs-number {
|
||||
color: #099;
|
||||
}
|
||||
|
||||
pre .important {
|
||||
.hljs-important {
|
||||
color: #f00;
|
||||
}
|
||||
|
||||
pre .smartquote,
|
||||
pre .label {
|
||||
.smartquote,
|
||||
.hljs-label {
|
||||
color: #970;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .pragma {
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma {
|
||||
color: #579;
|
||||
}
|
||||
|
||||
pre .reserved,
|
||||
pre .keyword,
|
||||
pre .scss .value {
|
||||
.hljs-reserved,
|
||||
.hljs-keyword,
|
||||
.scss .hljs-value {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
.hljs-regexp {
|
||||
background-color: #fff0ff;
|
||||
color: #880088;
|
||||
}
|
||||
|
||||
pre .symbol {
|
||||
.hljs-symbol {
|
||||
color: #990073;
|
||||
}
|
||||
|
||||
pre .symbol .string {
|
||||
.hljs-symbol .hljs-string {
|
||||
color: #a60;
|
||||
}
|
||||
|
||||
pre .tag {
|
||||
.hljs-tag {
|
||||
color: #007700;
|
||||
}
|
||||
|
||||
pre .at_rule,
|
||||
pre .at_rule .keyword {
|
||||
.hljs-at_rule,
|
||||
.hljs-at_rule .hljs-keyword {
|
||||
color: #088;
|
||||
}
|
||||
|
||||
pre .at_rule .preprocessor {
|
||||
.hljs-at_rule .hljs-preprocessor {
|
||||
color: #808;
|
||||
}
|
||||
|
||||
pre .scss .tag,
|
||||
pre .scss .attribute {
|
||||
.scss .hljs-tag,
|
||||
.scss .hljs-attribute {
|
||||
color: #339;
|
||||
}
|
||||
|
@ -4,127 +4,122 @@ github.com style (c) Vasily Polovnyov <vast@whiteants.net>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
color: #333;
|
||||
background: #f8f8ff
|
||||
background: #f8f8f8
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .javadoc {
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.diff .hljs-header,
|
||||
.hljs-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 {
|
||||
.hljs-keyword,
|
||||
.css .rule .hljs-keyword,
|
||||
.hljs-winutils,
|
||||
.javascript .hljs-title,
|
||||
.nginx .hljs-title,
|
||||
.hljs-subst,
|
||||
.hljs-request,
|
||||
.hljs-status {
|
||||
color: #333;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .hexcolor,
|
||||
pre .ruby .constant {
|
||||
.hljs-number,
|
||||
.hljs-hexcolor,
|
||||
.ruby .hljs-constant {
|
||||
color: #099;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula {
|
||||
.hljs-string,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-phpdoc,
|
||||
.tex .hljs-formula {
|
||||
color: #d14
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .id,
|
||||
pre .coffeescript .params,
|
||||
pre .scss .preprocessor {
|
||||
.hljs-title,
|
||||
.hljs-id,
|
||||
.coffeescript .hljs-params,
|
||||
.scss .hljs-preprocessor {
|
||||
color: #900;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .javascript .title,
|
||||
pre .lisp .title,
|
||||
pre .clojure .title,
|
||||
pre .subst {
|
||||
.javascript .hljs-title,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-title,
|
||||
.hljs-subst {
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
pre .class .title,
|
||||
pre .haskell .type,
|
||||
pre .vhdl .literal,
|
||||
pre .tex .command {
|
||||
.hljs-class .hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.vhdl .hljs-literal,
|
||||
.tex .hljs-command {
|
||||
color: #458;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .tag,
|
||||
pre .tag .title,
|
||||
pre .rules .property,
|
||||
pre .django .tag .keyword {
|
||||
.hljs-tag,
|
||||
.hljs-tag .hljs-title,
|
||||
.hljs-rules .hljs-property,
|
||||
.django .hljs-tag .hljs-keyword {
|
||||
color: #000080;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .variable,
|
||||
pre .lisp .body {
|
||||
.hljs-attribute,
|
||||
.hljs-variable,
|
||||
.lisp .hljs-body {
|
||||
color: #008080
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
.hljs-regexp {
|
||||
color: #009926
|
||||
}
|
||||
|
||||
pre .class {
|
||||
color: #458;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .lisp .keyword,
|
||||
pre .tex .special,
|
||||
pre .prompt {
|
||||
.hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.lisp .hljs-keyword,
|
||||
.tex .hljs-special,
|
||||
.hljs-prompt {
|
||||
color: #990073
|
||||
}
|
||||
|
||||
pre .built_in,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in {
|
||||
.hljs-built_in,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-built_in {
|
||||
color: #0086b3
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .pragma,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .shebang,
|
||||
pre .cdata {
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-pi,
|
||||
.hljs-doctype,
|
||||
.hljs-shebang,
|
||||
.hljs-cdata {
|
||||
color: #999;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
.hljs-deletion {
|
||||
background: #fdd
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
.hljs-addition {
|
||||
background: #dfd
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
.diff .hljs-change {
|
||||
background: #0086b3
|
||||
}
|
||||
|
||||
pre .chunk {
|
||||
.hljs-chunk {
|
||||
color: #aaa
|
||||
}
|
||||
|
@ -4,143 +4,144 @@ Google Code style (c) Aahan Krish <geekpanth3r@gmail.com>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
background: white; color: black;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc,
|
||||
pre .comment * {
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.hljs-javadoc,
|
||||
.hljs-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 {
|
||||
.hljs-keyword,
|
||||
.method,
|
||||
.hljs-list .hljs-title,
|
||||
.clojure .hljs-built_in,
|
||||
.nginx .hljs-title,
|
||||
.hljs-tag .hljs-title,
|
||||
.setting .hljs-value,
|
||||
.hljs-winutils,
|
||||
.tex .hljs-command,
|
||||
.http .hljs-title,
|
||||
.hljs-request,
|
||||
.hljs-status {
|
||||
color: #008;
|
||||
}
|
||||
|
||||
pre .envvar,
|
||||
pre .tex .special {
|
||||
.hljs-envvar,
|
||||
.tex .hljs-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 {
|
||||
.hljs-string,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-cdata,
|
||||
.hljs-filter .hljs-argument,
|
||||
.hljs-attr_selector,
|
||||
.apache .hljs-cbracket,
|
||||
.hljs-date,
|
||||
.hljs-regexp,
|
||||
.coffeescript .hljs-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 {
|
||||
.hljs-sub .hljs-identifier,
|
||||
.hljs-pi,
|
||||
.hljs-tag,
|
||||
.hljs-tag .hljs-keyword,
|
||||
.hljs-decorator,
|
||||
.ini .hljs-title,
|
||||
.hljs-shebang,
|
||||
.hljs-prompt,
|
||||
.hljs-hexcolor,
|
||||
.hljs-rules .hljs-value,
|
||||
.css .hljs-value .hljs-number,
|
||||
.hljs-literal,
|
||||
.hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.hljs-number,
|
||||
.css .hljs-function,
|
||||
.clojure .hljs-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 {
|
||||
.hljs-class .hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-javadoctag,
|
||||
.hljs-yardoctag,
|
||||
.hljs-phpdoc,
|
||||
.hljs-typename,
|
||||
.hljs-tag .hljs-attribute,
|
||||
.hljs-doctype,
|
||||
.hljs-class .hljs-id,
|
||||
.hljs-built_in,
|
||||
.setting,
|
||||
.hljs-params,
|
||||
.hljs-variable,
|
||||
.clojure .hljs-title {
|
||||
color: #606;
|
||||
}
|
||||
|
||||
pre .css .tag,
|
||||
pre .rules .property,
|
||||
pre .pseudo,
|
||||
pre .subst {
|
||||
.css .hljs-tag,
|
||||
.hljs-rules .hljs-property,
|
||||
.hljs-pseudo,
|
||||
.hljs-subst {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
pre .css .class, pre .css .id {
|
||||
.css .hljs-class,
|
||||
.css .hljs-id {
|
||||
color: #9B703F;
|
||||
}
|
||||
|
||||
pre .value .important {
|
||||
.hljs-value .hljs-important {
|
||||
color: #ff7700;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .rules .keyword {
|
||||
.hljs-rules .hljs-keyword {
|
||||
color: #C5AF75;
|
||||
}
|
||||
|
||||
pre .annotation,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in {
|
||||
.hljs-annotation,
|
||||
.apache .hljs-sqbracket,
|
||||
.nginx .hljs-built_in {
|
||||
color: #9B859D;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .preprocessor *,
|
||||
pre .pragma {
|
||||
.hljs-preprocessor,
|
||||
.hljs-preprocessor *,
|
||||
.hljs-pragma {
|
||||
color: #444;
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
.tex .hljs-formula {
|
||||
background-color: #EEE;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .diff .header,
|
||||
pre .chunk {
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk {
|
||||
color: #808080;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
.diff .hljs-change {
|
||||
background-color: #BCCFF9;
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
.hljs-addition {
|
||||
background-color: #BAEEBA;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
.hljs-deletion {
|
||||
background-color: #FFC8BD;
|
||||
}
|
||||
|
||||
pre .comment .yardoctag {
|
||||
.hljs-comment .hljs-yardoctag {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
@ -4,119 +4,119 @@ Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
color: #000;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
pre .subst,
|
||||
pre .title {
|
||||
.hljs-subst,
|
||||
.hljs-title {
|
||||
font-weight: normal;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc,
|
||||
pre .diff .header {
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.hljs-javadoc,
|
||||
.diff .hljs-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 {
|
||||
.hljs-annotation,
|
||||
.hljs-decorator,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-doctype,
|
||||
.hljs-pi,
|
||||
.hljs-chunk,
|
||||
.hljs-shebang,
|
||||
.apache .hljs-cbracket,
|
||||
.hljs-prompt,
|
||||
.http .hljs-title {
|
||||
color: #808000;
|
||||
}
|
||||
|
||||
pre .tag,
|
||||
pre .pi {
|
||||
.hljs-tag,
|
||||
.hljs-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 {
|
||||
.hljs-tag .hljs-title,
|
||||
.hljs-id,
|
||||
.hljs-attr_selector,
|
||||
.hljs-pseudo,
|
||||
.hljs-literal,
|
||||
.hljs-keyword,
|
||||
.hljs-hexcolor,
|
||||
.css .hljs-function,
|
||||
.ini .hljs-title,
|
||||
.css .hljs-class,
|
||||
.hljs-list .hljs-title,
|
||||
.clojure .hljs-title,
|
||||
.nginx .hljs-title,
|
||||
.tex .hljs-command,
|
||||
.hljs-request,
|
||||
.hljs-status {
|
||||
font-weight: bold;
|
||||
color: #000080;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .rules .keyword,
|
||||
pre .number,
|
||||
pre .date,
|
||||
pre .regexp,
|
||||
pre .tex .special {
|
||||
.hljs-attribute,
|
||||
.hljs-rules .hljs-keyword,
|
||||
.hljs-number,
|
||||
.hljs-date,
|
||||
.hljs-regexp,
|
||||
.tex .hljs-special {
|
||||
font-weight: bold;
|
||||
color: #0000ff;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .regexp {
|
||||
.hljs-number,
|
||||
.hljs-regexp {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .value,
|
||||
pre .filter .argument,
|
||||
pre .css .function .params,
|
||||
pre .apache .tag {
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-filter .hljs-argument,
|
||||
.css .hljs-function .hljs-params,
|
||||
.apache .hljs-tag {
|
||||
color: #008000;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .char,
|
||||
pre .tex .formula {
|
||||
.hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.hljs-char,
|
||||
.tex .hljs-formula {
|
||||
color: #000;
|
||||
background: #d0eded;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .phpdoc,
|
||||
pre .yardoctag,
|
||||
pre .javadoctag {
|
||||
.hljs-phpdoc,
|
||||
.hljs-yardoctag,
|
||||
.hljs-javadoctag {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
pre .variable,
|
||||
pre .envvar,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in {
|
||||
.hljs-variable,
|
||||
.hljs-envvar,
|
||||
.apache .hljs-sqbracket,
|
||||
.nginx .hljs-built_in {
|
||||
color: #660e7a;
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
.hljs-addition {
|
||||
background: #baeeba;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
.hljs-deletion {
|
||||
background: #ffc8bd;
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
.diff .hljs-change {
|
||||
background: #bccff9;
|
||||
}
|
||||
|
@ -2,104 +2,104 @@
|
||||
IR_Black style (c) Vasily Mikhailitchenko <vaskas@programica.ru>
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
background: #000; color: #f8f8f8;
|
||||
}
|
||||
|
||||
pre .shebang,
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc {
|
||||
.hljs-shebang,
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.hljs-javadoc {
|
||||
color: #7c7c7c;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .tag,
|
||||
pre .tex .command,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .clojure .attribute {
|
||||
.hljs-keyword,
|
||||
.hljs-tag,
|
||||
.tex .hljs-command,
|
||||
.hljs-request,
|
||||
.hljs-status,
|
||||
.clojure .hljs-attribute {
|
||||
color: #96CBFE;
|
||||
}
|
||||
|
||||
pre .sub .keyword,
|
||||
pre .method,
|
||||
pre .list .title,
|
||||
pre .nginx .title {
|
||||
.hljs-sub .hljs-keyword,
|
||||
.method,
|
||||
.hljs-list .hljs-title,
|
||||
.nginx .hljs-title {
|
||||
color: #FFFFB6;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .cdata,
|
||||
pre .filter .argument,
|
||||
pre .attr_selector,
|
||||
pre .apache .cbracket,
|
||||
pre .date,
|
||||
pre .coffeescript .attribute {
|
||||
.hljs-string,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-cdata,
|
||||
.hljs-filter .hljs-argument,
|
||||
.hljs-attr_selector,
|
||||
.apache .hljs-cbracket,
|
||||
.hljs-date,
|
||||
.coffeescript .hljs-attribute {
|
||||
color: #A8FF60;
|
||||
}
|
||||
|
||||
pre .subst {
|
||||
.hljs-subst {
|
||||
color: #DAEFA3;
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
.hljs-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 {
|
||||
.hljs-title,
|
||||
.hljs-sub .hljs-identifier,
|
||||
.hljs-pi,
|
||||
.hljs-decorator,
|
||||
.tex .hljs-special,
|
||||
.haskell .hljs-type,
|
||||
.hljs-constant,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-javadoctag,
|
||||
.hljs-yardoctag,
|
||||
.hljs-phpdoc,
|
||||
.nginx .hljs-built_in {
|
||||
color: #FFFFB6;
|
||||
}
|
||||
|
||||
pre .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .number,
|
||||
pre .variable,
|
||||
pre .vbscript,
|
||||
pre .literal {
|
||||
.hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.hljs-number,
|
||||
.hljs-variable,
|
||||
.vbscript,
|
||||
.hljs-literal {
|
||||
color: #C6C5FE;
|
||||
}
|
||||
|
||||
pre .css .tag {
|
||||
.css .hljs-tag {
|
||||
color: #96CBFE;
|
||||
}
|
||||
|
||||
pre .css .rules .property,
|
||||
pre .css .id {
|
||||
.css .hljs-rules .hljs-property,
|
||||
.css .hljs-id {
|
||||
color: #FFFFB6;
|
||||
}
|
||||
|
||||
pre .css .class {
|
||||
.css .hljs-class {
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
pre .hexcolor {
|
||||
.hljs-hexcolor {
|
||||
color: #C6C5FE;
|
||||
}
|
||||
|
||||
pre .number {
|
||||
.hljs-number {
|
||||
color:#FF73FD;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
@ -7,116 +7,116 @@ Date: 2009-01-03
|
||||
Music: Aphex Twin / Xtal
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in {
|
||||
.hljs,
|
||||
.hljs-subst,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-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 {
|
||||
.hljs-string,
|
||||
.hljs-title,
|
||||
.hljs-parent,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-rules .hljs-value,
|
||||
.hljs-rules .hljs-value .hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.ruby .hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.hljs-aggregate,
|
||||
.hljs-template_tag,
|
||||
.django .hljs-variable,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-addition,
|
||||
.hljs-flow,
|
||||
.hljs-stream,
|
||||
.bash .hljs-variable,
|
||||
.apache .hljs-cbracket,
|
||||
.coffeescript .hljs-attribute {
|
||||
color: #050;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .annotation,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .chunk {
|
||||
.hljs-comment,
|
||||
.hljs-annotation,
|
||||
.hljs-template_comment,
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .date,
|
||||
pre .regexp,
|
||||
pre .literal,
|
||||
pre .smalltalk .symbol,
|
||||
pre .smalltalk .char,
|
||||
pre .change,
|
||||
pre .tex .special {
|
||||
.hljs-number,
|
||||
.hljs-date,
|
||||
.hljs-regexp,
|
||||
.hljs-literal,
|
||||
.smalltalk .hljs-symbol,
|
||||
.smalltalk .hljs-char,
|
||||
.hljs-change,
|
||||
.tex .hljs-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 {
|
||||
.hljs-label,
|
||||
.hljs-javadoc,
|
||||
.ruby .hljs-string,
|
||||
.hljs-decorator,
|
||||
.hljs-filter .hljs-argument,
|
||||
.hljs-localvars,
|
||||
.hljs-array,
|
||||
.hljs-attr_selector,
|
||||
.hljs-pseudo,
|
||||
.hljs-pi,
|
||||
.hljs-doctype,
|
||||
.hljs-deletion,
|
||||
.hljs-envvar,
|
||||
.hljs-shebang,
|
||||
.apache .hljs-sqbracket,
|
||||
.nginx .hljs-built_in,
|
||||
.tex .hljs-formula,
|
||||
.hljs-prompt,
|
||||
.clojure .hljs-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 {
|
||||
.hljs-keyword,
|
||||
.hljs-id,
|
||||
.hljs-phpdoc,
|
||||
.hljs-title,
|
||||
.hljs-built_in,
|
||||
.hljs-aggregate,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-winutils,
|
||||
.bash .hljs-variable,
|
||||
.apache .hljs-tag,
|
||||
.xml .hljs-tag,
|
||||
.tex .hljs-command,
|
||||
.hljs-request,
|
||||
.hljs-status {
|
||||
font-weight: bold;
|
||||
color: navy;
|
||||
}
|
||||
|
||||
pre .nginx .built_in {
|
||||
.nginx .hljs-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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* --- */
|
||||
pre .apache .tag {
|
||||
.apache .hljs-tag {
|
||||
font-weight: bold;
|
||||
color: blue;
|
||||
}
|
||||
|
@ -1,62 +1,62 @@
|
||||
/*
|
||||
Five-color theme from a single blue hue.
|
||||
*/
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
background: #EAEEF3; color: #00193A;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .title,
|
||||
pre .important,
|
||||
pre .request,
|
||||
pre .header,
|
||||
pre .javadoctag {
|
||||
.hljs-keyword,
|
||||
.hljs-title,
|
||||
.hljs-important,
|
||||
.hljs-request,
|
||||
.hljs-header,
|
||||
.hljs-javadoctag {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .chunk,
|
||||
pre .template_comment {
|
||||
.hljs-comment,
|
||||
.hljs-chunk,
|
||||
.hljs-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 {
|
||||
.hljs-string,
|
||||
.hljs-title,
|
||||
.hljs-parent,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-filename,
|
||||
.hljs-value,
|
||||
.hljs-addition,
|
||||
.hljs-tag,
|
||||
.hljs-argument,
|
||||
.hljs-link_label,
|
||||
.hljs-blockquote,
|
||||
.hljs-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 {
|
||||
.hljs-decorator,
|
||||
.hljs-prompt,
|
||||
.hljs-yardoctag,
|
||||
.hljs-subst,
|
||||
.hljs-symbol,
|
||||
.hljs-doctype,
|
||||
.hljs-regexp,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-pi,
|
||||
.hljs-attribute,
|
||||
.hljs-attr_selector,
|
||||
.hljs-javadoc,
|
||||
.hljs-xmlDocTag,
|
||||
.hljs-deletion,
|
||||
.hljs-shebang,
|
||||
.hljs-string .hljs-variable,
|
||||
.hljs-link_url,
|
||||
.hljs-bullet,
|
||||
.hljs-sqbracket,
|
||||
.hljs-phony {
|
||||
color: #4C81C9;
|
||||
}
|
||||
|
@ -2,126 +2,126 @@
|
||||
Monokai style - ported by Luigi Maselli - http://grigio.org
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.hljs-tag,
|
||||
.hljs-tag .hljs-title,
|
||||
.hljs-keyword,
|
||||
.hljs-literal,
|
||||
.hljs-strong,
|
||||
.hljs-change,
|
||||
.hljs-winutils,
|
||||
.hljs-flow,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-built_in,
|
||||
.nginx .hljs-title,
|
||||
.tex .hljs-special {
|
||||
color: #F92672;
|
||||
}
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
color: #DDD;
|
||||
}
|
||||
|
||||
pre code .constant,
|
||||
pre .asciidoc .code {
|
||||
.hljs .hljs-constant,
|
||||
.asciidoc .hljs-code {
|
||||
color: #66D9EF;
|
||||
}
|
||||
|
||||
pre .code,
|
||||
pre .class .title,
|
||||
pre .header {
|
||||
.hljs-code,
|
||||
.hljs-class .hljs-title,
|
||||
.hljs-header {
|
||||
color: white;
|
||||
}
|
||||
|
||||
pre .link_label,
|
||||
pre .attribute,
|
||||
pre .symbol,
|
||||
pre .symbol .string,
|
||||
pre .value,
|
||||
pre .regexp {
|
||||
.hljs-link_label,
|
||||
.hljs-attribute,
|
||||
.hljs-symbol,
|
||||
.hljs-symbol .hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-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 {
|
||||
.hljs-link_url,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-string,
|
||||
.hljs-bullet,
|
||||
.hljs-subst,
|
||||
.hljs-title,
|
||||
.hljs-emphasis,
|
||||
.haskell .hljs-type,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.ruby .hljs-class .hljs-parent,
|
||||
.hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.django .hljs-template_tag,
|
||||
.django .hljs-variable,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-javadoc,
|
||||
.django .hljs-filter .hljs-argument,
|
||||
.smalltalk .hljs-localvars,
|
||||
.smalltalk .hljs-array,
|
||||
.hljs-attr_selector,
|
||||
.hljs-pseudo,
|
||||
.hljs-addition,
|
||||
.hljs-stream,
|
||||
.hljs-envvar,
|
||||
.apache .hljs-tag,
|
||||
.apache .hljs-cbracket,
|
||||
.tex .hljs-command,
|
||||
.hljs-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 {
|
||||
.hljs-comment,
|
||||
.java .hljs-annotation,
|
||||
.smartquote,
|
||||
.hljs-blockquote,
|
||||
.hljs-horizontal_rule,
|
||||
.python .hljs-decorator,
|
||||
.hljs-template_comment,
|
||||
.hljs-pi,
|
||||
.hljs-doctype,
|
||||
.hljs-deletion,
|
||||
.hljs-shebang,
|
||||
.apache .hljs-sqbracket,
|
||||
.tex .hljs-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 {
|
||||
.hljs-keyword,
|
||||
.hljs-literal,
|
||||
.css .hljs-id,
|
||||
.hljs-phpdoc,
|
||||
.hljs-title,
|
||||
.hljs-header,
|
||||
.haskell .hljs-type,
|
||||
.vbscript .hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.rsl .hljs-built_in,
|
||||
.smalltalk .hljs-class,
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk,
|
||||
.hljs-winutils,
|
||||
.bash .hljs-variable,
|
||||
.apache .hljs-tag,
|
||||
.tex .hljs-special,
|
||||
.hljs-request,
|
||||
.hljs-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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -1,102 +1,149 @@
|
||||
/*
|
||||
|
||||
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;
|
||||
}
|
||||
/*
|
||||
|
||||
Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
|
||||
|
||||
*/
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
padding: 0.5em;
|
||||
background: #23241f;
|
||||
}
|
||||
|
||||
.hljs,
|
||||
.hljs-tag,
|
||||
.css .hljs-rules,
|
||||
.css .hljs-value,
|
||||
.css .hljs-function
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
.hljs-strongemphasis,
|
||||
.hljs-strong,
|
||||
.hljs-emphasis {
|
||||
color: #a8a8a2;
|
||||
}
|
||||
|
||||
.hljs-bullet,
|
||||
.hljs-blockquote,
|
||||
.hljs-horizontal_rule,
|
||||
.hljs-number,
|
||||
.hljs-regexp,
|
||||
.alias .hljs-keyword,
|
||||
.hljs-literal,
|
||||
.hljs-hexcolor {
|
||||
color: #ae81ff;
|
||||
}
|
||||
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-code,
|
||||
.hljs-title,
|
||||
.css .hljs-class,
|
||||
.hljs-class .hljs-title:last-child {
|
||||
color: #a6e22e;
|
||||
}
|
||||
|
||||
.hljs-link_url {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.hljs-strong,
|
||||
.hljs-strongemphasis {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.hljs-emphasis,
|
||||
.hljs-strongemphasis,
|
||||
.hljs-class .hljs-title:last-child {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-keyword,
|
||||
.hljs-function,
|
||||
.hljs-change,
|
||||
.hljs-winutils,
|
||||
.hljs-flow,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-built_in,
|
||||
.nginx .hljs-title,
|
||||
.tex .hljs-special,
|
||||
.hljs-header,
|
||||
.hljs-attribute,
|
||||
.hljs-symbol,
|
||||
.hljs-symbol .hljs-string,
|
||||
.hljs-tag .hljs-title,
|
||||
.hljs-value,
|
||||
.alias .hljs-keyword:first-child,
|
||||
.css .hljs-tag,
|
||||
.css .unit,
|
||||
.css .hljs-important {
|
||||
color: #F92672;
|
||||
}
|
||||
|
||||
.hljs-function .hljs-keyword,
|
||||
.hljs-class .hljs-keyword:first-child,
|
||||
.hljs-constant,
|
||||
.css .hljs-attribute {
|
||||
color: #66d9ef;
|
||||
}
|
||||
|
||||
.hljs-variable,
|
||||
.hljs-params,
|
||||
.hljs-class .hljs-title {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.css .hljs-id,
|
||||
.hljs-subst,
|
||||
.haskell .hljs-type,
|
||||
.ruby .hljs-class .hljs-parent,
|
||||
.hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.django .hljs-template_tag,
|
||||
.django .hljs-variable,
|
||||
.smalltalk .hljs-class,
|
||||
.django .hljs-filter .hljs-argument,
|
||||
.smalltalk .hljs-localvars,
|
||||
.smalltalk .hljs-array,
|
||||
.hljs-attr_selector,
|
||||
.hljs-pseudo,
|
||||
.hljs-addition,
|
||||
.hljs-stream,
|
||||
.hljs-envvar,
|
||||
.apache .hljs-tag,
|
||||
.apache .hljs-cbracket,
|
||||
.tex .hljs-command,
|
||||
.hljs-prompt,
|
||||
.hljs-link_label,
|
||||
.hljs-link_url {
|
||||
color: #e6db74;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-javadoc,
|
||||
.java .hljs-annotation,
|
||||
.python .hljs-decorator,
|
||||
.hljs-template_comment,
|
||||
.hljs-pi,
|
||||
.hljs-doctype,
|
||||
.hljs-deletion,
|
||||
.hljs-shebang,
|
||||
.apache .hljs-sqbracket,
|
||||
.tex .hljs-formula {
|
||||
color: #75715e;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata,
|
||||
.xml .php,
|
||||
.php .xml {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -3,152 +3,152 @@
|
||||
* ported by Alexander Marenin (http://github.com/ioncreature)
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.hljs-keyword,
|
||||
.hljs-literal,
|
||||
.hljs-change,
|
||||
.hljs-winutils,
|
||||
.hljs-flow,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-built_in,
|
||||
.nginx .hljs-title,
|
||||
.css .hljs-id,
|
||||
.tex .hljs-special {
|
||||
color: #93C763;
|
||||
}
|
||||
|
||||
pre .number {
|
||||
.hljs-number {
|
||||
color: #FFCD22;
|
||||
}
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
color: #E0E2E4;
|
||||
}
|
||||
|
||||
pre .css .tag,
|
||||
pre .css .pseudo {
|
||||
.css .hljs-tag,
|
||||
.css .hljs-pseudo {
|
||||
color: #D0D2B5;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre code .constant {
|
||||
.hljs-attribute,
|
||||
.hljs .hljs-constant {
|
||||
color: #668BB0;
|
||||
}
|
||||
|
||||
pre .xml .attribute {
|
||||
.xml .hljs-attribute {
|
||||
color: #B3B689;
|
||||
}
|
||||
|
||||
pre .xml .tag .value {
|
||||
.xml .hljs-tag .hljs-value {
|
||||
color: #E8E2B7;
|
||||
}
|
||||
|
||||
pre .code,
|
||||
pre .class .title,
|
||||
pre .header {
|
||||
.hljs-code,
|
||||
.hljs-class .hljs-title,
|
||||
.hljs-header {
|
||||
color: white;
|
||||
}
|
||||
|
||||
pre .class,
|
||||
pre .hexcolor {
|
||||
.hljs-class,
|
||||
.hljs-hexcolor {
|
||||
color: #93C763;
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
.hljs-regexp {
|
||||
color: #D39745;
|
||||
}
|
||||
|
||||
pre .at_rule,
|
||||
pre .at_rule .keyword {
|
||||
.hljs-at_rule,
|
||||
.hljs-at_rule .hljs-keyword {
|
||||
color: #A082BD;
|
||||
}
|
||||
|
||||
pre .doctype {
|
||||
.hljs-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 {
|
||||
.hljs-link_url,
|
||||
.hljs-tag,
|
||||
.hljs-tag .hljs-title,
|
||||
.hljs-bullet,
|
||||
.hljs-subst,
|
||||
.hljs-emphasis,
|
||||
.haskell .hljs-type,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.ruby .hljs-class .hljs-parent,
|
||||
.hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.django .hljs-template_tag,
|
||||
.django .hljs-variable,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-javadoc,
|
||||
.django .hljs-filter .hljs-argument,
|
||||
.smalltalk .hljs-localvars,
|
||||
.smalltalk .hljs-array,
|
||||
.hljs-attr_selector,
|
||||
.hljs-pseudo,
|
||||
.hljs-addition,
|
||||
.hljs-stream,
|
||||
.hljs-envvar,
|
||||
.apache .hljs-tag,
|
||||
.apache .hljs-cbracket,
|
||||
.tex .hljs-command,
|
||||
.hljs-prompt {
|
||||
color: #8CBBAD;
|
||||
}
|
||||
|
||||
pre .string {
|
||||
.hljs-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 {
|
||||
.hljs-comment,
|
||||
.java .hljs-annotation,
|
||||
.hljs-blockquote,
|
||||
.hljs-horizontal_rule,
|
||||
.python .hljs-decorator,
|
||||
.hljs-template_comment,
|
||||
.hljs-pi,
|
||||
.hljs-deletion,
|
||||
.hljs-shebang,
|
||||
.apache .hljs-sqbracket,
|
||||
.tex .hljs-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 {
|
||||
.hljs-keyword,
|
||||
.hljs-literal,
|
||||
.css .hljs-id,
|
||||
.hljs-phpdoc,
|
||||
.hljs-title,
|
||||
.hljs-header,
|
||||
.haskell .hljs-type,
|
||||
.vbscript .hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.rsl .hljs-built_in,
|
||||
.smalltalk .hljs-class,
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk,
|
||||
.hljs-winutils,
|
||||
.bash .hljs-variable,
|
||||
.apache .hljs-tag,
|
||||
.tex .hljs-special,
|
||||
.hljs-request,
|
||||
.hljs-at_rule .hljs-keyword,
|
||||
.hljs-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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
93
public/res/libs/highlight/styles/paraiso.dark.css
Normal file
93
public/res/libs/highlight/styles/paraiso.dark.css
Normal file
@ -0,0 +1,93 @@
|
||||
/*
|
||||
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-title {
|
||||
color: #8d8687;
|
||||
}
|
||||
|
||||
/* Paraíso Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #ef6155;
|
||||
}
|
||||
|
||||
/* Paraíso Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #f99b15;
|
||||
}
|
||||
|
||||
/* Paraíso Yellow */
|
||||
.ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #fec418;
|
||||
}
|
||||
|
||||
/* Paraíso Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #48b685;
|
||||
}
|
||||
|
||||
/* Paraíso Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #5bc4bf;
|
||||
}
|
||||
|
||||
/* Paraíso Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #06b6ef;
|
||||
}
|
||||
|
||||
/* Paraíso Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #815ba4;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #2f1e2e;
|
||||
color: #a39e9b;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
93
public/res/libs/highlight/styles/paraiso.light.css
Normal file
93
public/res/libs/highlight/styles/paraiso.light.css
Normal file
@ -0,0 +1,93 @@
|
||||
/*
|
||||
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-title {
|
||||
color: #776e71;
|
||||
}
|
||||
|
||||
/* Paraíso Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #ef6155;
|
||||
}
|
||||
|
||||
/* Paraíso Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #f99b15;
|
||||
}
|
||||
|
||||
/* Paraíso Yellow */
|
||||
.ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #fec418;
|
||||
}
|
||||
|
||||
/* Paraíso Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #48b685;
|
||||
}
|
||||
|
||||
/* Paraíso Aqua */
|
||||
.css .hljs-hexcolor {
|
||||
color: #5bc4bf;
|
||||
}
|
||||
|
||||
/* Paraíso Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #06b6ef;
|
||||
}
|
||||
|
||||
/* Paraíso Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #815ba4;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: #e7e9db;
|
||||
color: #4f424c;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
@ -6,100 +6,101 @@ Based on Solarized Style from http://ethanschoonover.com/solarized
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.diff .hljs-header,
|
||||
.hljs-doctype,
|
||||
.lisp .hljs-string,
|
||||
.hljs-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 {
|
||||
.hljs-keyword,
|
||||
.css .rule .hljs-keyword,
|
||||
.hljs-winutils,
|
||||
.javascript .hljs-title,
|
||||
.method,
|
||||
.hljs-addition,
|
||||
.css .hljs-tag,
|
||||
.clojure .hljs-title,
|
||||
.nginx .hljs-title {
|
||||
color: #B64926;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .command,
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula,
|
||||
pre .regexp,
|
||||
pre .hexcolor {
|
||||
.hljs-number,
|
||||
.hljs-command,
|
||||
.hljs-string,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-phpdoc,
|
||||
.tex .hljs-formula,
|
||||
.hljs-regexp,
|
||||
.hljs-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 {
|
||||
.hljs-title,
|
||||
.hljs-localvars,
|
||||
.hljs-function .hljs-title,
|
||||
.hljs-chunk,
|
||||
.hljs-decorator,
|
||||
.hljs-built_in,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-built_in,
|
||||
.hljs-identifier,
|
||||
.hljs-id {
|
||||
color: #FFB03B;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .variable,
|
||||
pre .lisp .body,
|
||||
pre .smalltalk .number,
|
||||
pre .constant,
|
||||
pre .class .title,
|
||||
pre .parent,
|
||||
pre .haskell .type {
|
||||
.hljs-attribute,
|
||||
.hljs-variable,
|
||||
.lisp .hljs-body,
|
||||
.smalltalk .hljs-number,
|
||||
.hljs-constant,
|
||||
.hljs-class .hljs-title,
|
||||
.hljs-parent,
|
||||
.haskell .hljs-type {
|
||||
color: #b58900;
|
||||
}
|
||||
|
||||
pre .css .attribute {
|
||||
.css .hljs-attribute {
|
||||
color: #b89859;
|
||||
}
|
||||
|
||||
pre .css .number,pre .css .hexcolor{
|
||||
.css .hljs-number,
|
||||
.css .hljs-hexcolor {
|
||||
color: #DCCF8F;
|
||||
}
|
||||
|
||||
pre .css .class {
|
||||
.css .hljs-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 {
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-pi,
|
||||
.hljs-shebang,
|
||||
.hljs-symbol,
|
||||
.hljs-symbol .hljs-string,
|
||||
.diff .hljs-change,
|
||||
.hljs-special,
|
||||
.hljs-attr_selector,
|
||||
.hljs-important,
|
||||
.hljs-subst,
|
||||
.hljs-cdata {
|
||||
color: #cb4b16;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
.hljs-deletion {
|
||||
color: #dc322f;
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
.tex .hljs-formula {
|
||||
background: #073642;
|
||||
}
|
||||
|
@ -4,179 +4,179 @@ Railscasts-like style (c) Visoft, Inc. (Damien White)
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block;
|
||||
padding: 0.5em;
|
||||
background: #232323;
|
||||
color: #E6E1DC;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc,
|
||||
pre .shebang {
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.hljs-javadoc,
|
||||
.hljs-shebang {
|
||||
color: #BC9458;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .ruby .function .keyword,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .nginx .title,
|
||||
pre .method,
|
||||
pre .list .title {
|
||||
.hljs-keyword,
|
||||
.ruby .hljs-function .hljs-keyword,
|
||||
.hljs-request,
|
||||
.hljs-status,
|
||||
.nginx .hljs-title,
|
||||
.method,
|
||||
.hljs-list .hljs-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 {
|
||||
.hljs-string,
|
||||
.hljs-number,
|
||||
.hljs-regexp,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-cdata,
|
||||
.hljs-filter .hljs-argument,
|
||||
.hljs-attr_selector,
|
||||
.apache .hljs-cbracket,
|
||||
.hljs-date,
|
||||
.tex .hljs-command,
|
||||
.markdown .hljs-link_label {
|
||||
color: #A5C261;
|
||||
}
|
||||
|
||||
pre .subst {
|
||||
.hljs-subst {
|
||||
color: #519F50;
|
||||
}
|
||||
|
||||
pre .tag,
|
||||
pre .tag .keyword,
|
||||
pre .tag .title,
|
||||
pre .doctype,
|
||||
pre .sub .identifier,
|
||||
pre .pi,
|
||||
pre .input_number {
|
||||
.hljs-tag,
|
||||
.hljs-tag .hljs-keyword,
|
||||
.hljs-tag .hljs-title,
|
||||
.hljs-doctype,
|
||||
.hljs-sub .hljs-identifier,
|
||||
.hljs-pi,
|
||||
.input_number {
|
||||
color: #E8BF6A;
|
||||
}
|
||||
|
||||
pre .identifier {
|
||||
.hljs-identifier {
|
||||
color: #D0D0FF;
|
||||
}
|
||||
|
||||
pre .class .title,
|
||||
pre .haskell .type,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoctag,
|
||||
pre .yardoctag,
|
||||
pre .phpdoc {
|
||||
.hljs-class .hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-javadoctag,
|
||||
.hljs-yardoctag,
|
||||
.hljs-phpdoc {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
pre .constant {
|
||||
.hljs-constant {
|
||||
color: #DA4939;
|
||||
}
|
||||
|
||||
|
||||
pre .symbol,
|
||||
pre .built_in,
|
||||
pre .ruby .symbol .string,
|
||||
pre .ruby .symbol .identifier,
|
||||
pre .markdown .link_url,
|
||||
pre .attribute {
|
||||
.hljs-symbol,
|
||||
.hljs-built_in,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.ruby .hljs-symbol .hljs-identifier,
|
||||
.markdown .hljs-link_url,
|
||||
.hljs-attribute {
|
||||
color: #6D9CBE;
|
||||
}
|
||||
|
||||
pre .markdown .link_url {
|
||||
.markdown .hljs-link_url {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
|
||||
pre .params,
|
||||
pre .variable,
|
||||
pre .clojure .attribute {
|
||||
.hljs-params,
|
||||
.hljs-variable,
|
||||
.clojure .hljs-attribute {
|
||||
color: #D0D0FF;
|
||||
}
|
||||
|
||||
pre .css .tag,
|
||||
pre .rules .property,
|
||||
pre .pseudo,
|
||||
pre .tex .special {
|
||||
.css .hljs-tag,
|
||||
.hljs-rules .hljs-property,
|
||||
.hljs-pseudo,
|
||||
.tex .hljs-special {
|
||||
color: #CDA869;
|
||||
}
|
||||
|
||||
pre .css .class {
|
||||
.css .hljs-class {
|
||||
color: #9B703F;
|
||||
}
|
||||
|
||||
pre .rules .keyword {
|
||||
.hljs-rules .hljs-keyword {
|
||||
color: #C5AF75;
|
||||
}
|
||||
|
||||
pre .rules .value {
|
||||
.hljs-rules .hljs-value {
|
||||
color: #CF6A4C;
|
||||
}
|
||||
|
||||
pre .css .id {
|
||||
.css .hljs-id {
|
||||
color: #8B98AB;
|
||||
}
|
||||
|
||||
pre .annotation,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in {
|
||||
.hljs-annotation,
|
||||
.apache .hljs-sqbracket,
|
||||
.nginx .hljs-built_in {
|
||||
color: #9B859D;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .preprocessor *
|
||||
pre .pragma {
|
||||
.hljs-preprocessor,
|
||||
.hljs-preprocessor *,
|
||||
.hljs-pragma {
|
||||
color: #8996A8 !important;
|
||||
}
|
||||
|
||||
pre .hexcolor,
|
||||
pre .css .value .number {
|
||||
.hljs-hexcolor,
|
||||
.css .hljs-value .hljs-number {
|
||||
color: #A5C261;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .decorator,
|
||||
pre .css .function {
|
||||
.hljs-title,
|
||||
.hljs-decorator,
|
||||
.css .hljs-function {
|
||||
color: #FFC66D;
|
||||
}
|
||||
|
||||
pre .diff .header,
|
||||
pre .chunk {
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk {
|
||||
background-color: #2F33AB;
|
||||
color: #E6E1DC;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
.diff .hljs-change {
|
||||
background-color: #4A410D;
|
||||
color: #F8F8F8;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
.hljs-addition {
|
||||
background-color: #144212;
|
||||
color: #E6E1DC;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
.hljs-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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
@ -4,112 +4,109 @@ 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 {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
background: #474949; color: #D1D9E1;
|
||||
}
|
||||
|
||||
|
||||
pre .body,
|
||||
pre .collection {
|
||||
.hljs-body,
|
||||
.hljs-collection {
|
||||
color: #D1D9E1;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .doctype,
|
||||
pre .lisp .string,
|
||||
pre .javadoc {
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.diff .hljs-header,
|
||||
.hljs-doctype,
|
||||
.lisp .hljs-string,
|
||||
.hljs-javadoc {
|
||||
color: #969896;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .clojure .attribute,
|
||||
pre .winutils,
|
||||
pre .javascript .title,
|
||||
pre .addition,
|
||||
pre .css .tag {
|
||||
.hljs-keyword,
|
||||
.clojure .hljs-attribute,
|
||||
.hljs-winutils,
|
||||
.javascript .hljs-title,
|
||||
.hljs-addition,
|
||||
.css .hljs-tag {
|
||||
color: #cc99cc;
|
||||
}
|
||||
|
||||
pre .number { color: #f99157; }
|
||||
.hljs-number { color: #f99157; }
|
||||
|
||||
pre .command,
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula,
|
||||
pre .regexp,
|
||||
pre .hexcolor {
|
||||
.hljs-command,
|
||||
.hljs-string,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-phpdoc,
|
||||
.tex .hljs-formula,
|
||||
.hljs-regexp,
|
||||
.hljs-hexcolor {
|
||||
color: #8abeb7;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .localvars,
|
||||
pre .function .title,
|
||||
pre .chunk,
|
||||
pre .decorator,
|
||||
pre .built_in,
|
||||
pre .lisp .title,
|
||||
pre .identifier
|
||||
.hljs-title,
|
||||
.hljs-localvars,
|
||||
.hljs-function .hljs-title,
|
||||
.hljs-chunk,
|
||||
.hljs-decorator,
|
||||
.hljs-built_in,
|
||||
.lisp .hljs-title,
|
||||
.hljs-identifier
|
||||
{
|
||||
color: #b5bd68;
|
||||
}
|
||||
|
||||
pre .class .keyword
|
||||
.hljs-class .hljs-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 {
|
||||
.hljs-variable,
|
||||
.lisp .hljs-body,
|
||||
.smalltalk .hljs-number,
|
||||
.hljs-constant,
|
||||
.hljs-class .hljs-title,
|
||||
.hljs-parent,
|
||||
.haskell .hljs-label,
|
||||
.hljs-id,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-title .hljs-built_in {
|
||||
color: #ffcc66;
|
||||
}
|
||||
|
||||
pre .tag .title,
|
||||
pre .rules .property,
|
||||
pre .django .tag .keyword,
|
||||
pre .clojure .title .built_in {
|
||||
.hljs-tag .hljs-title,
|
||||
.hljs-rules .hljs-property,
|
||||
.django .hljs-tag .hljs-keyword,
|
||||
.clojure .hljs-title .hljs-built_in {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .clojure .title {
|
||||
.hljs-attribute,
|
||||
.clojure .hljs-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 {
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-pi,
|
||||
.hljs-shebang,
|
||||
.hljs-symbol,
|
||||
.hljs-symbol .hljs-string,
|
||||
.diff .hljs-change,
|
||||
.hljs-special,
|
||||
.hljs-attr_selector,
|
||||
.hljs-important,
|
||||
.hljs-subst,
|
||||
.hljs-cdata {
|
||||
color: #f99157;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
.hljs-deletion {
|
||||
color: #dc322f;
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
.tex .hljs-formula {
|
||||
background: #eee8d5;
|
||||
}
|
||||
|
@ -4,7 +4,7 @@ School Book style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 15px 0.5em 0.5em 30px;
|
||||
font-size: 11px !important;
|
||||
line-height:16px !important;
|
||||
@ -16,98 +16,98 @@ pre{
|
||||
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 {
|
||||
.hljs-keyword,
|
||||
.hljs-literal,
|
||||
.hljs-change,
|
||||
.hljs-winutils,
|
||||
.hljs-flow,
|
||||
.lisp .hljs-title,
|
||||
.clojure .hljs-built_in,
|
||||
.nginx .hljs-title,
|
||||
.tex .hljs-special {
|
||||
color:#005599;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst,
|
||||
pre .tag .keyword {
|
||||
.hljs,
|
||||
.hljs-subst,
|
||||
.hljs-tag .hljs-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 {
|
||||
.hljs-string,
|
||||
.hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.hljs-tag .hljs-value,
|
||||
.css .hljs-rules .hljs-value,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.ruby .hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.ruby .hljs-class .hljs-parent,
|
||||
.hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.django .hljs-template_tag,
|
||||
.django .hljs-variable,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-javadoc,
|
||||
.ruby .hljs-string,
|
||||
.django .hljs-filter .hljs-argument,
|
||||
.smalltalk .hljs-localvars,
|
||||
.smalltalk .hljs-array,
|
||||
.hljs-attr_selector,
|
||||
.hljs-pseudo,
|
||||
.hljs-addition,
|
||||
.hljs-stream,
|
||||
.hljs-envvar,
|
||||
.apache .hljs-tag,
|
||||
.apache .hljs-cbracket,
|
||||
.nginx .hljs-built_in,
|
||||
.tex .hljs-command,
|
||||
.coffeescript .hljs-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 {
|
||||
.hljs-comment,
|
||||
.java .hljs-annotation,
|
||||
.python .hljs-decorator,
|
||||
.hljs-template_comment,
|
||||
.hljs-pi,
|
||||
.hljs-doctype,
|
||||
.hljs-deletion,
|
||||
.hljs-shebang,
|
||||
.apache .hljs-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 {
|
||||
.hljs-keyword,
|
||||
.hljs-literal,
|
||||
.css .hljs-id,
|
||||
.hljs-phpdoc,
|
||||
.hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.vbscript .hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.rsl .hljs-built_in,
|
||||
.smalltalk .hljs-class,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk,
|
||||
.hljs-winutils,
|
||||
.bash .hljs-variable,
|
||||
.apache .hljs-tag,
|
||||
.tex .hljs-command,
|
||||
.hljs-request,
|
||||
.hljs-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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -4,89 +4,104 @@ Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmai
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #002b36; color: #839496;
|
||||
.hljs {
|
||||
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 {
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.diff .hljs-header,
|
||||
.hljs-doctype,
|
||||
.hljs-pi,
|
||||
.lisp .hljs-string,
|
||||
.hljs-javadoc {
|
||||
color: #586e75;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .winutils,
|
||||
pre .method,
|
||||
pre .addition,
|
||||
pre .css .tag,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .nginx .title {
|
||||
/* Solarized Green */
|
||||
.hljs-keyword,
|
||||
.hljs-winutils,
|
||||
.method,
|
||||
.hljs-addition,
|
||||
.css .hljs-tag,
|
||||
.hljs-request,
|
||||
.hljs-status,
|
||||
.nginx .hljs-title {
|
||||
color: #859900;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .command,
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .rules .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula,
|
||||
pre .regexp,
|
||||
pre .hexcolor {
|
||||
/* Solarized Cyan */
|
||||
.hljs-number,
|
||||
.hljs-command,
|
||||
.hljs-string,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-rules .hljs-value,
|
||||
.hljs-phpdoc,
|
||||
.tex .hljs-formula,
|
||||
.hljs-regexp,
|
||||
.hljs-hexcolor,
|
||||
.hljs-link_url {
|
||||
color: #2aa198;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .localvars,
|
||||
pre .chunk,
|
||||
pre .decorator,
|
||||
pre .built_in,
|
||||
pre .identifier,
|
||||
pre .vhdl .literal,
|
||||
pre .id,
|
||||
pre .css .function {
|
||||
/* Solarized Blue */
|
||||
.hljs-title,
|
||||
.hljs-localvars,
|
||||
.hljs-chunk,
|
||||
.hljs-decorator,
|
||||
.hljs-built_in,
|
||||
.hljs-identifier,
|
||||
.vhdl .hljs-literal,
|
||||
.hljs-id,
|
||||
.css .hljs-function {
|
||||
color: #268bd2;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .variable,
|
||||
pre .lisp .body,
|
||||
pre .smalltalk .number,
|
||||
pre .constant,
|
||||
pre .class .title,
|
||||
pre .parent,
|
||||
pre .haskell .type {
|
||||
/* Solarized Yellow */
|
||||
.hljs-attribute,
|
||||
.hljs-variable,
|
||||
.lisp .hljs-body,
|
||||
.smalltalk .hljs-number,
|
||||
.hljs-constant,
|
||||
.hljs-class .hljs-title,
|
||||
.hljs-parent,
|
||||
.haskell .hljs-type,
|
||||
.hljs-link_reference {
|
||||
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 {
|
||||
/* Solarized Orange */
|
||||
.hljs-preprocessor,
|
||||
.hljs-preprocessor .hljs-keyword,
|
||||
.hljs-pragma,
|
||||
.hljs-shebang,
|
||||
.hljs-symbol,
|
||||
.hljs-symbol .hljs-string,
|
||||
.diff .hljs-change,
|
||||
.hljs-special,
|
||||
.hljs-attr_selector,
|
||||
.hljs-subst,
|
||||
.hljs-cdata,
|
||||
.clojure .hljs-title,
|
||||
.css .hljs-pseudo,
|
||||
.hljs-header {
|
||||
color: #cb4b16;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
/* Solarized Red */
|
||||
.hljs-deletion,
|
||||
.hljs-important {
|
||||
color: #dc322f;
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
/* Solarized Violet */
|
||||
.hljs-link_label {
|
||||
color: #6c71c4;
|
||||
}
|
||||
|
||||
.tex .hljs-formula {
|
||||
background: #073642;
|
||||
}
|
||||
|
@ -4,89 +4,104 @@ Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmai
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
background: #fdf6e3; color: #657b83;
|
||||
.hljs {
|
||||
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 {
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.diff .hljs-header,
|
||||
.hljs-doctype,
|
||||
.hljs-pi,
|
||||
.lisp .hljs-string,
|
||||
.hljs-javadoc {
|
||||
color: #93a1a1;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .winutils,
|
||||
pre .method,
|
||||
pre .addition,
|
||||
pre .css .tag,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .nginx .title {
|
||||
/* Solarized Green */
|
||||
.hljs-keyword,
|
||||
.hljs-winutils,
|
||||
.method,
|
||||
.hljs-addition,
|
||||
.css .hljs-tag,
|
||||
.hljs-request,
|
||||
.hljs-status,
|
||||
.nginx .hljs-title {
|
||||
color: #859900;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .command,
|
||||
pre .string,
|
||||
pre .tag .value,
|
||||
pre .rules .value,
|
||||
pre .phpdoc,
|
||||
pre .tex .formula,
|
||||
pre .regexp,
|
||||
pre .hexcolor {
|
||||
/* Solarized Cyan */
|
||||
.hljs-number,
|
||||
.hljs-command,
|
||||
.hljs-string,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-rules .hljs-value,
|
||||
.hljs-phpdoc,
|
||||
.tex .hljs-formula,
|
||||
.hljs-regexp,
|
||||
.hljs-hexcolor,
|
||||
.hljs-link_url {
|
||||
color: #2aa198;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .localvars,
|
||||
pre .chunk,
|
||||
pre .decorator,
|
||||
pre .built_in,
|
||||
pre .identifier,
|
||||
pre .vhdl .literal,
|
||||
pre .id,
|
||||
pre .css .function {
|
||||
/* Solarized Blue */
|
||||
.hljs-title,
|
||||
.hljs-localvars,
|
||||
.hljs-chunk,
|
||||
.hljs-decorator,
|
||||
.hljs-built_in,
|
||||
.hljs-identifier,
|
||||
.vhdl .hljs-literal,
|
||||
.hljs-id,
|
||||
.css .hljs-function {
|
||||
color: #268bd2;
|
||||
}
|
||||
|
||||
pre .attribute,
|
||||
pre .variable,
|
||||
pre .lisp .body,
|
||||
pre .smalltalk .number,
|
||||
pre .constant,
|
||||
pre .class .title,
|
||||
pre .parent,
|
||||
pre .haskell .type {
|
||||
/* Solarized Yellow */
|
||||
.hljs-attribute,
|
||||
.hljs-variable,
|
||||
.lisp .hljs-body,
|
||||
.smalltalk .hljs-number,
|
||||
.hljs-constant,
|
||||
.hljs-class .hljs-title,
|
||||
.hljs-parent,
|
||||
.haskell .hljs-type,
|
||||
.hljs-link_reference {
|
||||
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 {
|
||||
/* Solarized Orange */
|
||||
.hljs-preprocessor,
|
||||
.hljs-preprocessor .hljs-keyword,
|
||||
.hljs-pragma,
|
||||
.hljs-shebang,
|
||||
.hljs-symbol,
|
||||
.hljs-symbol .hljs-string,
|
||||
.diff .hljs-change,
|
||||
.hljs-special,
|
||||
.hljs-attr_selector,
|
||||
.hljs-subst,
|
||||
.hljs-cdata,
|
||||
.clojure .hljs-title,
|
||||
.css .hljs-pseudo,
|
||||
.hljs-header {
|
||||
color: #cb4b16;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
/* Solarized Red */
|
||||
.hljs-deletion,
|
||||
.hljs-important {
|
||||
color: #dc322f;
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
/* Solarized Violet */
|
||||
.hljs-link_label {
|
||||
color: #6c71c4;
|
||||
}
|
||||
|
||||
.tex .hljs-formula {
|
||||
background: #eee8d5;
|
||||
}
|
||||
|
@ -4,157 +4,157 @@ Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
background: #000; color: #f8f8f8;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc {
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.hljs-javadoc {
|
||||
color: #aeaeae;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .ruby .function .keyword,
|
||||
pre .request,
|
||||
pre .status,
|
||||
pre .nginx .title {
|
||||
.hljs-keyword,
|
||||
.ruby .hljs-function .hljs-keyword,
|
||||
.hljs-request,
|
||||
.hljs-status,
|
||||
.nginx .hljs-title {
|
||||
color: #E28964;
|
||||
}
|
||||
|
||||
pre .function .keyword,
|
||||
pre .sub .keyword,
|
||||
pre .method,
|
||||
pre .list .title {
|
||||
.hljs-function .hljs-keyword,
|
||||
.hljs-sub .hljs-keyword,
|
||||
.method,
|
||||
.hljs-list .hljs-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 {
|
||||
.hljs-string,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-cdata,
|
||||
.hljs-filter .hljs-argument,
|
||||
.hljs-attr_selector,
|
||||
.apache .hljs-cbracket,
|
||||
.hljs-date,
|
||||
.tex .hljs-command,
|
||||
.coffeescript .hljs-attribute {
|
||||
color: #65B042;
|
||||
}
|
||||
|
||||
pre .subst {
|
||||
.hljs-subst {
|
||||
color: #DAEFA3;
|
||||
}
|
||||
|
||||
pre .regexp {
|
||||
.hljs-regexp {
|
||||
color: #E9C062;
|
||||
}
|
||||
|
||||
pre .title,
|
||||
pre .sub .identifier,
|
||||
pre .pi,
|
||||
pre .tag,
|
||||
pre .tag .keyword,
|
||||
pre .decorator,
|
||||
pre .shebang,
|
||||
pre .prompt {
|
||||
.hljs-title,
|
||||
.hljs-sub .hljs-identifier,
|
||||
.hljs-pi,
|
||||
.hljs-tag,
|
||||
.hljs-tag .hljs-keyword,
|
||||
.hljs-decorator,
|
||||
.hljs-shebang,
|
||||
.hljs-prompt {
|
||||
color: #89BDFF;
|
||||
}
|
||||
|
||||
pre .class .title,
|
||||
pre .haskell .type,
|
||||
pre .smalltalk .class,
|
||||
pre .javadoctag,
|
||||
pre .yardoctag,
|
||||
pre .phpdoc {
|
||||
.hljs-class .hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-javadoctag,
|
||||
.hljs-yardoctag,
|
||||
.hljs-phpdoc {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
pre .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .number {
|
||||
.hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.hljs-number {
|
||||
color: #3387CC;
|
||||
}
|
||||
|
||||
pre .params,
|
||||
pre .variable,
|
||||
pre .clojure .attribute {
|
||||
.hljs-params,
|
||||
.hljs-variable,
|
||||
.clojure .hljs-attribute {
|
||||
color: #3E87E3;
|
||||
}
|
||||
|
||||
pre .css .tag,
|
||||
pre .rules .property,
|
||||
pre .pseudo,
|
||||
pre .tex .special {
|
||||
.css .hljs-tag,
|
||||
.hljs-rules .hljs-property,
|
||||
.hljs-pseudo,
|
||||
.tex .hljs-special {
|
||||
color: #CDA869;
|
||||
}
|
||||
|
||||
pre .css .class {
|
||||
.css .hljs-class {
|
||||
color: #9B703F;
|
||||
}
|
||||
|
||||
pre .rules .keyword {
|
||||
.hljs-rules .hljs-keyword {
|
||||
color: #C5AF75;
|
||||
}
|
||||
|
||||
pre .rules .value {
|
||||
.hljs-rules .hljs-value {
|
||||
color: #CF6A4C;
|
||||
}
|
||||
|
||||
pre .css .id {
|
||||
.css .hljs-id {
|
||||
color: #8B98AB;
|
||||
}
|
||||
|
||||
pre .annotation,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in {
|
||||
.hljs-annotation,
|
||||
.apache .hljs-sqbracket,
|
||||
.nginx .hljs-built_in {
|
||||
color: #9B859D;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .pragma {
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma {
|
||||
color: #8996A8;
|
||||
}
|
||||
|
||||
pre .hexcolor,
|
||||
pre .css .value .number {
|
||||
.hljs-hexcolor,
|
||||
.css .hljs-value .hljs-number {
|
||||
color: #DD7B3B;
|
||||
}
|
||||
|
||||
pre .css .function {
|
||||
.css .hljs-function {
|
||||
color: #DAD085;
|
||||
}
|
||||
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .tex .formula {
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk,
|
||||
.tex .hljs-formula {
|
||||
background-color: #0E2231;
|
||||
color: #F8F8F8;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
.diff .hljs-change {
|
||||
background-color: #4A410D;
|
||||
color: #F8F8F8;
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
.hljs-addition {
|
||||
background-color: #253B22;
|
||||
color: #F8F8F8;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
.hljs-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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -2,51 +2,92 @@
|
||||
/* 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 {
|
||||
|
||||
/* Tomorrow Comment */
|
||||
.hljs-comment,
|
||||
.hljs-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 {
|
||||
/* Tomorrow Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #ff9da4;
|
||||
}
|
||||
|
||||
.tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
|
||||
/* Tomorrow Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #ffc58f;
|
||||
}
|
||||
|
||||
.tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
|
||||
/* Tomorrow Yellow */
|
||||
.ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #ffeead;
|
||||
}
|
||||
|
||||
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
||||
/* Tomorrow Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #d1f1a9;
|
||||
}
|
||||
|
||||
.tomorrow-aqua, pre .css .hexcolor {
|
||||
/* Tomorrow Aqua */
|
||||
.css .hljs-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 {
|
||||
/* Tomorrow Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #bbdaff;
|
||||
}
|
||||
|
||||
.tomorrow-purple, pre .keyword, pre .javascript .function {
|
||||
/* Tomorrow Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #ebbbff;
|
||||
}
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -1,51 +1,92 @@
|
||||
/* 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 {
|
||||
|
||||
/* Tomorrow Comment */
|
||||
.hljs-comment,
|
||||
.hljs-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 {
|
||||
/* Tomorrow Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #d54e53;
|
||||
}
|
||||
|
||||
.tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
|
||||
/* Tomorrow Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #e78c45;
|
||||
}
|
||||
|
||||
.tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
|
||||
/* Tomorrow Yellow */
|
||||
.ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #e7c547;
|
||||
}
|
||||
|
||||
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
||||
/* Tomorrow Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #b9ca4a;
|
||||
}
|
||||
|
||||
.tomorrow-aqua, pre .css .hexcolor {
|
||||
/* Tomorrow Aqua */
|
||||
.css .hljs-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 {
|
||||
/* Tomorrow Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #7aa6da;
|
||||
}
|
||||
|
||||
.tomorrow-purple, pre .keyword, pre .javascript .function {
|
||||
/* Tomorrow Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #c397d8;
|
||||
}
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -1,51 +1,92 @@
|
||||
/* 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 {
|
||||
|
||||
/* Tomorrow Comment */
|
||||
.hljs-comment,
|
||||
.hljs-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 {
|
||||
/* Tomorrow Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #f2777a;
|
||||
}
|
||||
|
||||
.tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
|
||||
/* Tomorrow Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #f99157;
|
||||
}
|
||||
|
||||
.tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
|
||||
/* Tomorrow Yellow */
|
||||
.ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #ffcc66;
|
||||
}
|
||||
|
||||
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
||||
/* Tomorrow Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #99cc99;
|
||||
}
|
||||
|
||||
.tomorrow-aqua, pre .css .hexcolor {
|
||||
/* Tomorrow Aqua */
|
||||
.css .hljs-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 {
|
||||
/* Tomorrow Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #6699cc;
|
||||
}
|
||||
|
||||
.tomorrow-purple, pre .keyword, pre .javascript .function {
|
||||
/* Tomorrow Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #cc99cc;
|
||||
}
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -2,51 +2,92 @@
|
||||
/* 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 {
|
||||
|
||||
/* Tomorrow Comment */
|
||||
.hljs-comment,
|
||||
.hljs-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 {
|
||||
/* Tomorrow Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #cc6666;
|
||||
}
|
||||
|
||||
.tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
|
||||
/* Tomorrow Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #de935f;
|
||||
}
|
||||
|
||||
.tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
|
||||
/* Tomorrow Yellow */
|
||||
.ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #f0c674;
|
||||
}
|
||||
|
||||
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
||||
/* Tomorrow Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #b5bd68;
|
||||
}
|
||||
|
||||
.tomorrow-aqua, pre .css .hexcolor {
|
||||
/* Tomorrow Aqua */
|
||||
.css .hljs-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 {
|
||||
/* Tomorrow Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #81a2be;
|
||||
}
|
||||
|
||||
.tomorrow-purple, pre .keyword, pre .javascript .function {
|
||||
/* Tomorrow Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #b294bb;
|
||||
}
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -1,49 +1,90 @@
|
||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||
.tomorrow-comment, pre .comment, pre .title {
|
||||
|
||||
/* Tomorrow Comment */
|
||||
.hljs-comment,
|
||||
.hljs-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 {
|
||||
/* Tomorrow Red */
|
||||
.hljs-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.ruby .hljs-constant,
|
||||
.xml .hljs-tag .hljs-title,
|
||||
.xml .hljs-pi,
|
||||
.xml .hljs-doctype,
|
||||
.html .hljs-doctype,
|
||||
.css .hljs-id,
|
||||
.css .hljs-class,
|
||||
.css .hljs-pseudo {
|
||||
color: #c82829;
|
||||
}
|
||||
|
||||
.tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
|
||||
/* Tomorrow Orange */
|
||||
.hljs-number,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.hljs-literal,
|
||||
.hljs-params,
|
||||
.hljs-constant {
|
||||
color: #f5871f;
|
||||
}
|
||||
|
||||
.tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
|
||||
/* Tomorrow Yellow */
|
||||
.ruby .hljs-class .hljs-title,
|
||||
.css .hljs-rules .hljs-attribute {
|
||||
color: #eab700;
|
||||
}
|
||||
|
||||
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
||||
/* Tomorrow Green */
|
||||
.hljs-string,
|
||||
.hljs-value,
|
||||
.hljs-inheritance,
|
||||
.hljs-header,
|
||||
.ruby .hljs-symbol,
|
||||
.xml .hljs-cdata {
|
||||
color: #718c00;
|
||||
}
|
||||
|
||||
.tomorrow-aqua, pre .css .hexcolor {
|
||||
/* Tomorrow Aqua */
|
||||
.css .hljs-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 {
|
||||
/* Tomorrow Blue */
|
||||
.hljs-function,
|
||||
.python .hljs-decorator,
|
||||
.python .hljs-title,
|
||||
.ruby .hljs-function .hljs-title,
|
||||
.ruby .hljs-title .hljs-keyword,
|
||||
.perl .hljs-sub,
|
||||
.javascript .hljs-title,
|
||||
.coffeescript .hljs-title {
|
||||
color: #4271ae;
|
||||
}
|
||||
|
||||
.tomorrow-purple, pre .keyword, pre .javascript .function {
|
||||
/* Tomorrow Purple */
|
||||
.hljs-keyword,
|
||||
.javascript .hljs-function {
|
||||
color: #8959a8;
|
||||
}
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
@ -3,87 +3,87 @@
|
||||
Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
|
||||
|
||||
*/
|
||||
pre code {
|
||||
.hljs {
|
||||
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);
|
||||
.hljs-comment,
|
||||
.hljs-annotation,
|
||||
.hljs-template_comment,
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk,
|
||||
.apache .hljs-cbracket {
|
||||
color: #008000;
|
||||
}
|
||||
|
||||
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);
|
||||
.hljs-keyword,
|
||||
.hljs-id,
|
||||
.hljs-built_in,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-winutils,
|
||||
.bash .hljs-variable,
|
||||
.tex .hljs-command,
|
||||
.hljs-request,
|
||||
.hljs-status,
|
||||
.nginx .hljs-title,
|
||||
.xml .hljs-tag,
|
||||
.xml .hljs-tag .hljs-value {
|
||||
color: #00f;
|
||||
}
|
||||
|
||||
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);
|
||||
.hljs-string,
|
||||
.hljs-title,
|
||||
.hljs-parent,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-rules .hljs-value,
|
||||
.hljs-rules .hljs-value .hljs-number,
|
||||
.ruby .hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.hljs-aggregate,
|
||||
.hljs-template_tag,
|
||||
.django .hljs-variable,
|
||||
.hljs-addition,
|
||||
.hljs-flow,
|
||||
.hljs-stream,
|
||||
.apache .hljs-tag,
|
||||
.hljs-date,
|
||||
.tex .hljs-formula,
|
||||
.coffeescript .hljs-attribute {
|
||||
color: #a31515;
|
||||
}
|
||||
|
||||
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);
|
||||
.ruby .hljs-string,
|
||||
.hljs-decorator,
|
||||
.hljs-filter .hljs-argument,
|
||||
.hljs-localvars,
|
||||
.hljs-array,
|
||||
.hljs-attr_selector,
|
||||
.hljs-pseudo,
|
||||
.hljs-pi,
|
||||
.hljs-doctype,
|
||||
.hljs-deletion,
|
||||
.hljs-envvar,
|
||||
.hljs-shebang,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.userType,
|
||||
.apache .hljs-sqbracket,
|
||||
.nginx .hljs-built_in,
|
||||
.tex .hljs-special,
|
||||
.hljs-prompt {
|
||||
color: #2b91af;
|
||||
}
|
||||
|
||||
pre .phpdoc,
|
||||
pre .javadoc,
|
||||
pre .xmlDocTag {
|
||||
color: rgb(128, 128, 128);
|
||||
.hljs-phpdoc,
|
||||
.hljs-javadoc,
|
||||
.hljs-xmlDocTag {
|
||||
color: #808080;
|
||||
}
|
||||
|
||||
pre .vhdl .typename { font-weight: bold; }
|
||||
pre .vhdl .string { color: #666666; }
|
||||
pre .vhdl .literal { color: rgb(163, 21, 21); }
|
||||
pre .vhdl .attribute { color: #00B0E8; }
|
||||
.vhdl .hljs-typename { font-weight: bold; }
|
||||
.vhdl .hljs-string { color: #666666; }
|
||||
.vhdl .hljs-literal { color: #a31515; }
|
||||
.vhdl .hljs-attribute { color: #00B0E8; }
|
||||
|
||||
pre .xml .attribute { color: rgb(255, 0, 0); }
|
||||
.xml .hljs-attribute { color: #f00; }
|
||||
|
@ -4,154 +4,155 @@ XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
display: block; padding: 0.5em;
|
||||
background: #fff; color: black;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .template_comment,
|
||||
pre .javadoc,
|
||||
pre .comment * {
|
||||
color: rgb(0,106,0);
|
||||
.hljs-comment,
|
||||
.hljs-template_comment,
|
||||
.hljs-javadoc,
|
||||
.hljs-comment * {
|
||||
color: #006a00;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .literal,
|
||||
pre .nginx .title {
|
||||
color: rgb(170,13,145);
|
||||
.hljs-keyword,
|
||||
.hljs-literal,
|
||||
.nginx .hljs-title {
|
||||
color: #aa0d91;
|
||||
}
|
||||
pre .method,
|
||||
pre .list .title,
|
||||
pre .tag .title,
|
||||
pre .setting .value,
|
||||
pre .winutils,
|
||||
pre .tex .command,
|
||||
pre .http .title,
|
||||
pre .request,
|
||||
pre .status {
|
||||
.method,
|
||||
.hljs-list .hljs-title,
|
||||
.hljs-tag .hljs-title,
|
||||
.setting .hljs-value,
|
||||
.hljs-winutils,
|
||||
.tex .hljs-command,
|
||||
.http .hljs-title,
|
||||
.hljs-request,
|
||||
.hljs-status {
|
||||
color: #008;
|
||||
}
|
||||
|
||||
pre .envvar,
|
||||
pre .tex .special {
|
||||
.hljs-envvar,
|
||||
.tex .hljs-special {
|
||||
color: #660;
|
||||
}
|
||||
|
||||
pre .string {
|
||||
color: rgb(196,26,22);
|
||||
.hljs-string {
|
||||
color: #c41a16;
|
||||
}
|
||||
pre .tag .value,
|
||||
pre .cdata,
|
||||
pre .filter .argument,
|
||||
pre .attr_selector,
|
||||
pre .apache .cbracket,
|
||||
pre .date,
|
||||
pre .regexp {
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-cdata,
|
||||
.hljs-filter .hljs-argument,
|
||||
.hljs-attr_selector,
|
||||
.apache .hljs-cbracket,
|
||||
.hljs-date,
|
||||
.hljs-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);
|
||||
.hljs-sub .hljs-identifier,
|
||||
.hljs-pi,
|
||||
.hljs-tag,
|
||||
.hljs-tag .hljs-keyword,
|
||||
.hljs-decorator,
|
||||
.ini .hljs-title,
|
||||
.hljs-shebang,
|
||||
.hljs-prompt,
|
||||
.hljs-hexcolor,
|
||||
.hljs-rules .hljs-value,
|
||||
.css .hljs-value .hljs-number,
|
||||
.hljs-symbol,
|
||||
.hljs-symbol .hljs-string,
|
||||
.hljs-number,
|
||||
.css .hljs-function,
|
||||
.clojure .hljs-title,
|
||||
.clojure .hljs-built_in,
|
||||
.hljs-function .hljs-title,
|
||||
.coffeescript .hljs-attribute {
|
||||
color: #1c00cf;
|
||||
}
|
||||
|
||||
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);
|
||||
.hljs-class .hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.smalltalk .hljs-class,
|
||||
.hljs-javadoctag,
|
||||
.hljs-yardoctag,
|
||||
.hljs-phpdoc,
|
||||
.hljs-typename,
|
||||
.hljs-tag .hljs-attribute,
|
||||
.hljs-doctype,
|
||||
.hljs-class .hljs-id,
|
||||
.hljs-built_in,
|
||||
.setting,
|
||||
.hljs-params,
|
||||
.clojure .hljs-attribute {
|
||||
color: #5c2699;
|
||||
}
|
||||
|
||||
pre .variable {
|
||||
color: rgb(63,110,116);
|
||||
.hljs-variable {
|
||||
color: #3f6e74;
|
||||
}
|
||||
pre .css .tag,
|
||||
pre .rules .property,
|
||||
pre .pseudo,
|
||||
pre .subst {
|
||||
.css .hljs-tag,
|
||||
.hljs-rules .hljs-property,
|
||||
.hljs-pseudo,
|
||||
.hljs-subst {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
pre .css .class, pre .css .id {
|
||||
.css .hljs-class,
|
||||
.css .hljs-id {
|
||||
color: #9B703F;
|
||||
}
|
||||
|
||||
pre .value .important {
|
||||
.hljs-value .hljs-important {
|
||||
color: #ff7700;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .rules .keyword {
|
||||
.hljs-rules .hljs-keyword {
|
||||
color: #C5AF75;
|
||||
}
|
||||
|
||||
pre .annotation,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in {
|
||||
.hljs-annotation,
|
||||
.apache .hljs-sqbracket,
|
||||
.nginx .hljs-built_in {
|
||||
color: #9B859D;
|
||||
}
|
||||
|
||||
pre .preprocessor,
|
||||
pre .preprocessor *,
|
||||
pre .pragma {
|
||||
color: rgb(100,56,32);
|
||||
.hljs-preprocessor,
|
||||
.hljs-preprocessor *,
|
||||
.hljs-pragma {
|
||||
color: #643820;
|
||||
}
|
||||
|
||||
pre .tex .formula {
|
||||
.tex .hljs-formula {
|
||||
background-color: #EEE;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .diff .header,
|
||||
pre .chunk {
|
||||
.diff .hljs-header,
|
||||
.hljs-chunk {
|
||||
color: #808080;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .diff .change {
|
||||
.diff .hljs-change {
|
||||
background-color: #BCCFF9;
|
||||
}
|
||||
|
||||
pre .addition {
|
||||
.hljs-addition {
|
||||
background-color: #BAEEBA;
|
||||
}
|
||||
|
||||
pre .deletion {
|
||||
.hljs-deletion {
|
||||
background-color: #FFC8BD;
|
||||
}
|
||||
|
||||
pre .comment .yardoctag {
|
||||
.hljs-comment .hljs-yardoctag {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .method .id {
|
||||
.method .hljs-id {
|
||||
color: #000;
|
||||
}
|
||||
|
@ -5,113 +5,113 @@ based on dark.css by Ivan Sagalaev
|
||||
|
||||
*/
|
||||
|
||||
pre code {
|
||||
.hljs {
|
||||
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 {
|
||||
.hljs-keyword,
|
||||
.hljs-tag,
|
||||
.css .hljs-class,
|
||||
.css .hljs-id,
|
||||
.lisp .hljs-title,
|
||||
.nginx .hljs-title,
|
||||
.hljs-request,
|
||||
.hljs-status,
|
||||
.clojure .hljs-attribute {
|
||||
color: #E3CEAB;
|
||||
}
|
||||
|
||||
pre .django .template_tag,
|
||||
pre .django .variable,
|
||||
pre .django .filter .argument {
|
||||
.django .hljs-template_tag,
|
||||
.django .hljs-variable,
|
||||
.django .hljs-filter .hljs-argument {
|
||||
color: #DCDCDC;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .date {
|
||||
.hljs-number,
|
||||
.hljs-date {
|
||||
color: #8CD0D3;
|
||||
}
|
||||
|
||||
pre .dos .envvar,
|
||||
pre .dos .stream,
|
||||
pre .variable,
|
||||
pre .apache .sqbracket {
|
||||
.dos .hljs-envvar,
|
||||
.dos .hljs-stream,
|
||||
.hljs-variable,
|
||||
.apache .hljs-sqbracket {
|
||||
color: #EFDCBC;
|
||||
}
|
||||
|
||||
pre .dos .flow,
|
||||
pre .diff .change,
|
||||
pre .python .exception,
|
||||
pre .python .built_in,
|
||||
pre .literal,
|
||||
pre .tex .special {
|
||||
.dos .hljs-flow,
|
||||
.diff .hljs-change,
|
||||
.python .exception,
|
||||
.python .hljs-built_in,
|
||||
.hljs-literal,
|
||||
.tex .hljs-special {
|
||||
color: #EFEFAF;
|
||||
}
|
||||
|
||||
pre .diff .chunk,
|
||||
pre .subst {
|
||||
.diff .hljs-chunk,
|
||||
.hljs-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 {
|
||||
.dos .hljs-keyword,
|
||||
.python .hljs-decorator,
|
||||
.hljs-title,
|
||||
.haskell .hljs-type,
|
||||
.diff .hljs-header,
|
||||
.ruby .hljs-class .hljs-parent,
|
||||
.apache .hljs-tag,
|
||||
.nginx .hljs-built_in,
|
||||
.tex .hljs-command,
|
||||
.hljs-prompt {
|
||||
color: #efef8f;
|
||||
}
|
||||
|
||||
pre .dos .winutils,
|
||||
pre .ruby .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .ruby .string {
|
||||
.dos .hljs-winutils,
|
||||
.ruby .hljs-symbol,
|
||||
.ruby .hljs-symbol .hljs-string,
|
||||
.ruby .hljs-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 {
|
||||
.diff .hljs-deletion,
|
||||
.hljs-string,
|
||||
.hljs-tag .hljs-value,
|
||||
.hljs-preprocessor,
|
||||
.hljs-pragma,
|
||||
.hljs-built_in,
|
||||
.sql .hljs-aggregate,
|
||||
.hljs-javadoc,
|
||||
.smalltalk .hljs-class,
|
||||
.smalltalk .hljs-localvars,
|
||||
.smalltalk .hljs-array,
|
||||
.css .hljs-rules .hljs-value,
|
||||
.hljs-attr_selector,
|
||||
.hljs-pseudo,
|
||||
.apache .hljs-cbracket,
|
||||
.tex .hljs-formula,
|
||||
.coffeescript .hljs-attribute {
|
||||
color: #CC9393;
|
||||
}
|
||||
|
||||
pre .shebang,
|
||||
pre .diff .addition,
|
||||
pre .comment,
|
||||
pre .java .annotation,
|
||||
pre .template_comment,
|
||||
pre .pi,
|
||||
pre .doctype {
|
||||
.hljs-shebang,
|
||||
.diff .hljs-addition,
|
||||
.hljs-comment,
|
||||
.java .hljs-annotation,
|
||||
.hljs-template_comment,
|
||||
.hljs-pi,
|
||||
.hljs-doctype {
|
||||
color: #7F9F7F;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
.coffeescript .javascript,
|
||||
.javascript .xml,
|
||||
.tex .hljs-formula,
|
||||
.xml .javascript,
|
||||
.xml .vbscript,
|
||||
.xml .css,
|
||||
.xml .hljs-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user