Design System

Spacing tokens

The space scale helps maintain consistent spacing around and between elements. This scale applies primarily to margin, padding, spacing and gap.

NameValueExample
502px
1004px
2008px
30012px
40016px
50024px
60032px
70040px
80048px
90064px
95080px
100096px
1100128px
1200160px

React

See the style props documentation for the complete list of style props that use the space scale.

live

<VStack
sx={{
div: { backgroundColor: 'brandRed.600', height: '400', width: '400' },
}}
>
<Box marginBottom="100" />
<Box marginBottom="300" />
<Box marginBottom="500" />
<Box marginBottom="700" />
<Box marginBottom="900" />
</VStack>

Bootstrap

Use the spacing utilities to apply system spacing such as margin, padding etc.

live

<div class="mb-100 bg-brandRed-600 h-size-400 w-size-400"></div>
<div class="mb-300 bg-brandRed-600 h-size-400 w-size-400"></div>
<div class="mb-500 bg-brandRed-600 h-size-400 w-size-400"></div>
<div class="mb-700 bg-brandRed-600 h-size-400 w-size-400"></div>
<div class="mb-900 bg-brandRed-600 h-size-400 w-size-400"></div>


Copyright ยฉ 2025 Hover Inc. All Rights Reserved.