Skip to main content

temp_convert/
utils.rs

1pub const ABS_ZERO_CELSIUS: f64 = -273.15;
2pub const ABS_ZERO_FAHRENHEIT: f64 = -459.67;
3pub const ABS_ZERO_KELVIN: f64 = 0.0;
4
5pub const COLOR_GREEN: &str = "\x1b[32m";
6pub const COLOR_ERROR: &str = "\x1b[31m";
7pub const COLOR_INFO: &str = "\x1b[36m";
8pub const COLOR_RESET: &str = "\x1b[0m";