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