Added a new module called Level for level testing
This commit is contained in:
@@ -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)",
|
||||
};
|
||||
@@ -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,
|
||||
};
|
||||
Reference in New Issue
Block a user