|
|
|
@ -0,0 +1,27 @@ |
|
|
|
|
|
|
|
// Author: Gockner, Simon |
|
|
|
|
|
|
|
// Created: 2021-04-14 |
|
|
|
|
|
|
|
// Copyright(c) 2021 SimonG. All Rights Reserved. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using Avalonia.Media; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Mystify.Resources.Themes |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
public class DarkTheme |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
public static readonly Color MAIN_DARK = Color.FromArgb(0xFF, 0x3F, 0x3F, 0x3F); |
|
|
|
|
|
|
|
public static readonly Color TRANSPARENT_DARK = Color.FromArgb(0x33, MAIN_DARK.R, MAIN_DARK.G, MAIN_DARK.B); |
|
|
|
|
|
|
|
public static readonly Color LIGHT_DARK = Color.FromArgb(0xFF, 0x4F, 0x4F, 0x4F); |
|
|
|
|
|
|
|
public static readonly Color DARK_DARK = Color.FromArgb(0xFF, 0x2F, 0x2F, 0x2F); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static readonly Color MAIN_LIGHT = Color.FromArgb(0xFF, 0xF0, 0xF0, 0xF0); |
|
|
|
|
|
|
|
public static readonly Color SECONDARY_LIGHT = Color.FromArgb(0xFF, 0xB0, 0xB0, 0xB0); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static readonly Color ACCENT = Color.FromArgb(0xFF, 0xFF, 0x80, 0x00); |
|
|
|
|
|
|
|
public static readonly Color LIGHT_ACCENT = Color.FromArgb(0xFF, 0xFF, 0xBB, 0x77); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static readonly Color BUTTON_BACKGROUND = MAIN_DARK; |
|
|
|
|
|
|
|
public static readonly Color BUTTON_FOREGROUND = MAIN_LIGHT; |
|
|
|
|
|
|
|
public static readonly Color BUTTON_BORDER = MAIN_LIGHT; |
|
|
|
|
|
|
|
public static readonly Color BUTTON_MOUSE_OVER_BACKGROUND = ACCENT; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |