28 lines
504 B
SCSS
28 lines
504 B
SCSS
:root {
|
|
--active-note: #9e00ff;
|
|
--active-note-rgb: 158, 0, 255;
|
|
--foreground-text: #f06e2f;
|
|
--foreground-text-rgb: 240, 110, 47;
|
|
--internal-link-rgb: 245, 164, 134;
|
|
--background: #eaf1ca;
|
|
}
|
|
|
|
.bg-foreground-text {
|
|
background-color: var(--foreground-text);
|
|
}
|
|
|
|
.b--foreground-text {
|
|
border-color: var(--foreground-text);
|
|
}
|
|
|
|
.foreground-text {
|
|
color: var(--foreground-text);
|
|
}
|
|
|
|
.bg-background {
|
|
background-color: var(--background);
|
|
}
|
|
|
|
.b--background {
|
|
border-color: var(--background);
|
|
} |