HEX: #AE6094
RGB: (174,96,148)
#AE6094 contains mainly red and blue colors. Web safe color of #AE6094 is #996699 (or #969).
#AE6094 color RGB value is (174,96,148).
RGB: (174,96,148) (68%,38%,58%)
R 174 of 255 = 68%
G 96 of 255 = 38%
B 148 of 255 = 58%
R + G + B ~ 55%. #AE6094 is middle color (not dark and not light).
R + G + B =
174 + 96 + 148 = 418 (100%)
R 174 of 418 ~ 41.63%
G 96 of 418 ~ 22.97%
B 148 of 418 ~ 35.41%
#AE6094 color CMYK value is (0,45,15,32).
CMYK: (0,45,15,32) C0M45Y15K32 (0%,45%,15%,32%) (0.00/0.45/0.15/0.32)
AE | 60 | 94 | |
---|---|---|---|
RGB | 174 | 96 | 148 |
HSL | 320° | 32.50% | 52.94% |
HSB/HSV | 320° | 44.83% | 68.24% |
CMYK | 0.00% | 44.83% | 14.94% |
31.76% |
HEX | AE | 60 | 94 |
Decimal | 174 | 96 | 148 |
Binary | 10101110 | 1100000 | 10010100 |
Octal | 256 | 140 | 224 |
Examples of css and html codes for elements with #AE6094 color. Also use rgb(174,96,148) instead hex code.
.myTextColor { color: #AE6094; }
<p style="color:#AE6094">This sample text font color is #AE6094.</p>
This text font color is #AE6094.
.myBgColor { background-color: #AE6094; }
<div style="background-color:#AE6094">Inner text</div>
This div background color is #AE6094.
.myBorderColor { border: 1px solid #AE6094; }
<div style="border:3px solid #AE6094">Div</div>
This div border color is #AE6094.
.myOpacity80 { color: #AE6094; opacity: 0.8; }
<p style="color:#AE6094;opacity:0.8;">80%</p>
Text with #AE6094 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE6094;}
<p style="text-shadow: 3px 3px 1px #AE6094">Text here.</p>
This text has shadow with #AE6094 color.
.textShadow {text-shadow: 3px 3px 1px #AE6094, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE6094, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE6094 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE6094, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE6094, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE6094 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE6094; -webkit-box-shadow: 1px 1px 3px 2px #AE6094; box-shadow: 1px 1px 3px 2px #AE6094; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE6094; -webkit-box-shadow: 1px 1px 3px 2px #AE6094; box-shadow:1px 1px 3px 2px #AE6094;">
Div content here</div>
This text has color #AE6094 on black background.
This text has color #AE6094 on white background.
This text has black color on #AE6094 background.
This text has white color on #AE6094 background.