mirror of
https://github.com/penpot/penpot.git
synced 2025-02-14 11:09:04 -05:00
32 lines
1.3 KiB
SCSS
32 lines
1.3 KiB
SCSS
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
//
|
|
// Copyright (c) KALEIDOS INC
|
|
|
|
@use "sass:meta";
|
|
|
|
.light {
|
|
--color-background-primary: var(--lb-primary);
|
|
--color-background-secondary: var(--lb-secondary);
|
|
--color-background-tertiary: var(--lb-tertiary);
|
|
--color-background-quaternary: var(--lb-quaternary);
|
|
--color-background-subtle: var(--lb-secondary-30); //Whatch this¡¡
|
|
--color-background-disabled: var(--lb-quaternary);
|
|
--color-foreground-primary: var(--lf-primary);
|
|
--color-foreground-secondary: var(--lf-secondary);
|
|
--color-foreground-disabled: var(--lf-secondary-40);
|
|
--color-accent-primary: var(--la-primary);
|
|
--color-accent-primary-muted: var(--la-primary-muted);
|
|
--color-accent-secondary: var(--la-secondary);
|
|
--color-accent-tertiary: var(--la-tertiary);
|
|
--color-accent-tertiary-muted: var(--la-tertiary-10);
|
|
--color-accent-quaternary: var(--la-quaternary);
|
|
--color-component-highlight: var(--la-secondary);
|
|
|
|
--overlay-color: var(--lf-secondary-50);
|
|
--shadow-color: var(--lf-secondary-40);
|
|
--radio-button-box-shadow: 0 0 0 1px var(--lb-secondary) inset;
|
|
|
|
@include meta.load-css("hljs-light-theme");
|
|
}
|