The Lektor-based sites predominently use Sass as a powerful CSS preprocessor. Because Sass is compiled, editing the styles of one of the Lektor sites requires a bit more work than editing a CSS file directly.
### Installing the Sass compiler
The javascript implementation of sass from npm doesn't compile our SCSS anymore, so you'll have to install the [dart sass compiler](https://github.com/sass/dart-sass). Here's a script to automate that process (don't forget to add the install directory to your path!):
```bash
#!/usr/bin/env bash
set-e
set-u
# replace with macos or windows (through something like cygwin) as appropriate