LogoConfig

Represents the logo configuration for Mintlify. Can be a single image path for both light and dark mode, or separate paths for each mode.

Syntax

public class LogoConfig

Inheritance

Properties

Dark

[JsonPropertyName("dark")]
public string Dark { get; set; }
Gets or sets the path to the dark logo file, including the file extension.

Returns

string

Href

[JsonPropertyName("href")]
public string Href { get; set; }
Gets or sets the URL to redirect to when clicking the logo. If not provided, the logo will link to the homepage.

Returns

string

Light

[JsonPropertyName("light")]
public string Light { get; set; }
Gets or sets the path to the light logo file, including the file extension.

Returns

string