From 66937bbf6e6b191ecd2cb87b270910ac0f5dadda Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> Date: Thu, 2 May 2024 01:09:24 +0200 Subject: Update font styles and accent colors in CSS files --- assets/css/_root.scss | 35 ++++++++++++----------------------- 1 file changed, 12 insertions(+), 23 deletions(-) (limited to 'assets/css/_root.scss') diff --git a/assets/css/_root.scss b/assets/css/_root.scss index fb8c8f1..57cd83e 100644 --- a/assets/css/_root.scss +++ b/assets/css/_root.scss @@ -1,28 +1,17 @@ -:root { - font-size: 16px; - font-weight: 400; - line-height: 1.65; - font-family: $mainFontStack; - - --body-background: #efefef; - --body-color: #212121; - - --header-background: #ffffff; - --header-color: var(--accent-1); +$accent: hsl(215, 69%, 49%); +$accentLight: hsl(215, 69%, 59%); +$accentDark: hsl(215, 69%, 39%); +$dark: hsl(340, 13%, 5%); +$light: hsl(214, 64%, 98%); +$lightAlt: hsl(0, 0%, 94%); - --footer-background: #212121; - --footer-color: #ffffff; - - --accent-1: hsl(36, 100%, 50%); - --accent-2: hsl(36, 100%, 60%); - --accent-3: hsl(36, 100%, 70%); - --accent-4: hsl(36, 100%, 80%); - --accent-5: hsl(36, 100%, 90%); - - --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15); -} +$shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15); $floatingRadius: 0.5rem; $breakpointTablet: 480px; -$breakpointDesktop: 1024px; \ No newline at end of file +$breakpointDesktop: 1024px; + +:root { + font: 400 16px/1.65 $mainFontStack; +} -- cgit v1.3