HEX: #B5ADDD
RGB: (181,173,221)
#B5ADDD contains red, green and blue colors in about the same proportion. Web safe color of #B5ADDD is #CC99CC (or #C9C).
#B5ADDD color RGB value is (181,173,221).
RGB: (181,173,221) (71%,68%,87%)
R 181 of 255 = 71%
G 173 of 255 = 68%
B 221 of 255 = 87%
R + G + B ~ 75%. #B5ADDD is quite light color.
R + G + B =
181 + 173 + 221 = 575 (100%)
R 181 of 575 ~ 31.48%
G 173 of 575 ~ 30.09%
B 221 of 575 ~ 38.43%
#B5ADDD color CMYK value is (18,22,0,13).
CMYK: (18,22,0,13) C18M22Y0K13 (18%,22%,0%,13%) (0.18/0.22/0.00/0.13)
B5 | AD | DD | |
---|---|---|---|
RGB | 181 | 173 | 221 |
HSL | 250° | 41.38% | 77.25% |
HSB/HSV | 250° | 21.72% | 86.67% |
CMYK | 18.10% | 21.72% | 0.00% |
13.33% |
HEX | B5 | AD | DD |
Decimal | 181 | 173 | 221 |
Binary | 10110101 | 10101101 | 11011101 |
Octal | 265 | 255 | 335 |
Examples of css and html codes for elements with #B5ADDD color. Also use rgb(181,173,221) instead hex code.
.myTextColor { color: #B5ADDD; }
<p style="color:#B5ADDD">This sample text font color is #B5ADDD.</p>
This text font color is #B5ADDD.
.myBgColor { background-color: #B5ADDD; }
<div style="background-color:#B5ADDD">Inner text</div>
This div background color is #B5ADDD.
.myBorderColor { border: 1px solid #B5ADDD; }
<div style="border:3px solid #B5ADDD">Div</div>
This div border color is #B5ADDD.
.myOpacity80 { color: #B5ADDD; opacity: 0.8; }
<p style="color:#B5ADDD;opacity:0.8;">80%</p>
Text with #B5ADDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5ADDD;}
<p style="text-shadow: 3px 3px 1px #B5ADDD">Text here.</p>
This text has shadow with #B5ADDD color.
.textShadow {text-shadow: 3px 3px 1px #B5ADDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5ADDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5ADDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5ADDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5ADDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5ADDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5ADDD; -webkit-box-shadow: 1px 1px 3px 2px #B5ADDD; box-shadow: 1px 1px 3px 2px #B5ADDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5ADDD; -webkit-box-shadow: 1px 1px 3px 2px #B5ADDD; box-shadow:1px 1px 3px 2px #B5ADDD;">
Div content here</div>
This text has color #B5ADDD on black background.
This text has color #B5ADDD on white background.
This text has black color on #B5ADDD background.
This text has white color on #B5ADDD background.