3.1.7 (Brainy Betty) f69f933b8a0ad343427e2279009e4463625e6f1b o:Sass::Tree::RootNode : @options{:@children[ o:Sass::Tree::VariableNode ;@;[: @guarded" !default: @linei: @name"contrasted-dark-default: @expro:Sass::Script::Color ;@; i: @value0: @attrs{ : alphai: bluei: greeni:redio; ;@;[; " !default; i; "contrasted-light-default; o; ;@; i;0;{ ;i;iÿ;iÿ;iÿo; ;@;[; " !default; i; "#contrasted-lightness-threshold; o:Sass::Script::Number ;@:@denominator_units[; i;i#:@numerator_units["%:@original"30%o:Sass::Tree::CommentNode ;@: @silenti;[: @lines[; 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". */: @loud0o:Sass::Tree::FunctionNode ;@;[o:Sass::Tree::ReturnNode ;@;[; i; o:Sass::Script::Funcall ;@; i; "if:@keywords{: @args[o:Sass::Script::Operation ;@:@operand2o:Sass::Script::Variable ;@; i; "threshold:@underscored_name"threshold; i:@operator:lt:@operand1o; ;@; i; "lightness;{; [o;# ;@; i; " color;$" coloro;# ;@; i; " light;$" lighto;# ;@; i; " dark;$" dark; i; "contrast-color:@has_childrenT; [ [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;[;[; 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). */;0o:Sass::Tree::MixinDefNode ;@;[o:Sass::Tree::PropNode ;@:@prop_syntax:new;[; i;o;# ;@; i; "background-color;$"background_color; ["background-color: @tabsio;* ;@;+;,;[; i ;o; ;@; i ; "contrast-color;{; [ o;# ;@; i ; "background-color;$"background_coloro;# ;@; i ; " dark;$" darko;# ;@; i ; " light;$" lighto;# ;@; i ; "threshold;$"threshold; [" color;-i; i; "contrasted;(T; [ [o;#;{; "background-color;$"background_color0[o;#;@z; " dark;$" darko;# ;@z; i; "contrasted-dark-default;$"contrasted_dark_default[o;#;@z; " light;$" lighto;# ;@z; i; "contrasted-light-default;$"contrasted_light_default[o;#;@z; "threshold;$"thresholdo;# ;@z; i; "#contrasted-lightness-threshold;$"#contrasted_lightness_threshold; i:@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); };(T