HEX: #B4BEBC
RGB: (180,190,188)
#B4BEBC contains red, green and blue colors in about the same proportion. Web safe color of #B4BEBC is #CCCCCC (or #CCC).
#B4BEBC color RGB value is (180,190,188).
RGB: (180,190,188) (71%,75%,74%)
R 180 of 255 = 71%
G 190 of 255 = 75%
B 188 of 255 = 74%
R + G + B ~ 73%. #B4BEBC is quite light color.
R + G + B =
180 + 190 + 188 = 558 (100%)
R 180 of 558 ~ 32.26%
G 190 of 558 ~ 34.05%
B 188 of 558 ~ 33.69%
#B4BEBC color CMYK value is (5,0,1,25).
CMYK: (5,0,1,25) C5M0Y1K25 (5%,0%,1%,25%) (0.05/0.00/0.01/0.25)
B4 | BE | BC | |
---|---|---|---|
RGB | 180 | 190 | 188 |
HSL | 168° | 7.14% | 72.55% |
HSB/HSV | 168° | 5.26% | 74.51% |
CMYK | 5.26% | 0.00% | 1.05% |
25.49% |
HEX | B4 | BE | BC |
Decimal | 180 | 190 | 188 |
Binary | 10110100 | 10111110 | 10111100 |
Octal | 264 | 276 | 274 |
Examples of css and html codes for elements with #B4BEBC color. Also use rgb(180,190,188) instead hex code.
.myTextColor { color: #B4BEBC; }
<p style="color:#B4BEBC">This sample text font color is #B4BEBC.</p>
This text font color is #B4BEBC.
.myBgColor { background-color: #B4BEBC; }
<div style="background-color:#B4BEBC">Inner text</div>
This div background color is #B4BEBC.
.myBorderColor { border: 1px solid #B4BEBC; }
<div style="border:3px solid #B4BEBC">Div</div>
This div border color is #B4BEBC.
.myOpacity80 { color: #B4BEBC; opacity: 0.8; }
<p style="color:#B4BEBC;opacity:0.8;">80%</p>
Text with #B4BEBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4BEBC;}
<p style="text-shadow: 3px 3px 1px #B4BEBC">Text here.</p>
This text has shadow with #B4BEBC color.
.textShadow {text-shadow: 3px 3px 1px #B4BEBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4BEBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4BEBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4BEBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4BEBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4BEBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4BEBC; -webkit-box-shadow: 1px 1px 3px 2px #B4BEBC; box-shadow: 1px 1px 3px 2px #B4BEBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4BEBC; -webkit-box-shadow: 1px 1px 3px 2px #B4BEBC; box-shadow:1px 1px 3px 2px #B4BEBC;">
Div content here</div>
This text has color #B4BEBC on black background.
This text has color #B4BEBC on white background.
This text has black color on #B4BEBC background.
This text has white color on #B4BEBC background.