HEX: #BEBBCC
RGB: (190,187,204)
#BEBBCC contains red, green and blue colors in about the same proportion. Web safe color of #BEBBCC is #CCCCCC (or #CCC).
#BEBBCC color RGB value is (190,187,204).
RGB: (190,187,204) (75%,73%,80%)
R 190 of 255 = 75%
G 187 of 255 = 73%
B 204 of 255 = 80%
R + G + B ~ 76%. #BEBBCC is quite light color.
R + G + B =
190 + 187 + 204 = 581 (100%)
R 190 of 581 ~ 32.7%
G 187 of 581 ~ 32.19%
B 204 of 581 ~ 35.11%
#BEBBCC color CMYK value is (7,8,0,20).
CMYK: (7,8,0,20) C7M8Y0K20 (7%,8%,0%,20%) (0.07/0.08/0.00/0.20)
BE | BB | CC | |
---|---|---|---|
RGB | 190 | 187 | 204 |
HSL | 251° | 14.29% | 76.67% |
HSB/HSV | 251° | 8.33% | 80.00% |
CMYK | 6.86% | 8.33% | 0.00% |
20.00% |
HEX | BE | BB | CC |
Decimal | 190 | 187 | 204 |
Binary | 10111110 | 10111011 | 11001100 |
Octal | 276 | 273 | 314 |
Examples of css and html codes for elements with #BEBBCC color. Also use rgb(190,187,204) instead hex code.
.myTextColor { color: #BEBBCC; }
<p style="color:#BEBBCC">This sample text font color is #BEBBCC.</p>
This text font color is #BEBBCC.
.myBgColor { background-color: #BEBBCC; }
<div style="background-color:#BEBBCC">Inner text</div>
This div background color is #BEBBCC.
.myBorderColor { border: 1px solid #BEBBCC; }
<div style="border:3px solid #BEBBCC">Div</div>
This div border color is #BEBBCC.
.myOpacity80 { color: #BEBBCC; opacity: 0.8; }
<p style="color:#BEBBCC;opacity:0.8;">80%</p>
Text with #BEBBCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEBBCC;}
<p style="text-shadow: 3px 3px 1px #BEBBCC">Text here.</p>
This text has shadow with #BEBBCC color.
.textShadow {text-shadow: 3px 3px 1px #BEBBCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEBBCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEBBCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEBBCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEBBCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEBBCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEBBCC; -webkit-box-shadow: 1px 1px 3px 2px #BEBBCC; box-shadow: 1px 1px 3px 2px #BEBBCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEBBCC; -webkit-box-shadow: 1px 1px 3px 2px #BEBBCC; box-shadow:1px 1px 3px 2px #BEBBCC;">
Div content here</div>
This text has color #BEBBCC on black background.
This text has color #BEBBCC on white background.
This text has black color on #BEBBCC background.
This text has white color on #BEBBCC background.