Sha256: 1ba873d3f044fcc35abcfedb81c597deb80d8bdf526d2eeb23fdbc2279e766d3
Contents?: true
Size: 1.02 KB
Versions: 36
Compression:
Stored size: 1.02 KB
Contents
@import "../tokens/colors"; @import "../tokens/typography"; $pb_caption_colors: ( default: $text_lt_default, light: $text_lt_light, link: $primary, lighter: $text_lt_lighter, success: $success, error: $error, ); $pb_dark_caption_colors: ( default: $text_dk_default, light: $text_dk_light, link: $primary, ); @mixin caption($font_size: $font_smaller, $font_weight: $bold) { font-weight: $font_weight; color: $text_lt_light; text-transform: uppercase; font-size: $font_size; letter-spacing: $lspace_looser; } @mixin caption_color($color: $text_lt_light) { color: $color; } @mixin caption_lg { @include caption($font_large, $regular); } @mixin caption_xs { @include caption($font_smaller, $regular); text-transform: none; letter-spacing: unset; } @mixin caption_dark { color: $text_dk_light; } @mixin pb_caption_kit_colors { @each $name, $color in $pb_caption_colors { &[class*="#{$name}"] { color: $color } } }
Version data entries
36 entries across 36 versions & 1 rubygems