Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | 115x 115x 115x 115x 115x | /**
* Typography constants for Black Trigram
*/
// Font Families
export const FONT_FAMILY = {
PRIMARY: '"Noto Sans KR", "Malgun Gothic", Arial, sans-serif',
SECONDARY: '"Nanum Gothic", Arial, sans-serif',
MONO: '"Nanum Gothic Coding", monospace',
KOREAN_BATTLE: '"Noto Sans KR", Impact, sans-serif',
CYBER: '"Orbitron", "Noto Sans KR", monospace',
SYMBOL: '"Arial Unicode MS", Arial, sans-serif',
KOREAN: '"Noto Sans KR", "Malgun Gothic", Arial, sans-serif',
} as const;
// Font sizes
export const FONT_SIZES = {
xsmall: 8,
tiny: 10,
small: 12,
medium: 16,
large: 20,
xlarge: 24,
xxlarge: 28,
huge: 32,
title: 36,
subtitle: 28,
} as const;
// Font weights
export const FONT_WEIGHTS = {
light: 300,
normal: 400,
regular: 400,
medium: 500,
semibold: 600,
bold: 700,
heavy: 900,
} as const;
// Korean text sizes
export const KOREAN_TEXT_SIZES: Record<string, number> = {
tiny: 10,
small: 12,
medium: 16,
large: 20,
xlarge: 24,
huge: 32,
title: 36,
};
// Korean font weights
export const KOREAN_FONT_WEIGHTS: Record<string, number> = {
light: 300,
normal: 400,
regular: 400,
medium: 500,
semibold: 600,
bold: 700,
heavy: 900,
} as const;
|