summaryrefslogtreecommitdiffstats
path: root/src/options/config/style.rs
blob: 38d9350082033e7043597a21bd198409e268f2ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod colours;
pub mod palettes;

use serde::Deserialize;

use crate::args::StyleArgs;

#[derive(Clone, Debug, Default, Deserialize)]
pub(crate) struct StyleConfig {
    #[serde(flatten)]
    pub(crate) args: StyleArgs,
    // TODO: Maybe also put colours here?
}