MOBILE-4065 theme: Add separate variables for calendar events

main
Pau Ferrer Ocaña 2023-02-13 14:29:23 +01:00
parent 50773aa46d
commit 38de8c2cb6
1 changed files with 11 additions and 5 deletions

View File

@ -124,11 +124,17 @@ $activity-icon-colors: (
interface: #a378ff interface: #a378ff
) !default; ) !default;
$calendar-event-category-category: #8e24aa !default;
$calendar-event-category-course: $red !default;
$calendar-event-category-group: $yellow !default;
$calendar-event-category-user: $blue !default;
$calendar-event-category-site: $green !default;
// Calendar event category background colors. // Calendar event category background colors.
$calendar-event-category-colors: ( $calendar-event-category-colors: (
category: #8e24aa, category: $calendar-event-category-category,
course: $red, course: $calendar-event-category-course,
group: $yellow, group: $calendar-event-category-group,
user: $blue, user: $calendar-event-category-user,
site: $green site: $calendar-event-category-site,
) !default; ) !default;