pulsar/static/variables/syntax-variables.less

30 lines
858 B
Plaintext
Raw Normal View History

2014-03-01 03:14:28 +04:00
// This file has fallback variables. It specifies all syntax variables that
// themes must implement if they include a syntax-variables.less file.
2013-12-06 23:31:17 +04:00
2014-03-01 03:14:28 +04:00
// General colors
@syntax-text-color: #333;
@syntax-cursor-color: #333;
@syntax-selection-color: #69c;
@syntax-background-color: #fff;
2014-03-01 04:49:23 +04:00
// Guide colors
@syntax-wrap-guide-color: #ccc;
@syntax-indent-guide-color: #ccc;
2014-03-01 03:14:28 +04:00
@syntax-invisible-character-color: #ccc;
2013-12-06 23:31:17 +04:00
2014-03-01 03:14:28 +04:00
// 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;