Skip to content

Commit

Permalink
feat: add color global variables
Browse files Browse the repository at this point in the history
  • Loading branch information
sounmind committed Jun 23, 2024
1 parent ac28b7f commit eef91cf
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions global-styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
:root {
--primary: #846de9;
--secondary: #24eaca;
--bg-100: #fdfdff;
--bg-200: #fbfaff;
--bg-300: #eee8fe;
--text-900: #160b46;
}

* {
font-family: "Spoqa Han Sans Neo", "Noto Sans KR", sans-serif;
}
Expand All @@ -8,6 +17,10 @@
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

a {
text-decoration: none;
color: inherit;
Expand Down Expand Up @@ -35,7 +48,3 @@ a:active {
a:focus {
outline: none;
}

html {
scroll-behavior: smooth;
}

0 comments on commit eef91cf

Please sign in to comment.