Design System

Size tokens

The size scale helps maintain consistent sizing of elements. This scale applies primarily toย widthย andย height.

NameValue
254px
508px
7512px
10016px
15020px
20024px
30032px
35040px
40048px
50064px
52580px
600128px
700256px
750384px
800512px
850768px
9001024px

React

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

live

<HStack
gap="300"
sx={{
div: { backgroundColor: 'brandRed.600', width: '300' },
}}
>
<Box height="700" />
<Box height="600" />
<Box height="525" />
<Box height="500" />
<Box height="300" />
<Box height="100" />
</HStack>

Bootstrap

Use the sizing utilities to apply system sizing such as width, height etc.

live

<div class="hstack gap-300">
<div class="h-size-100 bg-brandRed-600 w-size-300"></div>
<div class="h-size-300 bg-brandRed-600 w-size-300"></div>
<div class="h-size-500 bg-brandRed-600 w-size-300"></div>
<div class="h-size-525 bg-brandRed-600 w-size-300"></div>
<div class="h-size-600 bg-brandRed-600 w-size-300"></div>
<div class="h-size-700 bg-brandRed-600 w-size-300"></div>
</div>


Copyright ยฉ 2025 Hover Inc. All Rights Reserved.