colornamer 1.0.1

give me a color and I will name it
Documentation
1
2
3
4
5
6
use std::vec::Vec;
use color::Color;

pub trait ColorNames {
    fn get_colors(&self) -> Vec<Color>;
}