🔠Adjusting typography with CSS overrides
Developers can override in-app theme settings with our override tool.
Last updated
Developers can override in-app theme settings with our override tool.
Last updated
@font-face {
font-family: "Font name";
src: url({{ [font-file-name] | asset_url }}) format("[font-format]");
}/* Headings, Links, & Lists*/
h1, h2, h3, h4, h5, a, li{
font-family: "Lota Grotesque";
}
/* Body */
p{
font-family: 'Lota Grotesque';
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
color: #2B2D70;
}
/* Captions */
[class*="caption"] {
font-family: 'Lota Grotesque';
font-style: normal;
font-weight: 600;
font-size: 12px;
line-height: 16px;
color: #2B2D70;
}
/* "Customer since" text */
[class*="customer-since"]{
font-family: 'Lota Grotesque';
font-style: normal;
font-weight: 600;
font-size: 10px;
line-height: 13px;
text-transform: uppercase;
color: #2B2D70;
}
/* "Primary button text */
[class*="primary-button"]{
font-family: 'Lota Grotesque';
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
color: #2B2D70;
}
/* "Secondary button text */
[class*="secondary-button"]{
font-family: 'Lota Grotesque';
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
color: #2B2D70;
}/* Captions within badges */
[class*="caption1"], [class*="info-badge"]{
font-family: 'Lota Grotesque';
font-style: normal;
font-weight: 600;
font-size: 12px;
line-height: 16px;
color: #2B2D70;
}