Sha256: e5a25ad85df7223ef4ea6ba8fb7cefee4e27f27f9fd873220be8b3e2aaba64f3
Contents?: true
Size: 1.04 KB
Versions: 15
Compression:
Stored size: 1.04 KB
Contents
@import "../tokens/colors"; @import "../tokens/line_height"; @import "../tokens/typography"; $pb_body_colors: ( default: $text_lt_default, light: $text_lt_light, lighter: $text_lt_lighter, dark: $text_dk_default, light_dark: $text_dk_light, lighter_dark: $text_dk_lighter, ); $pb_body_status: ( default: $text_lt_default, negative: $error, positive: $success, ); @mixin pb_body($color: $text_lt_default) { line-height: $lh_tight; color: $color; font-size: $text_default; } // Colors ====================== @mixin pb_body_light { @include pb_body($text_lt_light); } @mixin pb_body_lighter { @include pb_body($text_lt_lighter); } @mixin pb_body_dark { @include pb_body($text_dk_default); } @mixin pb_body_light_dark { @include pb_body($text_dk_light); } @mixin pb_body_lighter_dark { @include pb_body($text_dk_lighter); } // Statuses ===================== @mixin pb_body_negative { @include pb_body($error); } @mixin pb_body_positive { @include pb_body($success); }
Version data entries
15 entries across 15 versions & 1 rubygems