mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-09 17:23:53 +01:00
39 lines
719 B
Markdown
39 lines
719 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [bitburner](./bitburner.md) > [UserInterface](./bitburner.userinterface.md) > [setStyles](./bitburner.userinterface.setstyles.md)
|
||
|
|
||
|
## UserInterface.setStyles() method
|
||
|
|
||
|
Sets the current styles
|
||
|
|
||
|
<b>Signature:</b>
|
||
|
|
||
|
```typescript
|
||
|
setStyles(newStyles: IStyleSettings): void;
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| newStyles | [IStyleSettings](./bitburner.istylesettings.md) | |
|
||
|
|
||
|
<b>Returns:</b>
|
||
|
|
||
|
void
|
||
|
|
||
|
## Remarks
|
||
|
|
||
|
RAM cost: 0 GB
|
||
|
|
||
|
## Example
|
||
|
|
||
|
Usage example (NS2)
|
||
|
|
||
|
```ts
|
||
|
const styles = ns.ui.getStyles();
|
||
|
styles.fontFamily = 'Comic Sans Ms';
|
||
|
ns.ui.setStyles(styles);
|
||
|
```
|
||
|
|