This PR adds a new `ui_font_size` setting that can be used to control
the scale of the entire UI.
We use the value in this setting to set the base rem size of the window.
Release Notes:
- N/A
bbe5389
Return `ColorScaleSet`s from individual color scale functions (#3197)
Click to expand commit body
This PR adjusts the individual color scale functions to return
`ColorScaleSet`s instead of `DefaultColorScaleSet`s.
We only use the `DefaultColorScaleSet`s to simplify the construction of
the scales, so it isn't necessary to surface them outside of the
function.
Release Notes:
- N/A
Marshall Bowers
created
b8547e9
Remove blanket `From<&str>` impl for `Hsla`
Click to expand commit body
Since this is a fallible operation we don't want to have a blanket
infallible conversion from any arbitrary `&str` to an `Hsla`.
Marshall Bowers
created
1b9619c
added parsing support for <|S| |E|> spans (#3184)
Click to expand commit body
added parsing support for <|S| and |E|> spans for inline generation
272f856
Use `Refineable` for `ThemeStyles` (#3196)
Click to expand commit body
This PR updates the `ThemeStyles` struct to use the `Refineable` trait
instead of a custom declarative macro for generating refinements.
Release Notes:
- N/A