Represents the global settings for the entire documentation site.
public class GlobalSiteConfig
[JsonPropertyName("colors")] public ColorsConfig Colors { get; set; }
[JsonPropertyName("favicon")] public string Favicon { get; set; }
[JsonPropertyName("footer")] public FooterConfig Footer { get; set; }
[JsonPropertyName("logo")] public LogoConfig Logo { get; set; }
[JsonPropertyName("outputFolder")] public string OutputFolder { get; set; }
[JsonPropertyName("siteName")] public string SiteName { get; set; }
[JsonPropertyName("theme")] public string Theme { get; set; }