HEX: #C7AEDD
RGB: (199,174,221)
#C7AEDD contains red, green and blue colors in about the same proportion. Web safe color of #C7AEDD is #CC99CC (or #C9C).
#C7AEDD color RGB value is (199,174,221).
RGB: (199,174,221) (78%,68%,87%)
R 199 of 255 = 78%
G 174 of 255 = 68%
B 221 of 255 = 87%
R + G + B ~ 78%. #C7AEDD is quite light color.
R + G + B =
199 + 174 + 221 = 594 (100%)
R 199 of 594 ~ 33.5%
G 174 of 594 ~ 29.29%
B 221 of 594 ~ 37.21%
#C7AEDD color CMYK value is (10,21,0,13).
CMYK: (10,21,0,13) C10M21Y0K13 (10%,21%,0%,13%) (0.10/0.21/0.00/0.13)
C7 | AE | DD | |
---|---|---|---|
RGB | 199 | 174 | 221 |
HSL | 272° | 40.87% | 77.45% |
HSB/HSV | 272° | 21.27% | 86.67% |
CMYK | 9.95% | 21.27% | 0.00% |
13.33% |
HEX | C7 | AE | DD |
Decimal | 199 | 174 | 221 |
Binary | 11000111 | 10101110 | 11011101 |
Octal | 307 | 256 | 335 |
Examples of css and html codes for elements with #C7AEDD color. Also use rgb(199,174,221) instead hex code.
.myTextColor { color: #C7AEDD; }
<p style="color:#C7AEDD">This sample text font color is #C7AEDD.</p>
This text font color is #C7AEDD.
.myBgColor { background-color: #C7AEDD; }
<div style="background-color:#C7AEDD">Inner text</div>
This div background color is #C7AEDD.
.myBorderColor { border: 1px solid #C7AEDD; }
<div style="border:3px solid #C7AEDD">Div</div>
This div border color is #C7AEDD.
.myOpacity80 { color: #C7AEDD; opacity: 0.8; }
<p style="color:#C7AEDD;opacity:0.8;">80%</p>
Text with #C7AEDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7AEDD;}
<p style="text-shadow: 3px 3px 1px #C7AEDD">Text here.</p>
This text has shadow with #C7AEDD color.
.textShadow {text-shadow: 3px 3px 1px #C7AEDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7AEDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7AEDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7AEDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7AEDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7AEDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7AEDD; -webkit-box-shadow: 1px 1px 3px 2px #C7AEDD; box-shadow: 1px 1px 3px 2px #C7AEDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7AEDD; -webkit-box-shadow: 1px 1px 3px 2px #C7AEDD; box-shadow:1px 1px 3px 2px #C7AEDD;">
Div content here</div>
This text has color #C7AEDD on black background.
This text has color #C7AEDD on white background.
This text has black color on #C7AEDD background.
This text has white color on #C7AEDD background.