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

fix(a11y): correct luminosity contrast in mgt-agenda custom styles #3179

Merged
merged 1 commit into from
May 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
35 changes: 18 additions & 17 deletions stories/components/agenda/agenda.style.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,28 @@ export const customCSSProperties = () => html`
<mgt-agenda class="agenda" group-by-day></mgt-agenda>
<style>
.agenda {
--agenda-background-color: #fcefef;
--agenda-event-box-shadow: 0px 2px 30px pink;
--agenda-event-margin: 0px 10px 40px 10px;
--agenda-event-padding: 8px 0px;
--agenda-event-background-color: #8d696f;
--agenda-event-border: dotted 2px white;
--agenda-background-color: gold;
--agenda-event-box-shadow: 0px 2px 30px;
--agenda-event-margin: 0px 10px 40px 10px;
--agenda-event-padding: 8px 0px;
--agenda-event-background-color: yellow;
--agenda-event-border: dotted 2px white;

--agenda-header-margin: 3px;
--agenda-header-font-size: 20px;
--agenda-header-color: #7b575d;
--agenda-header-margin: 3px;
--agenda-header-font-size: 20px;
--agenda-header-color: maroon;

--agenda-event-time-font-size: 20px;
--agenda-event-time-color: white;
--agenda-event-time-font-size: 20px;
--agenda-event-time-color: maroon;

--agenda-event-subject-font-size: 12px;
--agenda-event-subject-color: white;
--agenda-event-subject-font-size: 12px;
--agenda-event-subject-color: maroon;

--agenda-event-location-font-size: 20px;
--agenda-event-location-color: white;
--agenda-event-location-font-size: 20px;
--agenda-event-location-color: maroon;
--agenda-event-attendees-color: maroon;

--agenda-event-attendees-color: gold;
}
--people-overflow-font-color: maroon;
}
</style>
`;
Loading