tinted-builder 0.13.0

A Tinted Theming template builder which uses yaml color schemes to generate theme files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::SchemeSupports;
use serde::Serialize;

use crate::SchemeSystem;

#[derive(Debug, Clone, Serialize)]
pub struct SchemeMeta {
    pub system: SchemeSystem,
    pub name: String,
    pub author: String,
    pub theme_author: String,
    pub slug: String,
    pub supports: SchemeSupports,
    pub family: Option<String>,
    pub style: Option<String>,
    pub description: Option<String>,
}