-
-
Notifications
You must be signed in to change notification settings - Fork 79k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Color utils docs #32819
Merged
Merged
Color utils docs #32819
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
--- | ||
layout: docs | ||
title: Background | ||
description: Convey meaning through `background-color` and add decoration with gradients. | ||
group: utilities | ||
toc: true | ||
--- | ||
|
||
## Background color | ||
|
||
Similar to the contextual text color classes, set the background of an element to any contextual class. Background utilities **do not set `color`**, so in some cases you'll want to use `.text-*` [color utilities]({{< docsref "/utilities/colors" >}}). | ||
|
||
{{< example >}} | ||
{{< colors.inline >}} | ||
{{- range (index $.Site.Data "theme-colors") }} | ||
<div class="p-3 mb-2 bg-{{ .name }}{{ if .contrast_color }} text-{{ .contrast_color }}{{ else }} text-white{{ end }}">.bg-{{ .name }}</div> | ||
{{- end -}} | ||
{{< /colors.inline >}} | ||
<div class="p-3 mb-2 bg-body text-dark">.bg-body</div> | ||
<div class="p-3 mb-2 bg-white text-dark">.bg-white</div> | ||
<div class="p-3 mb-2 bg-transparent text-dark">.bg-transparent</div> | ||
{{< /example >}} | ||
|
||
## Background gradient | ||
|
||
By adding a `.bg-gradient` class, a linear gradient is added as background image to the backgrounds. This gradient starts with a semi-transparent white which fades out to the bottom. | ||
|
||
Do you need a gradient in your custom CSS? Just add `background-image: var(--bs-gradient);`. | ||
|
||
{{< markdown >}} | ||
{{< colors.inline >}} | ||
{{- range (index $.Site.Data "theme-colors") }} | ||
<div class="p-3 mb-2 bg-{{ .name }} bg-gradient{{ with .contrast_color }} text-{{ . }}{{ else }} text-white{{ end }}">.bg-{{ .name }}.bg-gradient</div> | ||
{{- end -}} | ||
{{< /colors.inline >}} | ||
{{< /markdown >}} | ||
|
||
## Sass | ||
|
||
In addition to the following Sass functionality, consider reading about our included [CSS custom properties]({{< docsref "/customize/css-variables" >}}) (aka CSS variables) for colors and more. | ||
|
||
### Variables | ||
|
||
Most `background-color` utilities are generated by our theme colors, reassigned from our generic color palette variables. | ||
|
||
{{< scss-docs name="color-variables" file="scss/_variables.scss" >}} | ||
|
||
{{< scss-docs name="theme-color-variables" file="scss/_variables.scss" >}} | ||
|
||
{{< scss-docs name="variable-gradient" file="scss/_variables.scss" >}} | ||
|
||
Grayscale colors are also available, but only a subset are used to generate any utilities. | ||
|
||
{{< scss-docs name="gray-color-variables" file="scss/_variables.scss" >}} | ||
|
||
### Map | ||
|
||
Theme colors are then put into a Sass map so we can loop over them to generate our utilities, component modifiers, and more. | ||
|
||
{{< scss-docs name="theme-colors-map" file="scss/_variables.scss" >}} | ||
|
||
Grayscale colors are also available as a Sass map. **This map is not used to generate any utilities.** | ||
|
||
{{< scss-docs name="gray-colors-map" file="scss/_variables.scss" >}} | ||
|
||
### Mixins | ||
|
||
**No mixins are used to generate our background utilities**, but we do have some additional mixins for other situations where you'd like to create your own gradients. | ||
|
||
{{< scss-docs name="gradient-bg-mixin" file="scss/mixins/_gradients.scss" >}} | ||
|
||
{{< scss-docs name="gradient-mixins" file="scss/mixins/_gradients.scss" >}} | ||
|
||
### Utilities API | ||
|
||
Background utilities are declared in our utilities API in `scss/_utilities.scss`. [Learn how to use the utilities API.]({{< docsref "/utilities/api#using-the-api" >}}) | ||
|
||
{{< scss-docs name="utils-bg-color" file="scss/_utilities.scss" >}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be renamed as
Color
for consistency? Questionning only, no opinion.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We actually seem to mix and match these... we have Interactions, shadows etc. We should probably streamline these at some point and add redirects.