HEX: #AE749B
RGB: (174,116,155)
#AE749B contains red, green and blue colors in about the same proportion. Web safe color of #AE749B is #996699 (or #969).
#AE749B color RGB value is (174,116,155).
RGB: (174,116,155) (68%,45%,61%)
R 174 of 255 = 68%
G 116 of 255 = 45%
B 155 of 255 = 61%
R + G + B ~ 58%. #AE749B is middle color (not dark and not light).
R + G + B =
174 + 116 + 155 = 445 (100%)
R 174 of 445 ~ 39.1%
G 116 of 445 ~ 26.07%
B 155 of 445 ~ 34.83%
#AE749B color CMYK value is (0,33,11,32).
CMYK: (0,33,11,32) C0M33Y11K32 (0%,33%,11%,32%) (0.00/0.33/0.11/0.32)
AE | 74 | 9B | |
---|---|---|---|
RGB | 174 | 116 | 155 |
HSL | 320° | 26.36% | 56.86% |
HSB/HSV | 320° | 33.33% | 68.24% |
CMYK | 0.00% | 33.33% | 10.92% |
31.76% |
HEX | AE | 74 | 9B |
Decimal | 174 | 116 | 155 |
Binary | 10101110 | 1110100 | 10011011 |
Octal | 256 | 164 | 233 |
Examples of css and html codes for elements with #AE749B color. Also use rgb(174,116,155) instead hex code.
.myTextColor { color: #AE749B; }
<p style="color:#AE749B">This sample text font color is #AE749B.</p>
This text font color is #AE749B.
.myBgColor { background-color: #AE749B; }
<div style="background-color:#AE749B">Inner text</div>
This div background color is #AE749B.
.myBorderColor { border: 1px solid #AE749B; }
<div style="border:3px solid #AE749B">Div</div>
This div border color is #AE749B.
.myOpacity80 { color: #AE749B; opacity: 0.8; }
<p style="color:#AE749B;opacity:0.8;">80%</p>
Text with #AE749B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE749B;}
<p style="text-shadow: 3px 3px 1px #AE749B">Text here.</p>
This text has shadow with #AE749B color.
.textShadow {text-shadow: 3px 3px 1px #AE749B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE749B, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE749B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE749B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE749B, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE749B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE749B; -webkit-box-shadow: 1px 1px 3px 2px #AE749B; box-shadow: 1px 1px 3px 2px #AE749B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE749B; -webkit-box-shadow: 1px 1px 3px 2px #AE749B; box-shadow:1px 1px 3px 2px #AE749B;">
Div content here</div>
This text has color #AE749B on black background.
This text has color #AE749B on white background.
This text has black color on #AE749B background.
This text has white color on #AE749B background.