themeColor method
Sets a theme color slot.
slot is one of: primary, secondary, tertiary, alternate,
primaryBackground, secondaryBackground, primaryText,
secondaryText, accent1–accent4, success, warning, error,
info.
Implementation
void themeColor(String slot, int argb, {int? dark}) {
_rawMutations.add((project) {
setThemeColor(project, slot, ffColor(argb, dark: dark));
});
}