mirror of
https://github.com/mudita/mudita-center.git
synced 2025-12-23 22:28:03 -05:00
23 lines
529 B
TypeScript
23 lines
529 B
TypeScript
/**
|
|
* Copyright (c) Mudita sp. z o.o. All rights reserved.
|
|
* For licensing, see https://github.com/mudita/mudita-center/blob/master/LICENSE.md
|
|
*/
|
|
|
|
export const fontSize = {
|
|
headline1: "4rem",
|
|
headline2: "3.2rem",
|
|
headline3: "2.4rem",
|
|
headline4: "1.6rem",
|
|
headline5: "1.4rem",
|
|
headline6: "1.2rem",
|
|
paragraph1: "1.6rem",
|
|
paragraph3: "1.4rem",
|
|
paragraph4: "1.4rem",
|
|
tag: "1.2rem",
|
|
buttonLink: "1.4rem",
|
|
buttonText: "1.2rem",
|
|
detailText: "1.2rem",
|
|
labelText: "1.2rem",
|
|
modalTitle: "2rem",
|
|
} as const
|