MagicMirror/css/custom.css.sample

19 lines
500 B
Plaintext
Raw Normal View History

2021-04-14 16:56:29 +02:00
/* Magic Mirror Custom CSS Sample
*
* MIT Licensed.
*/
2021-04-04 13:22:33 -05:00
2021-04-14 16:56:29 +02:00
// 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:
2021-04-04 13:22:33 -05:00
:root {
2021-04-14 16:56:29 +02:00
--color-text: #999;
--color-text-dimmed: #666;
2021-04-08 14:56:01 -05:00
--color-text-bright: #fff;
2021-04-14 16:56:29 +02:00
--color-background: black;
2021-04-08 14:56:01 -05:00
--font-size: 20px;
2021-04-14 16:56:29 +02:00
--font-primary: "Roboto Condensed";
--font-secondary: "Roboto";
2021-04-08 14:56:01 -05:00
}