mirror of https://github.com/vector-im/riot-web
Add some colours
parent
bb81515cdd
commit
e3b0d89ae9
|
@ -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];
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue