New colors.

This commit is contained in:
codevictory
2021-12-08 22:57:46 +02:00
parent 26c0c947e0
commit b334be8b79
4 changed files with 7 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
.App {
text-align: center;
background-color: $secondary;
background-color: $background;
}
.App .App-content {

View File

@@ -14,7 +14,7 @@ export default function App() {
ConfigProvider.config({
theme: {
primaryColor: '#21b635',
primaryColor: '#a7ab81',
}
});

View File

@@ -1,2 +1,3 @@
$primary: #21b635;
$secondary: #98cc9f;
$brown-text: #c1a57c;
$green-text: #a7ab81;
$background: #efefea;

View File

@@ -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 {