@furo/layout
Version:
Layout components for furo
23 lines (22 loc) • 456 B
TypeScript
/**
* Defines background designs.
* @public
*/
declare enum BackgroundDesign {
/**
* A solid background color dependent on the theme.
* @public
*/
Solid = "Solid",
/**
* Transparent background.
* @public
*/
Transparent = "Transparent",
/**
* A translucent background depending on the opacity value of the theme.
* @public
*/
Translucent = "Translucent"
}
export { BackgroundDesign };