using Avalonia.Controls; using Avalonia.Media.Imaging; using Avalonia.Media.Immutable; namespace EllieHub.Common; /// /// Defines names of resources for the application. /// public static class AppResources { #region Images /// /// Resource type: /// public const string EllieAvatar = "EllieAvatar"; /// /// Resource type: /// public const string PaypalIcon = "PaypalIcon"; /// /// Resource type: /// public const string PatreonIcon = "PatreonIcon"; /// /// Resource type: /// public const string CheckForUpdateIcon = "CheckForUpdateIcon"; /// /// Resource type: /// public const string ConfigIcon = "ConfigIcon"; /// /// Resource type: /// public const string DependenciesIcon = "DependenciesIcon"; /// /// Resource type: /// public const string DocumentationIcon = "DocumentationIcon"; /// /// Resource type: /// public const string HomeIcon = "HomeIcon"; /// /// Resource type: /// public const string EmbedsIcon = "EmbedsIcon"; /// /// Resource type: /// public const string UrlIcon = "UrlIcon"; /// /// Resource type: /// public const string SuggestionIcon = "SuggestionIcon"; /// /// Resource type: /// public const string DiscordIcon = "DiscordIcon"; /// /// Resource type: /// public const string EllieHubIcon = "EllieHubIcon"; /// /// Resource type: /// public const string EllieHubImage = "EllieHubImage"; /// /// Resource type: /// public const string TerminalIcon = "TerminalIcon"; #endregion #region Color Brushes /// /// Resource type: /// public const string LightBackground = "LightBackground"; /// /// Resource type: /// public const string MediumBackground = "MediumBackground"; /// /// Resource type: /// public const string HeavyBackground = "HeavyBackground"; /// /// Resource type: /// public const string BotSelectionColor = "BotSelectionColor"; /// /// Resource type: /// public const string DependencyInstall = "DependencyInstall"; /// /// Resource type: /// public const string DependencyUpdate = "DependencyUpdate"; #endregion }