From 25e803abfc211145db1d1a5375fcb2436b09d9e6 Mon Sep 17 00:00:00 2001 From: veeck Date: Wed, 14 Apr 2021 16:56:29 +0200 Subject: [PATCH] Update custom.css.sample --- css/custom.css.sample | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/css/custom.css.sample b/css/custom.css.sample index a2e5c25a..59142c17 100644 --- a/css/custom.css.sample +++ b/css/custom.css.sample @@ -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 { - --color-text: lightcyan; - --color-text-dimmed: rgba(255, 255, 255, .75); + --color-text: #999; + --color-text-dimmed: #666; --color-text-bright: #fff; - --color-background: #464656; + --color-background: black; --font-size: 20px; - --font-primary: "Poppins"; - --font-secondary: "Poppins"; + --font-primary: "Roboto Condensed"; + --font-secondary: "Roboto"; }