Color theme for different types

This commit is contained in:
Alexis
2026-03-25 18:51:52 +01:00
parent 51e624ba2e
commit 18a71bdacf
6 changed files with 71 additions and 27 deletions

4
src/utils/cn.ts Normal file
View File

@@ -0,0 +1,4 @@
import { clsx, type ClassValue } from 'clsx'
import { twMerge } from 'tailwind-merge'
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs))