Table of Contents

Enum ColorOutputFormats

Namespace
BlazOrbit.Components
Assembly
BlazOrbit.Core.dll

The CssColor output formats.

public enum ColorOutputFormats

Fields

Hex = 0

Output will be starting with a # and include r,g and b but no alpha values. Example #ab2a3d

HexA = 1

Output will be starting with a # and include r,g and b and alpha values. Example #ab2a3dff

Optimized = 4

Will output the color elements optimized for CSS usage.

Rgb = 2

Will output css like output for value. Example rgb(12,15,40)

Rgba = 3

Will output css like output for value with alpha. Example rgba(12,15,40,0.42)