Sha256: d4c9f788a1750c7fe217c6f84b86c14caac095a6765fad5843cdae50105f0aae
Contents?: true
Size: 1.8 KB
Versions: 6
Compression:
Stored size: 1.8 KB
Contents
/** * Copyright 2016 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ @import "./constants"; /** * Calculate the luminance for a color. * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests */ @function mdc-theme-luminance($color) { $red: nth($mdc-theme-linear-channel-values, red($color) + 1); $green: nth($mdc-theme-linear-channel-values, green($color) + 1); $blue: nth($mdc-theme-linear-channel-values, blue($color) + 1); @return .2126 * $red + .7152 * $green + .0722 * $blue; } /** * Calculate the contrast ratio between two colors. * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests */ @function mdc-theme-contrast($back, $front) { $backLum: mdc-theme-luminance($back) + .05; $foreLum: mdc-theme-luminance($front) + .05; @return max($backLum, $foreLum) / min($backLum, $foreLum); } /** * Determine whether to use dark or light text on top of given color. * Returns "dark" for dark text and "light" for light text. */ @function mdc-theme-light-or-dark($color) { $minimumContrast: 3.1; $lightContrast: mdc-theme-contrast($color, white); $darkContrast: mdc-theme-contrast($color, rgba(black, .87)); @if ($lightContrast < $minimumContrast) and ($darkContrast > $lightContrast) { @return "dark"; } @else { @return "light"; } }
Version data entries
6 entries across 6 versions & 1 rubygems