예제 #1
0
 static public RGBA FromHSL(float h, float s, float l, float a = 255f)
 {
     return(FromHexa(Externals.HslToHex(h, s, l) + ((int)a).ToString("x").PadLeft(2, '0')));
 }