[GUI] Clean up theme management

This commit is contained in:
Alexey Golub
2020-10-05 17:10:00 +03:00
parent 19f678ca01
commit 239c47c06e
7 changed files with 62 additions and 56 deletions

View File

@@ -0,0 +1,9 @@
using System.Windows.Media;
namespace DiscordChatExporter.Gui.Internal
{
internal static class MediaColor
{
public static Color FromHex(string hex) => (Color) ColorConverter.ConvertFromString(hex);
}
}