3.1.10 (Brainy Betty) f69f933b8a0ad343427e2279009e4463625e6f1b o:Sass::Tree::RootNode :@has_childrenT: @options{: @linei:@children[ o:Sass::Tree::VariableNode ;@;i; [: @guarded" !default: @name"contrasted-dark-default: @expro:Sass::Script::Color ;@;i: @value0: @attrs{ : bluei:redi: alphai: greenio; ;@;i; [; " !default; "contrasted-light-default; o; ;@;i;0;{ ;iÿ;iÿ;i;iÿo; ;@;i; [; " !default; "#contrasted-lightness-threshold; o:Sass::Script::Number :@original"30%;@;i;i#:@denominator_units[:@numerator_units["%o:Sass::Tree::CommentNode ;@;i ; [;["ü/* Returns the `$light` color when the `$color` is dark * and the `$dark` color when the `$color` is light. * The `$threshold` is a percent between `0%` and `100%` and it determines * when the lightness of `$color` changes from "dark" to "light". */: @loud0: @silentio:Sass::Tree::FunctionNode ;T;@;i; [o:Sass::Tree::ReturnNode ;@;i; [; o:Sass::Script::Funcall ;@;i; "if: @args[o:Sass::Script::Operation ;@;i:@operand2o:Sass::Script::Variable ;@;i:@underscored_name"threshold; "threshold:@operand1o; ;@;i; "lightness;[o;" ;@;i;#" color; " color:@keywords{:@operator:lto;" ;@;i;#" light; " lighto;" ;@;i;#" dark; " dark;%{; "contrast-color;[ [o;";@;#" color; " color0[o;";@;#" dark; " darko;" ;@;i;#"contrasted_dark_default; "contrasted-dark-default[o;";@;#" light; " lighto;" ;@;i;#"contrasted_light_default; "contrasted-light-default[o;";@;#"threshold; "thresholdo;" ;@;i;#"#contrasted_lightness_threshold; "#contrasted-lightness-thresholdo; ;@;i; [;["¿/* Sets the specified background color and calculates a dark or light contrasted text color. * The arguments are passed through to the [contrast-color function](#function-contrast-color). */;0;io:Sass::Tree::MixinDefNode ;T;@;i; [o:Sass::Tree::PropNode ;@;i; [;o;" ;@;i;#"background_color; "background-color: @tabsi; ["background-color:@prop_syntax:newo;) ;@;i ; [;o; ;@;i ; "contrast-color;[ o;" ;@;i ;#"background_color; "background-coloro;" ;@;i ;#" dark; " darko;" ;@;i ;#" light; " lighto;" ;@;i ;#"threshold; "threshold;%{;*i; [" color;+;,; "contrasted;[ [o;";@;#"background_color; "background-color0[o;";@;#" dark; " darko;" ;@;i;#"contrasted_dark_default; "contrasted-dark-default[o;";@;#" light; " lighto;" ;@;i;#"contrasted_light_default; "contrasted-light-default[o;";@;#"threshold; "thresholdo;" ;@;i;#"#contrasted_lightness_threshold; "#contrasted-lightness-threshold:@template"+$contrasted-dark-default: #000 !default; $contrasted-light-default: #fff !default; $contrasted-lightness-threshold: 30% !default; // Returns the `$light` color when the `$color` is dark // and the `$dark` color when the `$color` is light. // The `$threshold` is a percent between `0%` and `100%` and it determines // when the lightness of `$color` changes from "dark" to "light". @function contrast-color( $color, $dark: $contrasted-dark-default, $light: $contrasted-light-default, $threshold: $contrasted-lightness-threshold ) { @return if(lightness($color) < $threshold, $light, $dark) } // Sets the specified background color and calculates a dark or light contrasted text color. // The arguments are passed through to the [contrast-color function](#function-contrast-color). @mixin contrasted( $background-color, $dark: $contrasted-dark-default, $light: $contrasted-light-default, $threshold: $contrasted-lightness-threshold ) { background-color: $background-color; color: contrast-color($background-color, $dark, $light, $threshold); }