Skip to content

Commit

Permalink
feat(website): use global style variables
Browse files Browse the repository at this point in the history
  • Loading branch information
bcheidemann committed Jan 14, 2024
1 parent 71c872a commit 3fef90a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion website/src/layouts/Layout.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
import DynamicGlow from "../../../packages/components/src/DynamicGlow.astro";
import { Styles } from "@gemini-ui-astro/styles";
import { DynamicGlow } from "@gemini-ui-astro/components";
interface Props {
title: string;
Expand All @@ -18,6 +19,7 @@ const { title } = Astro.props;
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
<DynamicGlow />
<Styles />
<style is:global>
:root {
--accent: 136, 58, 234;
Expand Down

0 comments on commit 3fef90a

Please sign in to comment.