Color Palette
Background
Background 1
Background 2
Foreground
Red
Orange
Yellow
Green
Aqua
Blue
Purple
Code Sample
// Everforest theme example
function generateTheme(variant, contrast) {
const colors = {
background: '#2f383e',
foreground: '#d3c6aa',
accent: '#a7c080'
};
return processTemplate(colors);
}