picocss/docs/scss/themes/docs/_light.scss

12 lines
400 B
SCSS
Raw Normal View History

// Light theme (Default) [Additions for docs]
// Can be forced with data-theme="light"
2019-11-27 18:35:19 +07:00
[data-theme="light"],
:root:not([data-theme="dark"]) {
2021-07-02 16:54:41 +07:00
--invalid-color: #{$red-800};
--valid-color: #{$green-700};
2021-10-24 12:33:20 +07:00
--nav-background-color: #{rgba($white, 0.7)};
--nav-border-color: #{rgba($grey-500, 0.2)};
2021-07-02 16:54:41 +07:00
--nav-logo-color: #{$white};
--article-code-background-color: #{mix($grey-50, $white, 33%)};
2019-11-27 18:35:19 +07:00
}