Effects

Secondary effects to add to existing elements and components to control how elements look on the page.

Drop Shadows

Class
Name
Properties
shadow-none
No Shadow
box-shadow: 0 0 0 0 (hsla 0, 0, 0, 0.1);
shadow-xs
XS Shadow
box-shadow: 0 1px 4px 0 (hsla 0, 0, 0, 0.1);
shadow-s
S Shadow
box-shadow: 0 4px 8px 0 (hsla 0, 0, 0, 0.1);
shadow-m
M Shadow
box-shadow: 0 8px 16px 0 (hsla 0, 0, 0, 0.1);
shadow-l
L Shadow
box-shadow: 0 12px 24px 0 (hsla 0, 0, 0, 0.1);
shadow-xl
XL Shadow
box-shadow: 0 16px 32px 0 (hsla 0, 0, 0, 0.1);

About Drop Shadows

Drop shadows are shadow effect that get added around an element's frame. The box-shadow property allows you to cast a drop shadow from the frame of almost any element.

A box-shadow is described by X and Y offsets relative to the element (sometimes referred to as a collection called "distance"), blur and spread radius, and color.

Shadows are affected by border-radius. Box shadows can also be stacked on top of each other to create a more realistic-looking shadow.

Our system comes with 5 shadow styles ranging from XS to XL with 1 reset class of none.

Opacity

Class
Name
Properties
opacity-0
Opacity 0
opacity: 0;
opacity-10
Opacity 10
opacity: 0.1;
opacity-20
Opacity 20
opacity: 0.2;
opacity-30
Opacity 30
opacity: 0.3;
opacity-40
Opacity 40
opacity: 0.4;
opacity-50
Opacity 50
opacity: 0.5;
opacity-60
Opacity 60
opacity: 0.6;
opacity-70
Opacity 70
opacity: 0.7;
opacity-80
Opacity 80
opacity: 0.8;
opacity-90
Opacity 90
opacity: 0.9;
opacity-100
Opacity 100
opacity: 1;

About Opacity

Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.

Opacity applies to the element as a whole, including its contents, even though the value is not inherited by child elements.

Our system comes with 10 opacity styles in increments of 10 from 10 to 100. (10, 20, 30, etc.) with one clear class of 0.

Border Radius

Class
Name
Properties
radius-none
No border radius
border-radius: 0;
radius-s
Small border radius
border-radius: 0.125rem;
radius-m
Medium border radius
border-radius: 0.25rem;
radius-l
Large border radius
border-radius: 0.5rem;
radius-xl
XLarge border radius
border-radius: 1rem;
radius-pill
Pill border radius
border-radius: 99rem;

About Border Radius

Border radius rounds the corners of an element's outer border edge.

Our system comes with 5 sizes ranging from S to XL, pill (full), and a clear class of none.

Backdrop Blur

Class
Name
Properties
b-blur-none
No backdrop-filter blur
backdrop-filter: blur(0px);
b-blur-xs
4px backdrop-filter blur
backdrop-filter: blur(0.25rem);
b-blur-s
8px backdrop-filter blur
backdrop-filter: blur(0.5rem);
b-blur-m
12px backdrop-filter blur
backdrop-filter: blur(0.75rem);
b-blur-l
16px backdrop-filter blur
backdrop-filter: blur(1rem);
b-blur-xl
24px backdrop-filter blur
backdrop-filter: blur(1.5rem);
b-blur-xxl
40px backdrop-filter blur
backdrop-filter: blur(2.5rem);

About Backdrop Blur

The backdrop-filter CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything behind the element, to see the effect you must make the element or its background at least partially transparent.

Our system comes with a pre-set sizes ranging from S to 2XL, and a clear class of none.