HEX: #AE69B7
RGB: (174,105,183)
#AE69B7 contains mainly red and blue colors. Web safe color of #AE69B7 is #9966CC (or #96C).
#AE69B7 color RGB value is (174,105,183).
RGB: (174,105,183) (68%,41%,72%)
R 174 of 255 = 68%
G 105 of 255 = 41%
B 183 of 255 = 72%
R + G + B ~ 60%. #AE69B7 is middle color (not dark and not light).
R + G + B =
174 + 105 + 183 = 462 (100%)
R 174 of 462 ~ 37.66%
G 105 of 462 ~ 22.73%
B 183 of 462 ~ 39.61%
#AE69B7 color CMYK value is (5,43,0,28).
CMYK: (5,43,0,28) C5M43Y0K28 (5%,43%,0%,28%) (0.05/0.43/0.00/0.28)
AE | 69 | B7 | |
---|---|---|---|
RGB | 174 | 105 | 183 |
HSL | 293° | 35.14% | 56.47% |
HSB/HSV | 293° | 42.62% | 71.76% |
CMYK | 4.92% | 42.62% | 0.00% |
28.24% |
HEX | AE | 69 | B7 |
Decimal | 174 | 105 | 183 |
Binary | 10101110 | 1101001 | 10110111 |
Octal | 256 | 151 | 267 |
Examples of css and html codes for elements with #AE69B7 color. Also use rgb(174,105,183) instead hex code.
.myTextColor { color: #AE69B7; }
<p style="color:#AE69B7">This sample text font color is #AE69B7.</p>
This text font color is #AE69B7.
.myBgColor { background-color: #AE69B7; }
<div style="background-color:#AE69B7">Inner text</div>
This div background color is #AE69B7.
.myBorderColor { border: 1px solid #AE69B7; }
<div style="border:3px solid #AE69B7">Div</div>
This div border color is #AE69B7.
.myOpacity80 { color: #AE69B7; opacity: 0.8; }
<p style="color:#AE69B7;opacity:0.8;">80%</p>
Text with #AE69B7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE69B7;}
<p style="text-shadow: 3px 3px 1px #AE69B7">Text here.</p>
This text has shadow with #AE69B7 color.
.textShadow {text-shadow: 3px 3px 1px #AE69B7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE69B7, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE69B7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE69B7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE69B7, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE69B7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE69B7; -webkit-box-shadow: 1px 1px 3px 2px #AE69B7; box-shadow: 1px 1px 3px 2px #AE69B7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE69B7; -webkit-box-shadow: 1px 1px 3px 2px #AE69B7; box-shadow:1px 1px 3px 2px #AE69B7;">
Div content here</div>
This text has color #AE69B7 on black background.
This text has color #AE69B7 on white background.
This text has black color on #AE69B7 background.
This text has white color on #AE69B7 background.