HEX: #709ACD
RGB: (112,154,205)
#709ACD contains mainly green and blue colors. Web safe color of #709ACD is #6699CC (or #69C).
#709ACD color RGB value is (112,154,205).
RGB: (112,154,205) (44%,60%,80%)
R 112 of 255 = 44%
G 154 of 255 = 60%
B 205 of 255 = 80%
R + G + B ~ 61%. #709ACD is quite light color.
R + G + B =
112 + 154 + 205 = 471 (100%)
R 112 of 471 ~ 23.78%
G 154 of 471 ~ 32.7%
B 205 of 471 ~ 43.52%
#709ACD color CMYK value is (45,25,0,20).
CMYK: (45,25,0,20) C45M25Y0K20 (45%,25%,0%,20%) (0.45/0.25/0.00/0.20)
70 | 9A | CD | |
---|---|---|---|
RGB | 112 | 154 | 205 |
HSL | 213° | 48.19% | 62.16% |
HSB/HSV | 213° | 45.37% | 80.39% |
CMYK | 45.37% | 24.88% | 0.00% |
19.61% |
HEX | 70 | 9A | CD |
Decimal | 112 | 154 | 205 |
Binary | 1110000 | 10011010 | 11001101 |
Octal | 160 | 232 | 315 |
Examples of css and html codes for elements with #709ACD color. Also use rgb(112,154,205) instead hex code.
.myTextColor { color: #709ACD; }
<p style="color:#709ACD">This sample text font color is #709ACD.</p>
This text font color is #709ACD.
.myBgColor { background-color: #709ACD; }
<div style="background-color:#709ACD">Inner text</div>
This div background color is #709ACD.
.myBorderColor { border: 1px solid #709ACD; }
<div style="border:3px solid #709ACD">Div</div>
This div border color is #709ACD.
.myOpacity80 { color: #709ACD; opacity: 0.8; }
<p style="color:#709ACD;opacity:0.8;">80%</p>
Text with #709ACD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #709ACD;}
<p style="text-shadow: 3px 3px 1px #709ACD">Text here.</p>
This text has shadow with #709ACD color.
.textShadow {text-shadow: 3px 3px 1px #709ACD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #709ACD, 5px 5px 20px red">Text here.</p>
This text has shadow with #709ACD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#709ACD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#709ACD, Direction=45, Strength=4)">Text</p>
This text has shadow with #709ACD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #709ACD; -webkit-box-shadow: 1px 1px 3px 2px #709ACD; box-shadow: 1px 1px 3px 2px #709ACD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #709ACD; -webkit-box-shadow: 1px 1px 3px 2px #709ACD; box-shadow:1px 1px 3px 2px #709ACD;">
Div content here</div>
This text has color #709ACD on black background.
This text has color #709ACD on white background.
This text has black color on #709ACD background.
This text has white color on #709ACD background.