tinge 0.1.0

A terminal-gui tool for generate, analyze, convert and manipulate colors...
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use wasm_bindgen::prelude::*;
#[cfg(not(any(feature = "sdl", target_arch = "wasm32")))]
use tinge::run;

fn main() -> Result<(), JsValue> {
    #[cfg(any(feature = "sdl", target_arch = "wasm32"))]
    {
        println!("Run in terminal only...");
        return Ok(());
    }
    #[cfg(not(any(feature = "sdl", target_arch = "wasm32")))]
    run()
}