-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcolorchecker.html
40 lines (34 loc) · 2.13 KB
/
colorchecker.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
37
38
39
40
<html>
<head>
<script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
</head>
<body>
<a-scene>
<a-sphere position="0.00 1.75 -2" radius="0.10" color="#735244"></a-sphere>
<a-sphere position="0.00 1.50 -2" radius="0.10" color="#d67e2c"></a-sphere>
<a-sphere position="0.00 1.25 -2" radius="0.10" color="#383d96"></a-sphere>
<a-sphere position="0.00 1.00 -2" radius="0.10" color="#f3f3f2"></a-sphere>
<a-sphere position="0.25 1.75 -2" radius="0.10" color="#c29682"></a-sphere>
<a-sphere position="0.25 1.50 -2" radius="0.10" color="#505ba6"></a-sphere>
<a-sphere position="0.25 1.25 -2" radius="0.10" color="#469449"></a-sphere>
<a-sphere position="0.25 1.00 -2" radius="0.10" color="#c8c8c8"></a-sphere>
<a-sphere position="0.50 1.75 -2" radius="0.10" color="#627a9d"></a-sphere>
<a-sphere position="0.50 1.50 -2" radius="0.10" color="#c15a63"></a-sphere>
<a-sphere position="0.50 1.25 -2" radius="0.10" color="#af363c"></a-sphere>
<a-sphere position="0.50 1.00 -2" radius="0.10" color="#a0a0a0"></a-sphere>
<a-sphere position="0.75 1.75 -2" radius="0.10" color="#576c43"></a-sphere>
<a-sphere position="0.75 1.50 -2" radius="0.10" color="#5e3c6c"></a-sphere>
<a-sphere position="0.75 1.25 -2" radius="0.10" color="#e7c71f"></a-sphere>
<a-sphere position="0.75 1.00 -2" radius="0.10" color="#7a7a79"></a-sphere>
<a-sphere position="1.00 1.75 -2" radius="0.10" color="#8580b1"></a-sphere>
<a-sphere position="1.00 1.50 -2" radius="0.10" color="#9dbc40"></a-sphere>
<a-sphere position="1.00 1.25 -2" radius="0.10" color="#bb5695"></a-sphere>
<a-sphere position="1.00 1.00 -2" radius="0.10" color="#555555"></a-sphere>
<a-sphere position="1.25 1.75 -2" radius="0.10" color="#67bdaa"></a-sphere>
<a-sphere position="1.25 1.50 -2" radius="0.10" color="#e0a32e"></a-sphere>
<a-sphere position="1.25 1.25 -2" radius="0.10" color="#0885a1"></a-sphere>
<a-sphere position="1.25 1.00 -2" radius="0.10" color="#343434"></a-sphere>
<a-sky color="#ECECEC"></a-sky>
</a-scene>
</body>
</html>