HEX: #AE5BB0
RGB: (174,91,176)
#AE5BB0 contains mainly red and blue colors. Web safe color of #AE5BB0 is #996699 (or #969).
#AE5BB0 color RGB value is (174,91,176).
RGB: (174,91,176) (68%,36%,69%)
R 174 of 255 = 68%
G 91 of 255 = 36%
B 176 of 255 = 69%
R + G + B ~ 58%. #AE5BB0 is middle color (not dark and not light).
R + G + B =
174 + 91 + 176 = 441 (100%)
R 174 of 441 ~ 39.46%
G 91 of 441 ~ 20.63%
B 176 of 441 ~ 39.91%
#AE5BB0 color CMYK value is (1,48,0,31).
CMYK: (1,48,0,31) C1M48Y0K31 (1%,48%,0%,31%) (0.01/0.48/0.00/0.31)
AE | 5B | B0 | |
---|---|---|---|
RGB | 174 | 91 | 176 |
HSL | 299° | 34.98% | 52.35% |
HSB/HSV | 299° | 48.30% | 69.02% |
CMYK | 1.14% | 48.30% | 0.00% |
30.98% |
HEX | AE | 5B | B0 |
Decimal | 174 | 91 | 176 |
Binary | 10101110 | 1011011 | 10110000 |
Octal | 256 | 133 | 260 |
Examples of css and html codes for elements with #AE5BB0 color. Also use rgb(174,91,176) instead hex code.
.myTextColor { color: #AE5BB0; }
<p style="color:#AE5BB0">This sample text font color is #AE5BB0.</p>
This text font color is #AE5BB0.
.myBgColor { background-color: #AE5BB0; }
<div style="background-color:#AE5BB0">Inner text</div>
This div background color is #AE5BB0.
.myBorderColor { border: 1px solid #AE5BB0; }
<div style="border:3px solid #AE5BB0">Div</div>
This div border color is #AE5BB0.
.myOpacity80 { color: #AE5BB0; opacity: 0.8; }
<p style="color:#AE5BB0;opacity:0.8;">80%</p>
Text with #AE5BB0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE5BB0;}
<p style="text-shadow: 3px 3px 1px #AE5BB0">Text here.</p>
This text has shadow with #AE5BB0 color.
.textShadow {text-shadow: 3px 3px 1px #AE5BB0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE5BB0, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE5BB0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE5BB0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE5BB0, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE5BB0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE5BB0; -webkit-box-shadow: 1px 1px 3px 2px #AE5BB0; box-shadow: 1px 1px 3px 2px #AE5BB0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE5BB0; -webkit-box-shadow: 1px 1px 3px 2px #AE5BB0; box-shadow:1px 1px 3px 2px #AE5BB0;">
Div content here</div>
This text has color #AE5BB0 on black background.
This text has color #AE5BB0 on white background.
This text has black color on #AE5BB0 background.
This text has white color on #AE5BB0 background.