Modify color of gray texts

Change-Id: I4fa5c805448cc28066c8cb72b24184d541d9af95
Signed-off-by: Michael Davis <michael.s.davis@ibm.com>
diff --git a/app/common/styles/base/forms.scss b/app/common/styles/base/forms.scss
index 1157fa5..5c49fe7 100644
--- a/app/common/styles/base/forms.scss
+++ b/app/common/styles/base/forms.scss
@@ -19,14 +19,14 @@
 input[type='text'],
 textarea {
   border-radius: 0px;
-  border: 1px solid $medgrey;
+  border: 1px solid $darkgrey;
   height: 3.1em;
   margin: 0 0 1em 0;
   background: $white;
   box-shadow: 0 0 0;
   transition: none !important;
   &:focus {
-    border-color: $lightbg__accent;
+    border-color: $medgrey;
     box-shadow: 0 -5px $field__focus inset;
   }
   &:disabled,
diff --git a/app/common/styles/components/form-elements.scss b/app/common/styles/components/form-elements.scss
index 0515926..3b88fd5 100644
--- a/app/common/styles/components/form-elements.scss
+++ b/app/common/styles/components/form-elements.scss
@@ -3,7 +3,7 @@
   position: relative;
   padding: .5em .8em;
   margin-top: -10px;
-  border: 1px solid $medgrey;
+  border: 1px solid $darkgrey;
   min-width: 70px;
   padding-right: 25px;
   font-weight: 400;
@@ -111,7 +111,7 @@
   width: 20px;
   height: 20px;
   background: $white;
-  border: 1px solid $lightgrey;
+  border: 1px solid $medgrey;
 }
 
 /* Hover and focus states */
@@ -216,7 +216,7 @@
   pointer-events: none;
   opacity: .6;
   background: #ccc;
-  border: 1px solid $lightgrey;
+  border: 1px solid $medgrey;
 }
 
 .control-radio:hover > input:disabled ~ .control__indicator{
diff --git a/app/common/styles/elements/accordion.scss b/app/common/styles/elements/accordion.scss
index 7e10227..767f7f2 100644
--- a/app/common/styles/elements/accordion.scss
+++ b/app/common/styles/elements/accordion.scss
@@ -40,7 +40,7 @@
 // Single event log card
 .accord-row {
   position: relative;
-  border: 1px solid $lightgrey;
+  border: 1px solid $medgrey;
   padding: 1em 1em 1em 0em;
   margin: .65em 0;
   background: $white;
@@ -54,6 +54,6 @@
     cursor: pointer;
   }
   &:last-child {
-    border-bottom: 1px solid $lightgrey;
+    border-bottom: 1px solid $medgrey;
   }
 }
\ No newline at end of file
diff --git a/app/common/styles/elements/toggle-switch.scss b/app/common/styles/elements/toggle-switch.scss
index 88b1def..4402a6c 100644
--- a/app/common/styles/elements/toggle-switch.scss
+++ b/app/common/styles/elements/toggle-switch.scss
@@ -39,7 +39,7 @@
   padding: 2px;
   width: 50px;
   height: 30px;
-  background-color: $lightgrey;
+  background-color: $medgrey;
   @include borderRadius;
   @include marginTransition;
 }
@@ -66,7 +66,7 @@
   left: 4px;
   bottom: 4px;
   width: 20px;
-  background-color: $lightgrey;
+  background-color: $medgrey;
   -webkit-border-radius: 52px;
   -moz-border-radius: 52px;
   -ms-border-radius: 52px;