RGBA color in oh-cell

Hi,
How can I assign a color other than the F7 default color list to the background of an oh-cell?
Thanks.

Probably the easiest way is to put a component in the background of the cell that let’s you fully control the css and then change the background of that element. Something like this:

component: oh-cell
config:
  ...cell configs here
slots:
  background:
    - component: f7-row
      config:
        style:
          height: 120px
          width: 100%
          background: rgba(200,180,180,.3)

That did it, thank you!