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