<!DOCTYPE html> <html lang="nl"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Indigo</title> </head> <body> <h1>Indigo</h1> <script type="module"> import { indigoColors } from './colors.js'; document.body.style.backgroundColor = indigoColors[500]; </script> </body> </html>