// Fonts
$font-primary: "Balsamiq Sans";
$font-secondary: "Changa One";

// Colors
$text-primary-color: #e1e1e1;
$selected: #FAB319;
$selected-dark: #E97D1E;
$selected-gradient: linear-gradient(to bottom, $selected, $selected-dark);

// Rarities
$border-common: linear-gradient(to bottom, #C9C9C9, #C9C9C9);
$border-uncommon: linear-gradient(to bottom, #b7d86c, #A5CE47);
$border-rare: linear-gradient(to bottom, #8191ff, #6176FF);
$border-epic: linear-gradient(to bottom, #b199ff, #9D80FF);
$border-legendary: linear-gradient(to bottom, #ffcc41, #FFBF11);


.border-common {
  border-image: $border-common;
}

.border-uncommon {
  border-image: $border-uncommon;
}

.border-rare {
  border-image: $border-rare;
}

.border-epic {
  border-image: $border-epic;
}

.border-legendary {
  border-image: $border-legendary;
}