Browse Source

feat(colors): altered green & added lime

Owen Diffey 5 years ago
parent
commit
c711121f37
2 changed files with 3 additions and 2 deletions
  1. 1 1
      frontend/components/pages/Home.vue
  2. 2 1
      frontend/styles/colors.scss

+ 1 - 1
frontend/components/pages/Home.vue

@@ -479,7 +479,7 @@ html {
 	.badge {
 		position: relative;
 		padding-right: 2px;
-		color: $green;
+		color: $lime;
 		top: +5px;
 	}
 }

+ 2 - 1
frontend/styles/colors.scss

@@ -6,7 +6,8 @@ $light-pink: hsl(351, 57%, 75%);
 $dark-pink: hsl(351, 79%, 60%);
 $light-orange: hsl(22, 100%, 50%);
 $dark-orange: hsl(12, 100%, 49%);
-$green: hsl(114, 69%, 49%);
+$lime: hsl(114, 69%, 49%);
+$green: hsl(114, 76%, 36%);
 $blue: hsl(214, 82%, 48%);
 $red: hsl(0, 86%, 49%);
 $white: hsl(0, 0%, 100%);