Looking for thoughts and discussion! Tell me if you think another library/approach solves the same problems. Tell me why this library shouldn't exist!
Documentation
Components
Button

Button

Basic

<Button>
  Button
</Button>

<Button disabled>
  Button
</Button>

Colors

Notice how the theme switcher will not affect the button colors. The themes will still affect the border radius though!

<Button className="bg-green-700">
  Button
</Button>

<Button className="bg-purple-700">
  Button
</Button>

<Button className="bg-teal-700">
  Button
</Button>

Sizes

<div className="flex flex-col gap-4 w-full">
  <Button className="p-1 text-xs">
    Button
  </Button>
  
  
  <Button className="w-24">
    Button
  </Button>
  
  
  <Button className="w-36">
    Button
  </Button>
  
  
  <Button className="w-56">
    Button
  </Button>
  
  
  <Button className="w-full">
    Button
  </Button>
</div>