Skip to content

Commit 4ef3d2e

Browse files
committed
Tweak colors
1 parent d2933b6 commit 4ef3d2e

File tree

3 files changed

+148
-59
lines changed

3 files changed

+148
-59
lines changed

src/app/(main)/resources/[category]/spritesheet/index.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,11 @@ interface IconSpritesheetProps extends SVGProps<SVGSVGElement> {
2929
export function IconSpritesheet({ sprite, ...props }: IconSpritesheetProps) {
3030
return (
3131
<>
32-
<svg {...props}>
33-
<use href={`${sheet}#${sprite}`} />
32+
<svg fill="currentColor" {...props}>
33+
<use
34+
href={`${sheet}#${sprite}`}
35+
style={{ "--bg": "hsl(var(--color-neu-50))" } as {}}
36+
/>
3437
</svg>
3538
</>
3639
)

0 commit comments

Comments
 (0)