UNPKG

@debugmcp/mcp-debugger

Version:

Run-time step-through debugging for LLM agents.

87 lines (82 loc) 2.5 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>MCP Debugger Logo Test</title> <style> body { font-family: Arial, sans-serif; margin: 20px; } .container { display: flex; gap: 20px; margin-bottom: 20px; } .test-box { padding: 20px; text-align: center; border: 1px solid #ccc; border-radius: 8px; } .light-bg { background-color: #ffffff; } .dark-bg { background-color: #1e1e1e; color: #ffffff; } .gray-bg { background-color: #808080; color: #ffffff; } img { display: block; margin: 10px auto; border: 1px solid rgba(0,0,0,0.1); } h1 { text-align: center; margin-bottom: 30px; } .info { margin-top: 20px; padding: 10px; background-color: #f0f0f0; border-radius: 5px; } </style> </head> <body> <h1>MCP Debugger Logo Visibility Test</h1> <div class="container"> <div class="test-box light-bg"> <h3>Light Background</h3> <img src="logo.png" alt="MCP Debugger Logo" width="200" height="200"> <p>Test on white background</p> </div> <div class="test-box dark-bg"> <h3>Dark Background</h3> <img src="logo.png" alt="MCP Debugger Logo" width="200" height="200"> <p>Test on dark background</p> </div> <div class="test-box gray-bg"> <h3>Gray Background</h3> <img src="logo.png" alt="MCP Debugger Logo" width="200" height="200"> <p>Test on neutral background</p> </div> </div> <div class="info"> <h3>Logo Information</h3> <ul> <li>Marketplace version: 400x400px</li> <li>File size: ~89KB</li> <li>Format: PNG (RGB, no transparency)</li> <li>Location: assets/logo.png</li> </ul> <p><strong>Note:</strong> This test page helps verify logo visibility on different backgrounds. The logo should be clearly visible and maintain good contrast on all three backgrounds.</p> </div> </body> </html>