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