#![allow(non_upper_case_globals)]
#![allow(non_snake_case)]
use wallust::colors::Colors;
use wallust::colors::Myrgb;
use palette::Srgb;
pub fn mycols() -> Colors {
Colors {
cursor: Myrgb(Srgb::new(221_u8, 221, 221).into_format()), background: Myrgb(Srgb::new(238_u8, 238, 238).into_format()), foreground: Myrgb(Srgb::new(221_u8, 221, 221).into_format()), color0 : Myrgb(Srgb::new(0 , 0_u8, 0).into_format()), color1 : Myrgb(Srgb::new(1 , 0_u8, 0).into_format()), color2 : Myrgb(Srgb::new(2 , 0_u8, 0).into_format()),
color3 : Myrgb(Srgb::new(3 , 0_u8, 0).into_format()),
color4 : Myrgb(Srgb::new(4 , 0_u8, 0).into_format()),
color5 : Myrgb(Srgb::new(5 , 0_u8, 0).into_format()),
color6 : Myrgb(Srgb::new(6 , 0_u8, 0).into_format()),
color7 : Myrgb(Srgb::new(7 , 0_u8, 0).into_format()),
color8 : Myrgb(Srgb::new(8 , 0_u8, 0).into_format()),
color9 : Myrgb(Srgb::new(9 , 0_u8, 0).into_format()),
color10: Myrgb(Srgb::new(10, 0_u8, 0).into_format()), color11: Myrgb(Srgb::new(11, 0_u8, 0).into_format()),
color12: Myrgb(Srgb::new(12, 0_u8, 0).into_format()),
color13: Myrgb(Srgb::new(13, 0_u8, 0).into_format()),
color14: Myrgb(Srgb::new(14, 0_u8, 0).into_format()),
color15: Myrgb(Srgb::new(15, 0_u8, 0).into_format()), }
}
pub const wall_str: &str = "/home";