var test = { 'Один' : '#fff484', 'Два' : 'вот сюда как записать код?'
.svet { background-color: black; }
<style id="cvet"> .svet { background-color: black; } </style>
const style = document.getElementById('cvet'); const rules = Array.from(style.sheet.cssRules); const rule = rules.find(rule => rule.selectorText === '.svet') test['два'] = rule.style.backgroundColor;
<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>