HEX: #F3E980
RGB: (243,233,128)
#F3E980 contains mainly red and green colors. Web safe color of #F3E980 is #FFFF66 (or #FF6).
#F3E980 color RGB value is (243,233,128).
RGB: (243,233,128) (95%,91%,50%)
R 243 of 255 = 95%
G 233 of 255 = 91%
B 128 of 255 = 50%
R + G + B ~ 79%. #F3E980 is quite light color.
R + G + B =
243 + 233 + 128 = 604 (100%)
R 243 of 604 ~ 40.23%
G 233 of 604 ~ 38.58%
B 128 of 604 ~ 21.19%
#F3E980 color CMYK value is (0,4,47,5).
CMYK: (0,4,47,5) C0M4Y47K5 (0%,4%,47%,5%) (0.00/0.04/0.47/0.05)
F3 | E9 | 80 | |
---|---|---|---|
RGB | 243 | 233 | 128 |
HSL | 55° | 82.73% | 72.75% |
HSB/HSV | 55° | 47.33% | 95.29% |
CMYK | 0.00% | 4.12% | 47.33% |
4.71% |
HEX | F3 | E9 | 80 |
Decimal | 243 | 233 | 128 |
Binary | 11110011 | 11101001 | 10000000 |
Octal | 363 | 351 | 200 |
Examples of css and html codes for elements with #F3E980 color. Also use rgb(243,233,128) instead hex code.
.myTextColor { color: #F3E980; }
<p style="color:#F3E980">This sample text font color is #F3E980.</p>
This text font color is #F3E980.
.myBgColor { background-color: #F3E980; }
<div style="background-color:#F3E980">Inner text</div>
This div background color is #F3E980.
.myBorderColor { border: 1px solid #F3E980; }
<div style="border:3px solid #F3E980">Div</div>
This div border color is #F3E980.
.myOpacity80 { color: #F3E980; opacity: 0.8; }
<p style="color:#F3E980;opacity:0.8;">80%</p>
Text with #F3E980 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F3E980;}
<p style="text-shadow: 3px 3px 1px #F3E980">Text here.</p>
This text has shadow with #F3E980 color.
.textShadow {text-shadow: 3px 3px 1px #F3E980, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F3E980, 5px 5px 20px red">Text here.</p>
This text has shadow with #F3E980 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F3E980, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F3E980, Direction=45, Strength=4)">Text</p>
This text has shadow with #F3E980 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F3E980; -webkit-box-shadow: 1px 1px 3px 2px #F3E980; box-shadow: 1px 1px 3px 2px #F3E980; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F3E980; -webkit-box-shadow: 1px 1px 3px 2px #F3E980; box-shadow:1px 1px 3px 2px #F3E980;">
Div content here</div>
This text has color #F3E980 on black background.
This text has color #F3E980 on white background.
This text has black color on #F3E980 background.
This text has white color on #F3E980 background.