Sha256: 4c415330f5657023606b08777baceb068d0620bfed69e05a9bbf3b4e3d2f95a4

Contents?: true

Size: 867 Bytes

Versions: 13

Compression:

Stored size: 867 Bytes

Contents

@function powerNumber($number, $exp)
  $value: 1
  @if $exp > 0
    @for $i from 1 through $exp
      $value: $value * $number
  @else if $exp < 0
    @for $i from 1 through -$exp
      $value: $value / $number
  @return $value

@function colorLuminance($color)
  $color-rgb: ('red': red($color),'green': green($color),'blue': blue($color))
  @each $name, $value in $color-rgb
    $adjusted: 0
    $value: $value / 255
    @if $value < 0.03928
      $value: $value / 12.92
    @else
      $value: ($value + .055) / 1.055
      $value: powerNumber($value, 2)
    $color-rgb: map-merge($color-rgb, ($name: $value))
  @return (map-get($color-rgb, 'red') * .2126) + (map-get($color-rgb, 'green') * .7152) + (map-get($color-rgb, 'blue') * .0722)

@function findColorInvert($color)
  @if (colorLuminance($color) > 0.55)
    @return rgba(#000, 0.7)
  @else
    @return #fff

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
bulma-sass-0.6.2 app/assets/stylesheets/sass/utilities/functions.sass
bulma-rails-0.6.2 app/assets/stylesheets/sass/utilities/functions.sass
diproart-bulma-rails-0.6.1.pre.3 vendor/assets/stylesheets/bulma/sass/utilities/functions.sass
bulma-rails-0.6.1 app/assets/stylesheets/sass/utilities/functions.sass
bulma-sass-0.6.0 app/assets/stylesheets/sass/utilities/functions.sass
bulma-rails-0.6.0 app/assets/stylesheets/sass/utilities/functions.sass
bulma-rails-0.5.3 app/assets/stylesheets/sass/utilities/functions.sass
bulma-rails-0.5.2 app/assets/stylesheets/sass/utilities/functions.sass
bulma-rails-0.5.1 app/assets/stylesheets/sass/utilities/functions.sass
bulma-rails-0.4.3 app/assets/stylesheets/sass/utilities/functions.sass
bulma-rails-0.4.2 app/assets/stylesheets/sass/utilities/functions.sass
bulma-rails-0.4.1.pre app/assets/stylesheets/sass/utilities/functions.sass
bulma-rails-0.4.0 app/assets/stylesheets/sass/utilities/functions.sass