HEX: #BEA287
RGB: (190,162,135)
#BEA287 contains red, green and blue colors in about the same proportion. Web safe color of #BEA287 is #CC9999 (or #C99).
#BEA287 color RGB value is (190,162,135).
RGB: (190,162,135) (75%,64%,53%)
R 190 of 255 = 75%
G 162 of 255 = 64%
B 135 of 255 = 53%
R + G + B ~ 64%. #BEA287 is quite light color.
R + G + B =
190 + 162 + 135 = 487 (100%)
R 190 of 487 ~ 39.01%
G 162 of 487 ~ 33.26%
B 135 of 487 ~ 27.72%
#BEA287 color CMYK value is (0,15,29,25).
CMYK: (0,15,29,25) C0M15Y29K25 (0%,15%,29%,25%) (0.00/0.15/0.29/0.25)
BE | A2 | 87 | |
---|---|---|---|
RGB | 190 | 162 | 135 |
HSL | 29° | 29.73% | 63.73% |
HSB/HSV | 29° | 28.95% | 74.51% |
CMYK | 0.00% | 14.74% | 28.95% |
25.49% |
HEX | BE | A2 | 87 |
Decimal | 190 | 162 | 135 |
Binary | 10111110 | 10100010 | 10000111 |
Octal | 276 | 242 | 207 |
Examples of css and html codes for elements with #BEA287 color. Also use rgb(190,162,135) instead hex code.
.myTextColor { color: #BEA287; }
<p style="color:#BEA287">This sample text font color is #BEA287.</p>
This text font color is #BEA287.
.myBgColor { background-color: #BEA287; }
<div style="background-color:#BEA287">Inner text</div>
This div background color is #BEA287.
.myBorderColor { border: 1px solid #BEA287; }
<div style="border:3px solid #BEA287">Div</div>
This div border color is #BEA287.
.myOpacity80 { color: #BEA287; opacity: 0.8; }
<p style="color:#BEA287;opacity:0.8;">80%</p>
Text with #BEA287 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEA287;}
<p style="text-shadow: 3px 3px 1px #BEA287">Text here.</p>
This text has shadow with #BEA287 color.
.textShadow {text-shadow: 3px 3px 1px #BEA287, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEA287, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEA287 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEA287, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEA287, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEA287 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEA287; -webkit-box-shadow: 1px 1px 3px 2px #BEA287; box-shadow: 1px 1px 3px 2px #BEA287; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEA287; -webkit-box-shadow: 1px 1px 3px 2px #BEA287; box-shadow:1px 1px 3px 2px #BEA287;">
Div content here</div>
This text has color #BEA287 on black background.
This text has color #BEA287 on white background.
This text has black color on #BEA287 background.
This text has white color on #BEA287 background.