()
| 14 | |
| 15 | /** Picks a random workspace color from the hero palette. */ |
| 16 | export function getRandomWorkspaceColor(): string { |
| 17 | return randomItem(WORKSPACE_COLORS) |
| 18 | } |
| 19 | |
| 20 | const APP_COLORS = [ |
| 21 | { from: '#4F46E5', to: '#7C3AED' }, // indigo to purple |
no test coverage detected