Get dynamic page bg Color from database

I have the below code, but it does not work…I am trying to get rgba color code from my database. the database field type is text and color code is “rgba(255,0,0,0.5)”

$w.onReady( function () {

 $w( "#dynamicDataset" ).onReady( () => { 

let currentItem = $w( “#dynamicDataset” ).getCurrentItem();

let bgColor = $w( “#box2” ).style.backgroundColor

    $w( "#box2" ).style.bgColor = { 

“bgColor1” : currentItem.backgroundColor,

“description” : currentItem.location,

    }; 


}); 

});

Read this : https://www.wix.com/corvid/reference/$w/style/backgroundcolor

but basically it should be:

$w("#box2").style.backgroundColor =currentItem.backgroundColor;

There is no room for “Description” in this.

Thanks, how do I point to the database field…? the database in my code is

“bgColor1” : currentItem.backgroundColor,

Thanks