mirror of
https://github.com/atom/atom.git
synced 2026-02-02 10:45:14 -05:00
45 lines
1.5 KiB
Plaintext
45 lines
1.5 KiB
Plaintext
// This defines all syntax variables that syntax themes must implement when they
|
|
// include a syntax-variables.less file.
|
|
|
|
// General colors
|
|
@syntax-text-color: #c5c8c6;
|
|
@syntax-cursor-color: white;
|
|
@syntax-selection-color: #444;
|
|
@syntax-selection-flash-color: #eee;
|
|
@syntax-background-color: #1d1f21;
|
|
|
|
// Guide colors
|
|
@syntax-wrap-guide-color: rgba(197, 200, 198, .1);
|
|
@syntax-indent-guide-color: rgba(197, 200, 198, .2);
|
|
@syntax-invisible-character-color: rgba(197, 200, 198, .2);
|
|
|
|
// For find and replace markers
|
|
@syntax-result-marker-color: #888;
|
|
@syntax-result-marker-color-selected: white;
|
|
|
|
// Gutter colors
|
|
@syntax-gutter-text-color: @syntax-text-color;
|
|
@syntax-gutter-text-color-selected: @syntax-gutter-text-color;
|
|
@syntax-gutter-background-color: lighten(@syntax-background-color, 5%);
|
|
@syntax-gutter-background-color-selected: rgba(255, 255, 255, 0.14);
|
|
|
|
// For git diff info. i.e. in the gutter
|
|
@syntax-color-renamed: #96CBFE;
|
|
@syntax-color-added: #A8FF60;
|
|
@syntax-color-modified: #E9C062;
|
|
@syntax-color-removed: #CC6666;
|
|
|
|
// For language entity colors
|
|
@syntax-color-variable: #C6C5FE;
|
|
@syntax-color-constant: #99CC99;
|
|
@syntax-color-property: #EDEDED;
|
|
@syntax-color-value: #F9EE98;
|
|
@syntax-color-function: #DAD085;
|
|
@syntax-color-method: @syntax-color-function;
|
|
@syntax-color-class: #62B1FE;
|
|
@syntax-color-keyword: #96CBFE;
|
|
@syntax-color-tag: #96CBFE;
|
|
@syntax-color-attribute: #FF73FD;
|
|
@syntax-color-import: @syntax-color-keyword;
|
|
@syntax-color-snippet: @syntax-color-constant;
|