• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/update/converterobjectcolor.php
  • Класс: BitrixCalendarUpdateConverterObjectColor
  • Вызов: ConverterObjectColor::getNewColor
public function getNewColor($color)
{
	$color = strtolower($color);
	$colorTable = array(
		// Biege
		'#af7e00' => '#c3612c',
		// blue
		'#2fc6f6' => '#0092cc',
		// gray
		'#a8adb4' => '#838fa0',
		// turquoise
		'#47e4c2' => '#00b38c',
		// orange
		'#ffa900' => '#ffa900',
		// blue2
		'#56d1e0' => '#e89b06',
		// violet
		'#9985dd' => '#bd7ac9',
		// red
		'#f87396' => '#de2b24',
		// green
		'#9dcf00' => '#86b100',
	);
	if ($color && isset($colorTable[$color]))
		return $colorTable[$color];
	return $color;
}