Theming#
Global theming#
Bumbag can be extensively themed to meet your requirements. You can either override the default Bumbag theme or create your own custom theme from scratch. If you like the default theme and want to keep it simple, we recommend you just override the default.
Overriding the default global theme (recommended)#
The <ThemeProvider>
component accepts theme
as a prop, where you can specify overrides to the default Bumbag theme. The schema of the theme
object can be seen here.
import { Provider as BumbagProvider, css } from 'bumbag';const theme = {global: {fontSize: 18,styles: {base: css`html,body {background-color: hotpink;color: white;}`}},fonts: {default: 'Comic Sans MS'},palette: {primary: 'blue'},breakpoints: {mobile: 520,tablet: 960},Button: {defaultProps: {palette: 'primary'}},Heading: {styles: {base: {color: 'primary'}}}}const App = () => (<BumbagProvider theme={theme}>// ... your app</BumbagProvider>);
Creating your own global theme (advanced)#
If you decide to not use the default Bumbag theme and roll out your own, just add the isStandalone
flag to <ThemeProvider>
.
import { Provider as BumbagProvider, defaultTheme } from 'bumbag';const App = () => (<BumbagProvider isStandalone theme={defaultTheme()}>// ... your app</BumbagProvider>);
Component theming#
Bumbag also allows you to define themes on a component level. This can be done in three ways:
- Globally themed: Applying the component to the global theme.
- Locally themed: Creating a themed component via the
applyTheme
function. - Locally themed: Applying the component theme via the
overrides
prop on the component.
Each component theme configuration always consists of 4 attributes:
styles
- Where the main styling is defined for the component.variants
- Where the component variants are defined.modes
- Where the component color modes are defined.defaultProps
- The default props to apply to the component.
For each docs page of the component, you will find a Theming section where you can reference the schema of the component theme configuration.
Applying the component to the global theme#
import { Provider as BumbagProvider, css } from 'bumbag';const theme = {Button: {styles: {base: {color: 'black',// Here we are using "spacing" values from the theme.// But you can specify a `px`, `rem` or `em` value too.padding: 'major-2'}},variants: {'call-to-action': {fontSize: '300',padding: 'major-4'}},modes: {dark: {color: 'white'}},defaultProps: {palette: 'primary'}}}const App = () => (<BumbagProvider theme={theme}>// ... your app</BumbagProvider>);
Creating a themed component#
You can apply the theme on a component level via the applyTheme
utility function. This function accepts two parameters: the first being the component, and the second being the component theme config.
import { applyTheme } from 'bumbag';
Using the overrides
prop#
It is possible to override the global theme on the component themselves using the override
prop on any component.
Theme schema#
{// Corealtitudes: AltitudesThemeConfig;borders: BordersThemeConfig;borderRadii: BorderRadiiThemeConfig;breakpoints: BreakpointsThemeConfig;fontSizes: FontSizeThemeConfig;fontWeights: FontWeightsThemeConfig;global: GlobalThemeConfig;spacing: SpacingThemeConfig;palette: PaletteThemeConfig;// ComponentsActionButtons: ActionButtonsThemeConfig;Alert: AlertThemeConfig;Autosuggest: AutosuggestThemeConfig;Avatar: AvatarThemeConfig;Badge: BadgeThemeConfig;Breadcrumb: BreadcrumbThemeConfig;Box: BoxThemeConfig;Block: BlockThemeConfig;Blockquote: BlockquoteThemeConfig;Button: ButtonThemeConfig;Callout: CalloutThemeConfig;Card: CardThemeConfig;Checkbox: CheckboxThemeConfig;CheckboxField: CheckboxFieldThemeConfig;CheckboxGroup: CheckboxGroupThemeConfig;CheckboxGroupField: CheckboxGroupFieldThemeConfig;Clickable: ClickableThemeConfig;Code: CodeThemeConfig;Columns: ColumnsThemeConfig;Container: ContainerThemeConfig;Dialog: DialogThemeConfig;Disclosure: DisclosureThemeConfig;Drawer: DrawerThemeConfig;DropdownMenu: DropdownMenuThemeConfig;FieldWrapper: FieldWrapperThemeConfig;Flex: FlexThemeConfig;Grid: GridThemeConfig;Group: GroupThemeConfig;Heading: HeadingThemeConfig;HighlightedCode: HighlightedCodeThemeConfig;Icon: IconThemeConfig;Image: ImageThemeConfig;Inline: InlineThemeConfig;InlineBlock: InlineBlockThemeConfig;InlineFlex: InlineFlexThemeConfig;Input: InputThemeConfig;InputField: InputFieldThemeConfig;Stack: StackThemeConfig;Link: LinkThemeConfig;List: ListThemeConfig;Menu: MenuThemeConfig;Modal: ModalThemeConfig;Navigation: NavigationThemeConfig;Overlay: OverlayThemeConfig;PageContent: PageContentThemeConfig;PageWithSidebar: PageWithSidebarThemeConfig;Pagination: PaginationThemeConfig;Paragraph: ParagraphThemeConfig;Popover: PopoverThemeConfig;Portal: PortalThemeConfig;ProgressBar: ProgressBarThemeConfig;Radio: RadioThemeConfig;RadioGroup: RadioGroupThemeConfig;RadioGroupField: RadioGroupFieldThemeConfig;Rating: RatingThemeConfig;Rover: RoverThemeConfig;Select: SelectThemeConfig;SelectField: SelectFieldThemeConfig;SelectMenu: SelectThemeConfig;Set: SetThemeConfig;SideNav: SideNavThemeConfig;Spinner: SpinnerThemeConfig;Switch: SwitchThemeConfig;SwitchField: SwitchFieldThemeConfig;SwitchGroup: SwitchGroupThemeConfig;SwitchGroupField: SwitchGroupFieldThemeConfig;Tabbable: TabbableThemeConfig;Table: TableThemeConfig;Tabs: TabsThemeConfig;Tag: TagThemeConfig;Text: TextThemeConfig;Textarea: TextareaThemeConfig;TextareaField: TextareaFieldThemeConfig;Toast: ToastThemeConfig;Tooltip: TooltipThemeConfig;TopNav: TopNavThemeConfig;}
Reference#
Core#
- AltitudesThemeConfig
- BordersThemeConfig
- BorderRadiiThemeConfig
- BreakpointsThemeConfig
- FontSizeThemeConfig
- FontWeightsThemeConfig
- GlobalThemeConfig
- SpacingThemeConfig
- PaletteThemeConfig
Components#
- ActionButtonsThemeConfig
- AlertThemeConfig
- AutosuggestThemeConfig
- AutosuggestFieldThemeConfig
- AvatarThemeConfig
- BadgeThemeConfig
- BreadcrumbThemeConfig
- BoxThemeConfig
- BlockquoteThemeConfig
- ButtonThemeConfig
- CalloutThemeConfig
- CardThemeConfig
- CheckboxThemeConfig
- CheckboxFieldThemeConfig
- CheckboxGroupThemeConfig
- CheckboxGroupFieldThemeConfig
- ClickableThemeConfig
- CodeThemeConfig
- ColumnsThemeConfig
- ContainerThemeConfig
- DialogThemeConfig
- DisclosureThemeConfig
- DrawerThemeConfig
- DropdownMenuThemeConfig
- FieldWrapperThemeConfig
- GroupThemeConfig
- HeadingThemeConfig
- HighlightedCodeThemeConfig
- IconThemeConfig
- ImageThemeConfig
- InputThemeConfig
- InputFieldThemeConfig
- LinkThemeConfig
- ListThemeConfig
- MenuThemeConfig
- ModalThemeConfig
- NavigationThemeConfig
- OverlayThemeConfig
- PageContentThemeConfig
- PageWithSidebarThemeConfig
- PaginationThemeConfig
- ParagraphThemeConfig
- PopoverThemeConfig
- PortalThemeConfig
- ProgressBarThemeConfig
- RadioThemeConfig
- RadioGroupThemeConfig
- RadioGroupFieldThemeConfig
- RatingThemeConfig
- RoverThemeConfig
- SelectThemeConfig
- SelectFieldThemeConfig
- SelectMenuThemeConfig
- SelectMenuFieldThemeConfig
- SetThemeConfig
- SideNavThemeConfig
- SpinnerThemeConfig
- StackThemeConfig
- SwitchThemeConfig
- SwitchFieldThemeConfig
- SwitchGroupThemeConfig
- SwitchGroupFieldThemeConfig
- TabbableThemeConfig
- TableThemeConfig
- TabsThemeConfig
- TagThemeConfig
- TextThemeConfig
- TextareaThemeConfig
- TextareaFieldThemeConfig
- ToastThemeConfig
- TooltipThemeConfig
- TopNavThemeConfig