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