Skip to main content

Struct ColorHelpers.HsvaColor

A struct representing a color using HSVA coordinates.

Assembly: Dalamud.dll
View Source
Declaration
public record struct ColorHelpers.HsvaColor : IEquatable<ColorHelpers.HsvaColor>

Implements:
System.IEquatable<Dalamud.Interface.ColorHelpers.HsvaColor>

Properties

H

The hue represented by this struct.

View Source
Declaration
public float H { readonly get; set; }

S

The saturation represented by this struct.

View Source
Declaration
public float S { readonly get; set; }

V

The value represented by this struct.

View Source
Declaration
public float V { readonly get; set; }

A

The alpha represented by this struct.

View Source
Declaration
public float A { readonly get; set; }

Implements

  • System.IEquatable<Dalamud.Interface.ColorHelpers.HsvaColor>