From 83edb9a1e0fab74c57a1bb0be983c3149f4d583f Mon Sep 17 00:00:00 2001
From: Miriam Lang <miriam.lang@student.reutlingen-university.de>
Date: Fri, 8 Jan 2021 16:09:59 +0100
Subject: [PATCH] color definition

---
 frontend/src/App.scss                       | 12 ++++++++++--
 frontend/src/components/startseite/Login.js |  1 +
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/frontend/src/App.scss b/frontend/src/App.scss
index f824a7f..851ab04 100644
--- a/frontend/src/App.scss
+++ b/frontend/src/App.scss
@@ -1,10 +1,11 @@
 @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;1,300&display=swap');
 
-$base-green: rgb(34, 139, 34);
+$base-green: rgb(14, 134, 78);
 $base-blue: rgb(0, 212, 255);
+$base-green-2: rgb(7, 170, 94);
 
 $theme-colors: (
-  "primary": $base-green,
+  'primary': $base-green-2
 );
 
 .main-container {
@@ -54,3 +55,10 @@ $theme-colors: (
         -ms-user-select: none; /* Internet Explorer/Edge */
             user-select: none; /* Non-prefixed version, currently*/
 }
+
+
+.btn-primary {
+  background-color:  $base-green-2 !important;
+  border: $base-green-2 !important;
+}
+
diff --git a/frontend/src/components/startseite/Login.js b/frontend/src/components/startseite/Login.js
index 51d8489..b8c0c64 100644
--- a/frontend/src/components/startseite/Login.js
+++ b/frontend/src/components/startseite/Login.js
@@ -2,6 +2,7 @@ import React, { useState } from 'react';
 import {Col, Button, Form,} from 'react-bootstrap';
 import ApothekeRegisterModal from '../../modals/ApothekeRegisterModal';
 import { useSnackbar } from 'notistack';
+import '../../App.scss';
 import './Startseite.scss'
 
 
-- 
GitLab