Display settings toolbar for Quarto
This is a setup for a display settings toolbar in Quarto, accessed via the menu at the top of the right margin. Source code is available on GitHub, as well as a demonstration page.

How it works:
_theme/_accessibility_sidebar.qmdcontains a raw HTML block to display the sliders and settings._theme/accessibility.htmlcontains the JavaScript to grab the slider values and use them to define the relevant CSS variables, in a<script>tag._theme/styles.csssets the relevant CSS properties using these variables._theme/atkinson.scssmakes the Atkinson Hyperlegible font available as an option. Credit to druedin.
The display settings box is inserted as a margin-header, the JavaScript is in include-before-body, and the relevant CSS files are included in _quarto.yml as follows:
project:
type: website
format:
html:
theme: [cosmo, _theme/atkinson.scss]
css: _theme/styles.css
include-before-body:
file: _theme/accessibility.html
grid:
margin-width: 350px
website:
title: "Display settings toolbar for Quarto"
margin-header: _theme/_accessibility_sidebar.qmd