Created
April 2, 2016 13:49
-
-
Save jonpitch/6176dda13c48bc739261cb481c826791 to your computer and use it in GitHub Desktop.
Ember Theming - Component SASS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// usage: | |
div.my-awesome-class { | |
@include theme('color', 'primary'); | |
} | |
// results in the output: | |
div.my-awesome-class[data-theme="default-first"] { | |
color: #58b15f; | |
} | |
div.my-awesome-class[data-theme="default-second"] { | |
color: #287f6e; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment