@import '../../stylesheets/variables'; @import '../mixins'; .base { font-family: $inter; margin: 0; } .heading { composes: base; font-weight: 500; } .h1 { composes: heading; font-size: 16px; line-height: 20px; @include light-theme() { color: $color-gray-90; } @include dark-theme() { color: $color-gray-05; } } .h2 { composes: heading; font-size: 14px; line-height: 18px; margin-bottom: 8px; @include light-theme() { color: $color-gray-90; } @include dark-theme() { color: $color-white; } } .text { composes: base; font-size: 13px; line-height: 18px; @include light-theme() { color: $color-gray-90; } @include dark-theme() { color: $color-white; } a { color: $color-signal-blue; text-decoration: none; } } .text-center { composes: text; text-align: center; }