HEX: #BEC6BD
RGB: (190,198,189)
#BEC6BD contains red, green and blue colors in about the same proportion. Web safe color of #BEC6BD is #CCCCCC (or #CCC).
#BEC6BD color RGB value is (190,198,189).
RGB: (190,198,189) (75%,78%,74%)
R 190 of 255 = 75%
G 198 of 255 = 78%
B 189 of 255 = 74%
R + G + B ~ 76%. #BEC6BD is quite light color.
R + G + B =
190 + 198 + 189 = 577 (100%)
R 190 of 577 ~ 32.93%
G 198 of 577 ~ 34.32%
B 189 of 577 ~ 32.76%
#BEC6BD color CMYK value is (4,0,5,22).
CMYK: (4,0,5,22) C4M0Y5K22 (4%,0%,5%,22%) (0.04/0.00/0.05/0.22)
BE | C6 | BD | |
---|---|---|---|
RGB | 190 | 198 | 189 |
HSL | 113° | 7.32% | 75.88% |
HSB/HSV | 113° | 4.55% | 77.65% |
CMYK | 4.04% | 0.00% | 4.55% |
22.35% |
HEX | BE | C6 | BD |
Decimal | 190 | 198 | 189 |
Binary | 10111110 | 11000110 | 10111101 |
Octal | 276 | 306 | 275 |
Examples of css and html codes for elements with #BEC6BD color. Also use rgb(190,198,189) instead hex code.
.myTextColor { color: #BEC6BD; }
<p style="color:#BEC6BD">This sample text font color is #BEC6BD.</p>
This text font color is #BEC6BD.
.myBgColor { background-color: #BEC6BD; }
<div style="background-color:#BEC6BD">Inner text</div>
This div background color is #BEC6BD.
.myBorderColor { border: 1px solid #BEC6BD; }
<div style="border:3px solid #BEC6BD">Div</div>
This div border color is #BEC6BD.
.myOpacity80 { color: #BEC6BD; opacity: 0.8; }
<p style="color:#BEC6BD;opacity:0.8;">80%</p>
Text with #BEC6BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEC6BD;}
<p style="text-shadow: 3px 3px 1px #BEC6BD">Text here.</p>
This text has shadow with #BEC6BD color.
.textShadow {text-shadow: 3px 3px 1px #BEC6BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEC6BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEC6BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEC6BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEC6BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEC6BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEC6BD; -webkit-box-shadow: 1px 1px 3px 2px #BEC6BD; box-shadow: 1px 1px 3px 2px #BEC6BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEC6BD; -webkit-box-shadow: 1px 1px 3px 2px #BEC6BD; box-shadow:1px 1px 3px 2px #BEC6BD;">
Div content here</div>
This text has color #BEC6BD on black background.
This text has color #BEC6BD on white background.
This text has black color on #BEC6BD background.
This text has white color on #BEC6BD background.