HEX: #F63461
RGB: (246,52,97)
#F63461 contains mainly red color. Web safe color of #F63461 is #FF3366 (or #F36).
#F63461 color RGB value is (246,52,97).
RGB: (246,52,97) (96%,20%,38%)
R 246 of 255 = 96%
G 52 of 255 = 20%
B 97 of 255 = 38%
R + G + B ~ 51%. #F63461 is middle color (not dark and not light).
R + G + B =
246 + 52 + 97 = 395 (100%)
R 246 of 395 ~ 62.28%
G 52 of 395 ~ 13.16%
B 97 of 395 ~ 24.56%
#F63461 color CMYK value is (0,79,61,4).
CMYK: (0,79,61,4) C0M79Y61K4 (0%,79%,61%,4%) (0.00/0.79/0.61/0.04)
F6 | 34 | 61 | |
---|---|---|---|
RGB | 246 | 52 | 97 |
HSL | 346° | 91.51% | 58.43% |
HSB/HSV | 346° | 78.86% | 96.47% |
CMYK | 0.00% | 78.86% | 60.57% |
3.53% |
HEX | F6 | 34 | 61 |
Decimal | 246 | 52 | 97 |
Binary | 11110110 | 110100 | 1100001 |
Octal | 366 | 64 | 141 |
Examples of css and html codes for elements with #F63461 color. Also use rgb(246,52,97) instead hex code.
.myTextColor { color: #F63461; }
<p style="color:#F63461">This sample text font color is #F63461.</p>
This text font color is #F63461.
.myBgColor { background-color: #F63461; }
<div style="background-color:#F63461">Inner text</div>
This div background color is #F63461.
.myBorderColor { border: 1px solid #F63461; }
<div style="border:3px solid #F63461">Div</div>
This div border color is #F63461.
.myOpacity80 { color: #F63461; opacity: 0.8; }
<p style="color:#F63461;opacity:0.8;">80%</p>
Text with #F63461 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F63461;}
<p style="text-shadow: 3px 3px 1px #F63461">Text here.</p>
This text has shadow with #F63461 color.
.textShadow {text-shadow: 3px 3px 1px #F63461, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F63461, 5px 5px 20px red">Text here.</p>
This text has shadow with #F63461 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F63461, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F63461, Direction=45, Strength=4)">Text</p>
This text has shadow with #F63461 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F63461; -webkit-box-shadow: 1px 1px 3px 2px #F63461; box-shadow: 1px 1px 3px 2px #F63461; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F63461; -webkit-box-shadow: 1px 1px 3px 2px #F63461; box-shadow:1px 1px 3px 2px #F63461;">
Div content here</div>
This text has color #F63461 on black background.
This text has color #F63461 on white background.
This text has black color on #F63461 background.
This text has white color on #F63461 background.