Theme Interface
This interface is used to define the theme of the application. Refer to all child interfaces for more information.
ts
export interface Theme {
// Global font family
fontFamily?: CSSProperties['fontFamily']
window?: Window
title?: Title
message?: Message
settings?: Settings
buttons?: Buttons
btn?: Btn
btnAccept?: BtnAccept
btnReject?: BtnReject
btnInfo?: BtnInfo
btnSettings?: BtnSettings
btnSettingsSelect?: BtnSettingsSelect
btnSettingsAccept?: BtnSettingsAccept
btnDismiss?: BtnDismiss
btnClose?: BtnClose
popup?: Popup
animation?: Animation
}