HEX: #BCBEE3
RGB: (188,190,227)
#BCBEE3 contains red, green and blue colors in about the same proportion. Web safe color of #BCBEE3 is #CCCCCC (or #CCC).
#BCBEE3 color RGB value is (188,190,227).
RGB: (188,190,227) (74%,75%,89%)
R 188 of 255 = 74%
G 190 of 255 = 75%
B 227 of 255 = 89%
R + G + B ~ 79%. #BCBEE3 is quite light color.
R + G + B =
188 + 190 + 227 = 605 (100%)
R 188 of 605 ~ 31.07%
G 190 of 605 ~ 31.4%
B 227 of 605 ~ 37.52%
#BCBEE3 color CMYK value is (17,16,0,11).
CMYK: (17,16,0,11) C17M16Y0K11 (17%,16%,0%,11%) (0.17/0.16/0.00/0.11)
BC | BE | E3 | |
---|---|---|---|
RGB | 188 | 190 | 227 |
HSL | 237° | 41.05% | 81.37% |
HSB/HSV | 237° | 17.18% | 89.02% |
CMYK | 17.18% | 16.30% | 0.00% |
10.98% |
HEX | BC | BE | E3 |
Decimal | 188 | 190 | 227 |
Binary | 10111100 | 10111110 | 11100011 |
Octal | 274 | 276 | 343 |
Examples of css and html codes for elements with #BCBEE3 color. Also use rgb(188,190,227) instead hex code.
.myTextColor { color: #BCBEE3; }
<p style="color:#BCBEE3">This sample text font color is #BCBEE3.</p>
This text font color is #BCBEE3.
.myBgColor { background-color: #BCBEE3; }
<div style="background-color:#BCBEE3">Inner text</div>
This div background color is #BCBEE3.
.myBorderColor { border: 1px solid #BCBEE3; }
<div style="border:3px solid #BCBEE3">Div</div>
This div border color is #BCBEE3.
.myOpacity80 { color: #BCBEE3; opacity: 0.8; }
<p style="color:#BCBEE3;opacity:0.8;">80%</p>
Text with #BCBEE3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCBEE3;}
<p style="text-shadow: 3px 3px 1px #BCBEE3">Text here.</p>
This text has shadow with #BCBEE3 color.
.textShadow {text-shadow: 3px 3px 1px #BCBEE3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCBEE3, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCBEE3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCBEE3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCBEE3, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCBEE3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCBEE3; -webkit-box-shadow: 1px 1px 3px 2px #BCBEE3; box-shadow: 1px 1px 3px 2px #BCBEE3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCBEE3; -webkit-box-shadow: 1px 1px 3px 2px #BCBEE3; box-shadow:1px 1px 3px 2px #BCBEE3;">
Div content here</div>
This text has color #BCBEE3 on black background.
This text has color #BCBEE3 on white background.
This text has black color on #BCBEE3 background.
This text has white color on #BCBEE3 background.