• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/hook/page/theme.php
  • Класс: BitrixLandingHookPageTheme
  • Вызов: Theme::getThemeCodeByColor
static function getThemeCodeByColor(string $hexColor): ?string
{
	$colors = self::getColorCodes();
	foreach($colors as $code => $color)
	{
		if($color['color'] === $hexColor)
		{
			return $code;
		}
	}

	return null;
}