HEX: #B490DC
RGB: (180,144,220)
#B490DC contains mainly red and blue colors. Web safe color of #B490DC is #CC99CC (or #C9C).
#B490DC color RGB value is (180,144,220).
RGB: (180,144,220) (71%,56%,86%)
R 180 of 255 = 71%
G 144 of 255 = 56%
B 220 of 255 = 86%
R + G + B ~ 71%. #B490DC is quite light color.
R + G + B =
180 + 144 + 220 = 544 (100%)
R 180 of 544 ~ 33.09%
G 144 of 544 ~ 26.47%
B 220 of 544 ~ 40.44%
#B490DC color CMYK value is (18,35,0,14).
CMYK: (18,35,0,14) C18M35Y0K14 (18%,35%,0%,14%) (0.18/0.35/0.00/0.14)
B4 | 90 | DC | |
---|---|---|---|
RGB | 180 | 144 | 220 |
HSL | 268° | 52.05% | 71.37% |
HSB/HSV | 268° | 34.55% | 86.27% |
CMYK | 18.18% | 34.55% | 0.00% |
13.73% |
HEX | B4 | 90 | DC |
Decimal | 180 | 144 | 220 |
Binary | 10110100 | 10010000 | 11011100 |
Octal | 264 | 220 | 334 |
Examples of css and html codes for elements with #B490DC color. Also use rgb(180,144,220) instead hex code.
.myTextColor { color: #B490DC; }
<p style="color:#B490DC">This sample text font color is #B490DC.</p>
This text font color is #B490DC.
.myBgColor { background-color: #B490DC; }
<div style="background-color:#B490DC">Inner text</div>
This div background color is #B490DC.
.myBorderColor { border: 1px solid #B490DC; }
<div style="border:3px solid #B490DC">Div</div>
This div border color is #B490DC.
.myOpacity80 { color: #B490DC; opacity: 0.8; }
<p style="color:#B490DC;opacity:0.8;">80%</p>
Text with #B490DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B490DC;}
<p style="text-shadow: 3px 3px 1px #B490DC">Text here.</p>
This text has shadow with #B490DC color.
.textShadow {text-shadow: 3px 3px 1px #B490DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B490DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B490DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B490DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B490DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B490DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B490DC; -webkit-box-shadow: 1px 1px 3px 2px #B490DC; box-shadow: 1px 1px 3px 2px #B490DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B490DC; -webkit-box-shadow: 1px 1px 3px 2px #B490DC; box-shadow:1px 1px 3px 2px #B490DC;">
Div content here</div>
This text has color #B490DC on black background.
This text has color #B490DC on white background.
This text has black color on #B490DC background.
This text has white color on #B490DC background.