HEX: #BEACCC
RGB: (190,172,204)
#BEACCC contains red, green and blue colors in about the same proportion. Web safe color of #BEACCC is #CC99CC (or #C9C).
#BEACCC color RGB value is (190,172,204).
RGB: (190,172,204) (75%,67%,80%)
R 190 of 255 = 75%
G 172 of 255 = 67%
B 204 of 255 = 80%
R + G + B ~ 74%. #BEACCC is quite light color.
R + G + B =
190 + 172 + 204 = 566 (100%)
R 190 of 566 ~ 33.57%
G 172 of 566 ~ 30.39%
B 204 of 566 ~ 36.04%
#BEACCC color CMYK value is (7,16,0,20).
CMYK: (7,16,0,20) C7M16Y0K20 (7%,16%,0%,20%) (0.07/0.16/0.00/0.20)
BE | AC | CC | |
---|---|---|---|
RGB | 190 | 172 | 204 |
HSL | 274° | 23.88% | 73.73% |
HSB/HSV | 274° | 15.69% | 80.00% |
CMYK | 6.86% | 15.69% | 0.00% |
20.00% |
HEX | BE | AC | CC |
Decimal | 190 | 172 | 204 |
Binary | 10111110 | 10101100 | 11001100 |
Octal | 276 | 254 | 314 |
Examples of css and html codes for elements with #BEACCC color. Also use rgb(190,172,204) instead hex code.
.myTextColor { color: #BEACCC; }
<p style="color:#BEACCC">This sample text font color is #BEACCC.</p>
This text font color is #BEACCC.
.myBgColor { background-color: #BEACCC; }
<div style="background-color:#BEACCC">Inner text</div>
This div background color is #BEACCC.
.myBorderColor { border: 1px solid #BEACCC; }
<div style="border:3px solid #BEACCC">Div</div>
This div border color is #BEACCC.
.myOpacity80 { color: #BEACCC; opacity: 0.8; }
<p style="color:#BEACCC;opacity:0.8;">80%</p>
Text with #BEACCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEACCC;}
<p style="text-shadow: 3px 3px 1px #BEACCC">Text here.</p>
This text has shadow with #BEACCC color.
.textShadow {text-shadow: 3px 3px 1px #BEACCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEACCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEACCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEACCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEACCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEACCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEACCC; -webkit-box-shadow: 1px 1px 3px 2px #BEACCC; box-shadow: 1px 1px 3px 2px #BEACCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEACCC; -webkit-box-shadow: 1px 1px 3px 2px #BEACCC; box-shadow:1px 1px 3px 2px #BEACCC;">
Div content here</div>
This text has color #BEACCC on black background.
This text has color #BEACCC on white background.
This text has black color on #BEACCC background.
This text has white color on #BEACCC background.