HEX: #BEB1AB
RGB: (190,177,171)
#BEB1AB contains red, green and blue colors in about the same proportion. Web safe color of #BEB1AB is #CC9999 (or #C99).
#BEB1AB color RGB value is (190,177,171).
RGB: (190,177,171) (75%,69%,67%)
R 190 of 255 = 75%
G 177 of 255 = 69%
B 171 of 255 = 67%
R + G + B ~ 70%. #BEB1AB is quite light color.
R + G + B =
190 + 177 + 171 = 538 (100%)
R 190 of 538 ~ 35.32%
G 177 of 538 ~ 32.9%
B 171 of 538 ~ 31.78%
#BEB1AB color CMYK value is (0,7,10,25).
CMYK: (0,7,10,25) C0M7Y10K25 (0%,7%,10%,25%) (0.00/0.07/0.10/0.25)
BE | B1 | AB | |
---|---|---|---|
RGB | 190 | 177 | 171 |
HSL | 19° | 12.75% | 70.78% |
HSB/HSV | 19° | 10.00% | 74.51% |
CMYK | 0.00% | 6.84% | 10.00% |
25.49% |
HEX | BE | B1 | AB |
Decimal | 190 | 177 | 171 |
Binary | 10111110 | 10110001 | 10101011 |
Octal | 276 | 261 | 253 |
Examples of css and html codes for elements with #BEB1AB color. Also use rgb(190,177,171) instead hex code.
.myTextColor { color: #BEB1AB; }
<p style="color:#BEB1AB">This sample text font color is #BEB1AB.</p>
This text font color is #BEB1AB.
.myBgColor { background-color: #BEB1AB; }
<div style="background-color:#BEB1AB">Inner text</div>
This div background color is #BEB1AB.
.myBorderColor { border: 1px solid #BEB1AB; }
<div style="border:3px solid #BEB1AB">Div</div>
This div border color is #BEB1AB.
.myOpacity80 { color: #BEB1AB; opacity: 0.8; }
<p style="color:#BEB1AB;opacity:0.8;">80%</p>
Text with #BEB1AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEB1AB;}
<p style="text-shadow: 3px 3px 1px #BEB1AB">Text here.</p>
This text has shadow with #BEB1AB color.
.textShadow {text-shadow: 3px 3px 1px #BEB1AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEB1AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEB1AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEB1AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEB1AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEB1AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEB1AB; -webkit-box-shadow: 1px 1px 3px 2px #BEB1AB; box-shadow: 1px 1px 3px 2px #BEB1AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEB1AB; -webkit-box-shadow: 1px 1px 3px 2px #BEB1AB; box-shadow:1px 1px 3px 2px #BEB1AB;">
Div content here</div>
This text has color #BEB1AB on black background.
This text has color #BEB1AB on white background.
This text has black color on #BEB1AB background.
This text has white color on #BEB1AB background.