Styled SystemBackground Color

Background Color

Use bg prop to control the background color of an element.

💡

See the colors page for a list of all available colors.

Documentation

Usage

import { Box } from "@optiaxiom/react";
 
import { Canvas } from "../Canvas";
 
export function App() {
  return (
    <Canvas>
      <Box bg="bg.brand.solid">bg=bg.brand.solid</Box>
      <Box bg="bg.error.solid">bg=bg.error.solid</Box>
    </Canvas>
  );
}

Copyright 2024 © Optimizely.