HEX: #F6B393
RGB: (246,179,147)
#F6B393 contains mainly red color. Web safe color of #F6B393 is #FF9999 (or #F99).
#F6B393 color RGB value is (246,179,147).
RGB: (246,179,147) (96%,70%,58%)
R 246 of 255 = 96%
G 179 of 255 = 70%
B 147 of 255 = 58%
R + G + B ~ 75%. #F6B393 is quite light color.
R + G + B =
246 + 179 + 147 = 572 (100%)
R 246 of 572 ~ 43.01%
G 179 of 572 ~ 31.29%
B 147 of 572 ~ 25.7%
#F6B393 color CMYK value is (0,27,40,4).
CMYK: (0,27,40,4) C0M27Y40K4 (0%,27%,40%,4%) (0.00/0.27/0.40/0.04)
F6 | B3 | 93 | |
---|---|---|---|
RGB | 246 | 179 | 147 |
HSL | 19° | 84.62% | 77.06% |
HSB/HSV | 19° | 40.24% | 96.47% |
CMYK | 0.00% | 27.24% | 40.24% |
3.53% |
HEX | F6 | B3 | 93 |
Decimal | 246 | 179 | 147 |
Binary | 11110110 | 10110011 | 10010011 |
Octal | 366 | 263 | 223 |
Examples of css and html codes for elements with #F6B393 color. Also use rgb(246,179,147) instead hex code.
.myTextColor { color: #F6B393; }
<p style="color:#F6B393">This sample text font color is #F6B393.</p>
This text font color is #F6B393.
.myBgColor { background-color: #F6B393; }
<div style="background-color:#F6B393">Inner text</div>
This div background color is #F6B393.
.myBorderColor { border: 1px solid #F6B393; }
<div style="border:3px solid #F6B393">Div</div>
This div border color is #F6B393.
.myOpacity80 { color: #F6B393; opacity: 0.8; }
<p style="color:#F6B393;opacity:0.8;">80%</p>
Text with #F6B393 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6B393;}
<p style="text-shadow: 3px 3px 1px #F6B393">Text here.</p>
This text has shadow with #F6B393 color.
.textShadow {text-shadow: 3px 3px 1px #F6B393, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6B393, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6B393 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6B393, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6B393, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6B393 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6B393; -webkit-box-shadow: 1px 1px 3px 2px #F6B393; box-shadow: 1px 1px 3px 2px #F6B393; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6B393; -webkit-box-shadow: 1px 1px 3px 2px #F6B393; box-shadow:1px 1px 3px 2px #F6B393;">
Div content here</div>
This text has color #F6B393 on black background.
This text has color #F6B393 on white background.
This text has black color on #F6B393 background.
This text has white color on #F6B393 background.