HEX: #F6ADD1
RGB: (246,173,209)
#F6ADD1 contains mainly red and blue colors. #F6ADD1 ‘ nin web güvenlik rengi #FF99CC (ya da #F9C) dir.
#F6ADD1 color RGB value is (246,173,209).
RGB: (246,173,209) (96%,68%,82%)
R 246 of 255 = 96%
G 173 of 255 = 68%
B 209 of 255 = 82%
R + G + B ~ 82%. #F6ADD1 is quite light color.
R + G + B =
246 + 173 + 209 = 628 (100%)
R 246 of 628 ~ 39.17%
G 173 of 628 ~ 27.55%
B 209 of 628 ~ 33.28%
#F6ADD1 rengi CMYK tonu (0,30,15,4).
CMYK: (0,30,15,4) C0M30Y15K4 (0%,30%,15%,4%) (0.00/0.30/0.15/0.04)
F6 | AD | D1 | |
---|---|---|---|
RGB | 246 | 173 | 209 |
HSL | 330° | 80.22% | 82.16% |
HSB/HSV | 330° | 29.67% | 96.47% |
CMYK | 0.00% | 29.67% | 15.04% |
3.53% |
HEX | F6 | AD | D1 |
Decimal | 246 | 173 | 209 |
Binary | 11110110 | 10101101 | 11010001 |
Octal | 366 | 255 | 321 |
Examples of css and html codes for elements with #F6ADD1 color. Also use rgb(246,173,209) instead hex code.
.myTextColor { color: #F6ADD1; }
<p style="color:#F6ADD1">This sample text font color is #F6ADD1.</p>
This text font color is #F6ADD1.
.myBgColor { background-color: #F6ADD1; }
<div style="background-color:#F6ADD1">Inner text</div>
This div background color is #F6ADD1.
.myBorderColor { border: 1px solid #F6ADD1; }
<div style="border:3px solid #F6ADD1">Div</div>
This div border color is #F6ADD1.
.myOpacity80 { color: #F6ADD1; opacity: 0.8; }
<p style="color:#F6ADD1;opacity:0.8;">80%</p>
Text with #F6ADD1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6ADD1;}
<p style="text-shadow: 3px 3px 1px #F6ADD1">Text here.</p>
This text has shadow with #F6ADD1 color.
.textShadow {text-shadow: 3px 3px 1px #F6ADD1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6ADD1, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6ADD1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6ADD1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6ADD1, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6ADD1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6ADD1; -webkit-box-shadow: 1px 1px 3px 2px #F6ADD1; box-shadow: 1px 1px 3px 2px #F6ADD1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6ADD1; -webkit-box-shadow: 1px 1px 3px 2px #F6ADD1; box-shadow:1px 1px 3px 2px #F6ADD1;">
Div content here</div>
This text has color #F6ADD1 on black background.
This text has color #F6ADD1 on white background.
This text has black color on #F6ADD1 background.
This text has white color on #F6ADD1 background.