Scientific Conversion & Perceptual Match Engine

What color is #3A4F41?

Perceptually identified as Feldgrau. Convert to 10+ color spaces, normalized shader floats (Unity/Unreal/GLSL), CMYK for print, and closest Pantone approximation.

Perceptual Color Name

Feldgrau

Pantone Black C ΔE: 7.33
#
Quick Searches:

Scientific Color Space Conversions

HEX Code
#3A4F41
Standard web & CSS hex representation
RGB (0-255)
rgb(58, 79, 65)
Red, Green, Blue integer channels
Normalized RGB (0.0-1.0)
0.227, 0.310, 0.255
★ Essential for Unity, Unreal Engine & GLSL shaders
HSL
hsl(140°, 15%, 27%)
Hue degree, Saturation%, Lightness%
HSV / HSB
hsv(140°, 27%, 31%)
Hue, Saturation%, Value/Brightness% (Figma / Photoshop)
CMYK (Print)
27%, 0%, 18%, 69%
Cyan, Magenta, Yellow, Key/Black for physical printing
CIE-Lab
L*:31.51, a*:-11.39, b*:5.64
Perceptual opponent color space (D65)
CIE-XYZ
X:5.5, Y:6.87, Z:6.04
Standard CIE 1931 tristimulus space
OKLCH (CSS Color 4)
oklch(0.657 0.03 157)
Perceptually uniform modern web color standard
Decimal Integer
3821377
24-bit integer color code
Binary (24-bit)
001110100100111101000001
Bitwise binary channel representation

Game Engine & Shader Code Snippets

Copy pre-formatted normalized float vectors for Unity, Unreal Engine, GLSL/HLSL shaders, or modern CSS Display-P3 color spaces:

Unity C# Color
new Color(0.227f, 0.310f, 0.255f, 1.0f);
Unreal Engine FLinearColor
FLinearColor(0.227f, 0.310f, 0.255f, 1.0f);
GLSL / HLSL Shader Vector
vec4(0.227, 0.310, 0.255, 1.0);
CSS Display-P3 (Wide Gamut)
color(display-p3 0.227 0.310 0.255)
Knowledge Base & FAQ

Frequently Asked Questions

What color is #3A4F41?

#3A4F41 is named Feldgrau with a perceptual Delta-E distance of 7.33. Its RGB values are (58, 79, 65) and HSL values are (140°, 15%, 27%). The closest Pantone match is Pantone Black C.

How do I convert Hex to normalized 0.0–1.0 RGB floats for Unity or Unreal Engine?

To convert 0–255 integer RGB channels into normalized 0.0–1.0 floating point numbers for game engines (Unity C#, Unreal Engine C++) or shaders (GLSL/HLSL), divide each red, green, and blue channel value by 255. For example, #3A4F41 (RGB 58, 79, 65) yields vec3(0.227, 0.310, 0.255).

What is Delta-E (ΔE) perceptual color distance?

Delta-E (ΔE) is a mathematical color difference formula that calculates Euclidean distance in 3D CIE-Lab color space. Unlike raw RGB subtraction, Delta-E aligns with human visual perception, enabling accurate named color matching beyond basic 148 CSS keywords.

How do I convert digital RGB colors to CMYK for physical printing?

RGB is an additive color model used by screens, whereas CMYK is a subtractive model used by printing presses. Our converter calculates Cyan, Magenta, Yellow, and Key/Black ink percentages from normalized RGB values so your printed brand materials match digital designs.

Skip to content > le> >