mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
1838ff2502
Pull the flash into the base theme rather than the ui themes
31 lines
954 B
Plaintext
31 lines
954 B
Plaintext
// This file has fallback variables. It specifies all syntax variables that
|
|
// themes must implement if they include a syntax-variables.less file.
|
|
|
|
// General colors
|
|
@syntax-text-color: #333;
|
|
@syntax-cursor-color: #333;
|
|
@syntax-selection-color: #69c;
|
|
@syntax-selection-flash-color: #00f; // Color the selection is 'flashed' when you run find next
|
|
@syntax-background-color: #fff;
|
|
|
|
// Guide colors
|
|
@syntax-wrap-guide-color: #ccc;
|
|
@syntax-indent-guide-color: #ccc;
|
|
@syntax-invisible-character-color: #ccc;
|
|
|
|
// For find and replace markers
|
|
@syntax-result-marker-color: #444;
|
|
@syntax-result-marker-color-selected: #000;
|
|
|
|
// Gutter colors
|
|
@syntax-gutter-text-color: #333;
|
|
@syntax-gutter-text-color-selected: #000;
|
|
@syntax-gutter-background-color: #ccc;
|
|
@syntax-gutter-background-color-selected: #eee;
|
|
|
|
// For git diff info. i.e. in the gutter
|
|
@syntax-color-added: green;
|
|
@syntax-color-modified: orange;
|
|
@syntax-color-removed: red;
|
|
@syntax-color-renamed: blue;
|