HEX: #07387E
RGB: (7,56,126)
#07387E contains mainly blue color. Web safe color of #07387E is #003366 (or #036).
#07387E color RGB value is (7,56,126).
RGB: (7,56,126) (3%,22%,49%)
R 7 of 255 = 3%
G 56 of 255 = 22%
B 126 of 255 = 49%
R + G + B ~ 25%. #07387E is quite dark color.
R + G + B =
7 + 56 + 126 = 189 (100%)
R 7 of 189 ~ 3.7%
G 56 of 189 ~ 29.63%
B 126 of 189 ~ 66.67%
#07387E color CMYK value is (94,56,0,51).
CMYK: (94,56,0,51) C94M56Y0K51 (94%,56%,0%,51%) (0.94/0.56/0.00/0.51)
07 | 38 | 7E | |
---|---|---|---|
RGB | 7 | 56 | 126 |
HSL | 215° | 89.47% | 26.08% |
HSB/HSV | 215° | 94.44% | 49.41% |
CMYK | 94.44% | 55.56% | 0.00% |
50.59% |
HEX | 07 | 38 | 7E |
Decimal | 7 | 56 | 126 |
Binary | 111 | 111000 | 1111110 |
Octal | 7 | 70 | 176 |
Examples of css and html codes for elements with #07387E color. Also use rgb(7,56,126) instead hex code.
.myTextColor { color: #07387E; }
<p style="color:#07387E">This sample text font color is #07387E.</p>
This text font color is #07387E.
.myBgColor { background-color: #07387E; }
<div style="background-color:#07387E">Inner text</div>
This div background color is #07387E.
.myBorderColor { border: 1px solid #07387E; }
<div style="border:3px solid #07387E">Div</div>
This div border color is #07387E.
.myOpacity80 { color: #07387E; opacity: 0.8; }
<p style="color:#07387E;opacity:0.8;">80%</p>
Text with #07387E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #07387E;}
<p style="text-shadow: 3px 3px 1px #07387E">Text here.</p>
This text has shadow with #07387E color.
.textShadow {text-shadow: 3px 3px 1px #07387E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #07387E, 5px 5px 20px red">Text here.</p>
This text has shadow with #07387E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#07387E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#07387E, Direction=45, Strength=4)">Text</p>
This text has shadow with #07387E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #07387E; -webkit-box-shadow: 1px 1px 3px 2px #07387E; box-shadow: 1px 1px 3px 2px #07387E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #07387E; -webkit-box-shadow: 1px 1px 3px 2px #07387E; box-shadow:1px 1px 3px 2px #07387E;">
Div content here</div>
This text has color #07387E on black background.
This text has color #07387E on white background.
This text has black color on #07387E background.
This text has white color on #07387E background.