stats + stat card

This commit is contained in:
hamid zarghami
2025-10-15 15:41:58 +03:30
parent 434541da9d
commit bdb043e6c5
7 changed files with 240 additions and 1 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;