HEX: #F6B0AE
RGB: (246,176,174)
#F6B0AE contains mainly red color. Web safe color of #F6B0AE is #FF9999 (or #F99).
#F6B0AE color RGB value is (246,176,174).
RGB: (246,176,174) (96%,69%,68%)
R 246 of 255 = 96%
G 176 of 255 = 69%
B 174 of 255 = 68%
R + G + B ~ 78%. #F6B0AE is quite light color.
R + G + B =
246 + 176 + 174 = 596 (100%)
R 246 of 596 ~ 41.28%
G 176 of 596 ~ 29.53%
B 174 of 596 ~ 29.19%
#F6B0AE color CMYK value is (0,28,29,4).
CMYK: (0,28,29,4) C0M28Y29K4 (0%,28%,29%,4%) (0.00/0.28/0.29/0.04)
F6 | B0 | AE | |
---|---|---|---|
RGB | 246 | 176 | 174 |
HSL | 2° | 80.00% | 82.35% |
HSB/HSV | 2° | 29.27% | 96.47% |
CMYK | 0.00% | 28.46% | 29.27% |
3.53% |
HEX | F6 | B0 | AE |
Decimal | 246 | 176 | 174 |
Binary | 11110110 | 10110000 | 10101110 |
Octal | 366 | 260 | 256 |
Examples of css and html codes for elements with #F6B0AE color. Also use rgb(246,176,174) instead hex code.
.myTextColor { color: #F6B0AE; }
<p style="color:#F6B0AE">This sample text font color is #F6B0AE.</p>
This text font color is #F6B0AE.
.myBgColor { background-color: #F6B0AE; }
<div style="background-color:#F6B0AE">Inner text</div>
This div background color is #F6B0AE.
.myBorderColor { border: 1px solid #F6B0AE; }
<div style="border:3px solid #F6B0AE">Div</div>
This div border color is #F6B0AE.
.myOpacity80 { color: #F6B0AE; opacity: 0.8; }
<p style="color:#F6B0AE;opacity:0.8;">80%</p>
Text with #F6B0AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6B0AE;}
<p style="text-shadow: 3px 3px 1px #F6B0AE">Text here.</p>
This text has shadow with #F6B0AE color.
.textShadow {text-shadow: 3px 3px 1px #F6B0AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6B0AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6B0AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6B0AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6B0AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6B0AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6B0AE; -webkit-box-shadow: 1px 1px 3px 2px #F6B0AE; box-shadow: 1px 1px 3px 2px #F6B0AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6B0AE; -webkit-box-shadow: 1px 1px 3px 2px #F6B0AE; box-shadow:1px 1px 3px 2px #F6B0AE;">
Div content here</div>
This text has color #F6B0AE on black background.
This text has color #F6B0AE on white background.
This text has black color on #F6B0AE background.
This text has white color on #F6B0AE background.