HEX: #A7BCEB
RGB: (167,188,235)
#A7BCEB contains mainly green and blue colors. Web safe color of #A7BCEB is #99CCFF (or #9CF).
#A7BCEB color RGB value is (167,188,235).
RGB: (167,188,235) (65%,74%,92%)
R 167 of 255 = 65%
G 188 of 255 = 74%
B 235 of 255 = 92%
R + G + B ~ 77%. #A7BCEB is quite light color.
R + G + B =
167 + 188 + 235 = 590 (100%)
R 167 of 590 ~ 28.31%
G 188 of 590 ~ 31.86%
B 235 of 590 ~ 39.83%
#A7BCEB color CMYK value is (29,20,0,8).
CMYK: (29,20,0,8) C29M20Y0K8 (29%,20%,0%,8%) (0.29/0.20/0.00/0.08)
A7 | BC | EB | |
---|---|---|---|
RGB | 167 | 188 | 235 |
HSL | 221° | 62.96% | 78.82% |
HSB/HSV | 221° | 28.94% | 92.16% |
CMYK | 28.94% | 20.00% | 0.00% |
7.84% |
HEX | A7 | BC | EB |
Decimal | 167 | 188 | 235 |
Binary | 10100111 | 10111100 | 11101011 |
Octal | 247 | 274 | 353 |
Examples of css and html codes for elements with #A7BCEB color. Also use rgb(167,188,235) instead hex code.
.myTextColor { color: #A7BCEB; }
<p style="color:#A7BCEB">This sample text font color is #A7BCEB.</p>
This text font color is #A7BCEB.
.myBgColor { background-color: #A7BCEB; }
<div style="background-color:#A7BCEB">Inner text</div>
This div background color is #A7BCEB.
.myBorderColor { border: 1px solid #A7BCEB; }
<div style="border:3px solid #A7BCEB">Div</div>
This div border color is #A7BCEB.
.myOpacity80 { color: #A7BCEB; opacity: 0.8; }
<p style="color:#A7BCEB;opacity:0.8;">80%</p>
Text with #A7BCEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7BCEB;}
<p style="text-shadow: 3px 3px 1px #A7BCEB">Text here.</p>
This text has shadow with #A7BCEB color.
.textShadow {text-shadow: 3px 3px 1px #A7BCEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7BCEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7BCEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7BCEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7BCEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7BCEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7BCEB; -webkit-box-shadow: 1px 1px 3px 2px #A7BCEB; box-shadow: 1px 1px 3px 2px #A7BCEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7BCEB; -webkit-box-shadow: 1px 1px 3px 2px #A7BCEB; box-shadow:1px 1px 3px 2px #A7BCEB;">
Div content here</div>
This text has color #A7BCEB on black background.
This text has color #A7BCEB on white background.
This text has black color on #A7BCEB background.
This text has white color on #A7BCEB background.