HEX: #8EA4CA
RGB: (142,164,202)
#8EA4CA contains mainly green and blue colors. Web safe color of #8EA4CA is #9999CC (or #99C).
#8EA4CA color RGB value is (142,164,202).
RGB: (142,164,202) (56%,64%,79%)
R 142 of 255 = 56%
G 164 of 255 = 64%
B 202 of 255 = 79%
R + G + B ~ 66%. #8EA4CA is quite light color.
R + G + B =
142 + 164 + 202 = 508 (100%)
R 142 of 508 ~ 27.95%
G 164 of 508 ~ 32.28%
B 202 of 508 ~ 39.76%
#8EA4CA color CMYK value is (30,19,0,21).
CMYK: (30,19,0,21) C30M19Y0K21 (30%,19%,0%,21%) (0.30/0.19/0.00/0.21)
8E | A4 | CA | |
---|---|---|---|
RGB | 142 | 164 | 202 |
HSL | 218° | 36.14% | 67.45% |
HSB/HSV | 218° | 29.70% | 79.22% |
CMYK | 29.70% | 18.81% | 0.00% |
20.78% |
HEX | 8E | A4 | CA |
Decimal | 142 | 164 | 202 |
Binary | 10001110 | 10100100 | 11001010 |
Octal | 216 | 244 | 312 |
Examples of css and html codes for elements with #8EA4CA color. Also use rgb(142,164,202) instead hex code.
.myTextColor { color: #8EA4CA; }
<p style="color:#8EA4CA">This sample text font color is #8EA4CA.</p>
This text font color is #8EA4CA.
.myBgColor { background-color: #8EA4CA; }
<div style="background-color:#8EA4CA">Inner text</div>
This div background color is #8EA4CA.
.myBorderColor { border: 1px solid #8EA4CA; }
<div style="border:3px solid #8EA4CA">Div</div>
This div border color is #8EA4CA.
.myOpacity80 { color: #8EA4CA; opacity: 0.8; }
<p style="color:#8EA4CA;opacity:0.8;">80%</p>
Text with #8EA4CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8EA4CA;}
<p style="text-shadow: 3px 3px 1px #8EA4CA">Text here.</p>
This text has shadow with #8EA4CA color.
.textShadow {text-shadow: 3px 3px 1px #8EA4CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8EA4CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #8EA4CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8EA4CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8EA4CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #8EA4CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8EA4CA; -webkit-box-shadow: 1px 1px 3px 2px #8EA4CA; box-shadow: 1px 1px 3px 2px #8EA4CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8EA4CA; -webkit-box-shadow: 1px 1px 3px 2px #8EA4CA; box-shadow:1px 1px 3px 2px #8EA4CA;">
Div content here</div>
This text has color #8EA4CA on black background.
This text has color #8EA4CA on white background.
This text has black color on #8EA4CA background.
This text has white color on #8EA4CA background.