Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2017-10-18 04:29:47 +0300
committerMark Otto <markdotto@gmail.com>2017-10-18 04:29:47 +0300
commita48dbdbf979f7d555019542122b4cf42aabcad5c (patch)
tree17d3307eea165b18ab387bf9b3b0b222209f4109 /docs
parent8a98bfd8c9124d772049559b19889d8b747909a1 (diff)
document color-yiq function
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/getting-started/theming.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/docs/4.0/getting-started/theming.md b/docs/4.0/getting-started/theming.md
index 15c5caa0be..990b1bbe1c 100644
--- a/docs/4.0/getting-started/theming.md
+++ b/docs/4.0/getting-started/theming.md
@@ -148,6 +148,36 @@ In practice, you'd call the function and pass in two parameters: the name of the
Additional functions could be added in the future or your own custom Sass to create level functions for additional Sass maps, or even a generic one if you wanted to be more verbose.
+### Color contrast
+
+One additional function we include in Bootstrap is the color contrast function, `color-yiq`. It utilizes the [YIQ color space](https://en.wikipedia.org/wiki/YIQ) to automatically return a light (`#fff`) or dark (`#111`) contrast color based the specified base color. This function is especially useful for mixins or loops where you're generating multiple classes.
+
+For example, to generate color swatches from our `$theme-colors` map:
+
+{% highlight scss %}
+@each $color, $value in $theme-colors {
+ .swatch-#{$color} {
+ color: color-yiq($value);
+ }
+}
+{% endhighlight %}
+
+It can also be used for one-off contrast needs:
+
+{% highlight scss %}
+.custom-element {
+ color: color-yiq(#000); // returns `color: #fff`
+}
+{% endhighlight %}
+
+You can also specify a base color with our color map functions:
+
+{% highlight scss %}
+.custom-element {
+ color: color-yiq(theme-color("dark")); // returns `color: #fff`
+}
+{% endhighlight %}
+
## Sass options
Customize Bootstrap 4 with our built-in custom variables file and easily toggle global CSS preferences with new `$enable-*` Sass variables. Override a variable's value and recompile with `npm run test` as needed.