HEX: #739EDD
RGB: (115,158,221)
#739EDD contains mainly blue color. Web safe color of #739EDD is #6699CC (or #69C).
#739EDD color RGB value is (115,158,221).
RGB: (115,158,221) (45%,62%,87%)
R 115 of 255 = 45%
G 158 of 255 = 62%
B 221 of 255 = 87%
R + G + B ~ 65%. #739EDD is quite light color.
R + G + B =
115 + 158 + 221 = 494 (100%)
R 115 of 494 ~ 23.28%
G 158 of 494 ~ 31.98%
B 221 of 494 ~ 44.74%
#739EDD color CMYK value is (48,29,0,13).
CMYK: (48,29,0,13) C48M29Y0K13 (48%,29%,0%,13%) (0.48/0.29/0.00/0.13)
73 | 9E | DD | |
---|---|---|---|
RGB | 115 | 158 | 221 |
HSL | 216° | 60.92% | 65.88% |
HSB/HSV | 216° | 47.96% | 86.67% |
CMYK | 47.96% | 28.51% | 0.00% |
13.33% |
HEX | 73 | 9E | DD |
Decimal | 115 | 158 | 221 |
Binary | 1110011 | 10011110 | 11011101 |
Octal | 163 | 236 | 335 |
Examples of css and html codes for elements with #739EDD color. Also use rgb(115,158,221) instead hex code.
.myTextColor { color: #739EDD; }
<p style="color:#739EDD">This sample text font color is #739EDD.</p>
This text font color is #739EDD.
.myBgColor { background-color: #739EDD; }
<div style="background-color:#739EDD">Inner text</div>
This div background color is #739EDD.
.myBorderColor { border: 1px solid #739EDD; }
<div style="border:3px solid #739EDD">Div</div>
This div border color is #739EDD.
.myOpacity80 { color: #739EDD; opacity: 0.8; }
<p style="color:#739EDD;opacity:0.8;">80%</p>
Text with #739EDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #739EDD;}
<p style="text-shadow: 3px 3px 1px #739EDD">Text here.</p>
This text has shadow with #739EDD color.
.textShadow {text-shadow: 3px 3px 1px #739EDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #739EDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #739EDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#739EDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#739EDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #739EDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #739EDD; -webkit-box-shadow: 1px 1px 3px 2px #739EDD; box-shadow: 1px 1px 3px 2px #739EDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #739EDD; -webkit-box-shadow: 1px 1px 3px 2px #739EDD; box-shadow:1px 1px 3px 2px #739EDD;">
Div content here</div>
This text has color #739EDD on black background.
This text has color #739EDD on white background.
This text has black color on #739EDD background.
This text has white color on #739EDD background.