-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Color Distance Analysis</title>
<link rel="stylesheet" href="css/styles.css">
<script type="module" src="js/main.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
</head>
<body>
<div id="control-container"></div>
<div id="initial-colors" class="algorithm-section"></div>
<div id="results"></div>
<div class="footer">
This color analysis tool was generated with the assistance of Claude AI (Anthropic).
<br>
All algorithms and visualizations are powered by AI-assisted development.
<br>
<span style="font-size: 0.9em; color: #888;">
<a href="https://bdamokos.github.io" style="color: #666; text-decoration: none;">More Projects</a> |
<a href="https://github.com/bdamokos/color-distance" style="color: #666; text-decoration: none;">Source Code</a>
</span>
</div>
<script>
// Initialize the page when DOM is loaded
document.addEventListener('DOMContentLoaded', () => {
window.initializePage();
// Set initial colors after modules are loaded
window.initialColors = Array.from({length: 50}, () => window.randomColor());
});
</script>
</body>
</html>