Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Color classes for our configurator selection #715

Merged
merged 2 commits into from
Aug 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions blocks/themes/uc-basic/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -230,3 +230,33 @@
--uc-simple-btn-hover: var(--uc-simple-btn-hover-dark);
--uc-simple-btn-foreground: var(--uc-simple-btn-foreground-dark);
}

:where(.uc-purple) {
--uc-primary-oklch-light: 59% 0.22 300;
--uc-primary-oklch-dark: 69% 0.1768 300;
}

:where(.uc-red) {
--uc-primary-oklch-light: 59% 0.22 21;
--uc-primary-oklch-dark: 69% 0.1768 21;
}

:where(.uc-orange) {
--uc-primary-oklch-light: 59% 0.1724 51.88;
--uc-primary-oklch-dark: 69% 0.1768 51.88;
}

:where(.uc-green) {
--uc-primary-oklch-light: 59% 0.1724 130;
--uc-primary-oklch-dark: 69% 0.1768 130;
}

:where(.uc-turquoise) {
--uc-primary-oklch-light: 59% 0.1523 174;
--uc-primary-oklch-dark: 69% 0.1768 174;
}

:where(.uc-gray) {
--uc-primary-oklch-light: 10% 0 0;
--uc-primary-oklch-dark: 97% 0 0;
}
Loading