Documentation
¶
Index ¶
- Constants
- Variables
- func Darken(colorString string) (string, error)
- func GradientToSVG(gradient Gradient) string
- func IsGradient(color string) bool
- func IsThemeColor(colorString string) bool
- func IsURLGradientID(color string) bool
- func LinearGradientToSVG(gradient Gradient) string
- func Luminance(colorString string) (float64, error)
- func LuminanceCategory(colorString string) (string, error)
- func RadialGradientToSVG(gradient Gradient) string
- func UniqueGradientID(cssGradient string) string
- func ValidColor(color string) bool
- type ColorStop
- type Gradient
- type RGB
Constants ¶
View Source
const ( N1 = "N1" // foreground color N2 = "N2" N3 = "N3" N4 = "N4" N5 = "N5" N6 = "N6" N7 = "N7" // background color // Base Colors: used for containers B1 = "B1" B2 = "B2" B3 = "B3" B4 = "B4" B5 = "B5" B6 = "B6" // Alternative colors A AA2 = "AA2" AA4 = "AA4" AA5 = "AA5" // Alternative colors B AB4 = "AB4" AB5 = "AB5" // Special Empty = "" None = "none" )
Variables ¶
View Source
var ColorHexRegex = regexp.MustCompile(`^#(([0-9a-fA-F]{2}){3}|([0-9a-fA-F]){3})$`)
View Source
var GradientRegex = regexp.MustCompile(`^(linear|radial)-gradient\((.+)\)$`)
View Source
var NamedColors = []string{}/* 150 elements not displayed */
View Source
var URLGradientID = regexp.MustCompile(`^url\('#grad-[a-f0-9]{40}'\)$`)
Functions ¶
func GradientToSVG ¶
func IsGradient ¶
func IsThemeColor ¶
func IsURLGradientID ¶
func LinearGradientToSVG ¶
func LuminanceCategory ¶
func RadialGradientToSVG ¶
func UniqueGradientID ¶
func ValidColor ¶
Types ¶
type Gradient ¶
func ParseGradient ¶
Click to show internal directories.
Click to hide internal directories.