HEX: #FAD197
RGB: (250,209,151)
#FAD197 contains mainly red and green colors. Web safe color of #FAD197 is #FFCC99 (or #FC9).
#FAD197 color RGB value is (250,209,151).
RGB: (250,209,151) (98%,82%,59%)
R 250 of 255 = 98%
G 209 of 255 = 82%
B 151 of 255 = 59%
R + G + B ~ 80%. #FAD197 is quite light color.
R + G + B =
250 + 209 + 151 = 610 (100%)
R 250 of 610 ~ 40.98%
G 209 of 610 ~ 34.26%
B 151 of 610 ~ 24.75%
#FAD197 color CMYK value is (0,16,40,2).
CMYK: (0,16,40,2) C0M16Y40K2 (0%,16%,40%,2%) (0.00/0.16/0.40/0.02)
FA | D1 | 97 | |
---|---|---|---|
RGB | 250 | 209 | 151 |
HSL | 35° | 90.83% | 78.63% |
HSB/HSV | 35° | 39.60% | 98.04% |
CMYK | 0.00% | 16.40% | 39.60% |
1.96% |
HEX | FA | D1 | 97 |
Decimal | 250 | 209 | 151 |
Binary | 11111010 | 11010001 | 10010111 |
Octal | 372 | 321 | 227 |
Examples of css and html codes for elements with #FAD197 color. Also use rgb(250,209,151) instead hex code.
.myTextColor { color: #FAD197; }
<p style="color:#FAD197">This sample text font color is #FAD197.</p>
This text font color is #FAD197.
.myBgColor { background-color: #FAD197; }
<div style="background-color:#FAD197">Inner text</div>
This div background color is #FAD197.
.myBorderColor { border: 1px solid #FAD197; }
<div style="border:3px solid #FAD197">Div</div>
This div border color is #FAD197.
.myOpacity80 { color: #FAD197; opacity: 0.8; }
<p style="color:#FAD197;opacity:0.8;">80%</p>
Text with #FAD197 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAD197;}
<p style="text-shadow: 3px 3px 1px #FAD197">Text here.</p>
This text has shadow with #FAD197 color.
.textShadow {text-shadow: 3px 3px 1px #FAD197, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAD197, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAD197 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAD197, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAD197, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAD197 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAD197; -webkit-box-shadow: 1px 1px 3px 2px #FAD197; box-shadow: 1px 1px 3px 2px #FAD197; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAD197; -webkit-box-shadow: 1px 1px 3px 2px #FAD197; box-shadow:1px 1px 3px 2px #FAD197;">
Div content here</div>
This text has color #FAD197 on black background.
This text has color #FAD197 on white background.
This text has black color on #FAD197 background.
This text has white color on #FAD197 background.