Couleur d'arrière-plan CSS
body {
background-color: green;
}
Scratchy
body {
background-color: green;
}
#define RESET "\033[0m"
#define BLACK "\033[30m" /* Black */
#define RED "\033[31m" /* Red */
#define GREEN "\033[32m" /* Green */
#define YELLOW "\033[33m" /* Yellow */
#define BLUE "\033[34m" /* Blue */
#define MAGENTA "\033[35m" /* Magenta */
#define CYAN "\033[36m" /* Cyan */
#define WHITE "\033[37m" /* White */
#define BOLDBLACK "\033[1m\033[30m" /* Bold Black */
#selector{
color:lightgrey;
}
.YourClass {
color: #ff0000;
}
/* use color: ;
it can be: */
color: red; /*color name(1)*/
color: rgb(100, 50, 30); /*RGB value(2)*/
color: #122120; /*HAX value(3)*/
color: #fff;
color: hsl(120, 55%, 20%) /*HUE value(4)*/
/*(2)and(3) are the most recommended*/
/* all color are same */
color: rgb(255, 99, 71)
color: #ff6347
color: hsl(9, 100%, 64%)