EllieHub/EllieHub/Common/AppResources.cs

124 lines
No EOL
3.3 KiB
C#

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