1
0
Fork 0

Added Statistics calculation

Statistics now show calculated values
This commit is contained in:
Techognito 2025-09-04 17:30:00 +02:00
parent fe87374e47
commit fc0f69dacb
2147 changed files with 141321 additions and 39 deletions

32
node_modules/mui/source/styles/typography.js generated vendored Normal file
View file

@ -0,0 +1,32 @@
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();