From eef91cfd58b1f1487f09480fc5ab9b7088c73bf1 Mon Sep 17 00:00:00 2001 From: sounmind Date: Sat, 22 Jun 2024 23:17:33 -0400 Subject: [PATCH] feat: add color global variables --- global-styles.css | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/global-styles.css b/global-styles.css index d08f3ba..9e7c42c 100644 --- a/global-styles.css +++ b/global-styles.css @@ -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; } @@ -8,6 +17,10 @@ box-sizing: border-box; } +html { + scroll-behavior: smooth; +} + a { text-decoration: none; color: inherit; @@ -35,7 +48,3 @@ a:active { a:focus { outline: none; } - -html { - scroll-behavior: smooth; -}