Customizing a Component
Customize the styling of a component by using design tokens that align with your store's branding.
In this guide, you'll learn how to customize the style of a FastStore component using its local tokens. For the sake of this tutorial, We will use the Listing
variant from the Price Component.
This is how Prices looks like in our current homepage (with the default color black) :
Remember that when changing a component's style, you can use Global tokens or styling from scratch using your preferred styling tool. However, changing the value of a global token may affect different parts of your store's interface.
- In your
custom-theme.scss
theme file , add thedata-fs-price
anddata-fs-price-variant
data attributes with theListing
value:
...
// --------------------------------------------------------
// FS UI Components
// --------------------------------------------------------
.section {
// Add here the customizations for FastStore UI components.
[data-fs-price] {}
}
Each FastStore UI component has a list of data attributes that can be used for further customization. You can find it in the component's Customization section.
- Now, change the color of the
Listing
variant using thePrice
local token. For this tutorial, we will use the shade of red#cb4242
:
...
// --------------------------------------------------------
// FS UI Components
// --------------------------------------------------------
.section {
[data-fs-price] {
--fs-price-listing-color: #cb4242;
}
}
- Save your changes and check your browser to see the new color of your listing price. You may need to refresh the page.
Since we are not specifying the Price
component context, we are applying this change to all the Price (data-fs-price)
occurrences where the variant is listing
.
If you want to apply this change in only one store component, follow the next step Customizing a component within a section.
Customizing a component within a section
The starter provides a set of native sections, each consisting of different components with unique functionalities. You can customize the components inside its section using the available section and the component's data attributes.
In the example below, we will change the color of the Price component with the listing
variant.
But we only want to apply this change in the ProductShelf
section. So, we can use the data-fs-product-shelf
data-attribute to select the ProductShelf component in this section.
- In your
custom-theme.scss
theme file , add the following code:
...
// --------------------------------------------------------
// FS UI Components
// --------------------------------------------------------
.section {
[data-fs-price] {
--fs-price-listing-color: #cb4242;
}
[data-fs-product-shelf]{
[data-fs-price][data-fs-price-variant="listing"] {
background-color: var(--fs-color-warning-bkg);
}
}
}
Your styling code should be added inside the .section
class to ensure the component looks as expected.
- Save your changes and check your browser to see a yellow background color added to listing prices inside the
ProductShelf
. You may need to refresh the page.
Notice that in this example, only one section received the change, the ProductShelf
. You can use this same approach whenever you need to syle FastStore UI Components.