2020-04-14 02:55:33 +02:00
---
layout: docs
title: Sass
description: Utilize our source Sass files to take advantage of variables, maps, mixins, and functions to help you build faster and customize your project.
group: customize
toc: true
---
2021-01-13 23:41:42 +01:00
Utilize our source Sass files to take advantage of variables, maps, mixins, and more.
2020-04-14 02:55:33 +02:00
## File structure
Whenever possible, avoid modifying Bootstrap's core files. For Sass, that means creating your own stylesheet that imports Bootstrap so you can modify and extend it. Assuming you're using a package manager like npm, you'll have a file structure that looks like this:
2020-10-19 11:56:49 +02:00
```text
2020-04-14 02:55:33 +02:00
your-project/
├── scss
│ └── custom.scss
└── node_modules/
└── bootstrap
├── js
└── scss
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
2022-05-23 02:47:01 +02:00
If you've downloaded our source files and aren't using a package manager, you'll want to manually create something similar to that structure, keeping Bootstrap's source files separate from your own.
2020-04-14 02:55:33 +02:00
2020-10-19 11:56:49 +02:00
```text
2020-04-14 02:55:33 +02:00
your-project/
├── scss
│ └── custom.scss
└── bootstrap/
├── js
└── scss
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
## Importing
In your `custom.scss` , you'll import Bootstrap's source Sass files. You have two options: include all of Bootstrap, or pick the parts you need. We encourage the latter, though be aware there are some requirements and dependencies across our components. You also will need to include some JavaScript for our plugins.
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
// Custom.scss
// Option A: Include all of Bootstrap
2021-03-16 23:25:38 +01:00
// Include any default variable overrides here (though functions won't be available)
2020-04-14 02:55:33 +02:00
@import "../node_modules/bootstrap/scss/bootstrap";
2021-01-15 01:21:21 +01:00
2021-03-16 23:25:38 +01:00
// Then add additional custom code here
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
// Custom.scss
// Option B: Include parts of Bootstrap
2021-03-16 23:25:38 +01:00
// 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
2020-04-14 02:55:33 +02:00
@import "../node_modules/bootstrap/scss/functions";
2021-03-16 23:25:38 +01:00
// 2. Include any default variable overrides here
Add dark mode support (#35857)
* Add dark mode to docs
* Minor fix: missing space indentation
* Minor fix: revert utilities/z-index added-in modification
* Remove prev: and next: from doc because extracted to another PR
* Use .bg-body-tertiary in all Utilities > Overflow examples
* fix example
* Fix up spacing examples
* Update box-shadow Sass variables and utilities to auto-adjust to color modes
* Remove unused docs class
* Refactor form styles to use CSS variable for background images on .form-check and .form-switch
* Fix docs selector
* Rename shortcut for clarity
* Heading consistency
* Reintroduce missing 4th grid item in Utilities > Spacing example
* Fix bundlewatch
* .bd-callout* rendering is OK so removing comments in the code
* Update scss/_utilities.scss
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Fix gutters example styling
* Fix text colors on background utils docs
* redesign and fix up position marker example, which doesn't show nicely in darkmode but at least isn't broken
* fix some color utils examples
* Deprecate mixin notice
* Deprecate notice for list-group-item-variant() mixin
* Revamp new link CSS vars
* Use map-keys in some each Sass files
* Remove list-group-item-variant mixin ref in sass loop desc
* Display CSS vars scoped to our built-in dark mode
* Revert previous commit
* Fix list group variant link
* Fix typo
* Remove imports of alert/list-group mixins in scss/_mixins.scss
* Small formatting + comments removal in scss/_content.scss
* Fix alert links colors
* fix dropdown border-radius mixin
* fix link color and underline again, this time using CSS var override for color var and fallback value for the underline
* fix colors on docs navbar for dark mode
* remove two changes
* missing ref
* another link underline fix, just use sass vars for link decoration for now
* missing color bg docs, plus move dropdown override to scss
* more changes from review
* fix some examples, drop unused docs navbar styles, update docs navbar color mode to use mixin
* Few fixes around type
- Restored CSS variable for color on headings, this time with a fallback value
- In conjunction, restored and wrapped the default CSS var with a null value check
- Split headings and paragraphs docs in Reboot, elaborated on them
* Restyle custom details > summary element in docs
* Rewrite some migration docs
* fix form checks
* Fix up some navbar styling, tweak docs callout
* Fix select images, mostly for validation styling
* Clean up some migration notes, document some new form control CSS vars, mention new variables-dark in sass docs
* Update site/content/docs/5.2/components/scrollspy.md
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Apply suggestions from code review
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* mention form control css vars in migration guide
* Tweak grid and flex docs background examples
* clarify some docs
* fix some more things
Co-authored-by: Julien Déramond <juderamond@gmail.com>
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
2022-11-29 07:30:26 +01:00
// 3. Include remainder of required Bootstrap stylesheets (including any separate color mode stylesheets)
2020-04-14 02:55:33 +02:00
@import "../node_modules/bootstrap/scss/variables";
Add dark mode support (#35857)
* Add dark mode to docs
* Minor fix: missing space indentation
* Minor fix: revert utilities/z-index added-in modification
* Remove prev: and next: from doc because extracted to another PR
* Use .bg-body-tertiary in all Utilities > Overflow examples
* fix example
* Fix up spacing examples
* Update box-shadow Sass variables and utilities to auto-adjust to color modes
* Remove unused docs class
* Refactor form styles to use CSS variable for background images on .form-check and .form-switch
* Fix docs selector
* Rename shortcut for clarity
* Heading consistency
* Reintroduce missing 4th grid item in Utilities > Spacing example
* Fix bundlewatch
* .bd-callout* rendering is OK so removing comments in the code
* Update scss/_utilities.scss
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Fix gutters example styling
* Fix text colors on background utils docs
* redesign and fix up position marker example, which doesn't show nicely in darkmode but at least isn't broken
* fix some color utils examples
* Deprecate mixin notice
* Deprecate notice for list-group-item-variant() mixin
* Revamp new link CSS vars
* Use map-keys in some each Sass files
* Remove list-group-item-variant mixin ref in sass loop desc
* Display CSS vars scoped to our built-in dark mode
* Revert previous commit
* Fix list group variant link
* Fix typo
* Remove imports of alert/list-group mixins in scss/_mixins.scss
* Small formatting + comments removal in scss/_content.scss
* Fix alert links colors
* fix dropdown border-radius mixin
* fix link color and underline again, this time using CSS var override for color var and fallback value for the underline
* fix colors on docs navbar for dark mode
* remove two changes
* missing ref
* another link underline fix, just use sass vars for link decoration for now
* missing color bg docs, plus move dropdown override to scss
* more changes from review
* fix some examples, drop unused docs navbar styles, update docs navbar color mode to use mixin
* Few fixes around type
- Restored CSS variable for color on headings, this time with a fallback value
- In conjunction, restored and wrapped the default CSS var with a null value check
- Split headings and paragraphs docs in Reboot, elaborated on them
* Restyle custom details > summary element in docs
* Rewrite some migration docs
* fix form checks
* Fix up some navbar styling, tweak docs callout
* Fix select images, mostly for validation styling
* Clean up some migration notes, document some new form control CSS vars, mention new variables-dark in sass docs
* Update site/content/docs/5.2/components/scrollspy.md
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Apply suggestions from code review
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* mention form control css vars in migration guide
* Tweak grid and flex docs background examples
* clarify some docs
* fix some more things
Co-authored-by: Julien Déramond <juderamond@gmail.com>
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
2022-11-29 07:30:26 +01:00
@import "../node_modules/bootstrap/scss/variables-dark";
2021-11-15 12:03:48 +01:00
// 4. Include any default map overrides here
// 5. Include remainder of required parts
@import "../node_modules/bootstrap/scss/maps";
2020-04-14 02:55:33 +02:00
@import "../node_modules/bootstrap/scss/mixins";
2021-07-26 02:53:08 +02:00
@import "../node_modules/bootstrap/scss/root";
2020-04-14 02:55:33 +02:00
2021-11-15 12:03:48 +01:00
// 6. Optionally include any other parts as needed
2021-07-26 02:53:08 +02:00
@import "../node_modules/bootstrap/scss/utilities";
2020-04-14 02:55:33 +02:00
@import "../node_modules/bootstrap/scss/reboot";
@import "../node_modules/bootstrap/scss/type";
@import "../node_modules/bootstrap/scss/images";
2020-07-09 17:40:54 +02:00
@import "../node_modules/bootstrap/scss/containers";
2020-04-14 02:55:33 +02:00
@import "../node_modules/bootstrap/scss/grid";
2021-07-26 02:53:08 +02:00
@import "../node_modules/bootstrap/scss/helpers";
2021-03-16 23:25:38 +01:00
2021-11-15 12:03:48 +01:00
// 7. Optionally include utilities API last to generate classes based on the Sass map in `_utilities.scss`
2021-07-26 02:53:08 +02:00
@import "../node_modules/bootstrap/scss/utilities/api";
2021-07-26 17:41:43 +02:00
2021-11-15 12:03:48 +01:00
// 8. Add additional custom code here
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
With that setup in place, you can begin to modify any of the Sass variables and maps in your `custom.scss` . You can also start to add parts of Bootstrap under the `// Optional` section as needed. We suggest using the full import stack from our `bootstrap.scss` file as your starting point.
## Variable defaults
2020-04-27 19:18:36 +02:00
Every Sass variable in Bootstrap includes the `!default` flag allowing you to override the variable's default value in your own Sass without modifying Bootstrap's source code. Copy and paste variables as needed, modify their values, and remove the `!default` flag. If a variable has already been assigned, then it won't be re-assigned by the default values in Bootstrap.
2020-04-14 02:55:33 +02:00
You will find the complete list of Bootstrap's variables in `scss/_variables.scss` . Some variables are set to `null` , these variables don't output the property unless they are overridden in your configuration.
2021-06-03 18:22:47 +02:00
Variable overrides must come after our functions are imported, but before the rest of the imports.
2020-04-14 02:55:33 +02:00
Here's an example that changes the `background-color` and `color` for the `<body>` when importing and compiling Bootstrap via npm:
2020-10-19 11:56:49 +02:00
```scss
2021-01-15 01:21:21 +01:00
// Required
@import "../node_modules/bootstrap/scss/functions";
2021-03-16 23:25:38 +01:00
// Default variable overrides
2020-04-14 02:55:33 +02:00
$body-bg: #000 ;
$body-color: #111 ;
2021-03-16 23:25:38 +01:00
// Required
@import "../node_modules/bootstrap/scss/variables";
Add dark mode support (#35857)
* Add dark mode to docs
* Minor fix: missing space indentation
* Minor fix: revert utilities/z-index added-in modification
* Remove prev: and next: from doc because extracted to another PR
* Use .bg-body-tertiary in all Utilities > Overflow examples
* fix example
* Fix up spacing examples
* Update box-shadow Sass variables and utilities to auto-adjust to color modes
* Remove unused docs class
* Refactor form styles to use CSS variable for background images on .form-check and .form-switch
* Fix docs selector
* Rename shortcut for clarity
* Heading consistency
* Reintroduce missing 4th grid item in Utilities > Spacing example
* Fix bundlewatch
* .bd-callout* rendering is OK so removing comments in the code
* Update scss/_utilities.scss
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Fix gutters example styling
* Fix text colors on background utils docs
* redesign and fix up position marker example, which doesn't show nicely in darkmode but at least isn't broken
* fix some color utils examples
* Deprecate mixin notice
* Deprecate notice for list-group-item-variant() mixin
* Revamp new link CSS vars
* Use map-keys in some each Sass files
* Remove list-group-item-variant mixin ref in sass loop desc
* Display CSS vars scoped to our built-in dark mode
* Revert previous commit
* Fix list group variant link
* Fix typo
* Remove imports of alert/list-group mixins in scss/_mixins.scss
* Small formatting + comments removal in scss/_content.scss
* Fix alert links colors
* fix dropdown border-radius mixin
* fix link color and underline again, this time using CSS var override for color var and fallback value for the underline
* fix colors on docs navbar for dark mode
* remove two changes
* missing ref
* another link underline fix, just use sass vars for link decoration for now
* missing color bg docs, plus move dropdown override to scss
* more changes from review
* fix some examples, drop unused docs navbar styles, update docs navbar color mode to use mixin
* Few fixes around type
- Restored CSS variable for color on headings, this time with a fallback value
- In conjunction, restored and wrapped the default CSS var with a null value check
- Split headings and paragraphs docs in Reboot, elaborated on them
* Restyle custom details > summary element in docs
* Rewrite some migration docs
* fix form checks
* Fix up some navbar styling, tweak docs callout
* Fix select images, mostly for validation styling
* Clean up some migration notes, document some new form control CSS vars, mention new variables-dark in sass docs
* Update site/content/docs/5.2/components/scrollspy.md
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Apply suggestions from code review
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* mention form control css vars in migration guide
* Tweak grid and flex docs background examples
* clarify some docs
* fix some more things
Co-authored-by: Julien Déramond <juderamond@gmail.com>
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
2022-11-29 07:30:26 +01:00
@import "../node_modules/bootstrap/scss/variables-dark";
2021-11-23 09:06:33 +01:00
@import "../node_modules/bootstrap/scss/maps";
2021-03-16 23:25:38 +01:00
@import "../node_modules/bootstrap/scss/mixins";
2021-07-26 02:53:08 +02:00
@import "../node_modules/bootstrap/scss/root";
2021-03-16 23:25:38 +01:00
// Optional Bootstrap components here
2021-01-15 01:21:21 +01:00
@import "../node_modules/bootstrap/scss/reboot";
@import "../node_modules/bootstrap/scss/type";
// etc
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
Repeat as necessary for any variable in Bootstrap, including the global options below.
2021-01-15 01:21:21 +01:00
{{< callout info > }}
2022-10-16 18:09:33 +02:00
{{< partial " callouts / info-npm-starter . md " > }}
2021-01-15 01:21:21 +01:00
{{< / callout > }}
2020-04-14 02:55:33 +02:00
## Maps and loops
2020-04-27 19:18:36 +02:00
Bootstrap includes a handful of Sass maps, key value pairs that make it easier to generate families of related CSS. We use Sass maps for our colors, grid breakpoints, and more. Just like Sass variables, all Sass maps include the `!default` flag and can be overridden and extended.
2020-04-14 02:55:33 +02:00
Some of our Sass maps are merged into empty ones by default. This is done to allow easy expansion of a given Sass map, but comes at the cost of making _removing_ items from a map slightly more difficult.
### Modify map
All variables in the `$theme-colors` map are defined as standalone variables. To modify an existing color in our `$theme-colors` map, add the following to your custom Sass file:
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
$primary: #0074d9 ;
$danger: #ff4136 ;
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
2021-06-03 02:32:23 +02:00
Later on, these variables are set in Bootstrap's `$theme-colors` map:
2020-04-14 02:55:33 +02:00
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
$theme-colors: (
"primary": $primary,
"danger": $danger
);
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
### Add to map
2020-06-20 06:29:20 +02:00
Add new colors to `$theme-colors` , or any other map, by creating a new Sass map with your custom values and merging it with the original map. In this case, we'll create a new `$custom-colors` map and merge it with `$theme-colors` .
2020-04-14 02:55:33 +02:00
2020-10-19 11:56:49 +02:00
```scss
2020-06-20 06:29:20 +02:00
// Create your own map
$custom-colors: (
2020-04-14 02:55:33 +02:00
"custom-color": #900
);
2020-06-20 06:29:20 +02:00
// Merge the maps
$theme-colors: map-merge($theme-colors, $custom-colors);
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
### Remove from map
2022-06-09 18:01:20 +02:00
To remove colors from `$theme-colors` , or any other map, use `map-remove` . Be aware you must insert `$theme-colors` between our requirements just after its definition in `variables` and before its usage in `maps` :
2020-04-14 02:55:33 +02:00
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
// Required
@import "../node_modules/bootstrap/scss/functions";
@import "../node_modules/bootstrap/scss/variables";
Add dark mode support (#35857)
* Add dark mode to docs
* Minor fix: missing space indentation
* Minor fix: revert utilities/z-index added-in modification
* Remove prev: and next: from doc because extracted to another PR
* Use .bg-body-tertiary in all Utilities > Overflow examples
* fix example
* Fix up spacing examples
* Update box-shadow Sass variables and utilities to auto-adjust to color modes
* Remove unused docs class
* Refactor form styles to use CSS variable for background images on .form-check and .form-switch
* Fix docs selector
* Rename shortcut for clarity
* Heading consistency
* Reintroduce missing 4th grid item in Utilities > Spacing example
* Fix bundlewatch
* .bd-callout* rendering is OK so removing comments in the code
* Update scss/_utilities.scss
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Fix gutters example styling
* Fix text colors on background utils docs
* redesign and fix up position marker example, which doesn't show nicely in darkmode but at least isn't broken
* fix some color utils examples
* Deprecate mixin notice
* Deprecate notice for list-group-item-variant() mixin
* Revamp new link CSS vars
* Use map-keys in some each Sass files
* Remove list-group-item-variant mixin ref in sass loop desc
* Display CSS vars scoped to our built-in dark mode
* Revert previous commit
* Fix list group variant link
* Fix typo
* Remove imports of alert/list-group mixins in scss/_mixins.scss
* Small formatting + comments removal in scss/_content.scss
* Fix alert links colors
* fix dropdown border-radius mixin
* fix link color and underline again, this time using CSS var override for color var and fallback value for the underline
* fix colors on docs navbar for dark mode
* remove two changes
* missing ref
* another link underline fix, just use sass vars for link decoration for now
* missing color bg docs, plus move dropdown override to scss
* more changes from review
* fix some examples, drop unused docs navbar styles, update docs navbar color mode to use mixin
* Few fixes around type
- Restored CSS variable for color on headings, this time with a fallback value
- In conjunction, restored and wrapped the default CSS var with a null value check
- Split headings and paragraphs docs in Reboot, elaborated on them
* Restyle custom details > summary element in docs
* Rewrite some migration docs
* fix form checks
* Fix up some navbar styling, tweak docs callout
* Fix select images, mostly for validation styling
* Clean up some migration notes, document some new form control CSS vars, mention new variables-dark in sass docs
* Update site/content/docs/5.2/components/scrollspy.md
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Apply suggestions from code review
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* mention form control css vars in migration guide
* Tweak grid and flex docs background examples
* clarify some docs
* fix some more things
Co-authored-by: Julien Déramond <juderamond@gmail.com>
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
2022-11-29 07:30:26 +01:00
@import "../node_modules/bootstrap/scss/variables-dark";
2022-06-09 18:01:20 +02:00
$theme-colors: map-remove($theme-colors, "info", "light", "dark");
2021-11-23 09:06:33 +01:00
@import "../node_modules/bootstrap/scss/maps";
2020-04-14 02:55:33 +02:00
@import "../node_modules/bootstrap/scss/mixins";
2021-07-26 02:53:08 +02:00
@import "../node_modules/bootstrap/scss/root";
2020-04-14 02:55:33 +02:00
// Optional
@import "../node_modules/bootstrap/scss/reboot";
@import "../node_modules/bootstrap/scss/type";
2021-01-15 01:21:21 +01:00
// etc
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
## Required keys
Bootstrap assumes the presence of some specific keys within Sass maps as we used and extend these ourselves. As you customize the included maps, you may encounter errors where a specific Sass map's key is being used.
For example, we use the `primary` , `success` , and `danger` keys from `$theme-colors` for links, buttons, and form states. Replacing the values of these keys should present no issues, but removing them may cause Sass compilation issues. In these instances, you'll need to modify the Sass code that makes use of those values.
## Functions
### Colors
2020-10-13 09:58:06 +02:00
Next to the [Sass maps ]({{< docsref "/customize/color#color-sass-maps" >}} ) we have, theme colors can also be used as standalone variables, like `$primary` .
2020-04-14 02:55:33 +02:00
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
.custom-element {
color: $gray-100;
background-color: $dark;
}
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
2020-10-13 09:58:06 +02:00
You can lighten or darken colors with Bootstrap's `tint-color()` and `shade-color()` functions. These functions will mix colors with black or white, unlike Sass' native `lighten()` and `darken()` functions which will change the lightness by a fixed amount, which often doesn't lead to the desired effect.
2020-04-14 02:55:33 +02:00
2020-10-13 09:58:06 +02:00
{{< scss-docs name = "color-functions" file = "scss/_functions.scss" > }}
2020-04-14 02:55:33 +02:00
2020-10-13 09:58:06 +02:00
In practice, you'd call the function and pass in the color and weight parameters.
2020-04-14 02:55:33 +02:00
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
.custom-element {
2020-10-13 09:58:06 +02:00
color: tint-color($primary, 10%);
}
.custom-element-2 {
color: shade-color($danger, 30%);
2020-04-14 02:55:33 +02:00
}
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
### Color contrast
2022-06-03 11:42:49 +02:00
In order to meet the [Web Content Accessibility Guidelines (WCAG) ](https://www.w3.org/TR/WCAG/ ) contrast requirements, authors **must** provide a minimum [text color contrast of 4.5:1 ](https://www.w3.org/TR/WCAG/#contrast-minimum ) and a minimum [non-text color contrast of 3:1 ](https://www.w3.org/TR/WCAG/#non-text-contrast ), with very few exceptions.
2020-04-14 02:55:33 +02:00
2022-06-03 11:42:49 +02:00
To help with this, we included the `color-contrast` function in Bootstrap. It uses the [WCAG contrast ratio algorithm ](https://www.w3.org/TR/WCAG/#dfn-contrast-ratio ) for calculating contrast thresholds based on [relative luminance ](https://www.w3.org/TR/WCAG/#dfn-relative-luminance ) in an `sRGB` color space to automatically return a light (`#fff`), dark (`#212529`) or black (`#000`) contrast color based on the specified base color. This function is especially useful for mixins or loops where you're generating multiple classes.
2020-04-14 02:55:33 +02:00
For example, to generate color swatches from our `$theme-colors` map:
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
@each $color, $value in $theme-colors {
.swatch-#{$color} {
color: color-contrast($value);
}
}
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
It can also be used for one-off contrast needs:
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
.custom-element {
color: color-contrast(#000); // returns `color: #fff`
}
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
You can also specify a base color with our color map functions:
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
.custom-element {
color: color-contrast($dark); // returns `color: #fff`
}
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
### Escape SVG
2020-09-15 04:43:47 +02:00
We use the `escape-svg` function to escape the `<` , `>` and `#` characters for SVG background images. When using the `escape-svg` function, data URIs must be quoted.
2020-04-14 02:55:33 +02:00
### Add and Subtract functions
We use the `add` and `subtract` functions to wrap the CSS `calc` function. The primary purpose of these functions is to avoid errors when a "unitless" `0` value is passed into a `calc` expression. Expressions like `calc(10px - 0)` will return an error in all browsers, despite being mathematically correct.
Example where the calc is valid:
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
$border-radius: .25rem;
$border-width: 1px;
.element {
// Output calc(.25rem - 1px) is valid
border-radius: calc($border-radius - $border-width);
}
.element {
// Output the same calc(.25rem - 1px) as above
border-radius: subtract($border-radius, $border-width);
}
2020-10-19 11:56:49 +02:00
```
2020-04-14 02:55:33 +02:00
Example where the calc is invalid:
2020-10-19 11:56:49 +02:00
```scss
2020-04-14 02:55:33 +02:00
$border-radius: .25rem;
$border-width: 0;
.element {
// Output calc(.25rem - 0) is invalid
border-radius: calc($border-radius - $border-width);
}
.element {
// Output .25rem
border-radius: subtract($border-radius, $border-width);
}
2020-10-19 11:56:49 +02:00
```
2021-01-12 06:02:26 +01:00
## Mixins
Our `scss/mixins/` directory has a ton of mixins that power parts of Bootstrap and can also be used across your own project.
### Color schemes
Add dark mode support (#35857)
* Add dark mode to docs
* Minor fix: missing space indentation
* Minor fix: revert utilities/z-index added-in modification
* Remove prev: and next: from doc because extracted to another PR
* Use .bg-body-tertiary in all Utilities > Overflow examples
* fix example
* Fix up spacing examples
* Update box-shadow Sass variables and utilities to auto-adjust to color modes
* Remove unused docs class
* Refactor form styles to use CSS variable for background images on .form-check and .form-switch
* Fix docs selector
* Rename shortcut for clarity
* Heading consistency
* Reintroduce missing 4th grid item in Utilities > Spacing example
* Fix bundlewatch
* .bd-callout* rendering is OK so removing comments in the code
* Update scss/_utilities.scss
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Fix gutters example styling
* Fix text colors on background utils docs
* redesign and fix up position marker example, which doesn't show nicely in darkmode but at least isn't broken
* fix some color utils examples
* Deprecate mixin notice
* Deprecate notice for list-group-item-variant() mixin
* Revamp new link CSS vars
* Use map-keys in some each Sass files
* Remove list-group-item-variant mixin ref in sass loop desc
* Display CSS vars scoped to our built-in dark mode
* Revert previous commit
* Fix list group variant link
* Fix typo
* Remove imports of alert/list-group mixins in scss/_mixins.scss
* Small formatting + comments removal in scss/_content.scss
* Fix alert links colors
* fix dropdown border-radius mixin
* fix link color and underline again, this time using CSS var override for color var and fallback value for the underline
* fix colors on docs navbar for dark mode
* remove two changes
* missing ref
* another link underline fix, just use sass vars for link decoration for now
* missing color bg docs, plus move dropdown override to scss
* more changes from review
* fix some examples, drop unused docs navbar styles, update docs navbar color mode to use mixin
* Few fixes around type
- Restored CSS variable for color on headings, this time with a fallback value
- In conjunction, restored and wrapped the default CSS var with a null value check
- Split headings and paragraphs docs in Reboot, elaborated on them
* Restyle custom details > summary element in docs
* Rewrite some migration docs
* fix form checks
* Fix up some navbar styling, tweak docs callout
* Fix select images, mostly for validation styling
* Clean up some migration notes, document some new form control CSS vars, mention new variables-dark in sass docs
* Update site/content/docs/5.2/components/scrollspy.md
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Apply suggestions from code review
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* mention form control css vars in migration guide
* Tweak grid and flex docs background examples
* clarify some docs
* fix some more things
Co-authored-by: Julien Déramond <juderamond@gmail.com>
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
2022-11-29 07:30:26 +01:00
A shorthand mixin for the `prefers-color-scheme` media query is available with support for `light` , `dark` , and custom color schemes. See [the color modes documentation ]({{< docsref "/customize/color-modes" >}} ) for information on our color mode mixin.
2021-01-12 06:02:26 +01:00
{{< scss-docs name = "mixin-color-scheme" file = "scss/mixins/_color-scheme.scss" > }}
```scss
.custom-element {
@include color-scheme(dark) {
// Insert dark mode styles here
}
@include color-scheme(custom-named-scheme) {
// Insert custom color scheme styles here
}
}
```