Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
36 lines
744 B
Plaintext
36 lines
744 B
Plaintext
export interface FeedbackTheme {
|
|
/**
|
|
* Foreground color (i.e. text color)
|
|
*/
|
|
foreground?: string;
|
|
/**
|
|
* Background color for surfaces
|
|
*/
|
|
background?: string;
|
|
/**
|
|
* Foreground color for accented elements
|
|
*/
|
|
accentForeground?: string;
|
|
/**
|
|
* Background color for accented elements
|
|
*/
|
|
accentBackground?: string;
|
|
/**
|
|
* Success color
|
|
*/
|
|
successColor?: string;
|
|
/**
|
|
* Error color
|
|
*/
|
|
errorColor?: string;
|
|
/**
|
|
* Box shadow for floating elements
|
|
*/
|
|
boxShadow?: string;
|
|
/**
|
|
* Styles for focused interactive components
|
|
*/
|
|
outline?: string;
|
|
}
|
|
//# sourceMappingURL=theme.d.ts.map
|