@import "@picocss/pico/scss/pico"; /* To import only what you need from Pico [check the documentaion](https://picocss.com/docs/customization.html) */ @import url('/assets/fonts/fonts.css'); /* @import url('https://cdn.jsdelivr.net/npm/@mdi/font@5.8.55/css/materialdesignicons.min.css'); */ /* Write your global styles here, in SCSS syntax. Variables and mixins from the src/variables.scss file are available here without importing */ h1, h2, h3, h4, h5, h6, body { font-family: 'Space Grotesk', sans-serif; // background-color: #ffffff; // color: #000000; } /* Green Light scheme (Default) */ /* Can be forced with data-theme="light" */ [data-theme="light"], :root:not([data-theme="dark"]) { --primary: #43a047; --primary-hover: #388e3c; --primary-focus: rgba(67, 160, 71, 0.125); --primary-inverse: #FFF; background-color: #FAF9F6; } /* Green Dark scheme (Auto) */ /* Automatically enabled if user has Dark mode enabled */ @media only screen and (prefers-color-scheme: dark) { :root:not([data-theme]) { --primary: #43a047; --primary-hover: #4caf50; --primary-focus: rgba(67, 160, 71, 0.25); --primary-inverse: #FFF; } } /* Green Dark scheme (Forced) */ /* Enabled if forced with data-theme="dark" */ [data-theme="dark"] { --primary: #43a047; --primary-hover: #4caf50; --primary-focus: rgba(67, 160, 71, 0.25); --primary-inverse: #FFF; } /* Green (Common styles) */ :root { --form-element-active-border-color: var(--primary); --form-element-focus-color: var(--primary-focus); --switch-color: var(--primary-inverse); --switch-checked-background-color: var(--primary); } p, li { cursor: text; } article { border-radius: 10px; box-shadow: 0px 0px 15px rgba(32, 32, 32, 0.2); }