d2-ui
Version:
26 lines (19 loc) • 591 B
JavaScript
import Colors from './colors';
class Typography {
constructor() {
// text colors
this.textFullBlack = Colors.fullBlack;
this.textDarkBlack = Colors.darkBlack;
this.textLightBlack = Colors.lightBlack;
this.textMinBlack = Colors.minBlack;
this.textFullWhite = Colors.fullWhite;
this.textDarkWhite = Colors.darkWhite;
this.textLightWhite = Colors.lightWhite;
// font weight
this.fontWeightLight = 300;
this.fontWeightNormal = 400;
this.fontWeightMedium = 500;
this.fontStyleButtonFontSize = 14;
}
}
export default new Typography();