aesthetic-suite / framework

🎨 Aesthetic is an end-to-end multi-platform styling framework that offers a strict design system, robust atomic CSS-in-JS engine, a structural style sheet specification (SSS), a low-runtime solution, and much more!
https://aestheticsuite.dev
MIT License
203 stars 5 forks source link

new: Support single range colors. #158

Closed milesj closed 3 years ago

milesj commented 3 years ago

Summary

All our colors require 10 shades, even for simple colors like black and white. This change allows colors to either be a range of 10 shades, or a single shade.

# Before
white:
  '00': '#fff'
  '10': '#fff'
  '20': '#fff'
  '30': '#fff'
  '40': '#fff'
  '50': '#fff'
  '60': '#fff'
  '70': '#fff'
  '80': '#fff'
  '90': '#fff'

# After
white: '#fff'

Screenshots

Checklist