Enum ColorOutputFormats
- Namespace
- BlazOrbit.Components
- Assembly
- BlazOrbit.Core.dll
The CssColor output formats.
public enum ColorOutputFormats
Fields
Hex = 0Output will be starting with a # and include r,g and b but no alpha values. Example #ab2a3d
HexA = 1Output will be starting with a # and include r,g and b and alpha values. Example #ab2a3dff
Optimized = 4Will output the color elements optimized for CSS usage.
Rgb = 2Will output css like output for value. Example rgb(12,15,40)
Rgba = 3Will output css like output for value with alpha. Example rgba(12,15,40,0.42)