All Collections
Versions 3.0 and 2.0
Implement
Portal 2.0
How do I change the background color of columns and tables during the matching stage?
How do I change the background color of columns and tables during the matching stage?
Elisa Dinsmore avatar
Written by Elisa Dinsmore
Updated over a week ago

This article is for Flatfile's Portal 2.0. If you'd like to check out the latest version of the Flatfile Data Exchange Platform, click here!

There are many customization options for Flatfile Portal 2.0. In order to change the background color, you would use a small snippet of code like this:

{
   theme: {
    columnMatch: {
      table: {
        th: {
           backgroundColor: 'darkblue'
        },
        td: {
           backgroundColor: 'darkblue'
        }
      }
    }
  }
}

In the above example, we changed the background color to “darkblue,” but you can choose any color you would like.


For more information about Flatfile theming and customization options, you can see our theming documentation.

Did this answer your question?