Customize PLP Styling with SCSS
This page covers the styling options for PLP (search and product listing) pages, regardless of framework.
đ§ This guide only works for SASS/SCSS
If you havenât already, you will have to configure a SASS pre-processor in your build system.
Getting started
Depending on which bundler (Webpack/Parcel/etc) you are using, style imports might differently. Either import @depict-ai/js-ui
/@depict-ai/react-ui
directly, or try importing @depict-ai/plp-styling
which will already be installed as a transient dependency if you have either ui package installed. When importing the style module with @use
, you can configure is as below.
Adding the above code snippet to your style sheet should give you a search or product listing page with mostly default styling. Try adjusting the $border-radius
variable and see what happens!
The first three lines define your customization through variables, and the last line imports the actual styling. When you import the actual styling, itâs important that you specify whether you want the styling for "search"
, "category"
, or both ("all"
).
Declaring your page background color
Certain elements of the PLP styling system need to know the background color of the page. If your background isnât white, you will have to declare it.
Color palettes
Backgrounds, text, and borders use the same color palette system. This section documents how a palette can be configured.
A palette has four different types ("base"
, "neutral"
, "subtle"
, and "inverse"
), and each type has four different states ("default"
, "hover"
, "pressed"
, and "disabled"
).
Example palette configurations:
Result of example color palette
Itâs important to note that every state of the palette doesnât have to be configured (that would be 16 colors for every palette!). Instead, the palette system uses inference to determine the colors you donât specify based on the ones you do.
The inference system works in the following way: if you donât specify a state, that state will be inferred based on the "default"
state. If the "default"
state isnât specified for the type, the "default"
state of the "base"
type will be converted to be used, if that isnât specified, a static default color will be used.
đ The inference system isnât perfect
It is likely that you will have to style individual components after specifying your color palette. The inference system is designed to give you a base which you can work from, but not capture the more fine-grained styling you are likely to need when representing your brand.
Further reference
The custom variable interface is more complete than what was shown on this page. You can find documentation for the rest of the variables in this document under the âVARIABLESâ section.
Another option for more fine-grained styling control is described below.
Modifying without custom variables
Many developers might prefer using familiar CSS/SCSS for the majority of their styling, and use our custom variables interface as little as possible. This is totally valid!
Every component of the PLP has class names that you can target for custom styling. We recommend starting your selector with an id to ensure your styling has higher precedence than ours.
The below example targets the input fields of the price range filter. It corrects some bad-looking colors that the inference system came up with.
Before and after the custom styling from the above code example
Was this page helpful?