HEX: #BEF9AA
RGB: (190,249,170)
#BEF9AA contains mainly red and green colors. Web safe color of #BEF9AA is #CCFF99 (or #CF9).
#BEF9AA color RGB value is (190,249,170).
RGB: (190,249,170) (75%,98%,67%)
R 190 of 255 = 75%
G 249 of 255 = 98%
B 170 of 255 = 67%
R + G + B ~ 80%. #BEF9AA is quite light color.
R + G + B =
190 + 249 + 170 = 609 (100%)
R 190 of 609 ~ 31.2%
G 249 of 609 ~ 40.89%
B 170 of 609 ~ 27.91%
#BEF9AA color CMYK value is (24,0,32,2).
CMYK: (24,0,32,2) C24M0Y32K2 (24%,0%,32%,2%) (0.24/0.00/0.32/0.02)
BE | F9 | AA | |
---|---|---|---|
RGB | 190 | 249 | 170 |
HSL | 105° | 86.81% | 82.16% |
HSB/HSV | 105° | 31.73% | 97.65% |
CMYK | 23.69% | 0.00% | 31.73% |
2.35% |
HEX | BE | F9 | AA |
Decimal | 190 | 249 | 170 |
Binary | 10111110 | 11111001 | 10101010 |
Octal | 276 | 371 | 252 |
Examples of css and html codes for elements with #BEF9AA color. Also use rgb(190,249,170) instead hex code.
.myTextColor { color: #BEF9AA; }
<p style="color:#BEF9AA">This sample text font color is #BEF9AA.</p>
This text font color is #BEF9AA.
.myBgColor { background-color: #BEF9AA; }
<div style="background-color:#BEF9AA">Inner text</div>
This div background color is #BEF9AA.
.myBorderColor { border: 1px solid #BEF9AA; }
<div style="border:3px solid #BEF9AA">Div</div>
This div border color is #BEF9AA.
.myOpacity80 { color: #BEF9AA; opacity: 0.8; }
<p style="color:#BEF9AA;opacity:0.8;">80%</p>
Text with #BEF9AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEF9AA;}
<p style="text-shadow: 3px 3px 1px #BEF9AA">Text here.</p>
This text has shadow with #BEF9AA color.
.textShadow {text-shadow: 3px 3px 1px #BEF9AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEF9AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEF9AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEF9AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEF9AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEF9AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEF9AA; -webkit-box-shadow: 1px 1px 3px 2px #BEF9AA; box-shadow: 1px 1px 3px 2px #BEF9AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEF9AA; -webkit-box-shadow: 1px 1px 3px 2px #BEF9AA; box-shadow:1px 1px 3px 2px #BEF9AA;">
Div content here</div>
This text has color #BEF9AA on black background.
This text has color #BEF9AA on white background.
This text has black color on #BEF9AA background.
This text has white color on #BEF9AA background.