Sha256: b3127d07213a67554b3d945e8a7287ad65d7cf573c178ff4ad867cf4771cff1b
Contents?: true
Size: 741 Bytes
Versions: 1
Compression:
Stored size: 741 Bytes
Contents
// Dark and light theme // Based on https://material.google.com/style/color.html#color-themes @include bg-variant('.bg-dark-1', $dark-theme-1); @include bg-variant('.bg-dark-2', $dark-theme-2); @include bg-variant('.bg-dark-3', $dark-theme-3); @include bg-variant('.bg-dark-4', $dark-theme-4); @include bg-variant('.bg-light-1', $light-theme-1); @include bg-variant('.bg-light-2', $light-theme-2); @include bg-variant('.bg-light-3', $light-theme-3); @include bg-variant('.bg-light-4', $light-theme-4); @include bg-variant('.bg-transparent', transparent); @include bg-variant('.bg-white', $white); // Palette @each $color, $values in $theme-colors { @include bg-variant('.bg-#{$color}', theme-color($color), theme-color-dark($color)); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
material-sass-4.0.0 | assets/stylesheets/material/utilities/_background.scss |