mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 09:15:58 +02:00
32 lines
739 B
TypeScript
32 lines
739 B
TypeScript
const FONT_BODY = "IBM Plex Sans, sans-serif"
|
|
const FONT_HEADER = "Montserrat, sans-serif"
|
|
|
|
export const BASE_FONT_SIZE = 20
|
|
export const BASE_LINE_HEIGHT = 26
|
|
export const MODULAR_SCALE = 1.2
|
|
|
|
function modularFontSize(power: number) {
|
|
return BASE_FONT_SIZE * Math.pow(MODULAR_SCALE, power)
|
|
}
|
|
|
|
export function modularScale(power: number) {
|
|
const fontSize = modularFontSize(power)
|
|
|
|
// attempt to fit line-height a little larger than font-size
|
|
const paddedLineHeight = fontSize * 1.1
|
|
const lineHeight =
|
|
paddedLineHeight - (paddedLineHeight % BASE_LINE_HEIGHT) + BASE_LINE_HEIGHT
|
|
|
|
return {
|
|
fontSize,
|
|
lineHeight,
|
|
}
|
|
}
|
|
|
|
export const fontFamily = {
|
|
header: FONT_HEADER,
|
|
body: FONT_BODY,
|
|
}
|
|
|
|
export default fontFamily
|