aboutsummaryrefslogtreecommitdiff
path: root/components/logo.tsx
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-03-15 21:52:08 +0100
committerlonkaars <l.leblansch@gmail.com>2021-03-15 21:52:08 +0100
commitb2e0569eb74cddc92c1e8576755137aa64f95d86 (patch)
tree32f4315bf584884a77d9f310fa22d6aa5d9d03a0 /components/logo.tsx
parenta29400d3377d96526bb6efb605f2f9b9bcc26128 (diff)
colors are right now v2
Diffstat (limited to 'components/logo.tsx')
-rw-r--r--components/logo.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/logo.tsx b/components/logo.tsx
index 7a99507..b0f358f 100644
--- a/components/logo.tsx
+++ b/components/logo.tsx
@@ -3,9 +3,9 @@ export function LogoDark() {
<div className="noclick">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="24" height="24" fill="var(--background)"/>
- <circle cx="6.5" cy="6.5" r="4.5" fill="var(--disk-a)"/>
- <circle cx="6.5" cy="17.5" r="4.5" fill="var(--disk-b)"/>
- <circle cx="17.5" cy="17.5" r="4.5" fill="var(--disk-a)"/>
+ <circle cx="6.5" cy="6.5" r="4.5" fill="var(--disk-b)"/>
+ <circle cx="6.5" cy="17.5" r="4.5" fill="var(--disk-a)"/>
+ <circle cx="17.5" cy="17.5" r="4.5" fill="var(--disk-b)"/>
<circle cx="17.5" cy="6.5" r="3.5" stroke="var(--text)" strokeWidth="2"/>
</svg>
</div>
@@ -17,9 +17,9 @@ export function LogoLight() {
<div className="noclick">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="24" height="24" fill="var(--page-background)"/>
- <circle cx="6.5" cy="6.5" r="4.5" fill="var(--disk-a)"/>
- <circle cx="6.5" cy="17.5" r="4.5" fill="var(--disk-b)"/>
- <circle cx="17.5" cy="17.5" r="4.5" fill="var(--disk-a)"/>
+ <circle cx="6.5" cy="6.5" r="4.5" fill="var(--disk-b)"/>
+ <circle cx="6.5" cy="17.5" r="4.5" fill="var(--disk-a)"/>
+ <circle cx="17.5" cy="17.5" r="4.5" fill="var(--disk-b)"/>
<circle cx="17.5" cy="6.5" r="3.5" stroke="var(--background)" strokeWidth="2"/>
</svg>
</div>