<!DOCTYPE html>
<html>
  <head>
    <title>Primitives - 05 - Color</title>
    <script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
    <script src="../js/livecode.js"></script>
  </head>
  <body>
    <a-scene>
      <a-box
        position="-1 2 -2"
        width="1"
        height="1"
        depth="1"
        rotation="0 0 0"
        color="red"
      ></a-box>
      <a-box
        position="0 2 -2"
        width="1"
        height="1"
        depth="1"
        rotation="0 0 0"
        color="green"
      ></a-box>
      <a-box
        position="1 2 -2"
        width="1"
        height="1"
        depth="1"
        rotation="0 0 0"
        color="blue"
      ></a-box>
      <a-box
        position="0 3 -2"
        width="1"
        height="1"
        depth="1"
        rotation="0 0 0"
        color="#ff8533"
      ></a-box>
    </a-scene>
  </body>
</html>