rsmoji 0.4.1

✨ Gitmojis, now oxidized! 🦀
use crossterm::{cursor::MoveToColumn, execute, style::Color};
use std::io;

pub fn cursor_to_start() {
	execute!(io::stdout(), MoveToColumn(0))
		.expect("Failed to move cursor to the start of the line");
}

pub const MAX_LIST_LENGTH: usize = 6;

pub const CATPPUCCIN_ACTIVE: Color = Color::Rgb {
	r: 203,
	g: 166,
	b: 247,
};

pub const CATPPUCCIN_INACTIVE: Color = Color::Rgb {
	r: 186,
	g: 194,
	b: 222,
};