mirror of
https://github.com/picocss/pico.git
synced 2025-04-23 18:06:14 -04:00
10 lines
332 B
SCSS
10 lines
332 B
SCSS
// Light theme (Default) [Additions for docs]
|
|
// Can be forced with data-theme="light"
|
|
[data-theme="light"],
|
|
:root:not([data-theme="dark"]) {
|
|
--invalid-color: #{$red-800};
|
|
--valid-color: #{$green-700};
|
|
--nav-background-color: #{rgba($white, .7)};
|
|
--nav-border-color: #{rgba($grey-500, .2)};
|
|
--nav-logo-color: #{$white};
|
|
}
|