Vacío RGB
/* Importación de fuentes */
@import url("https://fonts.googleapis.com/css?family=Londrina+Sketch&display=swap");
@import url("https://fonts.googleapis.com/css?family=DM+Sans&display=swap");
@import url("https://fonts.googleapis.com/css?family=Silkscreen&display=swap");
 
:root {
     --theme-base: "black-highlighter";
     --theme-id: "vacio-rgb";
     --theme-name: "Vacío RGB";
 
/* Limpieza */
     --header-title: none;
     --header-subtitle: none;
     --logo-image: none;
     --wallpaper-mask: none;
 
/* Título, subtitulo y logo ocultos */
     --header-height-on-desktop: 0rem;
     --header-height-on-mobile: 0rem;
 
/* Fuentes */
     --body-font: 'DM Sans', sans-serif;
     --UI-font: 'DM Sans', sans-serif;
     --title-font: 'Londrina Sketch', italic;
     --mono-font: 'Silkscreen', monospace;
 
/* Colores */
     --white-monochrome: 255, 255, 255;
     --pale-gray-monochrome: 255, 255, 255;
     --light-pale-gray-monochrome: 255, 255, 255;
     --very-light-gray-monochrome: 255, 255, 255;
     --light-gray-monochrome: 0, 0, 0;
     --gray-monochrome: 255, 255, 255;
     --dark-gray-monochrome: 255, 255, 255;
     --black-monochrome: 0, 0, 0;
     --pale-accent: 255, 255, 255;
     --bright-accent: 0, 0, 0;
     --medium-accent: 255, 255, 255;
     --dark-accent: 255, 255, 255;
     --alt-accent: 255, 0, 0;
 
/* Color de enlaces */
     --link-color: 255, 0, 0;
     --hover-link-color: 0, 0, 255;
     --visited-link-color: 0, 255, 0;
 
/* Cajas div */
 .darkblock {
     color: rgb(255, 255, 255);
     background: rgb(0, 0, 0);
     padding: 0.01rem 1rem;
     margin: 0.5rem 0;
     box-shadow: none;
}
 .lightblock {
     color: rgb(0, 0, 0);
     background: rgb(250, 250, 250);
     padding: 0.01rem 1rem;
     margin: 0.5rem 0;
     box-shadow: none;
}
 
/* Cotas div */
 .styled-quote {
     color: rgb(0, 0, 0);
     background: rgb(250, 250, 250);
     padding: 0.01rem 1rem;
     margin: 0.5rem 0;
     box-shadow: none;
     border-left: solid 6px rgb(0, 0, 0);
}
 .dark-styled-quote {
     color: rgb(255, 255, 255);
     background: rgb(0, 0, 0);
     padding: 0.01rem 1rem;
     margin: 0.5rem 0;
     box-shadow: none;
     border-left: solid 6px rgb(250, 250, 250);
}
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License