// SASS DEPRECATIONS ARE WEAK
// NAME VARIABLES WITH CARE

// new opacity mixin
@mixin rm-opacity ($color, $value) {
  background-color: $color;
  opacity: $value;
}
// Using opacity mixin in your class
// @include opacity ($primary, .9)

// NEW COLORS
$primary: #66bc47;
$neutral: #ccc;
$light-neutral: lighten($neutral, 10);
$mid-neutral: darken($neutral, 21);
$dark-neutral: darken($neutral, 55);
$black: #212121;
$red: #B92025;
$orange: #FA9B00;
$blue: #00BFFF;

// Not new but will break things if absent
$white: #FFFFFF;

// Colors no longer in use
@warn "$primary-transparent is deprecated. Please use '@include opacity ($primary, .9)' in your class instead.";
$primary-transparent: rgba(102, 188, 71, .9);

// Bootstrap Overrides
$brand-primary: $primary;
