Created a screen for the module exam selection
This commit is contained in:
15
src/resources/colors.ts
Normal file
15
src/resources/colors.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
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)",
|
||||
};
|
||||
Reference in New Issue
Block a user