0.2.0
- Add table styles (header, max-width, even rows).
40f4f2f
- Tweak light/dark colors for contrast.
43a2847
- Tweak internal link formatting for contrast
b95126c
Breaking changes
Note that if you have defined your own accent colors, you need to add --primary-accent-1-rgb
and
--secondary-accent-4-rgb
variants to your accent definitions.
Using the example from the README, you should have accent color definitions that look something like this:
.primary-accent-custom {
--primary-accent-0: rgb(250, 210, 206); /* red-100 */
--primary-accent-1: rgb(248, 192, 187);
--primary-accent-1-rgb: 248, 192, 187; /* Note removal of rgb() function */
--primary-accent-2: rgb(245, 163, 156);
--primary-accent-3: rgb(241, 127, 117);
--primary-accent-4: rgb(222, 40, 23);
--primary-accent-4-rgb: 222, 40, 23; /* Note removal of rgb() function */
--primary-accent-5: rgb(142, 25, 15);
--primary-accent-6: rgb(95, 17, 10); /* red-700 */
}
.secondary-accent-custom {
--secondary-accent-0: rgb(250, 210, 206); /* red-100 */
--secondary-accent-1: rgb(248, 192, 187);
--secondary-accent-1-rgb: 248, 192, 187; /* Note removal of rgb() function */
--secondary-accent-2: rgb(245, 163, 156);
--secondary-accent-3: rgb(241, 127, 117);
--secondary-accent-4: rgb(222, 40, 23);
--secondary-accent-4-rgb: 222, 40, 23; /* Note removal of rgb() function */
--secondary-accent-5: rgb(142, 25, 15);
--secondary-accent-6: rgb(95, 17, 10); /* red-700 */
}