HEX: #EBB469
RGB: (235,180,105)
#EBB469 contains mainly red and green colors. Web safe color of #EBB469 is #FFCC66 (or #FC6).
#EBB469 color RGB value is (235,180,105).
RGB: (235,180,105) (92%,71%,41%)
R 235 of 255 = 92%
G 180 of 255 = 71%
B 105 of 255 = 41%
R + G + B ~ 68%. #EBB469 is quite light color.
R + G + B =
235 + 180 + 105 = 520 (100%)
R 235 of 520 ~ 45.19%
G 180 of 520 ~ 34.62%
B 105 of 520 ~ 20.19%
#EBB469 color CMYK value is (0,23,55,8).
CMYK: (0,23,55,8) C0M23Y55K8 (0%,23%,55%,8%) (0.00/0.23/0.55/0.08)
EB | B4 | 69 | |
---|---|---|---|
RGB | 235 | 180 | 105 |
HSL | 35° | 76.47% | 66.67% |
HSB/HSV | 35° | 55.32% | 92.16% |
CMYK | 0.00% | 23.40% | 55.32% |
7.84% |
HEX | EB | B4 | 69 |
Decimal | 235 | 180 | 105 |
Binary | 11101011 | 10110100 | 1101001 |
Octal | 353 | 264 | 151 |
Examples of css and html codes for elements with #EBB469 color. Also use rgb(235,180,105) instead hex code.
.myTextColor { color: #EBB469; }
<p style="color:#EBB469">This sample text font color is #EBB469.</p>
This text font color is #EBB469.
.myBgColor { background-color: #EBB469; }
<div style="background-color:#EBB469">Inner text</div>
This div background color is #EBB469.
.myBorderColor { border: 1px solid #EBB469; }
<div style="border:3px solid #EBB469">Div</div>
This div border color is #EBB469.
.myOpacity80 { color: #EBB469; opacity: 0.8; }
<p style="color:#EBB469;opacity:0.8;">80%</p>
Text with #EBB469 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBB469;}
<p style="text-shadow: 3px 3px 1px #EBB469">Text here.</p>
This text has shadow with #EBB469 color.
.textShadow {text-shadow: 3px 3px 1px #EBB469, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBB469, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBB469 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBB469, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBB469, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBB469 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBB469; -webkit-box-shadow: 1px 1px 3px 2px #EBB469; box-shadow: 1px 1px 3px 2px #EBB469; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBB469; -webkit-box-shadow: 1px 1px 3px 2px #EBB469; box-shadow:1px 1px 3px 2px #EBB469;">
Div content here</div>
This text has color #EBB469 on black background.
This text has color #EBB469 on white background.
This text has black color on #EBB469 background.
This text has white color on #EBB469 background.