aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/common/common.ts
blob: e3a5a2a206ef50bcb08015862e465d9ba9ca80a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export type { I18nText } from "@/common";
export { c, convertI18nText, useC } from "@/common";

export const themeColors = [
  "primary",
  "secondary",
  "tertiary",
  "danger",
  "success",
] as const;

export type ThemeColor = (typeof themeColors)[number];