HEX: #AF62BD
RGB: (175,98,189)
#AF62BD contains mainly red and blue colors. Web safe color of #AF62BD is #9966CC (or #96C).
#AF62BD color RGB value is (175,98,189).
RGB: (175,98,189) (69%,38%,74%)
R 175 of 255 = 69%
G 98 of 255 = 38%
B 189 of 255 = 74%
R + G + B ~ 60%. #AF62BD is middle color (not dark and not light).
R + G + B =
175 + 98 + 189 = 462 (100%)
R 175 of 462 ~ 37.88%
G 98 of 462 ~ 21.21%
B 189 of 462 ~ 40.91%
#AF62BD color CMYK value is (7,48,0,26).
CMYK: (7,48,0,26) C7M48Y0K26 (7%,48%,0%,26%) (0.07/0.48/0.00/0.26)
AF | 62 | BD | |
---|---|---|---|
RGB | 175 | 98 | 189 |
HSL | 291° | 40.81% | 56.27% |
HSB/HSV | 291° | 48.15% | 74.12% |
CMYK | 7.41% | 48.15% | 0.00% |
25.88% |
HEX | AF | 62 | BD |
Decimal | 175 | 98 | 189 |
Binary | 10101111 | 1100010 | 10111101 |
Octal | 257 | 142 | 275 |
Examples of css and html codes for elements with #AF62BD color. Also use rgb(175,98,189) instead hex code.
.myTextColor { color: #AF62BD; }
<p style="color:#AF62BD">This sample text font color is #AF62BD.</p>
This text font color is #AF62BD.
.myBgColor { background-color: #AF62BD; }
<div style="background-color:#AF62BD">Inner text</div>
This div background color is #AF62BD.
.myBorderColor { border: 1px solid #AF62BD; }
<div style="border:3px solid #AF62BD">Div</div>
This div border color is #AF62BD.
.myOpacity80 { color: #AF62BD; opacity: 0.8; }
<p style="color:#AF62BD;opacity:0.8;">80%</p>
Text with #AF62BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AF62BD;}
<p style="text-shadow: 3px 3px 1px #AF62BD">Text here.</p>
This text has shadow with #AF62BD color.
.textShadow {text-shadow: 3px 3px 1px #AF62BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AF62BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #AF62BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AF62BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AF62BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #AF62BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AF62BD; -webkit-box-shadow: 1px 1px 3px 2px #AF62BD; box-shadow: 1px 1px 3px 2px #AF62BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AF62BD; -webkit-box-shadow: 1px 1px 3px 2px #AF62BD; box-shadow:1px 1px 3px 2px #AF62BD;">
Div content here</div>
This text has color #AF62BD on black background.
This text has color #AF62BD on white background.
This text has black color on #AF62BD background.
This text has white color on #AF62BD background.