pulsar/themes/atom-light-syntax.css
Kevin Sawicki bfaf5b4952 Move folding colors to syntax stylesheets
Switch the light syntax folding color to an orange
instead of the pink which look washed out on a light
background.
2013-02-22 09:10:18 -08:00

195 lines
2.8 KiB
CSS

.editor, .editor .gutter {
background-color: #FFFFFF;
color: #555;
}
.editor .gutter .line-number.fold,
.editor .gutter .line-number:after,
.editor .fold-marker:after {
color: #e87b00;
}
.editor .invisible {
color: #555;
}
.editor.is-focused .cursor {
border-color: #000;
}
.editor .selection .region {
background-color: #e1e1e1;
}
.editor.is-focused .selection .region {
background-color: #afc4da;
}
.editor.is-focused .line-number.cursor-line-no-selection, .editor.is-focused .line.cursor-line {
background-color: rgba(255, 255, 134, 0.34);
}
.editor .comment {
color: #999988;
font-style: italic;
}
.bracket-matcher {
background-color: #C9C9C9;
opacity: .7;
border-bottom: 0 none;
}
.editor .string {
color: #D14;
}
.editor .constant.numeric {
color: #D14;
}
.editor .constant.language {
color: #606aa1;
}
.editor .constant.character, .editor .constant.other {
color: #606aa1;
}
.editor .constant.symbol {
color: #990073;
}
.editor .variable {
color: #008080;
}
/* Keywords */
.editor .keyword {
color: #222;
font-weight: bold;
}
.editor .keyword.unit {
color: #445588;
}
.editor .keyword.special-method {
color: #0086B3;
}
.editor .storage {
color: #222;
}
.editor .storage.type {
color: #222;
}
.editor .entity.name.class {
text-decoration: underline;
color: #606aa1;
}
.editor .entity.other.inherited-class {
text-decoration: underline;
color: #606aa1;
}
.editor .entity.name.function {
color: #900;
}
.editor .variable.parameter {
color: #606aa1;
}
.editor .entity.name.tag {
color: #008080;
}
.editor .entity.other.attribute-name {
color: #458;
font-weight: bold;
}
.editor .support.function {
color: #458;
}
.editor .support.constant {
color: #458;
}
.editor .support.type {
color: #458;
}
.editor .support.class {
color: #008080;
}
.editor .invalid {
color: #F8F8F0;
background-color: #00A8C6;
}
.editor .invalid.deprecated {
color: #F8F8F0;
background-color: #8FBE00;
}
.editor .meta.structure.dictionary.json > .string.quoted.double.json,
.editor .meta.structure.dictionary.json > .string.quoted.double.json .punctuation.string {
color: #000080;
}
.editor .meta.structure.dictionary.value.json > .string.quoted.double.json {
color: #d14;
}
.editor .meta.diff, .editor .meta.diff.header {
color: #75715E;
}
.editor .meta.function span {
color: #990000;
font-weight: bold;
}
.editor .constant.numeric.line-number.find-in-files .- .match {
color: rgba(143, 190, 0, 0.63);
}
.editor .entity.name.filename.find-in-files {
color: #E6DB74;
}
/* CSS Styles */
.editor .css.support.property-name {
font-weight: bold;
color: #333;
}
.editor .css.constant {
color: #099;
}
/* Markdown */
.editor .source.gfm {
color: #444;
}
.editor .gfm .markup.heading {
color: #111;
}
.editor .gfm .link {
color: #888;
}
.editor .gfm .variable.list {
color: #888;
}