HEX: #BEC5CC
RGB: (190,197,204)
#BEC5CC contains red, green and blue colors in about the same proportion. Web safe color of #BEC5CC is #CCCCCC (or #CCC).
#BEC5CC color RGB value is (190,197,204).
RGB: (190,197,204) (75%,77%,80%)
R 190 of 255 = 75%
G 197 of 255 = 77%
B 204 of 255 = 80%
R + G + B ~ 77%. #BEC5CC is quite light color.
R + G + B =
190 + 197 + 204 = 591 (100%)
R 190 of 591 ~ 32.15%
G 197 of 591 ~ 33.33%
B 204 of 591 ~ 34.52%
#BEC5CC color CMYK value is (7,3,0,20).
CMYK: (7,3,0,20) C7M3Y0K20 (7%,3%,0%,20%) (0.07/0.03/0.00/0.20)
BE | C5 | CC | |
---|---|---|---|
RGB | 190 | 197 | 204 |
HSL | 210° | 12.07% | 77.25% |
HSB/HSV | 210° | 6.86% | 80.00% |
CMYK | 6.86% | 3.43% | 0.00% |
20.00% |
HEX | BE | C5 | CC |
Decimal | 190 | 197 | 204 |
Binary | 10111110 | 11000101 | 11001100 |
Octal | 276 | 305 | 314 |
Examples of css and html codes for elements with #BEC5CC color. Also use rgb(190,197,204) instead hex code.
.myTextColor { color: #BEC5CC; }
<p style="color:#BEC5CC">This sample text font color is #BEC5CC.</p>
This text font color is #BEC5CC.
.myBgColor { background-color: #BEC5CC; }
<div style="background-color:#BEC5CC">Inner text</div>
This div background color is #BEC5CC.
.myBorderColor { border: 1px solid #BEC5CC; }
<div style="border:3px solid #BEC5CC">Div</div>
This div border color is #BEC5CC.
.myOpacity80 { color: #BEC5CC; opacity: 0.8; }
<p style="color:#BEC5CC;opacity:0.8;">80%</p>
Text with #BEC5CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEC5CC;}
<p style="text-shadow: 3px 3px 1px #BEC5CC">Text here.</p>
This text has shadow with #BEC5CC color.
.textShadow {text-shadow: 3px 3px 1px #BEC5CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEC5CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEC5CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEC5CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEC5CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEC5CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEC5CC; -webkit-box-shadow: 1px 1px 3px 2px #BEC5CC; box-shadow: 1px 1px 3px 2px #BEC5CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEC5CC; -webkit-box-shadow: 1px 1px 3px 2px #BEC5CC; box-shadow:1px 1px 3px 2px #BEC5CC;">
Div content here</div>
This text has color #BEC5CC on black background.
This text has color #BEC5CC on white background.
This text has black color on #BEC5CC background.
This text has white color on #BEC5CC background.