HEX: #BEB3BC
RGB: (190,179,188)
#BEB3BC contains red, green and blue colors in about the same proportion. Web safe color of #BEB3BC is #CC99CC (or #C9C).
#BEB3BC color RGB value is (190,179,188).
RGB: (190,179,188) (75%,70%,74%)
R 190 of 255 = 75%
G 179 of 255 = 70%
B 188 of 255 = 74%
R + G + B ~ 73%. #BEB3BC is quite light color.
R + G + B =
190 + 179 + 188 = 557 (100%)
R 190 of 557 ~ 34.11%
G 179 of 557 ~ 32.14%
B 188 of 557 ~ 33.75%
#BEB3BC color CMYK value is (0,6,1,25).
CMYK: (0,6,1,25) C0M6Y1K25 (0%,6%,1%,25%) (0.00/0.06/0.01/0.25)
BE | B3 | BC | |
---|---|---|---|
RGB | 190 | 179 | 188 |
HSL | 311° | 7.80% | 72.35% |
HSB/HSV | 311° | 5.79% | 74.51% |
CMYK | 0.00% | 5.79% | 1.05% |
25.49% |
HEX | BE | B3 | BC |
Decimal | 190 | 179 | 188 |
Binary | 10111110 | 10110011 | 10111100 |
Octal | 276 | 263 | 274 |
Examples of css and html codes for elements with #BEB3BC color. Also use rgb(190,179,188) instead hex code.
.myTextColor { color: #BEB3BC; }
<p style="color:#BEB3BC">This sample text font color is #BEB3BC.</p>
This text font color is #BEB3BC.
.myBgColor { background-color: #BEB3BC; }
<div style="background-color:#BEB3BC">Inner text</div>
This div background color is #BEB3BC.
.myBorderColor { border: 1px solid #BEB3BC; }
<div style="border:3px solid #BEB3BC">Div</div>
This div border color is #BEB3BC.
.myOpacity80 { color: #BEB3BC; opacity: 0.8; }
<p style="color:#BEB3BC;opacity:0.8;">80%</p>
Text with #BEB3BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEB3BC;}
<p style="text-shadow: 3px 3px 1px #BEB3BC">Text here.</p>
This text has shadow with #BEB3BC color.
.textShadow {text-shadow: 3px 3px 1px #BEB3BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEB3BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEB3BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEB3BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEB3BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEB3BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEB3BC; -webkit-box-shadow: 1px 1px 3px 2px #BEB3BC; box-shadow: 1px 1px 3px 2px #BEB3BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEB3BC; -webkit-box-shadow: 1px 1px 3px 2px #BEB3BC; box-shadow:1px 1px 3px 2px #BEB3BC;">
Div content here</div>
This text has color #BEB3BC on black background.
This text has color #BEB3BC on white background.
This text has black color on #BEB3BC background.
This text has white color on #BEB3BC background.