} />,
+ },
+ {
+ id: "css",
+ panel: (
+
+
+
+
+ ),
+ title: "CSS properties",
+ },
+ {
+ id: "scss",
+ panel: (
+
+
+
+ ),
+ title: "SCSS configuration",
+ },
+ {
+ id: "hashtest",
+ title: "Color hashes",
+ panel: (
+
+
+
+ {Object.values(currentLayoutColorList).length > 0 && (
+ <>
+
+
+ Allow text as direct color hash
+
+
+
+ {"yellow purple magenta pink violet indigo cyan teal lime grey rgb(128,0,128) #00ffff no_valid_color_string"
+ .toString()
+ .split(" ")
+ .map((text, index) => (
+
+ {text}
+
+ ))}
+
+
+
+
+
+
+ Allow text as color but look for nearest palette neighbour
+
+
+
+
+ {"yellow purple magenta pink violet indigo cyan teal lime amber vermilion grey rgb(128,0,128) #00ffff no_valid_color_string"
+ .toString()
+ .split(" ")
+ .map((text, index) => (
+
+ {text}
+
+ ))}
+
+
+
+
+
+ Directly used color hash
+
+
+
+ {loremIpsum({
+ p: 1,
+ avgSentencesPerParagraph: 1,
+ avgWordsPerSentence: 40,
+ random: false,
+ })
+ .toString()
+ .split(" ")
+ .map((text, index) => (
+
+ {text}
+
+ ))}
+
+
+
+
+
+
+ Nearest layout palette neighbour of color hash
+
+
+
+
+ {loremIpsum({
+ p: 1,
+ avgSentencesPerParagraph: 1,
+ avgWordsPerSentence: 40,
+ random: false,
+ })
+ .toString()
+ .split(" ")
+ .map((text, index) => (
+
+ {text}
+
+ ))}
+
+
+ >
+ )}
+
+ ),
+ },
+ ]}
+ />
+