1
0
Fork 0
mirror of synced 2024-07-08 07:46:10 +12:00

Update role colours

This commit is contained in:
Andrew Kingston 2022-04-28 13:27:31 +01:00
parent 4e7c2c52a7
commit 5b5208dfc0
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@
$: roleName = $roles.find(x => x._id === roleId)?.name || "Unknown" $: roleName = $roles.find(x => x._id === roleId)?.name || "Unknown"
const getRoleColor = roleId => { const getRoleColor = roleId => {
return RoleColours[roleId] || "#ffa500" return RoleColours[roleId] || "#ff6500"
} }
</script> </script>

View file

@ -45,7 +45,7 @@
} }
const getRoleColor = roleId => { const getRoleColor = roleId => {
return RoleColours[roleId] || "#ffa500" return RoleColours[roleId] || "#ff6500"
} }
</script> </script>