# flake8: noqa: E501 # Copyright (c) 2025 ByteDance Ltd. and/or its affiliates # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """ CSS and HTML content for the Depth Anything 3 Gradio application. This module contains all the CSS styles and HTML content blocks used in the Gradio interface. """ # CSS Styles for the Gradio interface GRADIO_CSS = """ /* Add Font Awesome CDN with all styles including brands and colors */ @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css'); /* Add custom styles for colored icons */ .fa-color-blue { color: #3b82f6; } .fa-color-purple { color: #8b5cf6; } .fa-color-cyan { color: #06b6d4; } .fa-color-green { color: #10b981; } .fa-color-yellow { color: #f59e0b; } .fa-color-red { color: #ef4444; } .link-btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; padding: 12px 24px; border-radius: 50px; font-weight: 500; transition: all 0.3s ease; } /* Dark mode tech theme */ @media (prefers-color-scheme: dark) { html, body { background: #1e293b; color: #ffffff; } .gradio-container { background: #1e293b; color: #ffffff; } .link-btn { background: rgba(255, 255, 255, 0.2); color: white; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.3); } .link-btn:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); } .tech-bg { background: linear-gradient(135deg, #0f172a, #1e293b); /* Darker colors */ position: relative; overflow: hidden; } .tech-bg::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%), /* Reduced opacity */ radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%), /* Reduced opacity */ radial-gradient(circle at 40% 40%, rgba(18, 194, 233, 0.1) 0%, transparent 50%); /* Reduced opacity */ animation: techPulse 8s ease-in-out infinite; } .gradio-container .panel, .gradio-container .block, .gradio-container .form { background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 10px; } .gradio-container * { color: #ffffff; } .gradio-container label { color: #e0e0e0; } .gradio-container .markdown { color: #e0e0e0; } } /* Light mode tech theme */ @media (prefers-color-scheme: light) { html, body { background: #ffffff; color: #1e293b; } .gradio-container { background: #ffffff; color: #1e293b; } .tech-bg { background: linear-gradient(135deg, #ffffff, #f1f5f9); position: relative; overflow: hidden; } .link-btn { background: rgba(59, 130, 246, 0.15); color: var(--body-text-color); border: 1px solid rgba(59, 130, 246, 0.3); } .link-btn:hover { background: rgba(59, 130, 246, 0.25); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2); } .tech-bg::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(18, 194, 233, 0.08) 0%, transparent 50%); animation: techPulse 8s ease-in-out infinite; } .gradio-container .panel, .gradio-container .block, .gradio-container .form { background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(59, 130, 246, 0.3); border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .gradio-container * { color: #1e293b; } .gradio-container label { color: #334155; } .gradio-container .markdown { color: #334155; } } @keyframes techPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.8; } } /* Custom log with tech gradient */ .custom-log * { font-style: italic; font-size: 22px !important; background: linear-gradient(135deg, #3b82f6, #8b5cf6); background-size: 400% 400%; -webkit-background-clip: text; background-clip: text; font-weight: bold !important; color: transparent !important; text-align: center !important; animation: techGradient 3s ease infinite; } @keyframes techGradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } @keyframes metricPulse { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } @keyframes pointcloudPulse { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } @keyframes camerasPulse { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } @keyframes gaussiansPulse { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } /* Special colors for key terms - Global styles */ .metric-text { background: linear-gradient(45deg, #ff6b6b, #ff8e53, #ff6b6b); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; color: transparent !important; animation: metricPulse 2s ease-in-out infinite; font-weight: 700; text-shadow: 0 0 10px rgba(255, 107, 107, 0.5); } .pointcloud-text { background: linear-gradient(45deg, #4ecdc4, #44a08d, #4ecdc4); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; color: transparent !important; animation: pointcloudPulse 2.5s ease-in-out infinite; font-weight: 700; text-shadow: 0 0 10px rgba(78, 205, 196, 0.5); } .cameras-text { background: linear-gradient(45deg, #667eea, #764ba2, #667eea); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; color: transparent !important; animation: camerasPulse 3s ease-in-out infinite; font-weight: 700; text-shadow: 0 0 10px rgba(102, 126, 234, 0.5); } .gaussians-text { background: linear-gradient(45deg, #f093fb, #f5576c, #f093fb); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; color: transparent !important; animation: gaussiansPulse 2.2s ease-in-out infinite; font-weight: 700; text-shadow: 0 0 10px rgba(240, 147, 251, 0.5); } .example-log * { font-style: italic; font-size: 16px !important; background: linear-gradient(135deg, #3b82f6, #8b5cf6); -webkit-background-clip: text; background-clip: text; color: transparent !important; } #my_radio .wrap { display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; } #my_radio .wrap label { display: flex; width: 50%; justify-content: center; align-items: center; margin: 0; padding: 10px 0; box-sizing: border-box; } /* Align navigation buttons with dropdown bottom */ .navigation-row { display: flex !important; align-items: flex-end !important; gap: 8px !important; } .navigation-row > div:nth-child(1), .navigation-row > div:nth-child(3) { align-self: flex-end !important; } .navigation-row > div:nth-child(2) { flex: 1 !important; } /* Make thumbnails clickable with pointer cursor */ .clickable-thumbnail img { cursor: pointer !important; } .clickable-thumbnail:hover img { cursor: pointer !important; opacity: 0.8; transition: opacity 0.3s ease; } /* Make thumbnail containers narrower horizontally */ .clickable-thumbnail { padding: 5px 2px !important; margin: 0 2px !important; } .clickable-thumbnail .image-container { margin: 0 !important; padding: 0 !important; } .scene-info { text-align: center !important; padding: 5px 2px !important; margin: 0 !important; } """ def get_header_html(logo_base64=None): """ Generate the main header HTML with logo and title. Args: logo_base64 (str, optional): Base64 encoded logo image Returns: str: HTML string for the header """ return """
""" def get_description_html(): """ Generate the main description and getting started HTML. Returns: str: HTML string for the description """ return """Upload images or videos → Get Metric Point Clouds, Cameras and Novel Views → Explore in 3D
Tip: Landscape-oriented images or videos are preferred for best 3D recovering.
HF demo adapted from Map Anything