HEX: #04050C
RGB: (4,5,12)
#04050C contains red, green and blue colors in about the same proportion. Web safe color of #04050C is #000000 (or #000).
#04050C color RGB value is (4,5,12).
RGB: (4,5,12) (2%,2%,5%)
R 4 of 255 = 2%
G 5 of 255 = 2%
B 12 of 255 = 5%
R + G + B ~ 3%. #04050C is dark color.
R + G + B =
4 + 5 + 12 = 21 (100%)
R 4 of 21 ~ 19.05%
G 5 of 21 ~ 23.81%
B 12 of 21 ~ 57.14%
#04050C color CMYK value is (67,58,0,95).
CMYK: (67,58,0,95) C67M58Y0K95 (67%,58%,0%,95%) (0.67/0.58/0.00/0.95)
04 | 05 | 0C | |
---|---|---|---|
RGB | 4 | 5 | 12 |
HSL | 233° | 50.00% | 3.14% |
HSB/HSV | 233° | 66.67% | 4.71% |
CMYK | 66.67% | 58.33% | 0.00% |
95.29% |
HEX | 04 | 05 | 0C |
Decimal | 4 | 5 | 12 |
Binary | 100 | 101 | 1100 |
Octal | 4 | 5 | 14 |
Examples of css and html codes for elements with #04050C color. Also use rgb(4,5,12) instead hex code.
.myTextColor { color: #04050C; }
<p style="color:#04050C">This sample text font color is #04050C.</p>
This text font color is #04050C.
.myBgColor { background-color: #04050C; }
<div style="background-color:#04050C">Inner text</div>
This div background color is #04050C.
.myBorderColor { border: 1px solid #04050C; }
<div style="border:3px solid #04050C">Div</div>
This div border color is #04050C.
.myOpacity80 { color: #04050C; opacity: 0.8; }
<p style="color:#04050C;opacity:0.8;">80%</p>
Text with #04050C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #04050C;}
<p style="text-shadow: 3px 3px 1px #04050C">Text here.</p>
This text has shadow with #04050C color.
.textShadow {text-shadow: 3px 3px 1px #04050C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #04050C, 5px 5px 20px red">Text here.</p>
This text has shadow with #04050C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#04050C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#04050C, Direction=45, Strength=4)">Text</p>
This text has shadow with #04050C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #04050C; -webkit-box-shadow: 1px 1px 3px 2px #04050C; box-shadow: 1px 1px 3px 2px #04050C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #04050C; -webkit-box-shadow: 1px 1px 3px 2px #04050C; box-shadow:1px 1px 3px 2px #04050C;">
Div content here</div>
This text has color #04050C on black background.
This text has color #04050C on white background.
This text has black color on #04050C background.
This text has white color on #04050C background.