/*
This file is meant to carry additions / enhancements to Bootstrap 5 which
can be expressed purely via CSS variables and therefore ddo not need to be
put in the per Django project SASS files.
 */

/*
Class meant to be put on a container element which for example uses also
bg-dark to ensure that links are properly visible on the dark background.
The default link color might not achieve this when it is also rather dark
This helper allows to ensure high contrast in this case. It sets some CSS
variables which utilized by Bootstrap 5 to control the appearance of a link
so that every link inside a container with this class is white.
 */
.links-white {
  /* Support plain Bootstrap 5 */
  --bs-link-color-rgb: #fff;
  --bs-link-hover-color-rgb: #fff;
  /* Support Silicon UI Bootstrap 5 */
  --si-link-color-rgb: #fff;
  --si-link-hover-color-rgb: #fff;
}
