HEX: #066B49
RGB: (6,107,73)
#066B49 contains mainly green and blue colors. Web safe color of #066B49 is #006633 (or #063).
#066B49 color RGB value is (6,107,73).
RGB: (6,107,73) (2%,42%,29%)
R 6 of 255 = 2%
G 107 of 255 = 42%
B 73 of 255 = 29%
R + G + B ~ 24%. #066B49 is dark color.
R + G + B =
6 + 107 + 73 = 186 (100%)
R 6 of 186 ~ 3.23%
G 107 of 186 ~ 57.53%
B 73 of 186 ~ 39.25%
#066B49 color CMYK value is (94,0,32,58).
CMYK: (94,0,32,58) C94M0Y32K58 (94%,0%,32%,58%) (0.94/0.00/0.32/0.58)
06 | 6B | 49 | |
---|---|---|---|
RGB | 6 | 107 | 73 |
HSL | 160° | 89.38% | 22.16% |
HSB/HSV | 160° | 94.39% | 41.96% |
CMYK | 94.39% | 0.00% | 31.78% |
58.04% |
HEX | 06 | 6B | 49 |
Decimal | 6 | 107 | 73 |
Binary | 110 | 1101011 | 1001001 |
Octal | 6 | 153 | 111 |
Examples of css and html codes for elements with #066B49 color. Also use rgb(6,107,73) instead hex code.
.myTextColor { color: #066B49; }
<p style="color:#066B49">This sample text font color is #066B49.</p>
This text font color is #066B49.
.myBgColor { background-color: #066B49; }
<div style="background-color:#066B49">Inner text</div>
This div background color is #066B49.
.myBorderColor { border: 1px solid #066B49; }
<div style="border:3px solid #066B49">Div</div>
This div border color is #066B49.
.myOpacity80 { color: #066B49; opacity: 0.8; }
<p style="color:#066B49;opacity:0.8;">80%</p>
Text with #066B49 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #066B49;}
<p style="text-shadow: 3px 3px 1px #066B49">Text here.</p>
This text has shadow with #066B49 color.
.textShadow {text-shadow: 3px 3px 1px #066B49, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #066B49, 5px 5px 20px red">Text here.</p>
This text has shadow with #066B49 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#066B49, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#066B49, Direction=45, Strength=4)">Text</p>
This text has shadow with #066B49 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #066B49; -webkit-box-shadow: 1px 1px 3px 2px #066B49; box-shadow: 1px 1px 3px 2px #066B49; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #066B49; -webkit-box-shadow: 1px 1px 3px 2px #066B49; box-shadow:1px 1px 3px 2px #066B49;">
Div content here</div>
This text has color #066B49 on black background.
This text has color #066B49 on white background.
This text has black color on #066B49 background.
This text has white color on #066B49 background.