Click or drag to resize

CssColorTypes Enumeration

Specifies how to write colors in CSS, for example: '#rrggbb;' or 'rgba(...);'.

Namespace: SautinSoft.Document
Assembly: SautinSoft.Document (in SautinSoft.Document.dll) Version: 2024.4.24
Syntax
public enum CssColorTypes
Members
Member nameValueDescription
RgbHex0 Represents: #rrggbb; Hexadecimal notation It is commonly called HEX code, a 6-digit code prefixed with the # symbol followed by three pairs of hexadecimal digits.
Rgba1 Represents: rgba(red value, green value, blue value, alpha channel); The alpha channel refers to the transparency level of a color, where an alpha value of 1.0 represents a fully opaque color, and an alpha value of 0.0 represents a fully transparent color.
See Also