demo_trade/UI/Themes/Colors.cs
2024-10-04 15:41:04 +03:00

16 lines
352 B
C#

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);
}
}