1
0
Fork 0
react-playground/node_modules/mui/source/styles/typography.js
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

32 lines
662 B
JavaScript

import {
fullBlack,
darkBlack,
lightBlack,
minBlack,
fullWhite,
darkWhite,
lightWhite,
} from './colors';
class Typography {
constructor() {
// text colors
this.textFullBlack = fullBlack;
this.textDarkBlack = darkBlack;
this.textLightBlack = lightBlack;
this.textMinBlack = minBlack;
this.textFullWhite = fullWhite;
this.textDarkWhite = darkWhite;
this.textLightWhite = lightWhite;
// font weight
this.fontWeightLight = 300;
this.fontWeightNormal = 400;
this.fontWeightMedium = 500;
this.fontStyleButtonFontSize = 14;
}
}
export default new Typography();