49 lines
1.6 KiB
SCSS
49 lines
1.6 KiB
SCSS
|
@import "@picocss/pico/scss/pico"; /* To import only what you need from Pico [check the documentaion](https://picocss.com/docs/customization.html) */
|
||
|
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@100;200;300;400;500;600;700&display=swap');
|
||
|
/* @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 */
|
||
|
|
||
|
body {
|
||
|
font-family: 'IBM Plex Mono', monospace;
|
||
|
// 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;
|
||
|
}
|
||
|
|
||
|
/* 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);
|
||
|
}
|