HEX: #E3CA6B
RGB: (227,202,107)
#E3CA6B contains mainly red and green colors. Web safe color of #E3CA6B is #CCCC66 (or #CC6).
#E3CA6B color RGB value is (227,202,107).
RGB: (227,202,107) (89%,79%,42%)
R 227 of 255 = 89%
G 202 of 255 = 79%
B 107 of 255 = 42%
R + G + B ~ 70%. #E3CA6B is quite light color.
R + G + B =
227 + 202 + 107 = 536 (100%)
R 227 of 536 ~ 42.35%
G 202 of 536 ~ 37.69%
B 107 of 536 ~ 19.96%
#E3CA6B color CMYK value is (0,11,53,11).
CMYK: (0,11,53,11) C0M11Y53K11 (0%,11%,53%,11%) (0.00/0.11/0.53/0.11)
E3 | CA | 6B | |
---|---|---|---|
RGB | 227 | 202 | 107 |
HSL | 48° | 68.18% | 65.49% |
HSB/HSV | 48° | 52.86% | 89.02% |
CMYK | 0.00% | 11.01% | 52.86% |
10.98% |
HEX | E3 | CA | 6B |
Decimal | 227 | 202 | 107 |
Binary | 11100011 | 11001010 | 1101011 |
Octal | 343 | 312 | 153 |
Examples of css and html codes for elements with #E3CA6B color. Also use rgb(227,202,107) instead hex code.
.myTextColor { color: #E3CA6B; }
<p style="color:#E3CA6B">This sample text font color is #E3CA6B.</p>
This text font color is #E3CA6B.
.myBgColor { background-color: #E3CA6B; }
<div style="background-color:#E3CA6B">Inner text</div>
This div background color is #E3CA6B.
.myBorderColor { border: 1px solid #E3CA6B; }
<div style="border:3px solid #E3CA6B">Div</div>
This div border color is #E3CA6B.
.myOpacity80 { color: #E3CA6B; opacity: 0.8; }
<p style="color:#E3CA6B;opacity:0.8;">80%</p>
Text with #E3CA6B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3CA6B;}
<p style="text-shadow: 3px 3px 1px #E3CA6B">Text here.</p>
This text has shadow with #E3CA6B color.
.textShadow {text-shadow: 3px 3px 1px #E3CA6B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3CA6B, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3CA6B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3CA6B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3CA6B, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3CA6B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3CA6B; -webkit-box-shadow: 1px 1px 3px 2px #E3CA6B; box-shadow: 1px 1px 3px 2px #E3CA6B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3CA6B; -webkit-box-shadow: 1px 1px 3px 2px #E3CA6B; box-shadow:1px 1px 3px 2px #E3CA6B;">
Div content here</div>
This text has color #E3CA6B on black background.
This text has color #E3CA6B on white background.
This text has black color on #E3CA6B background.
This text has white color on #E3CA6B background.