Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Quick Start

#![allow(unused)]
fn main() {
use twill::prelude::*;

let style = Style::new()
    .padding(Padding::symmetric(Spacing::S2, Spacing::S4))
    .bg(Color::blue(Scale::S500))
    .rounded(BorderRadius::Md);
}
#![allow(unused)]
fn main() {
use twill::prelude::*;

let style = Style::new()
    .padding(Padding::all(Spacing::S4))
    .bg(Color::blue(Scale::S500))
    .hover(|style| style.opacity(0.9))
    .md(|style| style.padding(Padding::all(Spacing::S6)));
}