//
// Copyright IBM Corp. 2016, 2023
//
// This source code is licensed under the Apache-2.0 license found in the
// LICENSE file in the root directory of this source tree.
//

@use '../../config' as *;

/// @access public
/// @group notification
@mixin inline-notification--color($color) {
  border: 1px solid $color;
  border-inline-start: 6px solid $color;

  .#{$prefix}--inline-notification__icon {
    fill: $color;
  }
}

//----------------------------------------------
// Toast Notification
// ---------------------------------------------

/// @access private
/// @group notification
@mixin notification--color($color) {
  border-inline-start: 6px solid $color;
}

/// @access private
/// @group notification
@mixin notification--experimental($color, $background-color) {
  background: $background-color;
  border-inline-start: 3px solid $color;

  .#{$prefix}--inline-notification__icon,
  .#{$prefix}--toast-notification__icon,
  .#{$prefix}--actionable-notification__icon {
    fill: $color;
  }
}
