colorverse 0.6.7

Color vision diversity (色覚多様性) convertor - not only simulate but also daltonize (色の補正)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use argh::FromArgs;

use crate::cli::args::sub_command::SubCommand;

pub mod sub_command;

#[derive(FromArgs)]
#[argh(description = "args")]
pub struct Args {
    #[argh(subcommand)]
    pub sub_command: SubCommand,
}