"use client"; import colors, { hexToRgb } from "@/utils/colors"; import { useTheme } from "next-themes"; import React, { ReactNode } from "react"; const Background = ({ children }: { children: ReactNode }) => { const { theme } = useTheme(); const backgroundColor = hexToRgb(colors[theme ?? "light"]["base-100"]); return (