Last active
August 29, 2015 14:10
-
-
Save founddrama/51d79a84a8f1d9690312 to your computer and use it in GitHub Desktop.
Simplest-possible SCSS theming approach
This file contains hidden or 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
// in themes/ | |
$background_color: #E22; | |
$foreground_color: #ded; | |
$text_color: #030; |
This file contains hidden or 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
@import 'themes/core-vars'; | |
@import 'themes/alt-vars'; | |
@import 'core/layout'; | |
// etc. |
This file contains hidden or 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
// in themes/ | |
$background_color: #222; | |
$foreground_color: #ddd; | |
$text_color: #111; | |
$base_margin: 1rem; | |
$base_padding: 0.5rem; |
This file contains hidden or 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
// in core/ | |
$background_color: #222; | |
$foreground_color: #ddd; | |
$text_color: #111; | |
$base_margin: 1rem; | |
$base_padding: 0.5rem; | |
.container { | |
background-color: $background_color; | |
} | |
.post { | |
background-color: $foreground_color; | |
color: $text_color; | |
padding: $base_padding; | |
margin: $base_margin; | |
} |
This file contains hidden or 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
@import 'themes/core-vars'; | |
@import 'core/layout'; | |
// etc. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RE: "Minimum Viable Demonstration" (https://twitter.com/founddrama/status/539845927046234112)