projectivetech / Perv-ColorScheme

DEPRECATED! Color schemes for Sublime Text 2&3, including extended coloring for Markdown, reStructuredText, Ruby, C/C++ CSS, SASS/SCSS, JSON, Git, GitGutter, DIFF and SublimeLinter
https://github.com/micck/perv-colorscheme
Other
43 stars 8 forks source link

Scss: Wrong color for variable when used in interpolation. #7

Open Lisa-Williams opened 10 years ago

Lisa-Williams commented 10 years ago

Hi, I just installed this color scheme.

There seems to be a problem with the coloring of variables when used for interpolation. They are not colored white, but orange-red. (Screenshot.)

Could you tell me where to edit the color scheme?

Thx

Here is the code from the screenshot.

  $webfont-provider: '//fonts.googleapis.com/css?family=' !default;
  $webfont-family: 'Merriweather+Sans:400,300,300italic,400italic,700,700italic,800,800italic' !default;
  @import url(#{$webfont-provider}#{$webfont-family});

  %bg-dark {
    background-color: #000;
  }
  %bg-white{
    background-color: #FFF;
  }
  @mixin set-styles($arg) {
    @extend %bg-#{$arg};
  }
  .header {
    @include set-styles("dark");
  }

perv-color-scheme-interpolation-wrong-variable-color.pngt

mickimnet commented 10 years ago

Thank you for letting me know. I'll take a look in the next couple of days.