From 386838c6e419c2fbe2be09e071b846a4da8e1308 Mon Sep 17 00:00:00 2001 From: zobweyt Date: Mon, 24 Jun 2024 21:23:37 +0300 Subject: [PATCH] Adjust assets --- src/Giveaways/Assets/Colors.cs | 2 +- src/Giveaways/Assets/Icons.cs | 4 ++-- .../Common/EmbedStyles/WarningEmbedStyle.cs | 13 ------------- 3 files changed, 3 insertions(+), 16 deletions(-) delete mode 100644 src/Giveaways/Common/EmbedStyles/WarningEmbedStyle.cs diff --git a/src/Giveaways/Assets/Colors.cs b/src/Giveaways/Assets/Colors.cs index 0db63f5..f0ceaa5 100644 --- a/src/Giveaways/Assets/Colors.cs +++ b/src/Giveaways/Assets/Colors.cs @@ -10,7 +10,7 @@ public static class Colors /// /// The color used to indicate an informative state. /// - public static readonly Color Primary = new(88, 101, 242); + public static readonly Color Primary = new(59, 136, 195); /// /// The color used to indicate an informative state. diff --git a/src/Giveaways/Assets/Icons.cs b/src/Giveaways/Assets/Icons.cs index db9ebba..618bdcf 100644 --- a/src/Giveaways/Assets/Icons.cs +++ b/src/Giveaways/Assets/Icons.cs @@ -16,7 +16,7 @@ public static class Icons public const string Cross = "https://cdn.discordapp.com/emojis/1248985326693908614.webp?size=96&quality=lossless"; /// - /// The icon used to indicate a warning state. + /// The icon used to indicate an informational state. /// - public const string Exclamation = "https://cdn.discordapp.com/emojis/1248987340073074698.webp?size=96&quality=lossless"; + public const string Info = "https://cdn.discordapp.com/emojis/1254859899595260027.webp?size=96&quality=lossless"; } diff --git a/src/Giveaways/Common/EmbedStyles/WarningEmbedStyle.cs b/src/Giveaways/Common/EmbedStyles/WarningEmbedStyle.cs deleted file mode 100644 index 288159a..0000000 --- a/src/Giveaways/Common/EmbedStyles/WarningEmbedStyle.cs +++ /dev/null @@ -1,13 +0,0 @@ -using Discord; - -namespace Giveaways; - -/// -/// Represents the style of a warning embed. -/// -public class WarningEmbedStyle : EmbedStyle -{ - public override string Name => "Caution!"; - public override string IconUrl => Icons.Exclamation; - public override Color Color => Colors.Warning; -}