//! Module defining constants relevant to the data model.
use ;
/// Name of the default font.
pub const DEFAULT_FONT: &'static str = "Impact";
/// Default color of the text.
pub const DEFAULT_COLOR: Color = Color;
/// Default color of the text outline.
/// This is the inversion of `DEFAULT_COLOR`.
pub const DEFAULT_OUTLINE_COLOR: Color = Color;
/// Default horizontal alignment of text.
pub const DEFAULT_HALIGN: HAlign = Center;
/// Maximum number of captions an ImageMacro can have.
pub const MAX_CAPTION_COUNT: usize = 16;
/// Maximum width of the result image.
pub const MAX_WIDTH: u32 = 1024;
/// Maximum height of the result image.
pub const MAX_HEIGHT: u32 = 1024;
/// Maximum length (in Unicode codepoints) of a single caption text.
pub const MAX_CAPTION_LENGTH: usize = 256;