Current section
Files
Jump to
Current section
Files
src/m3e/color_scheme.gleam
//// ColorScheme
////
//// This file was generated by m3e/generator
////
//// DO NOT EDIT
////
pub type ColorScheme {
Light
Dark
Auto
}
pub fn to_string(level: ColorScheme) -> String {
case level {
Light -> "light"
Dark -> "dark"
Auto -> "auto"
}
}