mirror of
https://github.com/atom/atom.git
synced 2026-01-14 01:18:01 -05:00
51 lines
981 B
Plaintext
51 lines
981 B
Plaintext
atom-text-editor {
|
|
background-color: @syntax-background-color;
|
|
color: @syntax-text-color;
|
|
|
|
.invisible-character {
|
|
color: @syntax-invisible-character-color;
|
|
}
|
|
|
|
.indent-guide {
|
|
color: @syntax-indent-guide-color;
|
|
}
|
|
|
|
.wrap-guide {
|
|
background-color: @syntax-wrap-guide-color;
|
|
}
|
|
|
|
.gutter {
|
|
background-color: @syntax-gutter-background-color;
|
|
}
|
|
.gutter .cursor-line {
|
|
background-color: @syntax-gutter-background-color-selected;
|
|
}
|
|
.line-number.cursor-line-no-selection {
|
|
background-color: @syntax-gutter-background-color-selected;
|
|
}
|
|
|
|
.gutter .line-number.folded,
|
|
.gutter .line-number:after,
|
|
.fold-marker:after {
|
|
color: #fba0e3;
|
|
}
|
|
|
|
.invisible {
|
|
color: @syntax-text-color;
|
|
}
|
|
|
|
.cursor {
|
|
border-color: @syntax-cursor-color;
|
|
}
|
|
|
|
.selection .region {
|
|
background-color: @syntax-selection-color;
|
|
}
|
|
|
|
.bracket-matcher .region {
|
|
border-bottom: 1px solid #f8de7e;
|
|
margin-top: -1px;
|
|
opacity: .7;
|
|
}
|
|
}
|