]> arthur.barton.de Git - atom-ax-monokai-syntax.git/commitdiff
Rename "stylesheets/" directory to "styles/" fix-stylesheets-dir github/fix-stylesheets-dir
authorAlexander Barton <alex@barton.de>
Wed, 20 May 2015 09:01:14 +0000 (11:01 +0200)
committerAlexander Barton <alex@barton.de>
Wed, 20 May 2015 09:07:55 +0000 (11:07 +0200)
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.

index.less
styles/syntax-variables.less [new file with mode: 0644]
stylesheets/syntax-variables.less [deleted file]

index 7928bccb97bd23a261192c284717b53236e3ef0c..ef211d67e5841cf9b72ad81e12a6222a1b7fdfc9 100644 (file)
@@ -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 (file)
index 0000000..9039608
--- /dev/null
@@ -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 (file)
index 9039608..0000000
+++ /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;