12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /*
- Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
- */
- .highlight
- color: #657b83
- background: #fdf6e3
- .code
- .comment,
- .quote
- color: #93a1a1
- /* Solarized Green */
- .keyword,
- .selector-tag,
- .addition
- color: #859900
- /* Solarized Cyan */
- .number,
- .string,
- .meta .meta-string,
- .literal,
- .doctag,
- .regexp
- color: #2aa198
- /* Solarized Blue */
- .title,
- .section,
- .name,
- .selector-id,
- .selector-class
- color: #268bd2
- /* Solarized Yellow */
- .attribute,
- .attr,
- .variable,
- .template-variable,
- .class .title,
- .type
- color: #b58900
- /* Solarized Orange */
- .symbol,
- .bullet,
- .subst,
- .meta,
- .meta .keyword,
- .selector-attr,
- .selector-pseudo,
- .link
- color: #cb4b16
- /* Solarized Red */
- .built_in,
- .deletion
- color: #dc322f
- .formula
- background: #eee8d5
- .emphasis
- font-style: italic
- .strong
- font-weight: bold
|