HEX: #EDA928
RGB: (237,169,40)
#EDA928 contains mainly red color. Web safe color of #EDA928 is #FF9933 (or #F93).
#EDA928 color RGB value is (237,169,40).
RGB: (237,169,40) (93%,66%,16%)
R 237 of 255 = 93%
G 169 of 255 = 66%
B 40 of 255 = 16%
R + G + B ~ 58%. #EDA928 is middle color (not dark and not light).
R + G + B =
237 + 169 + 40 = 446 (100%)
R 237 of 446 ~ 53.14%
G 169 of 446 ~ 37.89%
B 40 of 446 ~ 8.97%
#EDA928 color CMYK value is (0,29,83,7).
CMYK: (0,29,83,7) C0M29Y83K7 (0%,29%,83%,7%) (0.00/0.29/0.83/0.07)
ED | A9 | 28 | |
---|---|---|---|
RGB | 237 | 169 | 40 |
HSL | 39° | 84.55% | 54.31% |
HSB/HSV | 39° | 83.12% | 92.94% |
CMYK | 0.00% | 28.69% | 83.12% |
7.06% |
HEX | ED | A9 | 28 |
Decimal | 237 | 169 | 40 |
Binary | 11101101 | 10101001 | 101000 |
Octal | 355 | 251 | 50 |
Examples of css and html codes for elements with #EDA928 color. Also use rgb(237,169,40) instead hex code.
.myTextColor { color: #EDA928; }
<p style="color:#EDA928">This sample text font color is #EDA928.</p>
This text font color is #EDA928.
.myBgColor { background-color: #EDA928; }
<div style="background-color:#EDA928">Inner text</div>
This div background color is #EDA928.
.myBorderColor { border: 1px solid #EDA928; }
<div style="border:3px solid #EDA928">Div</div>
This div border color is #EDA928.
.myOpacity80 { color: #EDA928; opacity: 0.8; }
<p style="color:#EDA928;opacity:0.8;">80%</p>
Text with #EDA928 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDA928;}
<p style="text-shadow: 3px 3px 1px #EDA928">Text here.</p>
This text has shadow with #EDA928 color.
.textShadow {text-shadow: 3px 3px 1px #EDA928, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDA928, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDA928 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDA928, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDA928, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDA928 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDA928; -webkit-box-shadow: 1px 1px 3px 2px #EDA928; box-shadow: 1px 1px 3px 2px #EDA928; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDA928; -webkit-box-shadow: 1px 1px 3px 2px #EDA928; box-shadow:1px 1px 3px 2px #EDA928;">
Div content here</div>
This text has color #EDA928 on black background.
This text has color #EDA928 on white background.
This text has black color on #EDA928 background.
This text has white color on #EDA928 background.