Skip to content

benjaminlewandowski/slipstream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

182ce63 · Jun 21, 2023

History

17 Commits
Jun 21, 2023
Aug 17, 2022
Jun 21, 2023
Aug 17, 2022

Repository files navigation

Slipstream

Utility-first CSS for the future

Introduction

Slipstream is a standards-driven, utility-oriented SCSS library based on both pollen and open-props, and largely inspired by Tailwind. It is a collection of SCSS variables that can be used anywhere to promote consistency, maintainability and rapid development.

What it looks like

Slipstream's low-level variables can be used to build any design. They're easy to customise and extend, and they're globally responsive. They don't require postprocessors (like postcss), class naming conventions, or any new non-standard syntax.

.button {
  font-size: $scale-00;
  font-weight: $font-medium;
  padding: $size-2 $size-3;
  background: $color-blue;
  border-radius: $radius-sm;
  box-shadow: $elevation-2;
  color: white;
}