HEX: #BEACE3
RGB: (190,172,227)
#BEACE3 contains red, green and blue colors in about the same proportion. Web safe color of #BEACE3 is #CC99CC (or #C9C).
#BEACE3 color RGB value is (190,172,227).
RGB: (190,172,227) (75%,67%,89%)
R 190 of 255 = 75%
G 172 of 255 = 67%
B 227 of 255 = 89%
R + G + B ~ 77%. #BEACE3 is quite light color.
R + G + B =
190 + 172 + 227 = 589 (100%)
R 190 of 589 ~ 32.26%
G 172 of 589 ~ 29.2%
B 227 of 589 ~ 38.54%
#BEACE3 color CMYK value is (16,24,0,11).
CMYK: (16,24,0,11) C16M24Y0K11 (16%,24%,0%,11%) (0.16/0.24/0.00/0.11)
BE | AC | E3 | |
---|---|---|---|
RGB | 190 | 172 | 227 |
HSL | 260° | 49.55% | 78.24% |
HSB/HSV | 260° | 24.23% | 89.02% |
CMYK | 16.30% | 24.23% | 0.00% |
10.98% |
HEX | BE | AC | E3 |
Decimal | 190 | 172 | 227 |
Binary | 10111110 | 10101100 | 11100011 |
Octal | 276 | 254 | 343 |
Examples of css and html codes for elements with #BEACE3 color. Also use rgb(190,172,227) instead hex code.
.myTextColor { color: #BEACE3; }
<p style="color:#BEACE3">This sample text font color is #BEACE3.</p>
This text font color is #BEACE3.
.myBgColor { background-color: #BEACE3; }
<div style="background-color:#BEACE3">Inner text</div>
This div background color is #BEACE3.
.myBorderColor { border: 1px solid #BEACE3; }
<div style="border:3px solid #BEACE3">Div</div>
This div border color is #BEACE3.
.myOpacity80 { color: #BEACE3; opacity: 0.8; }
<p style="color:#BEACE3;opacity:0.8;">80%</p>
Text with #BEACE3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEACE3;}
<p style="text-shadow: 3px 3px 1px #BEACE3">Text here.</p>
This text has shadow with #BEACE3 color.
.textShadow {text-shadow: 3px 3px 1px #BEACE3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEACE3, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEACE3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEACE3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEACE3, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEACE3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEACE3; -webkit-box-shadow: 1px 1px 3px 2px #BEACE3; box-shadow: 1px 1px 3px 2px #BEACE3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEACE3; -webkit-box-shadow: 1px 1px 3px 2px #BEACE3; box-shadow:1px 1px 3px 2px #BEACE3;">
Div content here</div>
This text has color #BEACE3 on black background.
This text has color #BEACE3 on white background.
This text has black color on #BEACE3 background.
This text has white color on #BEACE3 background.