@olwiba/ui 0.0.43 → 0.0.44

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olwiba/ui",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -26,7 +26,7 @@ export function Footer({
26
26
  const copyrightText = legal ?? `\u00A9 ${new Date().getFullYear()} ${brand.name}. All rights reserved.`;
27
27
 
28
28
  return (
29
- <footer className="overflow-hidden rounded-2xl border bg-foreground text-background">
29
+ <footer className="overflow-hidden rounded-2xl border bg-muted text-foreground">
30
30
  <div className="mx-auto max-w-7xl px-6 py-20 sm:py-24 lg:px-8">
31
31
  {/* Brand */}
32
32
  <div className="flex justify-center">
@@ -36,11 +36,11 @@ export function Footer({
36
36
  children: (
37
37
  <>
38
38
  {brand.logo && (
39
- <span className="flex h-8 w-8 items-center justify-center rounded-lg bg-background/10 text-background">
39
+ <span className="flex h-8 w-8 items-center justify-center rounded-lg bg-foreground/10 text-foreground">
40
40
  {brand.logo}
41
41
  </span>
42
42
  )}
43
- <span className="text-lg font-semibold text-background">{brand.name}</span>
43
+ <span className="text-lg font-semibold text-foreground">{brand.name}</span>
44
44
  </>
45
45
  ),
46
46
  })}
@@ -53,7 +53,7 @@ export function Footer({
53
53
  <div key={label}>
54
54
  {renderLink({
55
55
  href,
56
- className: 'text-sm/6 text-background/70 transition-colors hover:text-background',
56
+ className: 'text-sm/6 text-muted-foreground transition-colors hover:text-foreground',
57
57
  children: label,
58
58
  })}
59
59
  </div>
@@ -69,7 +69,7 @@ export function Footer({
69
69
  key={label}
70
70
  href={href}
71
71
  aria-label={label}
72
- className="text-background/70 transition-colors hover:text-background"
72
+ className="text-muted-foreground transition-colors hover:text-foreground"
73
73
  >
74
74
  {icon}
75
75
  </a>
@@ -78,7 +78,7 @@ export function Footer({
78
78
  )}
79
79
 
80
80
  {/* Copyright */}
81
- <p className="mt-10 text-center text-sm/6 text-background/50">
81
+ <p className="mt-10 text-center text-sm/6 text-muted-foreground/70">
82
82
  {copyrightText}
83
83
  </p>
84
84
  </div>