1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use serde::Serialize;
#[derive(Debug, Clone, PartialEq, Serialize, ts_rs::TS)]
#[ts(export)]
#[serde(rename_all = "camelCase")]
pub struct FontSchemeFont {
pub script: String,
pub typeface: String,
}
#[derive(Debug, Clone, PartialEq, Serialize, Default, ts_rs::TS)]
#[ts(export)]
#[serde(rename_all = "camelCase")]
pub struct FontGroup {
pub latin: String,
pub ea: String,
pub cs: String,
pub fonts: Vec<FontSchemeFont>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Default, ts_rs::TS)]
#[ts(export)]
#[serde(rename_all = "camelCase")]
pub struct FontScheme {
pub major_font: FontGroup,
pub minor_font: FontGroup,
}
impl FontScheme {
pub fn new() -> Self {
Self::default()
}
}