// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. // Lexicon schema: site.standard.theme.color package standardsite // ThemeColor_Rgb is a "rgb" in the site.standard.theme.color schema. type ThemeColor_Rgb struct { LexiconTypeID string `json:"$type" cborgen:"$type,const=site.standard.theme.color#rgb"` B int64 `json:"b" cborgen:"b"` G int64 `json:"g" cborgen:"g"` R int64 `json:"r" cborgen:"r"` } // ThemeColor_Rgba is a "rgba" in the site.standard.theme.color schema. type ThemeColor_Rgba struct { A int64 `json:"a" cborgen:"a"` B int64 `json:"b" cborgen:"b"` G int64 `json:"g" cborgen:"g"` R int64 `json:"r" cborgen:"r"` }