Files
negareh-admin/src/constants/colors.ts
T
2025-10-20 12:28:48 +03:30

15 lines
282 B
TypeScript

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;