Lynxie/internal/color/color.go
Fluffy-Bean 2e5f4bce11 Update pipeline
And commit half-baked code restructure
2025-04-28 22:32:30 +01:00

5 lines
87 B
Go

package color
func RGBToDiscord(r, g, b int) int {
return (r << 16) + (g << 8) + b
}