Last active
August 11, 2021 04:26
-
-
Save michventura/8571992bc6c3d6039402a031b196b97d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**************************************** | |
* Variables | |
*****************************************/ | |
:root { | |
/* Colores */ | |
/* cambia los siguientes valores por los de tu styleguide */ | |
/* | |
--primario: #6836e1; | |
--primario-light: #9b76eb; | |
--primario-dark: #3b22cb; | |
--secundario: #00e6ff; | |
--secundario-light: #6effff; | |
--secundario-dark: #00b2cc; | |
--ff-headings: "Nunito", sans-serif; | |
--ff-body: "Montserrat", sans-serif; | |
*/ | |
} | |
/**************************************** | |
* Base | |
*****************************************/ | |
body { | |
font-family: var(--ff-body); | |
color: var(--primario); | |
} | |
h1, | |
h2, | |
h3, | |
h4, | |
h5 { | |
font-family: var(--ff-headings); | |
} | |
/**************************************** | |
* Componentes | |
*****************************************/ | |
/**************************************** | |
* Utilidades | |
*****************************************/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment