Interface IUserProfile

Represents additional user profile details.

interface IUserProfile {
    accent_color: number;
    bio: string;
    pronouns: string;
    theme_colors?: [number, number];
}

Properties

accent_color: number

Hexadecimal accent color for the user's profile.

bio: string

Biography text of the user.

pronouns: string

Pronouns used by the user.

theme_colors?: [number, number]

Theme colors for the user's profile.