:root{
    /* Background */
    --background-header: rgba(33, 33, 33, 1); /* Background color du header et du footer */
    --background-headband-linear-gradient: rgba(40, 40, 40, 1); /* Couleur utilisée pour le gradient avec le header */
    --background-body: rgba(27, 27, 27, 1); /* Background color du fond body */
    --background-select-type: rgba(80, 80, 80, 1); /* Background du type de fichier sélectionné */
    --background-block-first: rgba(33, 33, 33, 1); /* Background des blocs principaux */
    --background-block-second: rgba(51, 51, 51, 1); /* Background des blocs secondaires */

    /* Police */
    --police-main-color: rgba(235, 235, 235, 1); /* Couleur de la police */
    --police-second-color: rgb(200, 200, 200, 1); /* Couleur de la police secondaire */
    --police-light-color:  rgb(117, 117, 117);
    --police-main-family: 'Arial Rounded MT Bold'; /* Police */
    --police-invert-color: rgb(255, 255, 255);
    --police-white-color: rgba(235, 235, 235, 1);

    /* Images */
    --icon-invert-filter: invert(0%); /* Images */

    /* Boutons */
    /* Bouton principal */
    --background-main-button: rgba(33, 33, 33, 1); /* Couleur de fond des boutons */
    --border-main-button: 1px rgba(180, 180, 180, 1) solid; /* Bordure des boutons */
    --hover-main-button: rgba(35, 35, 35, 1);
    /* Bouton vert */
    --background-green-button: rgba(50, 150, 50, 0.8);
    --border-green-button: 1px rgba(0, 115, 0, 0.8) solid;
    --hover-green-button: rgba(70, 170, 70, 0.8);
    /* Bouton rouge */
    --background-red-button: rgba(234, 98, 69, 0.8);
    --border-red-button: 1px 1px red solid;
    --hover-red-button: rgba(254, 118, 89, 0.8);

    /* Titres */
    --background-red-border: 2px solid rgba(148, 49, 49, 1); /* Bordure des titres */
    --background-hover-title: rgba(148, 49, 49, 1);

    /* Tableaux */
    --background-main-th: rgba(68, 68, 68, 1); /* Couleur de fond de la première ligne du tableau */
    --background-second-td: rgba(68, 68, 68, 1); /* Couleur de fond d'une ligne sur deux */
    --hover-main-td: rgba(58, 58, 58, 1); /* Couleur d'une ligne au passage de la souris */
    --background-select-column: rgba(58, 58, 58, 1); /* Couleur de fond d'une colonne sélectionnée */
}