CSS register property
// Define custom css property (variable) in order to make it animatable when redefining it
// inside @keyframes animation
CSS.registerProperty({
name: '--color',
syntax: '<color>'
initialValue: 'black',
inherits: false
});