monaco-editor-lsp-next/src/config/difficulty.ts

13 lines
325 B
TypeScript

import { Difficulty } from "@/generated/client";
export const getColorClassForDifficulty = (difficulty: Difficulty) => {
switch (difficulty) {
case Difficulty.EASY:
return "text-green-500";
case Difficulty.MEDIUM:
return "text-yellow-500";
case Difficulty.HARD:
return "text-red-500";
}
};