sass-site/source/assets/stylesheets/dependencies/_themes.scss
Jina Bolton 3b465c6ffa boom
2013-02-08 19:10:33 -08:00

26 lines
749 B
SCSS

// ===========================================================================
// THEMES
// ---------------------------------------------------------------------------
// TEXT SHADOWS
@mixin text-shadow-dark($color-setting: $shadow-color) {
@include text-shadow(0 -1px 1px $color-setting);
}
@mixin text-shadow-light($color-setting: $highlight-color) {
@include text-shadow(0 1px 1px $color-setting);
}
// ---------------------------------------------------------------------------
// BOX SHADOWS
@mixin box-shadow-both($dark-color-setting: $shadow-color,
$light-color-setting: $highlight-color) {
@include box-shadow(0 1px 1px $light-color-setting inset,
0 1px 1px $dark-color-setting);
}