HEX: #BEEADB
RGB: (190,234,219)
#BEEADB contains red, green and blue colors in about the same proportion. Web safe color of #BEEADB is #CCFFCC (or #CFC).
#BEEADB color RGB value is (190,234,219).
RGB: (190,234,219) (75%,92%,86%)
R 190 of 255 = 75%
G 234 of 255 = 92%
B 219 of 255 = 86%
R + G + B ~ 84%. #BEEADB is quite light color.
R + G + B =
190 + 234 + 219 = 643 (100%)
R 190 of 643 ~ 29.55%
G 234 of 643 ~ 36.39%
B 219 of 643 ~ 34.06%
#BEEADB color CMYK value is (19,0,6,8).
CMYK: (19,0,6,8) C19M0Y6K8 (19%,0%,6%,8%) (0.19/0.00/0.06/0.08)
BE | EA | DB | |
---|---|---|---|
RGB | 190 | 234 | 219 |
HSL | 160° | 51.16% | 83.14% |
HSB/HSV | 160° | 18.80% | 91.76% |
CMYK | 18.80% | 0.00% | 6.41% |
8.24% |
HEX | BE | EA | DB |
Decimal | 190 | 234 | 219 |
Binary | 10111110 | 11101010 | 11011011 |
Octal | 276 | 352 | 333 |
Examples of css and html codes for elements with #BEEADB color. Also use rgb(190,234,219) instead hex code.
.myTextColor { color: #BEEADB; }
<p style="color:#BEEADB">This sample text font color is #BEEADB.</p>
This text font color is #BEEADB.
.myBgColor { background-color: #BEEADB; }
<div style="background-color:#BEEADB">Inner text</div>
This div background color is #BEEADB.
.myBorderColor { border: 1px solid #BEEADB; }
<div style="border:3px solid #BEEADB">Div</div>
This div border color is #BEEADB.
.myOpacity80 { color: #BEEADB; opacity: 0.8; }
<p style="color:#BEEADB;opacity:0.8;">80%</p>
Text with #BEEADB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEEADB;}
<p style="text-shadow: 3px 3px 1px #BEEADB">Text here.</p>
This text has shadow with #BEEADB color.
.textShadow {text-shadow: 3px 3px 1px #BEEADB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEEADB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEEADB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEEADB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEEADB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEEADB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEEADB; -webkit-box-shadow: 1px 1px 3px 2px #BEEADB; box-shadow: 1px 1px 3px 2px #BEEADB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEEADB; -webkit-box-shadow: 1px 1px 3px 2px #BEEADB; box-shadow:1px 1px 3px 2px #BEEADB;">
Div content here</div>
This text has color #BEEADB on black background.
This text has color #BEEADB on white background.
This text has black color on #BEEADB background.
This text has white color on #BEEADB background.