Color Converter
Convert HEX ↔ RGB instantly.
include_once $_SERVER['DOCUMENT_ROOT'] . "/lib/lib.php"; $toolName = "Color Converter"; $toolSlug = "color-converter-hex-rgb"; $toolCategory = "developer-tools"; $toolCategoryName = "Developer Tools"; $toolContent = [ 'about' => 'Color Converter allows you to convert HEX color codes to RGB and vice versa instantly.', 'howto' => [ 'Enter HEX or RGB value.', 'Click Convert.', 'View the converted result.' ], 'why' => 'Useful for web design, CSS styling, and development work.', 'faq' => [ [ 'q' => 'Can I convert both ways?', 'a' => 'Yes. HEX to RGB and RGB to HEX.' ] ] ]; include_once $_SERVER['DOCUMENT_ROOT'] . '/inc/tools/related-tools-helper.php'; $relatedTools = getAutoRelatedTools($toolSlug, $toolCategory, 5); include_once $_SERVER['DOCUMENT_ROOT'] . "/inc/header.html"; ?>
include_once $_SERVER['DOCUMENT_ROOT'] . "/inc/nav.html"; ?>Convert HEX ↔ RGB instantly.