Penpot plugins API
    Preparing search index...

    Interface TokenTypographyValue

    interface TokenTypographyValue {
        letterSpacing: number;
        fontFamilies: string[];
        fontSizes: number;
        fontWeights: string;
        lineHeight: number;
        textCase: string;
        textDecoration: string;
    }
    Index

    Properties

    letterSpacing: number

    The letter spacing, as a number.

    fontFamilies: string[]

    The list of font families.

    fontSizes: number

    The font size, as a positive number.

    fontWeights: string

    The font weight, as a weight string ("bold", "strong", etc.).

    lineHeight: number

    The line height, as a number.

    textCase: string

    The text case as a string ("none", "uppercase", "lowercase" "capitalize").

    textDecoration: string

    The text decoration as a string ("none", "underline", "strike-through").