semtext 0.1.0

Terminal UI Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// text/mod.rs
//
// Copyright (c) 2020  Douglas P Lau
//
//! Text styles and themes

mod color;
mod glyph;
mod outline;
mod style;
mod theme;

pub use color::{Color, Intensity};
pub use glyph::{Glyph, IntoGlyph};
pub use outline::{Corner, Outline, Stroke};
pub use style::{Appearance, TextStyle, Weight};
pub use theme::{StyleGroup, Theme, WidgetGroup};