/* (c) 2018-2019 Business Collaborator Ltd */

/*
 * Classes that define a standard colour palette for use across BC.
 * Bootstrap classes are defined here for use in Graphite.
 *
 */

/*  Bootstrap text color classes */
/* Any bc-COLOR addded here should also be added to bs_config.COLOR_MAP  */

.text-muted {
  color: #777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

/*  Bootstrap background color classes */

.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

/*  BC background color classes */

.bc-dark-grey {
    color: #666666;
}

.bc-dark-red {
    color: #660000;
}

.bc-blue {
    color: #337ab7;
}

.bc-dark-green {
    color: #38761d;
}

.bc-purple {
    color: #351c75;
}

.bc-orange {
    color: #ff9900;
}

.bc-dark-blue {
    color: #085394;
}

.bc-brown {
    color: #783f04;
}

.bc-red {
    color: #990000;
}

.bc-yellow {
    color: #f0ad4e;
}

.bc-light-grey {
    color: #999999;
}

.bc-brown {
    color: #7f6000;
}

.bc-mauve {
    color: #741b47;
}

.bc-light-blue {
    color: #6fa8dc;
}

.bc-green {
    color: #009e0f;
}

.bc-black {
    color: #000000;
}

.bc-strong-blue {
    color: #2b78e4;
}

.bc-strong-red {
    color: #cf2a27;
}

.bc-white {
    color: #ffffff;
}
