/** * @file /src/constants/paperColours.ts * @name PaperColours * @description Constants for paper colours in the editor. */ export const LIGHT_PAPER_COLOUR: string = "#fff"; export const DARK_PAPER_COLOUR: string = "#222"; export const DEFAULT_PAPER_COLOUR: string = LIGHT_PAPER_COLOUR;