HEX: #06474A
RGB: (6,71,74)
#06474A contains mainly green and blue colors. Web safe color of #06474A is #003333 (or #033).
#06474A color RGB value is (6,71,74).
RGB: (6,71,74) (2%,28%,29%)
R 6 of 255 = 2%
G 71 of 255 = 28%
B 74 of 255 = 29%
R + G + B ~ 20%. #06474A is dark color.
R + G + B =
6 + 71 + 74 = 151 (100%)
R 6 of 151 ~ 3.97%
G 71 of 151 ~ 47.02%
B 74 of 151 ~ 49.01%
#06474A color CMYK value is (92,4,0,71).
CMYK: (92,4,0,71) C92M4Y0K71 (92%,4%,0%,71%) (0.92/0.04/0.00/0.71)
06 | 47 | 4A | |
---|---|---|---|
RGB | 6 | 71 | 74 |
HSL | 183° | 85.00% | 15.69% |
HSB/HSV | 183° | 91.89% | 29.02% |
CMYK | 91.89% | 4.05% | 0.00% |
70.98% |
HEX | 06 | 47 | 4A |
Decimal | 6 | 71 | 74 |
Binary | 110 | 1000111 | 1001010 |
Octal | 6 | 107 | 112 |
Examples of css and html codes for elements with #06474A color. Also use rgb(6,71,74) instead hex code.
.myTextColor { color: #06474A; }
<p style="color:#06474A">This sample text font color is #06474A.</p>
This text font color is #06474A.
.myBgColor { background-color: #06474A; }
<div style="background-color:#06474A">Inner text</div>
This div background color is #06474A.
.myBorderColor { border: 1px solid #06474A; }
<div style="border:3px solid #06474A">Div</div>
This div border color is #06474A.
.myOpacity80 { color: #06474A; opacity: 0.8; }
<p style="color:#06474A;opacity:0.8;">80%</p>
Text with #06474A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #06474A;}
<p style="text-shadow: 3px 3px 1px #06474A">Text here.</p>
This text has shadow with #06474A color.
.textShadow {text-shadow: 3px 3px 1px #06474A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #06474A, 5px 5px 20px red">Text here.</p>
This text has shadow with #06474A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#06474A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#06474A, Direction=45, Strength=4)">Text</p>
This text has shadow with #06474A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #06474A; -webkit-box-shadow: 1px 1px 3px 2px #06474A; box-shadow: 1px 1px 3px 2px #06474A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #06474A; -webkit-box-shadow: 1px 1px 3px 2px #06474A; box-shadow:1px 1px 3px 2px #06474A;">
Div content here</div>
This text has color #06474A on black background.
This text has color #06474A on white background.
This text has black color on #06474A background.
This text has white color on #06474A background.