color details

Color Details
#3e3e3f Color Hex

#3e3e3f color RGB value is (3, 227, 227).
#3e3e3f hex color red value is 3, green value is 227, and blue value is 227.
Cylindrical-coordinate representations (HSL) of color #3e3e3f hue: 180, saturation: 0.97 and lightness: 0.45.

The process color (four-color CMYK) of #3e3e3f color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #3e3e3f is #ff9999. Color #3e3e3f contains mainly RED.

Color Spaces
Color spaces of #3e3e3fValue
RGB62, 62, 63
HSL0.67, 0.01, 0.25
HSV240°, 2°, 25°
XYZ4.61, 4.83, 5.39
Base Numbers
Base Red Green Blue
Binary 111110 111110 111111
Octal 76 76 77
Decimal 62 62 63
Hex 3E 3E 3F

RGB Percentages for Color #3e3e3f

33.16%
33.16%
33.69%

CMYK Percentages of the Color #3e3e3f

1.59%
1.59%
75.29%
CSS Codes for Color #3e3e3f
.mybgColor {background-color: #3e3e3f;}
.myforeColor {color: #3e3e3f;}
.myborderColor {border:3px solid #3e3e3f;}
Text Font Color #3e3e3f

<p style="color:#3e3e3f">Text here</p>

This sample text is styled with the font color #3e3e3f. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,

Background Color #3e3e3f

<div style="background-color:#3e3e3f">Div content here</div>

The background color of this div is #3e3e3f
Border Color #3e3e3f

<div style="border:3px solid #3e3e3f">Div here</div>

The border color of this div is #3e3e3f
Css3 Examples
            .textShadowRgb {
                text-shadow: 4px 4px 2px rgba(62, 62, 63, 0.8);            }
            .textShadowHex {
                text-shadow: 4px 4px 2px #3e3e3f;            }
            .divShadow {
                -moz-box-shadow: 1px 1px 3px #3e3e3f;
-webkit-box-shadow: 1px 1px 3px #3e3e3f;
box-shadow: 1px 1px 3px #3e3e3f;            }
            
Text Shadow Using RGB Values

<p style="text-shadow: 4px 4px 2px rgba(62, 62, 63, 0.8);">Text here</p>

This text has a shadow with RGB values.

Text Shadow Using Hex Values

<p style="text-shadow: 4px 4px 2px #3e3e3f;">Text here</p>

This text has a shadow with hexadecimal (hex) values.

Shadow Div Box

<div style="-moz-box-shadow: 1px 1px 3px #3e3e3f; -webkit-box-shadow: 1px 1px 3px #3e3e3f; box-shadow: 1px 1px 3px #3e3e3f;">Div content here</div>

This div box has a shadow with a specified color. #3e3e3f

Scroll to Top