File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -54,8 +54,8 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
54
54
spacing === "default" ? [ "px-4 py-2" ] : null ,
55
55
type === "primary"
56
56
? [
57
- "bg-green-600 dark:bg-green-700 hover:bg-green-700 dark:hover:bg-green-600 " ,
58
- "text-gray-100 dark:text-green-100 " ,
57
+ "bg-gray-900 dark:bg-gray-100 hover:bg-gray-800 dark:hover:bg-gray-50 " ,
58
+ "text-gray-100 dark:text-gray-900 " ,
59
59
]
60
60
: null ,
61
61
type === "secondary"
Original file line number Diff line number Diff line change 54
54
@layer components {
55
55
/* TODO: deprecate button styles in favor of using <Button> component and handling there */
56
56
button {
57
- @apply cursor-pointer px-4 py-2 my-auto bg-green-600 dark:bg-green-700 hover:bg-green-700 dark:hover:bg-green-600 text-gray-100 dark:text-green-100 text-sm font-medium rounded-md focus:outline-none focus:ring transition ease-in-out;
57
+ @apply cursor-pointer px-4 py-2 my-auto bg-gray-900 dark:bg-gray-100 hover:bg-gray-800 dark:hover:bg-gray-50 text-gray-100 dark:text-gray-900 text-sm font-medium rounded-xl focus:outline-none focus:ring transition ease-in-out;
58
58
}
59
59
button .secondary {
60
60
@apply bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 text-gray-500 dark:text-gray-100 hover:text-gray-600;
You can’t perform that action at this time.
0 commit comments