HEX: #708DCE
RGB: (112,141,206)
#708DCE contains mainly blue color. Web safe color of #708DCE is #6699CC (or #69C).
#708DCE color RGB value is (112,141,206).
RGB: (112,141,206) (44%,55%,81%)
R 112 of 255 = 44%
G 141 of 255 = 55%
B 206 of 255 = 81%
R + G + B ~ 60%. #708DCE is middle color (not dark and not light).
R + G + B =
112 + 141 + 206 = 459 (100%)
R 112 of 459 ~ 24.4%
G 141 of 459 ~ 30.72%
B 206 of 459 ~ 44.88%
#708DCE color CMYK value is (46,32,0,19).
CMYK: (46,32,0,19) C46M32Y0K19 (46%,32%,0%,19%) (0.46/0.32/0.00/0.19)
70 | 8D | CE | |
---|---|---|---|
RGB | 112 | 141 | 206 |
HSL | 221° | 48.96% | 62.35% |
HSB/HSV | 221° | 45.63% | 80.78% |
CMYK | 45.63% | 31.55% | 0.00% |
19.22% |
HEX | 70 | 8D | CE |
Decimal | 112 | 141 | 206 |
Binary | 1110000 | 10001101 | 11001110 |
Octal | 160 | 215 | 316 |
Examples of css and html codes for elements with #708DCE color. Also use rgb(112,141,206) instead hex code.
.myTextColor { color: #708DCE; }
<p style="color:#708DCE">This sample text font color is #708DCE.</p>
This text font color is #708DCE.
.myBgColor { background-color: #708DCE; }
<div style="background-color:#708DCE">Inner text</div>
This div background color is #708DCE.
.myBorderColor { border: 1px solid #708DCE; }
<div style="border:3px solid #708DCE">Div</div>
This div border color is #708DCE.
.myOpacity80 { color: #708DCE; opacity: 0.8; }
<p style="color:#708DCE;opacity:0.8;">80%</p>
Text with #708DCE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #708DCE;}
<p style="text-shadow: 3px 3px 1px #708DCE">Text here.</p>
This text has shadow with #708DCE color.
.textShadow {text-shadow: 3px 3px 1px #708DCE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #708DCE, 5px 5px 20px red">Text here.</p>
This text has shadow with #708DCE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#708DCE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#708DCE, Direction=45, Strength=4)">Text</p>
This text has shadow with #708DCE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #708DCE; -webkit-box-shadow: 1px 1px 3px 2px #708DCE; box-shadow: 1px 1px 3px 2px #708DCE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #708DCE; -webkit-box-shadow: 1px 1px 3px 2px #708DCE; box-shadow:1px 1px 3px 2px #708DCE;">
Div content here</div>
This text has color #708DCE on black background.
This text has color #708DCE on white background.
This text has black color on #708DCE background.
This text has white color on #708DCE background.