Skip to content

Releases: lookback/lookbook

2.0.0 Beta 2: Better theming & Dark Mode

07 Jun 14:14
Compare
Choose a tag to compare
  • Move calls to theme('colors.X') to be CSS Custom Props on :root. This makes it easier to re-theme elements.
  • Add basic Dark Mode support for the colour scheme used.
  • Add a 10th step in the width and maxWidth scale.
  • Emit a lookbook.bare.css file on build in dist directory. This file is minified but doesn't include a source map, which makes it considerably smaller than the other two build artefacts.
  • Generate --default-<x> CSS variables on :root for border-color, background-color, and text-color values from Tailwind.

2.0.0 Beta 1

04 Jun 13:15
Compare
Choose a tag to compare
  • Bump Tailwind to 1.0.3.
  • Add all colors as CSS Custom Properties on the :root element. Usage:
:root {
  --blue-10: #f6fbfd;
}

p {
  color: var(--blue-10);
}

Using Tailwind 1.0

21 Mar 21:12
Compare
Choose a tag to compare
Using Tailwind 1.0 Pre-release
Pre-release

Made sure Lookbook 2.0.0 alpha is ready for Tailwind 1.0.

https://github.com/tailwindcss/tailwindcss/releases/tag/v1.0.0-beta.3