diff --git a/components/Footer.tsx b/components/Footer.tsx index 06093bf..470a40c 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -11,16 +11,16 @@ const Footer = () => { © {year}
- + - + - + - +
diff --git a/styles/sass/index.scss b/styles/sass/index.scss index eaf1041..26f470f 100644 --- a/styles/sass/index.scss +++ b/styles/sass/index.scss @@ -2,6 +2,7 @@ --background: white; --secondary: #f4f5f6; --borders: #e4e4e4; + --links: #9a36d8; --foreground: #606c76; } @@ -11,6 +12,7 @@ } --background: #212123; + --links: #c181e8; --secondary: #1c1c1c; --borders: #3c3838; --foreground: rgb(236, 235, 235); @@ -22,6 +24,10 @@ body { color: var(--foreground); } +a { + color: var(--links); +} + @import "nav.scss"; @import "landing.scss"; @import "project.scss";