From b334be8b790a8d24656576ed7a2505e9f2a8feef Mon Sep 17 00:00:00 2001 From: codevictory Date: Wed, 8 Dec 2021 22:57:46 +0200 Subject: [PATCH] New colors. --- src/App.scss | 2 +- src/App.tsx | 2 +- src/colors.scss | 5 +++-- src/index.scss | 3 ++- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/App.scss b/src/App.scss index b95adb9..3c4f68f 100644 --- a/src/App.scss +++ b/src/App.scss @@ -3,7 +3,7 @@ .App { text-align: center; - background-color: $secondary; + background-color: $background; } .App .App-content { diff --git a/src/App.tsx b/src/App.tsx index 588dd98..c989b2c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -14,7 +14,7 @@ export default function App() { ConfigProvider.config({ theme: { - primaryColor: '#21b635', + primaryColor: '#a7ab81', } }); diff --git a/src/colors.scss b/src/colors.scss index 888631a..c5228e4 100644 --- a/src/colors.scss +++ b/src/colors.scss @@ -1,2 +1,3 @@ -$primary: #21b635; -$secondary: #98cc9f; +$brown-text: #c1a57c; +$green-text: #a7ab81; +$background: #efefea; diff --git a/src/index.scss b/src/index.scss index 113d8a4..94202b4 100644 --- a/src/index.scss +++ b/src/index.scss @@ -16,7 +16,8 @@ body { 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; - background-color: $secondary !important; + background-color: $background !important; + color: $green-text !important; } code {