-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathMoreColors.cs
29 lines (26 loc) · 943 Bytes
/
MoreColors.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="MoreColors.cs" company="OxyPlot">
// Copyright (c) 2014 OxyPlot contributors
// </copyright>
// <summary>
// Defines additional <see cref="Colors" />.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace OxyPlot.Avalonia
{
using global::Avalonia.Media;
/// <summary>
/// Defines additional <see cref="Colors" />.
/// </summary>
public static class MoreColors
{
/// <summary>
/// The undefined color.
/// </summary>
public static readonly Color Undefined = Color.FromArgb(0, 0, 0, 0);
/// <summary>
/// The automatic color.
/// </summary>
public static readonly Color Automatic = Color.FromArgb(0, 0, 0, 1);
}
}