Add some colours

pull/21833/head
Jaiwanth 2021-05-22 13:33:13 +05:30
parent bb81515cdd
commit e3b0d89ae9
2 changed files with 5 additions and 2 deletions

View File

@ -240,11 +240,14 @@ const userColors = [
"#64bf47",
"#4f9cd9",
"#9884e8",
"#fb6238",
"#00cdac",
"#ff5eaa",
];
//Get a color associated with string length. This is to map userId to a specific color
const getUserColor = (userId: string) => {
return userColors[userId.length % 4];
return userColors[userId.length % userColors.length];
};

View File

@ -24,7 +24,7 @@ const getTimelineConversation = (room) => {
cli, timelineSet,
{windowLimit: Number.MAX_VALUE});
timelineWindow.load(null, 20);
timelineWindow.load(null, 30);
const events = timelineWindow.getEvents();