Color Formats
.colors {
color: red; /* Named */
color: #ff0000; /* Hex */
color: rgb(255,0,0); /* RGB */
color: rgba(255,0,0,0.5); /* RGBA */
color: hsl(0,100%,50%); /* HSL */
color: hsla(0,100%,50%,0.5); /* HSLA */
}
Different CSS color formats
Backgrounds
.backgrounds {
background-color: #f0f0f0;
background-image: url('image.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
background: #f0f0f0 url('image.jpg') no-repeat center/cover;
}
CSS background properties