HEX: #709FDE
RGB: (112,159,222)
#709FDE contains mainly blue color. Web safe color of #709FDE is #6699CC (or #69C).
#709FDE color RGB value is (112,159,222).
RGB: (112,159,222) (44%,62%,87%)
R 112 of 255 = 44%
G 159 of 255 = 62%
B 222 of 255 = 87%
R + G + B ~ 64%. #709FDE is quite light color.
R + G + B =
112 + 159 + 222 = 493 (100%)
R 112 of 493 ~ 22.72%
G 159 of 493 ~ 32.25%
B 222 of 493 ~ 45.03%
#709FDE color CMYK value is (50,28,0,13).
CMYK: (50,28,0,13) C50M28Y0K13 (50%,28%,0%,13%) (0.50/0.28/0.00/0.13)
70 | 9F | DE | |
---|---|---|---|
RGB | 112 | 159 | 222 |
HSL | 214° | 62.50% | 65.49% |
HSB/HSV | 214° | 49.55% | 87.06% |
CMYK | 49.55% | 28.38% | 0.00% |
12.94% |
HEX | 70 | 9F | DE |
Decimal | 112 | 159 | 222 |
Binary | 1110000 | 10011111 | 11011110 |
Octal | 160 | 237 | 336 |
Examples of css and html codes for elements with #709FDE color. Also use rgb(112,159,222) instead hex code.
.myTextColor { color: #709FDE; }
<p style="color:#709FDE">This sample text font color is #709FDE.</p>
This text font color is #709FDE.
.myBgColor { background-color: #709FDE; }
<div style="background-color:#709FDE">Inner text</div>
This div background color is #709FDE.
.myBorderColor { border: 1px solid #709FDE; }
<div style="border:3px solid #709FDE">Div</div>
This div border color is #709FDE.
.myOpacity80 { color: #709FDE; opacity: 0.8; }
<p style="color:#709FDE;opacity:0.8;">80%</p>
Text with #709FDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #709FDE;}
<p style="text-shadow: 3px 3px 1px #709FDE">Text here.</p>
This text has shadow with #709FDE color.
.textShadow {text-shadow: 3px 3px 1px #709FDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #709FDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #709FDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#709FDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#709FDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #709FDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #709FDE; -webkit-box-shadow: 1px 1px 3px 2px #709FDE; box-shadow: 1px 1px 3px 2px #709FDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #709FDE; -webkit-box-shadow: 1px 1px 3px 2px #709FDE; box-shadow:1px 1px 3px 2px #709FDE;">
Div content here</div>
This text has color #709FDE on black background.
This text has color #709FDE on white background.
This text has black color on #709FDE background.
This text has white color on #709FDE background.