HEX: #F675AF
RGB: (246,117,175)
#F675AF contains mainly red color. Web safe color of #F675AF is #FF6699 (or #F69).
#F675AF color RGB value is (246,117,175).
RGB: (246,117,175) (96%,46%,69%)
R 246 of 255 = 96%
G 117 of 255 = 46%
B 175 of 255 = 69%
R + G + B ~ 70%. #F675AF is quite light color.
R + G + B =
246 + 117 + 175 = 538 (100%)
R 246 of 538 ~ 45.72%
G 117 of 538 ~ 21.75%
B 175 of 538 ~ 32.53%
#F675AF color CMYK value is (0,52,29,4).
CMYK: (0,52,29,4) C0M52Y29K4 (0%,52%,29%,4%) (0.00/0.52/0.29/0.04)
F6 | 75 | AF | |
---|---|---|---|
RGB | 246 | 117 | 175 |
HSL | 333° | 87.76% | 71.18% |
HSB/HSV | 333° | 52.44% | 96.47% |
CMYK | 0.00% | 52.44% | 28.86% |
3.53% |
HEX | F6 | 75 | AF |
Decimal | 246 | 117 | 175 |
Binary | 11110110 | 1110101 | 10101111 |
Octal | 366 | 165 | 257 |
Examples of css and html codes for elements with #F675AF color. Also use rgb(246,117,175) instead hex code.
.myTextColor { color: #F675AF; }
<p style="color:#F675AF">This sample text font color is #F675AF.</p>
This text font color is #F675AF.
.myBgColor { background-color: #F675AF; }
<div style="background-color:#F675AF">Inner text</div>
This div background color is #F675AF.
.myBorderColor { border: 1px solid #F675AF; }
<div style="border:3px solid #F675AF">Div</div>
This div border color is #F675AF.
.myOpacity80 { color: #F675AF; opacity: 0.8; }
<p style="color:#F675AF;opacity:0.8;">80%</p>
Text with #F675AF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F675AF;}
<p style="text-shadow: 3px 3px 1px #F675AF">Text here.</p>
This text has shadow with #F675AF color.
.textShadow {text-shadow: 3px 3px 1px #F675AF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F675AF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F675AF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F675AF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F675AF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F675AF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F675AF; -webkit-box-shadow: 1px 1px 3px 2px #F675AF; box-shadow: 1px 1px 3px 2px #F675AF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F675AF; -webkit-box-shadow: 1px 1px 3px 2px #F675AF; box-shadow:1px 1px 3px 2px #F675AF;">
Div content here</div>
This text has color #F675AF on black background.
This text has color #F675AF on white background.
This text has black color on #F675AF background.
This text has white color on #F675AF background.