8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b280d4 commit 0371e7dCopy full SHA for 0371e7d
site/src/lib/utils.ts
@@ -1,6 +1,6 @@
1
-import { clsx, type ClassValue } from "clsx"
2
-import { twMerge } from "tailwind-merge"
+import { type ClassValue, clsx } from "clsx";
+import { twMerge } from "tailwind-merge";
3
4
export function cn(...inputs: ClassValue[]) {
5
- return twMerge(clsx(inputs))
+ return twMerge(clsx(inputs));
6
}
site/tailwind.config.js
@@ -1,3 +1,5 @@
+const colors = require("tailwindcss/colors");
+
/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
0 commit comments