@elia-ori/editor 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -4208,9 +4208,9 @@ var import_jsx_runtime = require("react/jsx-runtime");
4208
4208
  var Button = React.forwardRef(
4209
4209
  ({ className, variant = "default", size = "default", ...props }, ref) => {
4210
4210
  const variantStyles = {
4211
- default: "bg-[var(--background)] text-[var(--foreground)] hover:bg-[var(--accent)]",
4212
- ghost: "hover:bg-[var(--accent)] hover:text-[var(--accent-foreground)]",
4213
- outline: "border border-[var(--border)] bg-transparent hover:bg-[var(--accent)]"
4211
+ default: "bg-transparent text-zinc-700 dark:text-zinc-300 hover:bg-zinc-100 dark:hover:bg-zinc-800",
4212
+ ghost: "hover:bg-zinc-100 dark:hover:bg-zinc-800",
4213
+ outline: "border border-zinc-200 dark:border-zinc-700 bg-transparent hover:bg-zinc-100 dark:hover:bg-zinc-800"
4214
4214
  };
4215
4215
  const sizeStyles = {
4216
4216
  default: "h-9 px-4 py-2",