HEX: #BEA9AA
RGB: (190,169,170)
#BEA9AA contains red, green and blue colors in about the same proportion. Web safe color of #BEA9AA is #CC9999 (or #C99).
#BEA9AA color RGB value is (190,169,170).
RGB: (190,169,170) (75%,66%,67%)
R 190 of 255 = 75%
G 169 of 255 = 66%
B 170 of 255 = 67%
R + G + B ~ 69%. #BEA9AA is quite light color.
R + G + B =
190 + 169 + 170 = 529 (100%)
R 190 of 529 ~ 35.92%
G 169 of 529 ~ 31.95%
B 170 of 529 ~ 32.14%
#BEA9AA color CMYK value is (0,11,11,25).
CMYK: (0,11,11,25) C0M11Y11K25 (0%,11%,11%,25%) (0.00/0.11/0.11/0.25)
BE | A9 | AA | |
---|---|---|---|
RGB | 190 | 169 | 170 |
HSL | 357° | 13.91% | 70.39% |
HSB/HSV | 357° | 11.05% | 74.51% |
CMYK | 0.00% | 11.05% | 10.53% |
25.49% |
HEX | BE | A9 | AA |
Decimal | 190 | 169 | 170 |
Binary | 10111110 | 10101001 | 10101010 |
Octal | 276 | 251 | 252 |
Examples of css and html codes for elements with #BEA9AA color. Also use rgb(190,169,170) instead hex code.
.myTextColor { color: #BEA9AA; }
<p style="color:#BEA9AA">This sample text font color is #BEA9AA.</p>
This text font color is #BEA9AA.
.myBgColor { background-color: #BEA9AA; }
<div style="background-color:#BEA9AA">Inner text</div>
This div background color is #BEA9AA.
.myBorderColor { border: 1px solid #BEA9AA; }
<div style="border:3px solid #BEA9AA">Div</div>
This div border color is #BEA9AA.
.myOpacity80 { color: #BEA9AA; opacity: 0.8; }
<p style="color:#BEA9AA;opacity:0.8;">80%</p>
Text with #BEA9AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEA9AA;}
<p style="text-shadow: 3px 3px 1px #BEA9AA">Text here.</p>
This text has shadow with #BEA9AA color.
.textShadow {text-shadow: 3px 3px 1px #BEA9AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEA9AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEA9AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEA9AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEA9AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEA9AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEA9AA; -webkit-box-shadow: 1px 1px 3px 2px #BEA9AA; box-shadow: 1px 1px 3px 2px #BEA9AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEA9AA; -webkit-box-shadow: 1px 1px 3px 2px #BEA9AA; box-shadow:1px 1px 3px 2px #BEA9AA;">
Div content here</div>
This text has color #BEA9AA on black background.
This text has color #BEA9AA on white background.
This text has black color on #BEA9AA background.
This text has white color on #BEA9AA background.