:root {
	--s92-global-light-primary: #75b915;
	--s92-global-light-secondary: #d99a2b;
	--s92-global-light-background: #f3f2ed;
	--s92-global-light-surface: #ffffff;
	--s92-global-light-text: #171a18;
	--s92-global-light-muted: #5d635e;
	--s92-global-light-border: #d8ded9;
	--s92-global-light-success: #3e6f0b;
	--s92-global-light-warning: #8a5a00;
	--s92-global-light-error: #9f261d;
	--s92-global-light-on-primary: #111411;
	--s92-global-light-on-secondary: #111411;
	--s92-global-dark-primary: #baff39;
	--s92-global-dark-secondary: #e3aa3e;
	--s92-global-dark-background: #0a0b0a;
	--s92-global-dark-surface: #141614;
	--s92-global-dark-text: #f7f9f5;
	--s92-global-dark-muted: #b6bdb2;
	--s92-global-dark-border: #3b433d;
	--s92-global-dark-success: #9bd85a;
	--s92-global-dark-warning: #e8b850;
	--s92-global-dark-error: #ef776c;
	--s92-global-dark-on-primary: #111411;
	--s92-global-dark-on-secondary: #111411;
	--s92-global-current-primary: var(--s92-global-light-primary);
	--s92-global-current-secondary: var(--s92-global-light-secondary);
	--s92-global-current-background: var(--s92-global-light-background);
	--s92-global-current-surface: var(--s92-global-light-surface);
	--s92-global-current-text: var(--s92-global-light-text);
	--s92-global-current-muted: var(--s92-global-light-muted);
	--s92-global-current-border: var(--s92-global-light-border);
	--s92-global-current-success: var(--s92-global-light-success);
	--s92-global-current-warning: var(--s92-global-light-warning);
	--s92-global-current-error: var(--s92-global-light-error);
	--s92-global-current-on-primary: var(--s92-global-light-on-primary);
	--s92-global-current-on-secondary: var(--s92-global-light-on-secondary);
}

@media (prefers-color-scheme: dark) {
	:root {
		--s92-global-current-primary: var(--s92-global-dark-primary);
		--s92-global-current-secondary: var(--s92-global-dark-secondary);
		--s92-global-current-background: var(--s92-global-dark-background);
		--s92-global-current-surface: var(--s92-global-dark-surface);
		--s92-global-current-text: var(--s92-global-dark-text);
		--s92-global-current-muted: var(--s92-global-dark-muted);
		--s92-global-current-border: var(--s92-global-dark-border);
		--s92-global-current-success: var(--s92-global-dark-success);
		--s92-global-current-warning: var(--s92-global-dark-warning);
		--s92-global-current-error: var(--s92-global-dark-error);
		--s92-global-current-on-primary: var(--s92-global-dark-on-primary);
		--s92-global-current-on-secondary: var(--s92-global-dark-on-secondary);
	}
}

:where(.s92-theme-global) {
	--s92-widget-primary: var(--s92-global-current-primary);
	--s92-widget-secondary: var(--s92-global-current-secondary);
	--s92-widget-background: var(--s92-global-current-background);
	--s92-widget-surface: var(--s92-global-current-surface);
	--s92-widget-text: var(--s92-global-current-text);
	--s92-widget-muted: var(--s92-global-current-muted);
	--s92-widget-border: var(--s92-global-current-border);
	--s92-widget-success: var(--s92-global-current-success);
	--s92-widget-warning: var(--s92-global-current-warning);
	--s92-widget-error: var(--s92-global-current-error);
	--s92-widget-on-primary: var(--s92-global-current-on-primary);
	--s92-widget-on-secondary: var(--s92-global-current-on-secondary);
}

:where(.s92-theme-light) {
	--s92-widget-primary: var(--s92-global-light-primary);
	--s92-widget-secondary: var(--s92-global-light-secondary);
	--s92-widget-background: var(--s92-global-light-background);
	--s92-widget-surface: var(--s92-global-light-surface);
	--s92-widget-text: var(--s92-global-light-text);
	--s92-widget-muted: var(--s92-global-light-muted);
	--s92-widget-border: var(--s92-global-light-border);
	--s92-widget-success: var(--s92-global-light-success);
	--s92-widget-warning: var(--s92-global-light-warning);
	--s92-widget-error: var(--s92-global-light-error);
	--s92-widget-on-primary: var(--s92-global-light-on-primary);
	--s92-widget-on-secondary: var(--s92-global-light-on-secondary);
}

:where(.s92-theme-dark) {
	--s92-widget-primary: var(--s92-global-dark-primary);
	--s92-widget-secondary: var(--s92-global-dark-secondary);
	--s92-widget-background: var(--s92-global-dark-background);
	--s92-widget-surface: var(--s92-global-dark-surface);
	--s92-widget-text: var(--s92-global-dark-text);
	--s92-widget-muted: var(--s92-global-dark-muted);
	--s92-widget-border: var(--s92-global-dark-border);
	--s92-widget-success: var(--s92-global-dark-success);
	--s92-widget-warning: var(--s92-global-dark-warning);
	--s92-widget-error: var(--s92-global-dark-error);
	--s92-widget-on-primary: var(--s92-global-dark-on-primary);
	--s92-widget-on-secondary: var(--s92-global-dark-on-secondary);
}
