HEX: #709BD2
RGB: (112,155,210)
#709BD2 contains mainly green and blue colors. Web safe color of #709BD2 is #6699CC (or #69C).
#709BD2 color RGB value is (112,155,210).
RGB: (112,155,210) (44%,61%,82%)
R 112 of 255 = 44%
G 155 of 255 = 61%
B 210 of 255 = 82%
R + G + B ~ 62%. #709BD2 is quite light color.
R + G + B =
112 + 155 + 210 = 477 (100%)
R 112 of 477 ~ 23.48%
G 155 of 477 ~ 32.49%
B 210 of 477 ~ 44.03%
#709BD2 color CMYK value is (47,26,0,18).
CMYK: (47,26,0,18) C47M26Y0K18 (47%,26%,0%,18%) (0.47/0.26/0.00/0.18)
70 | 9B | D2 | |
---|---|---|---|
RGB | 112 | 155 | 210 |
HSL | 214° | 52.13% | 63.14% |
HSB/HSV | 214° | 46.67% | 82.35% |
CMYK | 46.67% | 26.19% | 0.00% |
17.65% |
HEX | 70 | 9B | D2 |
Decimal | 112 | 155 | 210 |
Binary | 1110000 | 10011011 | 11010010 |
Octal | 160 | 233 | 322 |
Examples of css and html codes for elements with #709BD2 color. Also use rgb(112,155,210) instead hex code.
.myTextColor { color: #709BD2; }
<p style="color:#709BD2">This sample text font color is #709BD2.</p>
This text font color is #709BD2.
.myBgColor { background-color: #709BD2; }
<div style="background-color:#709BD2">Inner text</div>
This div background color is #709BD2.
.myBorderColor { border: 1px solid #709BD2; }
<div style="border:3px solid #709BD2">Div</div>
This div border color is #709BD2.
.myOpacity80 { color: #709BD2; opacity: 0.8; }
<p style="color:#709BD2;opacity:0.8;">80%</p>
Text with #709BD2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #709BD2;}
<p style="text-shadow: 3px 3px 1px #709BD2">Text here.</p>
This text has shadow with #709BD2 color.
.textShadow {text-shadow: 3px 3px 1px #709BD2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #709BD2, 5px 5px 20px red">Text here.</p>
This text has shadow with #709BD2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#709BD2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#709BD2, Direction=45, Strength=4)">Text</p>
This text has shadow with #709BD2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #709BD2; -webkit-box-shadow: 1px 1px 3px 2px #709BD2; box-shadow: 1px 1px 3px 2px #709BD2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #709BD2; -webkit-box-shadow: 1px 1px 3px 2px #709BD2; box-shadow:1px 1px 3px 2px #709BD2;">
Div content here</div>
This text has color #709BD2 on black background.
This text has color #709BD2 on white background.
This text has black color on #709BD2 background.
This text has white color on #709BD2 background.