Точно так же
<head>
<style id="cvet">
.svet {
background-color: black;
}
</style>
</head>
<body>
<script>
const test = {
'Один' : '#fff484',
'Два' : 'вот сюда как записать код?'
};
const style = document.getElementById('cvet');
const rules = Array.from(style.sheet.cssRules);
const rule = rules.find(rule => rule.selectorText === '.svet')
test['Два'] = rule.style.backgroundColor;
alert (test['Два']);
</script>
</body>