Skip to content

Latest commit

 

History

History
38 lines (23 loc) · 704 Bytes

bitburner.userinterface.settheme.md

File metadata and controls

38 lines (23 loc) · 704 Bytes

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);