Files
ucalc/ucalc/Constants.cs
T
Tobias Erbshäußer 6b03c881a3 Implemented new dialog.
2020-06-09 20:03:31 +02:00

10 lines
287 B
C#

using System.Windows.Media;
namespace UCalc
{
public static class Constants
{
public static readonly SolidColorBrush MainColor = Brushes.White;
public static readonly SolidColorBrush SubMainColor = new SolidColorBrush(Color.FromRgb(0x00, 0x7A, 0xCC));
}
}