mirror of
https://github.com/turboderp-org/exui.git
synced 2026-05-11 08:20:10 +00:00
37 lines
927 B
JavaScript
37 lines
927 B
JavaScript
|
|
export const roleAvatars = [
|
|
"/static/gfx/avatar_frog.png",
|
|
"/static/gfx/avatar_cat.png",
|
|
"/static/gfx/avatar_dog.png",
|
|
"/static/gfx/avatar_monke.png",
|
|
"/static/gfx/avatar_unicorn.png",
|
|
"/static/gfx/avatar_squirrel.png",
|
|
"/static/gfx/avatar_penguin.png",
|
|
"/static/gfx/avatar_notcat.png"
|
|
];
|
|
|
|
export const roleColors = [
|
|
"rgba(167, 211, 10, 255)",
|
|
"rgba(136, 70, 104, 255)",
|
|
"rgba(58, 90, 208, 255)",
|
|
"rgba(215, 86, 98, 255)",
|
|
"rgba(220, 170, 62, 255)",
|
|
"rgba(40, 170, 170, 255)",
|
|
"rgba(170, 170, 170, 255)",
|
|
"rgba(120, 120, 120, 255)"
|
|
];
|
|
|
|
export const fallbackAvatar = "/static/gfx/avatar_notcat.png";
|
|
export const fallbackColor = "rgba(120, 120, 120, 255)";
|
|
|
|
export const instructAvatars = [
|
|
"/static/gfx/avatar_frog.png",
|
|
"/static/gfx/avatar_cat.png",
|
|
];
|
|
|
|
export const instructColors = [
|
|
"rgba(107, 201, 0, 255)",
|
|
"rgba(136, 70, 104, 255)",
|
|
];
|
|
|