Skip to content

Instantly share code, notes, and snippets.

@yangyang5214
Last active December 18, 2023 12:20
Show Gist options
  • Save yangyang5214/aba02718a3957246de6437aff58843d4 to your computer and use it in GitHub Desktop.
Save yangyang5214/aba02718a3957246de6437aff58843d4 to your computer and use it in GitHub Desktop.
color.RGBA to hex
import "image/color"
func ColorToHex(c color.Color) string {
r, g, b, _ := c.RGBA()
return fmt.Sprintf("#%02X%02X%02X", r>>8, g>>8, b>>8)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment