aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/preview/highlights.ts
blob: e871303e26e77e00880a0ec384eed48e0627f915 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Tailwind requires the color to be complete strings (can't be dynamic), so we have to list all the strings here manually.
export const HIGHLIGHT_COLOR_MAP = {
  bg: {
    red: "bg-red-200",
    green: "bg-green-200",
    blue: "bg-blue-200",
    yellow: "bg-yellow-200",
  } as const,
  ["border-l"]: {
    red: "border-l-red-200",
    green: "border-l-green-200",
    blue: "border-l-blue-200",
    yellow: "border-l-yellow-200",
  } as const,
};