mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
Correct the implementation of bulmaColorBrightness
Instead of using all channels of the colour to approximate brightness, this function was sublty ignoring the blue channel and over-stating other channels.
This commit is contained in:
parent
db6f2cd0e3
commit
4236077572
@ -184,10 +184,10 @@
|
||||
|
||||
@function bulmaColorBrightness($n) {
|
||||
$color-brightness: round(
|
||||
(red($n) * 299) + (green($n) * 587) + (blue($n) * 114) / 1000
|
||||
((red($n) * 299) + (green($n) * 587) + (blue($n) * 114)) / 1000
|
||||
);
|
||||
$light-color: round(
|
||||
(red(#ffffff) * 299) + (green(#ffffff) * 587) + (blue(#ffffff) * 114) / 1000
|
||||
((red(#ffffff) * 299) + (green(#ffffff) * 587) + (blue(#ffffff) * 114)) / 1000
|
||||
);
|
||||
|
||||
@if abs($color-brightness) < math.div($light-color, 2) {
|
||||
|
Loading…
Reference in New Issue
Block a user