16 lines
352 B
C#
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);
|
|
}
|
|
}
|