#03512c hex color information.
RGB value of #03512c is (3,81,44)
Change page background color to #03512c
| Reset
| RGB | 3 | 81 | 44 |
|---|---|---|---|
| HSL | 0.42 | 0.93 | 0.16 |
| HSV | 152° | 96° | 32° |
| CMYK | 0.96 | 0.00 | 0.46 0.68 |
| XYZ | 3.4346 | 6.0861 | 3.3766 |
| Yxy | 6.0861 | 0.2663 | 0.4719 |
| Hunter Lab | 24.6700 | -18.3215 | 9.1540 |
| CIE-Lab | 29.6287 | -31.3715 | 15.8349 |
#03512c hex color red value is 3, green value is 81 and the blue value of its RGB is 81. Cylindrical-coordinate representations (also known as HSL) of color #03512c hue: 0.42 , saturation: 0.93 and the lightness value of 03512c is 0.16.
The process color (four color CMYK) of #03512c hex color is 0.96, 0.00, 0.46, 0.68. Web safe color of #03512c is #006633
Color #03512c contains mostly GREEN color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00000011 | 01010001 | 00101100 |
| Octal | 3 | 121 | 54 |
| Decimal | 3 | 81 | 44 |
| Hexadecimal | 3 | 51 | 2C |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#03512c; }
.myforecolor {color:#03512c; }
.mybordercolor {border:3px solid #03512c; }
This sample text font color is #03512c
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#03512c">Text here</p>
This div background color is #03512c
<div style="background-color:#03512c">
Div content here</div>
This div border color is #03512c
<div style="border:3px solid #03512c">
Div here</div>
| #03512c | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(3,81,44, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #03512c;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #03512c;
-webkit-box-shadow: 1px 1px 3px 2px #03512c;
box-shadow: 1px 1px 3px 2px #03512c;
}
<p style="text-shadow: 4px 4px 2px rgba(3,81,44, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #03512c">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #03512c
<div style="-moz-box-shadow: 1px 1px 3px 2px #03512c; -webkit-box-shadow: 1px 1px 3px 2px #03512c; box-shadow: 1px 1px 3px 2px #03512c;">
Div content here</div>