HEX: #07426B
RGB: (7,66,107)
#07426B contains mainly green and blue colors. Web safe color of #07426B is #003366 (or #036).
#07426B color RGB value is (7,66,107).
RGB: (7,66,107) (3%,26%,42%)
R 7 of 255 = 3%
G 66 of 255 = 26%
B 107 of 255 = 42%
R + G + B ~ 24%. #07426B is dark color.
R + G + B =
7 + 66 + 107 = 180 (100%)
R 7 of 180 ~ 3.89%
G 66 of 180 ~ 36.67%
B 107 of 180 ~ 59.44%
#07426B color CMYK value is (93,38,0,58).
CMYK: (93,38,0,58) C93M38Y0K58 (93%,38%,0%,58%) (0.93/0.38/0.00/0.58)
07 | 42 | 6B | |
---|---|---|---|
RGB | 7 | 66 | 107 |
HSL | 205° | 87.72% | 22.35% |
HSB/HSV | 205° | 93.46% | 41.96% |
CMYK | 93.46% | 38.32% | 0.00% |
58.04% |
HEX | 07 | 42 | 6B |
Decimal | 7 | 66 | 107 |
Binary | 111 | 1000010 | 1101011 |
Octal | 7 | 102 | 153 |
Examples of css and html codes for elements with #07426B color. Also use rgb(7,66,107) instead hex code.
.myTextColor { color: #07426B; }
<p style="color:#07426B">This sample text font color is #07426B.</p>
This text font color is #07426B.
.myBgColor { background-color: #07426B; }
<div style="background-color:#07426B">Inner text</div>
This div background color is #07426B.
.myBorderColor { border: 1px solid #07426B; }
<div style="border:3px solid #07426B">Div</div>
This div border color is #07426B.
.myOpacity80 { color: #07426B; opacity: 0.8; }
<p style="color:#07426B;opacity:0.8;">80%</p>
Text with #07426B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #07426B;}
<p style="text-shadow: 3px 3px 1px #07426B">Text here.</p>
This text has shadow with #07426B color.
.textShadow {text-shadow: 3px 3px 1px #07426B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #07426B, 5px 5px 20px red">Text here.</p>
This text has shadow with #07426B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#07426B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#07426B, Direction=45, Strength=4)">Text</p>
This text has shadow with #07426B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #07426B; -webkit-box-shadow: 1px 1px 3px 2px #07426B; box-shadow: 1px 1px 3px 2px #07426B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #07426B; -webkit-box-shadow: 1px 1px 3px 2px #07426B; box-shadow:1px 1px 3px 2px #07426B;">
Div content here</div>
This text has color #07426B on black background.
This text has color #07426B on white background.
This text has black color on #07426B background.
This text has white color on #07426B background.