generated from nhcarrigan/template
58 lines
1.1 KiB
Plaintext
58 lines
1.1 KiB
Plaintext
// This defines styling rules for the editor.
|
|
|
|
atom-text-editor {
|
|
background-color: @syntax-background-color;
|
|
color: @syntax-text-color;
|
|
font-family: 'OpenDyslexicM Nerd Font', sans-serif;
|
|
|
|
.wrap-guide {
|
|
background-color: @syntax-wrap-guide-color;
|
|
}
|
|
|
|
.indent-guide {
|
|
color: @syntax-indent-guide-color;
|
|
}
|
|
|
|
.invisible-character {
|
|
color: @syntax-invisible-character-color;
|
|
}
|
|
|
|
.gutter {
|
|
background-color: @syntax-gutter-background-color;
|
|
color: @syntax-gutter-text-color;
|
|
|
|
.line-number {
|
|
&.cursor-line {
|
|
background-color: @syntax-gutter-background-color-selected;
|
|
color: @syntax-gutter-text-color-selected;
|
|
}
|
|
|
|
&.cursor-line-no-selection {
|
|
color: @syntax-gutter-text-color-selected;
|
|
}
|
|
}
|
|
}
|
|
|
|
.gutter .line-number.folded,
|
|
.gutter .line-number:after,
|
|
.fold-marker:after {
|
|
color: @syntax-gutter-text-color;
|
|
}
|
|
|
|
.invisible {
|
|
color: @syntax-text-color;
|
|
}
|
|
|
|
.cursor {
|
|
color: @syntax-cursor-color;
|
|
}
|
|
|
|
.selection .region {
|
|
background-color: @syntax-selection-color;
|
|
}
|
|
}
|
|
|
|
atom-text-editor[mini] .scroll-view {
|
|
padding-left: 1px;
|
|
}
|