mizuhara
v2.6.0
Published
Utility functions and presets to use with Tailwind CSS
Downloads
7
Readme
Mizuhara
Utility functions and presets to use with Tailwind CSS.
Installation
pnpm i mizuhara -D
Usage
Plugins
// tailwind.config.ts
import type { Config } from "tailwindcss";
import { typeNumberReset, videoReset } from "mizuhara/plugins";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {},
},
plugins: [typeNumberReset, videoReset],
};
export default config;
shadcn/ui
// tailwind.config.ts
import { createShadcnPreset } from "mizuhara/plugins";
import type { Config } from "tailwindcss";
const config = {
presets: [createShadcnPreset()],
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
} satisfies Config;
export default config;
If you want to override the default shadcn/ui theme, use the overrideShadcnTheme
function.
import { createShadcnPreset, overrideShadcnTheme } from "mizuhara/plugins";
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/{app,components}/**/*.tsx"],
theme: {
extend: {},
},
presets: [
createShadcnPreset({
theme: overrideShadcnTheme({
light: {
primary: "#fff",
primaryForeground: "#000",
},
dark: {
primary: "#000",
primaryForeground: "#fff",
},
}),
}),
],
};
export default config;
Or if you want to create a new shadcn/ui theme from scratch, use the defineShadcnTheme
function.
import { createShadcnPreset, defineShadcnTheme } from "mizuhara/plugins";
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/{app,components}/**/*.tsx"],
theme: {
extend: {},
},
presets: [
createShadcnPreset({
theme: defineShadcnTheme({
base: {
radius: "0.5rem",
},
light: {
background: "#000000",
foreground: "#fff",
muted: "#f1f5f9",
mutedForeground: "#65758b",
popover: "#ffffff",
popoverForeground: "#0f1729",
card: "#ffffff",
cardForeground: "#0f1729",
border: "#e1e7ef",
input: "#e1e7ef",
primary: "#00cfffc3",
primaryForeground: "#bbf3fef7",
secondary: "#f1f5f9",
secondaryForeground: "#0f1729",
accent: "#f1f5f9",
accentForeground: "#0f1729",
destructive: "#ff0000",
destructiveForeground: "#f8fafc",
ring: "#94a3b8",
},
}),
}),
],
};
export default config;
Utils
// card.tsx
import { forwardRef } from "react";
import { cn } from "mizuhara/utils";
export const Card = forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn(
"rounded-lg border bg-card text-card-foreground shadow-sm",
className
)}
{...props}
/>
));