Skip to main content

systemprompt_provider_contracts/web_config/theme/
scale.rs

1//! Spacing and border-radius scales.
2//!
3//! Copyright (c) systemprompt.io — Business Source License 1.1.
4//! See <https://systemprompt.io> for licensing details.
5
6use serde::{Deserialize, Serialize};
7
8#[derive(Debug, Clone, Serialize, Deserialize)]
9pub struct SpacingConfig {
10    pub xs: String,
11    pub sm: String,
12    pub md: String,
13    pub lg: String,
14    pub xl: String,
15    pub xxl: String,
16}
17
18#[derive(Debug, Clone, Serialize, Deserialize)]
19pub struct RadiusConfig {
20    pub xs: String,
21    pub sm: String,
22    pub md: String,
23    pub lg: String,
24    pub xl: String,
25    pub xxl: String,
26    pub round: String,
27}