HEX: #9980BD
RGB: (153,128,189)
#9980BD contains mainly red and blue colors. Web safe color of #9980BD is #9966CC (or #96C).
#9980BD color RGB value is (153,128,189).
RGB: (153,128,189) (60%,50%,74%)
R 153 of 255 = 60%
G 128 of 255 = 50%
B 189 of 255 = 74%
R + G + B ~ 61%. #9980BD is quite light color.
R + G + B =
153 + 128 + 189 = 470 (100%)
R 153 of 470 ~ 32.55%
G 128 of 470 ~ 27.23%
B 189 of 470 ~ 40.21%
#9980BD color CMYK value is (19,32,0,26).
CMYK: (19,32,0,26) C19M32Y0K26 (19%,32%,0%,26%) (0.19/0.32/0.00/0.26)
99 | 80 | BD | |
---|---|---|---|
RGB | 153 | 128 | 189 |
HSL | 265° | 31.61% | 62.16% |
HSB/HSV | 265° | 32.28% | 74.12% |
CMYK | 19.05% | 32.28% | 0.00% |
25.88% |
HEX | 99 | 80 | BD |
Decimal | 153 | 128 | 189 |
Binary | 10011001 | 10000000 | 10111101 |
Octal | 231 | 200 | 275 |
Examples of css and html codes for elements with #9980BD color. Also use rgb(153,128,189) instead hex code.
.myTextColor { color: #9980BD; }
<p style="color:#9980BD">This sample text font color is #9980BD.</p>
This text font color is #9980BD.
.myBgColor { background-color: #9980BD; }
<div style="background-color:#9980BD">Inner text</div>
This div background color is #9980BD.
.myBorderColor { border: 1px solid #9980BD; }
<div style="border:3px solid #9980BD">Div</div>
This div border color is #9980BD.
.myOpacity80 { color: #9980BD; opacity: 0.8; }
<p style="color:#9980BD;opacity:0.8;">80%</p>
Text with #9980BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9980BD;}
<p style="text-shadow: 3px 3px 1px #9980BD">Text here.</p>
This text has shadow with #9980BD color.
.textShadow {text-shadow: 3px 3px 1px #9980BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9980BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #9980BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9980BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9980BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #9980BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9980BD; -webkit-box-shadow: 1px 1px 3px 2px #9980BD; box-shadow: 1px 1px 3px 2px #9980BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9980BD; -webkit-box-shadow: 1px 1px 3px 2px #9980BD; box-shadow:1px 1px 3px 2px #9980BD;">
Div content here</div>
This text has color #9980BD on black background.
This text has color #9980BD on white background.
This text has black color on #9980BD background.
This text has white color on #9980BD background.