Skip to content

Commit

Permalink
Update Layout.astro
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaBanovic authored Jan 29, 2025
1 parent 7a57ece commit 61d0f15
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,21 @@ const { title } = Astro.props;
</html>

<style is:global>
@tailwind base;
@tailwind components;
@tailwind utilities;
</style>
:root {
--accent: 136, 58, 234;
--accent-light: 224, 204, 250;
--accent-dark: 49, 10, 101;
--accent-gradient: linear-gradient(
45deg,
rgb(var(--accent)),
rgb(var(--accent-light)) 30%,
white 60%
);
}

html {
font-family: system-ui, sans-serif;
background: #f6f6f6;
background-size: 224px;
}
</style>

0 comments on commit 61d0f15

Please sign in to comment.