/* felixdv theme.
 *
 * Mastodon 4.7 resolves every brand colour through --color-bg-brand-* and
 * --color-text-brand-*, which in turn reference a --color-indigo-* ramp.
 * Overriding that one ramp recolours buttons, links, focus rings, active
 * states and the compose button, in both light and dark mode, without
 * touching a single class name.
 *
 * The name stays "indigo" because that is what the rest of the stylesheet
 * asks for. Only the values change.
 *
 * Anchored on #d0006c at the 700 step, which is where Mastodon takes its
 * primary brand colour from.
 */

:root {
  --color-indigo-50:  #fff0f8;
  --color-indigo-100: #ffdbee;
  --color-indigo-200: #ffb8dd;
  --color-indigo-300: #ff85c4;
  --color-indigo-400: #ff3da1;
  --color-indigo-500: #f50a89;
  --color-indigo-600: #eb0079;
  --color-indigo-700: #d0006c;  /* brand base: buttons, links, active tabs */
  --color-indigo-800: #a30656;  /* brand base hover */
  --color-indigo-900: #7a1244;
  --color-indigo-950: #451028;
}

