Grayscale Converter

Transform colors into grayscale using multiple conversion methods. Choose from luminance-based, average, or channel-specific algorithms to achieve the perfect monochrome result.

Original
#3498db
RGBrgb(52, 152, 219)
HSLhsl(204, 70%, 53%)
Grayscale
#7a7a7a
RGBrgb(122, 122, 122)
HSLhsl(0, 0%, 48%)

All Conversion Methods

Luminance Method

Uses perceptual weights 0.299×R + 0.587×G + 0.114×B. Matches human eye sensitivity and produces natural grayscale results.

Average Method

Averages RGB values using (R + G + B) ÷ 3. Simple approach that does not account for human perception differences.

Lightness Method

Uses (max(R,G,B) + min(R,G,B)) ÷ 2. Preserves brightness relationships but may reduce contrast.

Channel Methods

Uses individual R, G, or B channels. Green channel often produces best results due to eye sensitivity to green light.