mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
704 B
704 B
Home > bitburner > UserInterface > setTheme
UserInterface.setTheme() method
Sets the current theme
Signature:
setTheme(newTheme: UserInterfaceTheme): void;
Parameters
Parameter | Type | Description |
---|---|---|
newTheme | UserInterfaceTheme |
Returns:
void
Remarks
RAM cost: 0 GB
Example
Usage example (NS2)
const theme = ns.ui.getTheme();
theme.primary = '#ff5500';
ns.ui.setTheme(theme);