Added a new module called Level for level testing

This commit is contained in:
Tiago Ribeiro
2023-11-17 15:32:45 +00:00
parent 4a51bd7dfa
commit 44a89c6645
22 changed files with 290 additions and 99 deletions

View File

@@ -1,15 +0,0 @@
import {Module} from "@/interfaces";
export const OPAQUE: {[key in Module]: string} = {
reading: "#FF6384",
listening: "#36A2EB",
writing: "#FFCE56",
speaking: "#4bc0c0",
};
export const SEMI_TRANSPARENT: {[key in Module]: string} = {
reading: "rgba(255, 99, 132, 0.5)",
listening: "rgba(54, 162, 235, 0.5)",
writing: "rgba(255, 206, 86, 0.5)",
speaking: "rgba(75, 192, 192, 0.5)",
};

View File

@@ -1,9 +0,0 @@
import {Module} from "@/interfaces";
import {mdiAccountVoice, mdiBookOpen, mdiHeadphones, mdiPen} from "@mdi/js";
export const ICONS: {[key in Module]: string} = {
listening: mdiHeadphones,
reading: mdiBookOpen,
speaking: mdiAccountVoice,
writing: mdiPen,
};