/** User-facing toggles, persisted in chrome.storage.sync. */ export interface Settings { /** Master switch for the green/red diff layer. */ enabled: boolean; /** Layer language-aware syntax highlighting on top of the diff colors. */ syntax: boolean; } export const DEFAULT_SETTINGS: Settings = { enabled: true, syntax: true, };