@keyframes voorbeeld { from { background-color: green; } to { background-color: black; } } div { width: 100px; height: 100px; background-color: green; animation: voorbeeld 2s; }