HEX: #BEC5DA
RGB: (190,197,218)
#BEC5DA contains red, green and blue colors in about the same proportion. Web safe color of #BEC5DA is #CCCCCC (or #CCC).
#BEC5DA color RGB value is (190,197,218).
RGB: (190,197,218) (75%,77%,85%)
R 190 of 255 = 75%
G 197 of 255 = 77%
B 218 of 255 = 85%
R + G + B ~ 79%. #BEC5DA is quite light color.
R + G + B =
190 + 197 + 218 = 605 (100%)
R 190 of 605 ~ 31.4%
G 197 of 605 ~ 32.56%
B 218 of 605 ~ 36.03%
#BEC5DA color CMYK value is (13,10,0,15).
CMYK: (13,10,0,15) C13M10Y0K15 (13%,10%,0%,15%) (0.13/0.10/0.00/0.15)
BE | C5 | DA | |
---|---|---|---|
RGB | 190 | 197 | 218 |
HSL | 225° | 27.45% | 80.00% |
HSB/HSV | 225° | 12.84% | 85.49% |
CMYK | 12.84% | 9.63% | 0.00% |
14.51% |
HEX | BE | C5 | DA |
Decimal | 190 | 197 | 218 |
Binary | 10111110 | 11000101 | 11011010 |
Octal | 276 | 305 | 332 |
Examples of css and html codes for elements with #BEC5DA color. Also use rgb(190,197,218) instead hex code.
.myTextColor { color: #BEC5DA; }
<p style="color:#BEC5DA">This sample text font color is #BEC5DA.</p>
This text font color is #BEC5DA.
.myBgColor { background-color: #BEC5DA; }
<div style="background-color:#BEC5DA">Inner text</div>
This div background color is #BEC5DA.
.myBorderColor { border: 1px solid #BEC5DA; }
<div style="border:3px solid #BEC5DA">Div</div>
This div border color is #BEC5DA.
.myOpacity80 { color: #BEC5DA; opacity: 0.8; }
<p style="color:#BEC5DA;opacity:0.8;">80%</p>
Text with #BEC5DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEC5DA;}
<p style="text-shadow: 3px 3px 1px #BEC5DA">Text here.</p>
This text has shadow with #BEC5DA color.
.textShadow {text-shadow: 3px 3px 1px #BEC5DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEC5DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEC5DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEC5DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEC5DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEC5DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEC5DA; -webkit-box-shadow: 1px 1px 3px 2px #BEC5DA; box-shadow: 1px 1px 3px 2px #BEC5DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEC5DA; -webkit-box-shadow: 1px 1px 3px 2px #BEC5DA; box-shadow:1px 1px 3px 2px #BEC5DA;">
Div content here</div>
This text has color #BEC5DA on black background.
This text has color #BEC5DA on white background.
This text has black color on #BEC5DA background.
This text has white color on #BEC5DA background.