Skip to content

Instantly share code, notes, and snippets.

@larslevie
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save larslevie/9d785ab0c32743db8d25 to your computer and use it in GitHub Desktop.
Save larslevie/9d785ab0c32743db8d25 to your computer and use it in GitHub Desktop.
Color Highlighter, highlighting bug
@import 'colors';
@import 'foobar';
body {
// Highlighting does not work when importing (line 1)
colors: $primary-medium-gray;
}
// Highlighting *does* work in this file
$primary-black: #33312c;
$primary-turquoise: #00b09f;
$primary-turquoise-tint: #007c70;
$primary-dark-gray: #615d58;
$primary-medium-gray: #d6d2c6;
$primary-medium-light-gray: #ece8dd;
$primary-light-gray: #f4f3ef;
$primary-white: #fff;
.blah {
// Highlighting does not work here
color: $primary-turquoise;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment