2 releases

0.3.1-alpha2 Apr 22, 2020
0.3.0-alpha1 Nov 15, 2019

#25 in #styling

Download history 5/week @ 2024-02-20 47/week @ 2024-02-27 3/week @ 2024-03-05 24/week @ 2024-03-12 12/week @ 2024-03-26 43/week @ 2024-04-02

55 downloads per month

MIT license

125KB
3.5K SLoC

orbtk-css-engine

Used to load properties from CSS 3 files. It's part of OrbTk - The Rust UI-Toolkit.

Build and test MIT licensed

Dependencies

License

Licensed under MIT license (LICENSE).


lib.rs:

This crate provides functions to load a css files as theme and access it properties with selectors.

This crate depends on the orbtk_utils crate.

Example

Basic usage of the tree:


use orbtk_css_engine::prelude::*;

let mut theme = Theme::create_from_path("theme.css").build();
let selector = Selector::from("button");
let background = theme.brush("background", &selector);

Dependencies

~2–3MB
~56K SLoC