HEX: #C9ADEF
RGB: (201,173,239)
#C9ADEF contains mainly red and blue colors. Web safe color of #C9ADEF is #CC99FF (or #C9F).
#C9ADEF color RGB value is (201,173,239).
RGB: (201,173,239) (79%,68%,94%)
R 201 of 255 = 79%
G 173 of 255 = 68%
B 239 of 255 = 94%
R + G + B ~ 80%. #C9ADEF is quite light color.
R + G + B =
201 + 173 + 239 = 613 (100%)
R 201 of 613 ~ 32.79%
G 173 of 613 ~ 28.22%
B 239 of 613 ~ 38.99%
#C9ADEF color CMYK value is (16,28,0,6).
CMYK: (16,28,0,6) C16M28Y0K6 (16%,28%,0%,6%) (0.16/0.28/0.00/0.06)
C9 | AD | EF | |
---|---|---|---|
RGB | 201 | 173 | 239 |
HSL | 265° | 67.35% | 80.78% |
HSB/HSV | 265° | 27.62% | 93.73% |
CMYK | 15.90% | 27.62% | 0.00% |
6.27% |
HEX | C9 | AD | EF |
Decimal | 201 | 173 | 239 |
Binary | 11001001 | 10101101 | 11101111 |
Octal | 311 | 255 | 357 |
Examples of css and html codes for elements with #C9ADEF color. Also use rgb(201,173,239) instead hex code.
.myTextColor { color: #C9ADEF; }
<p style="color:#C9ADEF">This sample text font color is #C9ADEF.</p>
This text font color is #C9ADEF.
.myBgColor { background-color: #C9ADEF; }
<div style="background-color:#C9ADEF">Inner text</div>
This div background color is #C9ADEF.
.myBorderColor { border: 1px solid #C9ADEF; }
<div style="border:3px solid #C9ADEF">Div</div>
This div border color is #C9ADEF.
.myOpacity80 { color: #C9ADEF; opacity: 0.8; }
<p style="color:#C9ADEF;opacity:0.8;">80%</p>
Text with #C9ADEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9ADEF;}
<p style="text-shadow: 3px 3px 1px #C9ADEF">Text here.</p>
This text has shadow with #C9ADEF color.
.textShadow {text-shadow: 3px 3px 1px #C9ADEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9ADEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9ADEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9ADEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9ADEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9ADEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9ADEF; -webkit-box-shadow: 1px 1px 3px 2px #C9ADEF; box-shadow: 1px 1px 3px 2px #C9ADEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9ADEF; -webkit-box-shadow: 1px 1px 3px 2px #C9ADEF; box-shadow:1px 1px 3px 2px #C9ADEF;">
Div content here</div>
This text has color #C9ADEF on black background.
This text has color #C9ADEF on white background.
This text has black color on #C9ADEF background.
This text has white color on #C9ADEF background.