Fluid Space Calculator

Min viewport
Max viewport

Individual space values

Using the same base values from the fluid type calculator, this tool helps you to create a related fluid space system. You can add more t-shirt sizes below and edit their multipliers to customise the system to suit your project. Any spaces you add will also be listed below in space value pairs which you can use to introduce more dramatic space variance between different viewport sizes.

You can also use the individual space values to create your own custom space pairs, to further control the attitude of the spacing within your design.

Any changes you make on this page will be automatically included in the CSS generator below, ready to drop into your project. When you're happy with your space scales, try the fluid grid calculator to put these values into action. Alternatively, if you require a simpler solution, try the clamp calculator to generate any number of custom fluid tokens.

Multiplier @min @max
3xs
5px
5px
2xs
9px
10px
xs
14px
15px
s 1
18px
20px
m
27px
30px
l
36px
40px
xl
54px
60px
2xl
72px
80px
3xl
108px
120px

Space value pairs - single steps

Space value pair
@min @max
3xs 2xs
5px
10px
2xs xs
9px
15px
xs s
14px
20px
s m
18px
30px
m l
27px
40px
l xl
36px
60px
xl 2xl
54px
80px
2xl 3xl
72px
120px

Space value pairs - custom steps

Space value pair
@min @max
s
l
18px
40px

CSS Generator

Configuration options

Code

/* @link https://utopia.fyi/space/calculator?c=320,18,1.2,1240,20,1.25,5,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */

:root {
  --space-3xs: clamp(0.3125rem, 0.3125rem + 0vi, 0.3125rem);
  --space-2xs: clamp(0.5625rem, 0.5408rem + 0.1087vi, 0.625rem);
  --space-xs: clamp(0.875rem, 0.8533rem + 0.1087vi, 0.9375rem);
  --space-s: clamp(1.125rem, 1.0815rem + 0.2174vi, 1.25rem);
  --space-m: clamp(1.6875rem, 1.6223rem + 0.3261vi, 1.875rem);
  --space-l: clamp(2.25rem, 2.163rem + 0.4348vi, 2.5rem);
  --space-xl: clamp(3.375rem, 3.2446rem + 0.6522vi, 3.75rem);
  --space-2xl: clamp(4.5rem, 4.3261rem + 0.8696vi, 5rem);
  --space-3xl: clamp(6.75rem, 6.4891rem + 1.3043vi, 7.5rem);

  /* One-up pairs */
  --space-3xs-2xs: clamp(0.3125rem, 0.2038rem + 0.5435vi, 0.625rem);
  --space-2xs-xs: clamp(0.5625rem, 0.4321rem + 0.6522vi, 0.9375rem);
  --space-xs-s: clamp(0.875rem, 0.7446rem + 0.6522vi, 1.25rem);
  --space-s-m: clamp(1.125rem, 0.8641rem + 1.3043vi, 1.875rem);
  --space-m-l: clamp(1.6875rem, 1.4049rem + 1.413vi, 2.5rem);
  --space-l-xl: clamp(2.25rem, 1.7283rem + 2.6087vi, 3.75rem);
  --space-xl-2xl: clamp(3.375rem, 2.8098rem + 2.8261vi, 5rem);
  --space-2xl-3xl: clamp(4.5rem, 3.4565rem + 5.2174vi, 7.5rem);

  /* Custom pairs */
  --space-s-l: clamp(1.125rem, 0.6467rem + 2.3913vi, 2.5rem);
}