HEX: #F6D4AF
RGB: (246,212,175)
#F6D4AF contains mainly red and green colors. Web safe color of #F6D4AF is #FFCC99 (or #FC9).
#F6D4AF color RGB value is (246,212,175).
RGB: (246,212,175) (96%,83%,69%)
R 246 of 255 = 96%
G 212 of 255 = 83%
B 175 of 255 = 69%
R + G + B ~ 83%. #F6D4AF is quite light color.
R + G + B =
246 + 212 + 175 = 633 (100%)
R 246 of 633 ~ 38.86%
G 212 of 633 ~ 33.49%
B 175 of 633 ~ 27.65%
#F6D4AF color CMYK value is (0,14,29,4).
CMYK: (0,14,29,4) C0M14Y29K4 (0%,14%,29%,4%) (0.00/0.14/0.29/0.04)
F6 | D4 | AF | |
---|---|---|---|
RGB | 246 | 212 | 175 |
HSL | 31° | 79.78% | 82.55% |
HSB/HSV | 31° | 28.86% | 96.47% |
CMYK | 0.00% | 13.82% | 28.86% |
3.53% |
HEX | F6 | D4 | AF |
Decimal | 246 | 212 | 175 |
Binary | 11110110 | 11010100 | 10101111 |
Octal | 366 | 324 | 257 |
Examples of css and html codes for elements with #F6D4AF color. Also use rgb(246,212,175) instead hex code.
.myTextColor { color: #F6D4AF; }
<p style="color:#F6D4AF">This sample text font color is #F6D4AF.</p>
This text font color is #F6D4AF.
.myBgColor { background-color: #F6D4AF; }
<div style="background-color:#F6D4AF">Inner text</div>
This div background color is #F6D4AF.
.myBorderColor { border: 1px solid #F6D4AF; }
<div style="border:3px solid #F6D4AF">Div</div>
This div border color is #F6D4AF.
.myOpacity80 { color: #F6D4AF; opacity: 0.8; }
<p style="color:#F6D4AF;opacity:0.8;">80%</p>
Text with #F6D4AF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6D4AF;}
<p style="text-shadow: 3px 3px 1px #F6D4AF">Text here.</p>
This text has shadow with #F6D4AF color.
.textShadow {text-shadow: 3px 3px 1px #F6D4AF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6D4AF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6D4AF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6D4AF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6D4AF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6D4AF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6D4AF; -webkit-box-shadow: 1px 1px 3px 2px #F6D4AF; box-shadow: 1px 1px 3px 2px #F6D4AF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6D4AF; -webkit-box-shadow: 1px 1px 3px 2px #F6D4AF; box-shadow:1px 1px 3px 2px #F6D4AF;">
Div content here</div>
This text has color #F6D4AF on black background.
This text has color #F6D4AF on white background.
This text has black color on #F6D4AF background.
This text has white color on #F6D4AF background.