HEX: #BEB7BB
RGB: (190,183,187)
#BEB7BB contains red, green and blue colors in about the same proportion. Web safe color of #BEB7BB is #CCCCCC (or #CCC).
#BEB7BB color RGB value is (190,183,187).
RGB: (190,183,187) (75%,72%,73%)
R 190 of 255 = 75%
G 183 of 255 = 72%
B 187 of 255 = 73%
R + G + B ~ 73%. #BEB7BB is quite light color.
R + G + B =
190 + 183 + 187 = 560 (100%)
R 190 of 560 ~ 33.93%
G 183 of 560 ~ 32.68%
B 187 of 560 ~ 33.39%
#BEB7BB color CMYK value is (0,4,2,25).
CMYK: (0,4,2,25) C0M4Y2K25 (0%,4%,2%,25%) (0.00/0.04/0.02/0.25)
BE | B7 | BB | |
---|---|---|---|
RGB | 190 | 183 | 187 |
HSL | 326° | 5.11% | 73.14% |
HSB/HSV | 326° | 3.68% | 74.51% |
CMYK | 0.00% | 3.68% | 1.58% |
25.49% |
HEX | BE | B7 | BB |
Decimal | 190 | 183 | 187 |
Binary | 10111110 | 10110111 | 10111011 |
Octal | 276 | 267 | 273 |
Examples of css and html codes for elements with #BEB7BB color. Also use rgb(190,183,187) instead hex code.
.myTextColor { color: #BEB7BB; }
<p style="color:#BEB7BB">This sample text font color is #BEB7BB.</p>
This text font color is #BEB7BB.
.myBgColor { background-color: #BEB7BB; }
<div style="background-color:#BEB7BB">Inner text</div>
This div background color is #BEB7BB.
.myBorderColor { border: 1px solid #BEB7BB; }
<div style="border:3px solid #BEB7BB">Div</div>
This div border color is #BEB7BB.
.myOpacity80 { color: #BEB7BB; opacity: 0.8; }
<p style="color:#BEB7BB;opacity:0.8;">80%</p>
Text with #BEB7BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEB7BB;}
<p style="text-shadow: 3px 3px 1px #BEB7BB">Text here.</p>
This text has shadow with #BEB7BB color.
.textShadow {text-shadow: 3px 3px 1px #BEB7BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEB7BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEB7BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEB7BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEB7BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEB7BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEB7BB; -webkit-box-shadow: 1px 1px 3px 2px #BEB7BB; box-shadow: 1px 1px 3px 2px #BEB7BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEB7BB; -webkit-box-shadow: 1px 1px 3px 2px #BEB7BB; box-shadow:1px 1px 3px 2px #BEB7BB;">
Div content here</div>
This text has color #BEB7BB on black background.
This text has color #BEB7BB on white background.
This text has black color on #BEB7BB background.
This text has white color on #BEB7BB background.