HEX: #719FCD
RGB: (113,159,205)
#719FCD contains mainly green and blue colors. Web safe color of #719FCD is #6699CC (or #69C).
#719FCD color RGB value is (113,159,205).
RGB: (113,159,205) (44%,62%,80%)
R 113 of 255 = 44%
G 159 of 255 = 62%
B 205 of 255 = 80%
R + G + B ~ 62%. #719FCD is quite light color.
R + G + B =
113 + 159 + 205 = 477 (100%)
R 113 of 477 ~ 23.69%
G 159 of 477 ~ 33.33%
B 205 of 477 ~ 42.98%
#719FCD color CMYK value is (45,22,0,20).
CMYK: (45,22,0,20) C45M22Y0K20 (45%,22%,0%,20%) (0.45/0.22/0.00/0.20)
71 | 9F | CD | |
---|---|---|---|
RGB | 113 | 159 | 205 |
HSL | 210° | 47.92% | 62.35% |
HSB/HSV | 210° | 44.88% | 80.39% |
CMYK | 44.88% | 22.44% | 0.00% |
19.61% |
HEX | 71 | 9F | CD |
Decimal | 113 | 159 | 205 |
Binary | 1110001 | 10011111 | 11001101 |
Octal | 161 | 237 | 315 |
Examples of css and html codes for elements with #719FCD color. Also use rgb(113,159,205) instead hex code.
.myTextColor { color: #719FCD; }
<p style="color:#719FCD">This sample text font color is #719FCD.</p>
This text font color is #719FCD.
.myBgColor { background-color: #719FCD; }
<div style="background-color:#719FCD">Inner text</div>
This div background color is #719FCD.
.myBorderColor { border: 1px solid #719FCD; }
<div style="border:3px solid #719FCD">Div</div>
This div border color is #719FCD.
.myOpacity80 { color: #719FCD; opacity: 0.8; }
<p style="color:#719FCD;opacity:0.8;">80%</p>
Text with #719FCD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #719FCD;}
<p style="text-shadow: 3px 3px 1px #719FCD">Text here.</p>
This text has shadow with #719FCD color.
.textShadow {text-shadow: 3px 3px 1px #719FCD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #719FCD, 5px 5px 20px red">Text here.</p>
This text has shadow with #719FCD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#719FCD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#719FCD, Direction=45, Strength=4)">Text</p>
This text has shadow with #719FCD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #719FCD; -webkit-box-shadow: 1px 1px 3px 2px #719FCD; box-shadow: 1px 1px 3px 2px #719FCD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #719FCD; -webkit-box-shadow: 1px 1px 3px 2px #719FCD; box-shadow:1px 1px 3px 2px #719FCD;">
Div content here</div>
This text has color #719FCD on black background.
This text has color #719FCD on white background.
This text has black color on #719FCD background.
This text has white color on #719FCD background.