2026-01-09 16:13:47 +03:00
|
|
|
/**
|
|
|
|
|
* Font size constants
|
|
|
|
|
*/
|
2026-01-04 10:27:46 +03:00
|
|
|
export const DEFAULT_FONT_SIZE = 16;
|
|
|
|
|
export const MIN_FONT_SIZE = 8;
|
|
|
|
|
export const MAX_FONT_SIZE = 100;
|
|
|
|
|
export const FONT_SIZE_STEP = 1;
|
|
|
|
|
|
2026-01-09 16:13:47 +03:00
|
|
|
/**
|
|
|
|
|
* Font weight constants
|
|
|
|
|
*/
|
2026-01-04 10:27:46 +03:00
|
|
|
export const DEFAULT_FONT_WEIGHT = 400;
|
|
|
|
|
export const MIN_FONT_WEIGHT = 100;
|
|
|
|
|
export const MAX_FONT_WEIGHT = 900;
|
|
|
|
|
export const FONT_WEIGHT_STEP = 100;
|
|
|
|
|
|
2026-01-09 16:13:47 +03:00
|
|
|
/**
|
|
|
|
|
* Line height constants
|
|
|
|
|
*/
|
2026-01-04 10:27:46 +03:00
|
|
|
export const DEFAULT_LINE_HEIGHT = 1.5;
|
|
|
|
|
export const MIN_LINE_HEIGHT = 1;
|
|
|
|
|
export const MAX_LINE_HEIGHT = 2;
|
2026-01-05 09:03:31 +03:00
|
|
|
export const LINE_HEIGHT_STEP = 0.05;
|
2026-01-22 15:36:30 +03:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Letter spacing constants
|
|
|
|
|
*/
|
|
|
|
|
export const DEFAULT_LETTER_SPACING = 0;
|
|
|
|
|
export const MIN_LETTER_SPACING = -0.1;
|
|
|
|
|
export const MAX_LETTER_SPACING = 0.5;
|
|
|
|
|
export const LETTER_SPACING_STEP = 0.01;
|