From: Alexander Barton Date: Wed, 20 May 2015 09:01:14 +0000 (+0200) Subject: Rename "stylesheets/" directory to "styles/" X-Git-Tag: v0.1.0~7^2 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=atom-ax-monokai-syntax.git;a=commitdiff_plain;h=6a8112b3b9a86aed21ad4b2a0bf06c43ace83bef;hp=22ffbc0dcb672e3c4874f5a3cb22c0ad6fbaea17 Rename "stylesheets/" directory to "styles/" This fixes the following deprecation warning: "Store package style sheets in the styles/ directory instead of stylesheets/ in the seti-monokai package" Closes joaoafrmartins/seti-monokai#21. --- diff --git a/index.less b/index.less index 7928bcc..ef211d6 100644 --- a/index.less +++ b/index.less @@ -1,4 +1,4 @@ -@import 'syntax-variables'; +@import './styles/syntax-variables'; .editor-colors { background-color: @syntax-background-color; diff --git a/styles/syntax-variables.less b/styles/syntax-variables.less new file mode 100644 index 0000000..9039608 --- /dev/null +++ b/styles/syntax-variables.less @@ -0,0 +1,26 @@ +// General colors +@syntax-text-color: #F8F8F2; +@syntax-cursor-color: #F8F8F0; +@syntax-selection-color: #49483E; +@syntax-background-color: #1D1F21; + +// Guide colors +@syntax-wrap-guide-color: #3D3D3D; +@syntax-indent-guide-color: #3D3D3D; +@syntax-invisible-character-color: #3D3D3D; + +// 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, 3%); +@syntax-gutter-background-color-selected: @syntax-selection-color; + +// For git diff info. i.e. in the gutter +@syntax-color-renamed: #ffd569; +@syntax-color-added: #529b2f; +@syntax-color-modified: #E6DB74; +@syntax-color-removed: #F92672; diff --git a/stylesheets/syntax-variables.less b/stylesheets/syntax-variables.less deleted file mode 100644 index 9039608..0000000 --- a/stylesheets/syntax-variables.less +++ /dev/null @@ -1,26 +0,0 @@ -// General colors -@syntax-text-color: #F8F8F2; -@syntax-cursor-color: #F8F8F0; -@syntax-selection-color: #49483E; -@syntax-background-color: #1D1F21; - -// Guide colors -@syntax-wrap-guide-color: #3D3D3D; -@syntax-indent-guide-color: #3D3D3D; -@syntax-invisible-character-color: #3D3D3D; - -// 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, 3%); -@syntax-gutter-background-color-selected: @syntax-selection-color; - -// For git diff info. i.e. in the gutter -@syntax-color-renamed: #ffd569; -@syntax-color-added: #529b2f; -@syntax-color-modified: #E6DB74; -@syntax-color-removed: #F92672;