HEX: #FFFA96
RGB: (255,250,150)
#FFFA96 contains mainly red and green colors. Web safe color of #FFFA96 is #FFFF99 (or #FF9).
#FFFA96 color RGB value is (255,250,150).
RGB: (255,250,150) (100%,98%,59%)
R 255 of 255 = 100%
G 250 of 255 = 98%
B 150 of 255 = 59%
R + G + B ~ 86%. #FFFA96 is light color.
R + G + B =
255 + 250 + 150 = 655 (100%)
R 255 of 655 ~ 38.93%
G 250 of 655 ~ 38.17%
B 150 of 655 ~ 22.9%
#FFFA96 color CMYK value is (0,2,41,0).
CMYK: (0,2,41,0) C0M2Y41K0 (0%,2%,41%,0%) (0.00/0.02/0.41/0.00)
FF | FA | 96 | |
---|---|---|---|
RGB | 255 | 250 | 150 |
HSL | 57° | 100.00% | 79.41% |
HSB/HSV | 57° | 41.18% | 100.00% |
CMYK | 0.00% | 1.96% | 41.18% |
0.00% |
HEX | FF | FA | 96 |
Decimal | 255 | 250 | 150 |
Binary | 11111111 | 11111010 | 10010110 |
Octal | 377 | 372 | 226 |
Examples of css and html codes for elements with #FFFA96 color. Also use rgb(255,250,150) instead hex code.
.myTextColor { color: #FFFA96; }
<p style="color:#FFFA96">This sample text font color is #FFFA96.</p>
This text font color is #FFFA96.
.myBgColor { background-color: #FFFA96; }
<div style="background-color:#FFFA96">Inner text</div>
This div background color is #FFFA96.
.myBorderColor { border: 1px solid #FFFA96; }
<div style="border:3px solid #FFFA96">Div</div>
This div border color is #FFFA96.
.myOpacity80 { color: #FFFA96; opacity: 0.8; }
<p style="color:#FFFA96;opacity:0.8;">80%</p>
Text with #FFFA96 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFFA96;}
<p style="text-shadow: 3px 3px 1px #FFFA96">Text here.</p>
This text has shadow with #FFFA96 color.
.textShadow {text-shadow: 3px 3px 1px #FFFA96, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFFA96, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFFA96 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFFA96, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFFA96, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFFA96 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFFA96; -webkit-box-shadow: 1px 1px 3px 2px #FFFA96; box-shadow: 1px 1px 3px 2px #FFFA96; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFFA96; -webkit-box-shadow: 1px 1px 3px 2px #FFFA96; box-shadow:1px 1px 3px 2px #FFFA96;">
Div content here</div>
This text has color #FFFA96 on black background.
This text has color #FFFA96 on white background.
This text has black color on #FFFA96 background.
This text has white color on #FFFA96 background.