function createEntry(str) {
if (isComment(str)) {
return { type: "heading", value: str.substr(2).trim() };
}
if (isHexColorProperty(str)) {
const cleanStr = str.trim().slice(0, -1);
const [key, value] = cleanStr.split(": ");
return { type: "color", key, value };
}
}