Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

List The CSS Themes In Rust's syntect Syntax Highlighting Crate

rust
```cargo
[dependencies]
syntect = "5.2.0"
```

use syntect::highlighting::ThemeSet;

fn main() {
  list_themes();
}

fn list_themes() {
  let ts = ThemeSet::load_defaults();
  ts.themes.iter().for_each(|theme| {
    println!("{}", theme.0);
  })
}
results start