DemoService/Colors.cs

18 lines
530 B
C#
Raw Normal View History

2024-09-04 09:08:53 +00:00
using Avalonia.Media;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DemoService
{
internal class Colors
{
public static SolidColorBrush white = new(Color.FromRgb(255, 255, 255));
public static SolidColorBrush lightYellow = new(Color.FromRgb(255, 255, 225));
public static SolidColorBrush orange = new(Color.FromRgb(255, 156, 26));
public static SolidColorBrush red = new(Color.FromRgb(255, 0, 0));
}
}