Skip to content

Commit

Permalink
Merge pull request #1 from hectormatos2011/hectormatos2011-solarizedl…
Browse files Browse the repository at this point in the history
…ightcss

New Theme for PrismJS - Solarized Light
  • Loading branch information
hectormatos2011 committed Jan 17, 2016
2 parents 3ebcb66 + 35ac992 commit c70ee23
Showing 1 changed file with 128 additions and 0 deletions.
128 changes: 128 additions & 0 deletions themes/prism-solarizedlight
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
/*
Solarized Color Schemes originally by Ethan Schoonover
http://ethanschoonover.com/solarized

Ported for PrismJS by Hector Matos
Website: https://krakendev.io
Twitter Handle: https://twitter.com/allonsykraken)
*/

code[class*="language-"],
pre[class*="language-"] {
color: #2176c7;
font-family: Consolas, Monaco, 'Andale Mono', monospace;
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;

line-height: 1.5;

-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;

-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}

/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
border-radius: 0.3em;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #eee8d5;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #475b62;
}

.token.punctuation {
color: #586e75;
}

.namespace {
opacity: .7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
color: #2176c7;
}

.token.boolean {
color: #2176c7;
}

.token.number,
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #259286;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
color: #5662b5;
}

.token.keyword,
.token.atrule,
.token.attr-value {
color: #738a05;
}

.token.function,
.token.regex,
.token.important {
color: #708284;
}

.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}

.token.entity {
cursor: help;
}

::selection {
background: #CAD6D9;
}
::-moz-selection {
background: #CAD6D9;
}

0 comments on commit c70ee23

Please sign in to comment.