Update custom.css.sample

This commit is contained in:
veeck 2021-04-14 16:56:29 +02:00
parent 7c6073e4ef
commit 25e803abfc

View File

@ -1,11 +1,18 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap'); /* Magic Mirror Custom CSS Sample
*
* MIT Licensed.
*/
// Uncomment and adjust accordingly if you want to import another font from the google-fonts-api:
// @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;700&display=swap');
// Change color and fonts here:
:root { :root {
--color-text: lightcyan; --color-text: #999;
--color-text-dimmed: rgba(255, 255, 255, .75); --color-text-dimmed: #666;
--color-text-bright: #fff; --color-text-bright: #fff;
--color-background: #464656; --color-background: black;
--font-size: 20px; --font-size: 20px;
--font-primary: "Poppins"; --font-primary: "Roboto Condensed";
--font-secondary: "Poppins"; --font-secondary: "Roboto";
} }