
/* Colores y tipografías */
:root{
  /* Colores de la página */
  --background-color-rgb: 50,47,63;
  --background-color: rgb(var(--background-color-rgb));
  --div-color-rgb: 255,255,255;
  --div-color:rgb(var(--div-color-rgb));
  --intense-div-color-rgb: 69,64,90;
  --intense-div-color: rgb(var(--intense-div-color-rgb));
  --purple-div-color: rgb(132, 51, 242);
  --grid-table-color : rgb(239,236,248);
  /* inputs */
  --input-color-rgb: 239,236,248;
  --input-color: rgb(var(--input-color-rgb));
  --input-white: white;
  --input-border-color: rgb(160,48,255);
  /* color button */
  --button-color-rgb: 132, 51, 242;
  --button-color: rgb(var(--button-color-rgb));
  --hr-color-rgb: 138,51,255;
  --hr-color: rgb(var(--hr-color-rgb));
  /* font color */
  --purple-font:rgb(138, 51, 255);
  --white-font: rgb(255,255,255);
  --black-font:  rgb(69, 64, 90);
  --unselect-white-font: rgb(182, 177, 201);
  /* panel color */
  --panel-color-rgb: 69,64,90;
  --panel-color: rgb(var(--panel-color-rgb));
  --font-family: quickSand;
  --hibring-color: rgb(126,118,153);
  --on-page-color: rgb(138, 51, 255);
  /* Input radio */
  --input-radio:rgb(138, 51, 255);
}