request list + structure

This commit is contained in:
hamid zarghami
2025-10-20 12:28:48 +03:30
commit dbe37e371e
89 changed files with 9547 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
export const COLORS = {
primary: "#ffa800",
border: "#f5f7fc",
description: "#c3c7dd",
gray: "#4F5260",
grayLight: "#8C90A3",
success: "#00BA4B",
error: "red",
info: "blue",
black: "black",
white: "#fff",
} as const;
export type ColorKey = keyof typeof COLORS;