JSFiddle - React, Tailwind, and code Playground
by clauswilke
JavaScript
// convert from doom palette to color names
const InverseDoom = {
'#FFFF00': 'color_energy',
'#007F00': 'color_main_primary',
'#7FBF00': 'color_main_secondary',
'#007F7F': 'color_darker',
'#7FBFBF': 'color_main_tertiary',
'#7FBF7F': 'color_brighter',
'#7F7F7F': 'color_neutral'
}
for (let col of InverseDoom) {
console.log(col)
}