Initial commit

This commit is contained in:
2026-01-12 17:05:28 +02:00
commit 00f710981e
298 changed files with 59305 additions and 0 deletions

25
src/lib/utils.ts Normal file
View File

@@ -0,0 +1,25 @@
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
import type { CardStyleVariant } from "@/providers/themeProvider/config/types";
export function cn(...inputs: (string | undefined | null | false)[]) {
return inputs.filter(Boolean).join(" ");
}
export function cls(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
// Check if text should use inverted color based on cardStyle
export function shouldUseInvertedText(useInvertedBackground: "noInvert" | "invertDefault" | undefined, cardStyle: CardStyleVariant): boolean {
if (!useInvertedBackground || useInvertedBackground === "noInvert") return false;
const lightCardStyles: CardStyleVariant[] = [
"solid-accent-light",
"solid-accent",
"elevated-accent",
"elevated-accent-light"
];
return lightCardStyles.includes(cardStyle);
}