- Add comprehensive CSS custom properties for all theme colors - Include modal, button, input, text, and background color variables - Enhance dark theme with complete variable overrides for proper contrast - Replace hardcoded colors in print-preview.css with theme variables - Add FontAwesome CDN integration and replace emoji icons - Create minimalistic glass-effect checkbox styling with transparency - Fix white-on-white text issue in dark theme across all modals 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
957 B
HTML
23 lines
957 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Runway</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<base data-trunk-public-url />
|
|
<link data-trunk rel="css" href="styles.css">
|
|
<link data-trunk rel="css" href="print-preview.css">
|
|
<link data-trunk rel="copy-file" href="styles/google.css">
|
|
<link data-trunk rel="icon" href="favicon.ico">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
</head>
|
|
<body>
|
|
<script>
|
|
console.log("HTML fully loaded, waiting for WASM...");
|
|
window.addEventListener('TrunkApplicationStarted', () => {
|
|
console.log("Trunk application started successfully!");
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|