only the JPG works but the JSON export not longer appears: https://colors.eva.design
Workaround
Copy following script into the browser console:
var colors = [
...document.querySelectorAll('ec-color-shade div > span')
].map((item) => item.innerText);
var colorNames = ['primary', 'success', 'info', 'warning', 'danger'];
var shadeLevels = [100, 200, 300, 400, 500, 600, 700, 800, 900];
var result = {};
colorNames.forEach((colorName, i) => {
const offset = i * 10;
shadeLevels.forEach((shade, j) => {
const hex = colors[offset + j];
if (hex) {
result[`color-${colorName}-${shade}`] = hex;
}
});
});
console.log(JSON.stringify(result, null, 4));
only the JPG works but the JSON export not longer appears: https://colors.eva.design
Workaround
Copy following script into the browser console: