HEX: #BE8560
RGB: (190,133,96)
#BE8560 contains mainly red and green colors. Web safe color of #BE8560 is #CC9966 (or #C96).
#BE8560 color RGB value is (190,133,96).
RGB: (190,133,96) (75%,52%,38%)
R 190 of 255 = 75%
G 133 of 255 = 52%
B 96 of 255 = 38%
R + G + B ~ 55%. #BE8560 is middle color (not dark and not light).
R + G + B =
190 + 133 + 96 = 419 (100%)
R 190 of 419 ~ 45.35%
G 133 of 419 ~ 31.74%
B 96 of 419 ~ 22.91%
#BE8560 color CMYK value is (0,30,49,25).
CMYK: (0,30,49,25) C0M30Y49K25 (0%,30%,49%,25%) (0.00/0.30/0.49/0.25)
BE | 85 | 60 | |
---|---|---|---|
RGB | 190 | 133 | 96 |
HSL | 24° | 41.96% | 56.08% |
HSB/HSV | 24° | 49.47% | 74.51% |
CMYK | 0.00% | 30.00% | 49.47% |
25.49% |
HEX | BE | 85 | 60 |
Decimal | 190 | 133 | 96 |
Binary | 10111110 | 10000101 | 1100000 |
Octal | 276 | 205 | 140 |
Examples of css and html codes for elements with #BE8560 color. Also use rgb(190,133,96) instead hex code.
.myTextColor { color: #BE8560; }
<p style="color:#BE8560">This sample text font color is #BE8560.</p>
This text font color is #BE8560.
.myBgColor { background-color: #BE8560; }
<div style="background-color:#BE8560">Inner text</div>
This div background color is #BE8560.
.myBorderColor { border: 1px solid #BE8560; }
<div style="border:3px solid #BE8560">Div</div>
This div border color is #BE8560.
.myOpacity80 { color: #BE8560; opacity: 0.8; }
<p style="color:#BE8560;opacity:0.8;">80%</p>
Text with #BE8560 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE8560;}
<p style="text-shadow: 3px 3px 1px #BE8560">Text here.</p>
This text has shadow with #BE8560 color.
.textShadow {text-shadow: 3px 3px 1px #BE8560, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE8560, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE8560 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE8560, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE8560, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE8560 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE8560; -webkit-box-shadow: 1px 1px 3px 2px #BE8560; box-shadow: 1px 1px 3px 2px #BE8560; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE8560; -webkit-box-shadow: 1px 1px 3px 2px #BE8560; box-shadow:1px 1px 3px 2px #BE8560;">
Div content here</div>
This text has color #BE8560 on black background.
This text has color #BE8560 on white background.
This text has black color on #BE8560 background.
This text has white color on #BE8560 background.