HEX: #F9FD9A
RGB: (249,253,154)
#F9FD9A contains mainly red and green colors. Web safe color of #F9FD9A is #FFFF99 (or #FF9).
#F9FD9A color RGB value is (249,253,154).
RGB: (249,253,154) (98%,99%,60%)
R 249 of 255 = 98%
G 253 of 255 = 99%
B 154 of 255 = 60%
R + G + B ~ 86%. #F9FD9A is light color.
R + G + B =
249 + 253 + 154 = 656 (100%)
R 249 of 656 ~ 37.96%
G 253 of 656 ~ 38.57%
B 154 of 656 ~ 23.48%
#F9FD9A color CMYK value is (2,0,39,1).
CMYK: (2,0,39,1) C2M0Y39K1 (2%,0%,39%,1%) (0.02/0.00/0.39/0.01)
F9 | FD | 9A | |
---|---|---|---|
RGB | 249 | 253 | 154 |
HSL | 62° | 96.12% | 79.80% |
HSB/HSV | 62° | 39.13% | 99.22% |
CMYK | 1.58% | 0.00% | 39.13% |
0.78% |
HEX | F9 | FD | 9A |
Decimal | 249 | 253 | 154 |
Binary | 11111001 | 11111101 | 10011010 |
Octal | 371 | 375 | 232 |
Examples of css and html codes for elements with #F9FD9A color. Also use rgb(249,253,154) instead hex code.
.myTextColor { color: #F9FD9A; }
<p style="color:#F9FD9A">This sample text font color is #F9FD9A.</p>
This text font color is #F9FD9A.
.myBgColor { background-color: #F9FD9A; }
<div style="background-color:#F9FD9A">Inner text</div>
This div background color is #F9FD9A.
.myBorderColor { border: 1px solid #F9FD9A; }
<div style="border:3px solid #F9FD9A">Div</div>
This div border color is #F9FD9A.
.myOpacity80 { color: #F9FD9A; opacity: 0.8; }
<p style="color:#F9FD9A;opacity:0.8;">80%</p>
Text with #F9FD9A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9FD9A;}
<p style="text-shadow: 3px 3px 1px #F9FD9A">Text here.</p>
This text has shadow with #F9FD9A color.
.textShadow {text-shadow: 3px 3px 1px #F9FD9A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9FD9A, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9FD9A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9FD9A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9FD9A, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9FD9A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9FD9A; -webkit-box-shadow: 1px 1px 3px 2px #F9FD9A; box-shadow: 1px 1px 3px 2px #F9FD9A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9FD9A; -webkit-box-shadow: 1px 1px 3px 2px #F9FD9A; box-shadow:1px 1px 3px 2px #F9FD9A;">
Div content here</div>
This text has color #F9FD9A on black background.
This text has color #F9FD9A on white background.
This text has black color on #F9FD9A background.
This text has white color on #F9FD9A background.