@use 'sass:list';
@forward 'conversions';
@forward 'utilities';
@forward 'extra';

$srgb: ('rgb', 'hsl', 'hwb', 'device-cmyk', 'srgb', auto);

@function to(
  $format
) {
  @return if(
    list.index($srgb, $format),
    'rgb',
    $format
  );
}
