diff --git a/ui/timetable.module.css b/ui/timetable.module.css index 60564d2..3a01dee 100644 --- a/ui/timetable.module.css +++ b/ui/timetable.module.css @@ -38,5 +38,9 @@ } .break { - background-color: rgb(78, 78, 143); + background-color: color-mix(in oklab, var(--background), rgb(50, 50, 255) 60%); +} + +.event { + background-color: color-mix(in oklab, var(--background), rgb(255, 125, 50) 60%); } diff --git a/ui/timetable.tsx b/ui/timetable.tsx index 82b3385..bcb2a97 100644 --- a/ui/timetable.tsx +++ b/ui/timetable.tsx @@ -387,7 +387,11 @@ export default function Timetable() { {locations.map(location => {location.name} - {locationRows.get(location.id)!.map((row, index) => + {locationRows.get(location.id)!.map((row, index) => {[...row.slots].map(slot => eventBySlotId.get(slot.id)!.name).join(", ")} )} )}