diff --git a/web/src/components/Button.jsx b/web/src/components/Button.jsx index c081ead801..5a194a3c58 100644 --- a/web/src/components/Button.jsx +++ b/web/src/components/Button.jsx @@ -2,12 +2,18 @@ import { h } from 'preact'; const noop = () => {}; +const BUTTON_COLORS = { + blue: { normal: 'bg-blue-500', hover: 'hover:bg-blue-400' }, + red: { normal: 'bg-red-500', hover: 'hover:bg-red-400' }, + green: { normal: 'bg-green-500', hover: 'hover:bg-green-400' }, +}; + export default function Button({ children, className, color = 'blue', onClick, size, ...attrs }) { return (