frontend / 6.0.0-dev.5 /utils /src /color.ts
gradio-pr-bot's picture
Upload folder using huggingface_hub
cae151e verified
raw
history blame
187 Bytes
import { colors, ordered_colors } from "@gradio/theme";
export const get_next_color = (index: number): keyof typeof colors => {
return ordered_colors[index % ordered_colors.length];
};