Skip to content

Commit

Permalink
theme button color
Browse files Browse the repository at this point in the history
  • Loading branch information
beuleubeuleu committed Nov 6, 2023
1 parent 920d8e2 commit 9bd66da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/shared/ThemeIcon.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
background: none;
margin-inline: 20px;
}
.sun { fill: black; }
.sun { fill: var(--textColor); }
.moon { fill: transparent; }


:global(.dark) .sun { fill: transparent; }
:global(.dark) .moon { fill: white; }
:global(.dark) .moon { fill: var(--textColor); }
</style>

<script>
Expand Down

0 comments on commit 9bd66da

Please sign in to comment.