catppuccin 2.7.0

🦀 Soothing pastel theme for Rust.
Documentation
1
2
3
4
5
6
//! Example demonstrating integration with the `serde` crate.
fn main() {
    let value =
        serde_json::to_string_pretty(&catppuccin::PALETTE).expect("palette can be serialized");
    println!("{value}");
}