Update syntax color variables

This commit is contained in:
Ben Ogle
2014-02-28 15:14:28 -08:00
parent 58f4e5bf76
commit 33aba7b721

View File

@@ -1,8 +1,25 @@
// This file has fallback variables. It specifies the syntax variables that
// themes must implement.
// This file has fallback variables. It specifies all syntax variables that
// themes must implement if they include a syntax-variables.less file.
// Colors
// General colors
@syntax-text-color: #333;
@syntax-background-color: #fff;
@syntax-cursor-color: #333;
@syntax-selection-color: #69c;
@syntax-invisible-character-color: #ccc;
@syntax-color-added: #5293d8;
@syntax-color-modified: #f78a46;
@syntax-color-removed: #c00;
// 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;