Releases: lookback/lookbook
Releases · lookback/lookbook
2.0.0 Beta 2: Better theming & Dark Mode
- 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
andmaxWidth
scale. - Emit a
lookbook.bare.css
file on build indist
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
forborder-color
,background-color
, andtext-color
values from Tailwind.
2.0.0 Beta 1
- 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
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