#css #yew #web #css-in-rust #web-apps

stylist

Stylist is a CSS-in-Rust styling solution for WebAssembly Applications

11 releases (7 breaking)

0.13.0 Oct 6, 2023
0.12.1 Jun 25, 2023
0.12.0 Jan 20, 2023
0.11.0 Nov 26, 2022
0.9.2 Sep 15, 2021

#40 in WebAssembly

Download history 625/week @ 2023-12-15 561/week @ 2023-12-22 352/week @ 2023-12-29 621/week @ 2024-01-05 859/week @ 2024-01-12 690/week @ 2024-01-19 527/week @ 2024-01-26 522/week @ 2024-02-02 717/week @ 2024-02-09 817/week @ 2024-02-16 875/week @ 2024-02-23 860/week @ 2024-03-01 1089/week @ 2024-03-08 784/week @ 2024-03-15 906/week @ 2024-03-22 1112/week @ 2024-03-29

4,008 downloads per month
Used in 17 crates (15 directly)

MIT license

155KB
3.5K SLoC

Stylist

Run Tests & Publishing crates.io download docs.rs

Stylist is a CSS-in-Rust styling solution for WebAssembly Applications.

This is a fork of css-in-rust.

Install

Add the following to your Cargo.toml:

stylist = "0.13"

Usage

For detailed usage, please see documentation.

Yew Integration

To style your component, you can use styled_component attribute with css! macro.

use yew::prelude::*;
use stylist::yew::styled_component;

#[styled_component]
fn MyStyledComponent() -> Html {
    html! {<div class={css!("color: red;")}>{"Hello World!"}</div>}
}

Standalone

To create a stylesheet, you can use style!:

use stylist::style;

let style = style!(
   // A CSS string literal
   r#"
       background-color: red;

       .nested {
           background-color: blue;
           width: 100px
       }
   "#
).expect("Failed to mount style");

// stylist-uSu9NZZu
println!("{}", style.get_class_name());

Runtime Style

If you want to parse a string into a style at runtime, you can use Style::new:

use stylist::Style;

let style_str = r#"
    background-color: red;

    .nested {
        background-color: blue;
        width: 100px
    }
"#;

let style = Style::new(style_str).expect("Failed to create style");

// stylist-uSu9NZZu
println!("{}", style.get_class_name());

Theming

There's theming example using Yew Context API.

Dependencies

~7–11MB
~209K SLoC