CssColorTypes Enumeration |
Specifies how to write colors in CSS, for example: '#rrggbb;' or 'rgba(...);'.
Namespace: SautinSoft.DocumentAssembly: SautinSoft.Document (in SautinSoft.Document.dll) Version: 2024.11.20
Syntax public enum CssColorTypes
Public Enumeration CssColorTypes
Members Member name | Value | Description |
---|
RgbHex | 0 |
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.
|
Rgba | 1 |
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