demo_trade/UI/Themes/Colors.cs

16 lines
352 B
C#
Raw Permalink Normal View History

2024-10-04 12:41:04 +00:00
using Avalonia.Media;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace demo_trade.UI.Themes
{
public static class Colors
{
public static Color White = new Color(255, 255, 255, 255);
public static Color Green = new Color(255, 255, 245, 0);
}
}