mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-29 12:27:07 +02:00
9b638b911f
Adds three Netscript functions to manipulate the user's styles like the player can with theme.
7 lines
263 B
TypeScript
7 lines
263 B
TypeScript
import { IStyleSettings } from "../ScriptEditor/NetscriptDefinitions";
|
|
|
|
export const defaultStyles: IStyleSettings = {
|
|
lineHeight: 1.5,
|
|
fontFamily: "Lucida Console, Lucida Sans Unicode, Fira Mono, Consolas, Courier New, Courier, monospace, Times New Roman"
|
|
}
|