HEX: #73B6EE
RGB: (115,182,238)
#73B6EE contains mainly green and blue colors. Web safe color of #73B6EE is #66CCFF (or #6CF).
#73B6EE color RGB value is (115,182,238).
RGB: (115,182,238) (45%,71%,93%)
R 115 of 255 = 45%
G 182 of 255 = 71%
B 238 of 255 = 93%
R + G + B ~ 70%. #73B6EE is quite light color.
R + G + B =
115 + 182 + 238 = 535 (100%)
R 115 of 535 ~ 21.5%
G 182 of 535 ~ 34.02%
B 238 of 535 ~ 44.49%
#73B6EE color CMYK value is (52,24,0,7).
CMYK: (52,24,0,7) C52M24Y0K7 (52%,24%,0%,7%) (0.52/0.24/0.00/0.07)
73 | B6 | EE | |
---|---|---|---|
RGB | 115 | 182 | 238 |
HSL | 207° | 78.34% | 69.22% |
HSB/HSV | 207° | 51.68% | 93.33% |
CMYK | 51.68% | 23.53% | 0.00% |
6.67% |
HEX | 73 | B6 | EE |
Decimal | 115 | 182 | 238 |
Binary | 1110011 | 10110110 | 11101110 |
Octal | 163 | 266 | 356 |
Examples of css and html codes for elements with #73B6EE color. Also use rgb(115,182,238) instead hex code.
.myTextColor { color: #73B6EE; }
<p style="color:#73B6EE">This sample text font color is #73B6EE.</p>
This text font color is #73B6EE.
.myBgColor { background-color: #73B6EE; }
<div style="background-color:#73B6EE">Inner text</div>
This div background color is #73B6EE.
.myBorderColor { border: 1px solid #73B6EE; }
<div style="border:3px solid #73B6EE">Div</div>
This div border color is #73B6EE.
.myOpacity80 { color: #73B6EE; opacity: 0.8; }
<p style="color:#73B6EE;opacity:0.8;">80%</p>
Text with #73B6EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #73B6EE;}
<p style="text-shadow: 3px 3px 1px #73B6EE">Text here.</p>
This text has shadow with #73B6EE color.
.textShadow {text-shadow: 3px 3px 1px #73B6EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #73B6EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #73B6EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#73B6EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#73B6EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #73B6EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #73B6EE; -webkit-box-shadow: 1px 1px 3px 2px #73B6EE; box-shadow: 1px 1px 3px 2px #73B6EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #73B6EE; -webkit-box-shadow: 1px 1px 3px 2px #73B6EE; box-shadow:1px 1px 3px 2px #73B6EE;">
Div content here</div>
This text has color #73B6EE on black background.
This text has color #73B6EE on white background.
This text has black color on #73B6EE background.
This text has white color on #73B6EE background.