HEX: #E3B361
RGB: (227,179,97)
#E3B361 contains mainly red and green colors. Web safe color of #E3B361 is #CC9966 (or #C96).
#E3B361 color RGB value is (227,179,97).
RGB: (227,179,97) (89%,70%,38%)
R 227 of 255 = 89%
G 179 of 255 = 70%
B 97 of 255 = 38%
R + G + B ~ 66%. #E3B361 is quite light color.
R + G + B =
227 + 179 + 97 = 503 (100%)
R 227 of 503 ~ 45.13%
G 179 of 503 ~ 35.59%
B 97 of 503 ~ 19.28%
#E3B361 color CMYK value is (0,21,57,11).
CMYK: (0,21,57,11) C0M21Y57K11 (0%,21%,57%,11%) (0.00/0.21/0.57/0.11)
E3 | B3 | 61 | |
---|---|---|---|
RGB | 227 | 179 | 97 |
HSL | 38° | 69.89% | 63.53% |
HSB/HSV | 38° | 57.27% | 89.02% |
CMYK | 0.00% | 21.15% | 57.27% |
10.98% |
HEX | E3 | B3 | 61 |
Decimal | 227 | 179 | 97 |
Binary | 11100011 | 10110011 | 1100001 |
Octal | 343 | 263 | 141 |
Examples of css and html codes for elements with #E3B361 color. Also use rgb(227,179,97) instead hex code.
.myTextColor { color: #E3B361; }
<p style="color:#E3B361">This sample text font color is #E3B361.</p>
This text font color is #E3B361.
.myBgColor { background-color: #E3B361; }
<div style="background-color:#E3B361">Inner text</div>
This div background color is #E3B361.
.myBorderColor { border: 1px solid #E3B361; }
<div style="border:3px solid #E3B361">Div</div>
This div border color is #E3B361.
.myOpacity80 { color: #E3B361; opacity: 0.8; }
<p style="color:#E3B361;opacity:0.8;">80%</p>
Text with #E3B361 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3B361;}
<p style="text-shadow: 3px 3px 1px #E3B361">Text here.</p>
This text has shadow with #E3B361 color.
.textShadow {text-shadow: 3px 3px 1px #E3B361, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3B361, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3B361 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3B361, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3B361, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3B361 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3B361; -webkit-box-shadow: 1px 1px 3px 2px #E3B361; box-shadow: 1px 1px 3px 2px #E3B361; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3B361; -webkit-box-shadow: 1px 1px 3px 2px #E3B361; box-shadow:1px 1px 3px 2px #E3B361;">
Div content here</div>
This text has color #E3B361 on black background.
This text has color #E3B361 on white background.
This text has black color on #E3B361 background.
This text has white color on #E3B361 background.