color details

Color Details
#003e3f Color Hex

#003e3f color RGB value is (0, 3, 227).
#003e3f hex color red value is 0, green value is 3, and blue value is 227.
Cylindrical-coordinate representations (HSL) of color #003e3f hue: 239.21, saturation: 1 and lightness: 0.45.

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

Color Spaces
Color spaces of #003e3fValue
RGB0, 62, 63
HSL0.5, 1, 0.12
HSV181°, 100°, 25°
XYZ2.62, 3.8, 5.3
Base Numbers
Base Red Green Blue
Binary 0 111110 111111
Octal 0 76 77
Decimal 0 62 63
Hex 0 3E 3F

RGB Percentages for Color #003e3f

49.6%
50.4%

CMYK Percentages of the Color #003e3f

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

<p style="color:#003e3f">Text here</p>

This sample text is styled with the font color #003e3f. 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 #003e3f

<div style="background-color:#003e3f">Div content here</div>

The background color of this div is #003e3f
Border Color #003e3f

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

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

<p style="text-shadow: 4px 4px 2px rgba(0, 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 #003e3f;">Text here</p>

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

Shadow Div Box

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

This div box has a shadow with a specified color. #003e3f

Scroll to Top