///
//  Copyright (c) 2022 GrowStocks
//
//  Permission is hereby granted, free of charge, to any person obtaining a copy
//  of this software and associated documentation files (the "Software"), to deal
//  in the Software without restriction, including without limitation the rights
//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
//  copies of the Software, and to permit persons to whom the Software is
//  furnished to do so, subject to the following conditions:
//
//  The above copyright notice and this permission notice shall be included in all
//  copies or substantial portions of the Software.
//
//  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
//  SOFTWARE.
///

@use '../kardia';
@use 'sass:map';
@use 'sass:list';
@use 'consts';
@use 'util-helpers' as helpers;

$_breakpoints: consts.$breakpoints;
$_colors: (
  'surface',
  'accent',
  'success',
  'warning',
  'error',
  'undefined',
);
$_tones: (200, 300, 400, 600, 800, 'ink');

@mixin color($include: (), $exclude: ()) {
  $utils-to-render: helpers.handle-include-exclude(('fill', 'ink', 'border'), $include, $exclude);

  // Background color
  @if list.index($utils-to-render, 'fill') {
    @each $color in $_colors {
      @each $tone in $_tones {
        .fill-#{$color}-#{$tone} {
          background-color: kardia.token-get('#{$color}-#{$tone}');
        }

        @each $breakpoint in $_breakpoints {
          .\@#{$breakpoint}\:fill-#{$color}-#{$tone} {
            @include kardia.breakpoint-create($breakpoint) {
              background-color: kardia.token-get('#{$color}-#{$tone}') !important;
            }
          }
        }
      }
    }
  }

  // Text color
  @if list.index($utils-to-render, 'ink') {
    @each $color in $_colors {
      @each $tone in $_tones {
        .ink-#{$color}-#{$tone} {
          color: kardia.token-get('#{$color}-#{$tone}');
        }

        @each $breakpoint in $_breakpoints {
          .\@#{$breakpoint}\:ink-#{$color}-#{$tone} {
            @include kardia.breakpoint-create($breakpoint) {
              color: kardia.token-get('#{$color}-#{$tone}') !important;
            }
          }
        }
      }
    }
  }

  // Border color
  @if list.index($utils-to-render, 'border') {
    @each $color in $_colors {
      @each $tone in $_tones {
        .border-#{$color}-#{$tone} {
          border-color: kardia.token-get('#{$color}-#{$tone}');
        }

        @each $breakpoint in $_breakpoints {
          .\@#{$breakpoint}\:border-#{$color}-#{$tone} {
            @include kardia.breakpoint-create($breakpoint) {
              border-color: kardia.token-get('#{$color}-#{$tone}') !important;
            }
          }
        }
      }
    }
  }
}