Delta-v/Content.Client/Stylesheets/PalettedStylesheet.Palettes.cs

13 lines
429 B
C#

using Content.Client.Stylesheets.Palette;
namespace Content.Client.Stylesheets;
public abstract partial class PalettedStylesheet
{
public abstract ColorPalette PrimaryPalette { get; }
public abstract ColorPalette SecondaryPalette { get; }
public abstract ColorPalette PositivePalette { get; }
public abstract ColorPalette NegativePalette { get; }
public abstract ColorPalette HighlightPalette { get; }
}