pomo-tui
Version:
> A beautiful terminal-based Pomodoro timer built with React Ink
24 lines (23 loc) • 618 B
JavaScript
export const gradientThemes = [
'cristal',
'teen',
'mind',
'morning',
'vice',
'passion',
'fruit',
'instagram',
'atlas',
'retro',
'summer',
'rainbow',
'pastel',
];
export const cycleGradient = (currentTheme) => {
const currentIndex = gradientThemes.indexOf(currentTheme);
return gradientThemes[(currentIndex + 1) % gradientThemes.length];
};
export const cyclePreviousGradient = (currentTheme) => {
const currentIndex = gradientThemes.indexOf(currentTheme);
return gradientThemes[currentIndex === 0 ? gradientThemes.length - 1 : currentIndex - 1];
};