Added Statistics calculation
Statistics now show calculated values
This commit is contained in:
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
32
node_modules/mui/source/styles/typography.js
generated
vendored
Normal 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();
|
||||
Loading…
Add table
Add a link
Reference in a new issue