HEX: #BECAEF
RGB: (190,202,239)
#BECAEF contains red, green and blue colors in about the same proportion. Web safe color of #BECAEF is #CCCCFF (or #CCF).
#BECAEF color RGB value is (190,202,239).
RGB: (190,202,239) (75%,79%,94%)
R 190 of 255 = 75%
G 202 of 255 = 79%
B 239 of 255 = 94%
R + G + B ~ 83%. #BECAEF is quite light color.
R + G + B =
190 + 202 + 239 = 631 (100%)
R 190 of 631 ~ 30.11%
G 202 of 631 ~ 32.01%
B 239 of 631 ~ 37.88%
#BECAEF color CMYK value is (21,15,0,6).
CMYK: (21,15,0,6) C21M15Y0K6 (21%,15%,0%,6%) (0.21/0.15/0.00/0.06)
BE | CA | EF | |
---|---|---|---|
RGB | 190 | 202 | 239 |
HSL | 225° | 60.49% | 84.12% |
HSB/HSV | 225° | 20.50% | 93.73% |
CMYK | 20.50% | 15.48% | 0.00% |
6.27% |
HEX | BE | CA | EF |
Decimal | 190 | 202 | 239 |
Binary | 10111110 | 11001010 | 11101111 |
Octal | 276 | 312 | 357 |
Examples of css and html codes for elements with #BECAEF color. Also use rgb(190,202,239) instead hex code.
.myTextColor { color: #BECAEF; }
<p style="color:#BECAEF">This sample text font color is #BECAEF.</p>
This text font color is #BECAEF.
.myBgColor { background-color: #BECAEF; }
<div style="background-color:#BECAEF">Inner text</div>
This div background color is #BECAEF.
.myBorderColor { border: 1px solid #BECAEF; }
<div style="border:3px solid #BECAEF">Div</div>
This div border color is #BECAEF.
.myOpacity80 { color: #BECAEF; opacity: 0.8; }
<p style="color:#BECAEF;opacity:0.8;">80%</p>
Text with #BECAEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BECAEF;}
<p style="text-shadow: 3px 3px 1px #BECAEF">Text here.</p>
This text has shadow with #BECAEF color.
.textShadow {text-shadow: 3px 3px 1px #BECAEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BECAEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #BECAEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BECAEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BECAEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #BECAEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BECAEF; -webkit-box-shadow: 1px 1px 3px 2px #BECAEF; box-shadow: 1px 1px 3px 2px #BECAEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BECAEF; -webkit-box-shadow: 1px 1px 3px 2px #BECAEF; box-shadow:1px 1px 3px 2px #BECAEF;">
Div content here</div>
This text has color #BECAEF on black background.
This text has color #BECAEF on white background.
This text has black color on #BECAEF background.
This text has white color on #BECAEF background.