HEX: #F682D1
RGB: (246,130,209)
#F682D1 contains mainly red and blue colors. Web safe color of #F682D1 is #FF99CC (or #F9C).
#F682D1 color RGB value is (246,130,209).
RGB: (246,130,209) (96%,51%,82%)
R 246 of 255 = 96%
G 130 of 255 = 51%
B 209 of 255 = 82%
R + G + B ~ 76%. #F682D1 is quite light color.
R + G + B =
246 + 130 + 209 = 585 (100%)
R 246 of 585 ~ 42.05%
G 130 of 585 ~ 22.22%
B 209 of 585 ~ 35.73%
#F682D1 color CMYK value is (0,47,15,4).
CMYK: (0,47,15,4) C0M47Y15K4 (0%,47%,15%,4%) (0.00/0.47/0.15/0.04)
F6 | 82 | D1 | |
---|---|---|---|
RGB | 246 | 130 | 209 |
HSL | 319° | 86.57% | 73.73% |
HSB/HSV | 319° | 47.15% | 96.47% |
CMYK | 0.00% | 47.15% | 15.04% |
3.53% |
HEX | F6 | 82 | D1 |
Decimal | 246 | 130 | 209 |
Binary | 11110110 | 10000010 | 11010001 |
Octal | 366 | 202 | 321 |
Examples of css and html codes for elements with #F682D1 color. Also use rgb(246,130,209) instead hex code.
.myTextColor { color: #F682D1; }
<p style="color:#F682D1">This sample text font color is #F682D1.</p>
This text font color is #F682D1.
.myBgColor { background-color: #F682D1; }
<div style="background-color:#F682D1">Inner text</div>
This div background color is #F682D1.
.myBorderColor { border: 1px solid #F682D1; }
<div style="border:3px solid #F682D1">Div</div>
This div border color is #F682D1.
.myOpacity80 { color: #F682D1; opacity: 0.8; }
<p style="color:#F682D1;opacity:0.8;">80%</p>
Text with #F682D1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F682D1;}
<p style="text-shadow: 3px 3px 1px #F682D1">Text here.</p>
This text has shadow with #F682D1 color.
.textShadow {text-shadow: 3px 3px 1px #F682D1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F682D1, 5px 5px 20px red">Text here.</p>
This text has shadow with #F682D1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F682D1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F682D1, Direction=45, Strength=4)">Text</p>
This text has shadow with #F682D1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F682D1; -webkit-box-shadow: 1px 1px 3px 2px #F682D1; box-shadow: 1px 1px 3px 2px #F682D1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F682D1; -webkit-box-shadow: 1px 1px 3px 2px #F682D1; box-shadow:1px 1px 3px 2px #F682D1;">
Div content here</div>
This text has color #F682D1 on black background.
This text has color #F682D1 on white background.
This text has black color on #F682D1 background.
This text has white color on #F682D1 background.