diff --git a/src-tauri/icons/icon.icns b/src-tauri/icons/icon.icns index e4468139..97dcfacd 100644 Binary files a/src-tauri/icons/icon.icns and b/src-tauri/icons/icon.icns differ diff --git a/src-web/App.tsx b/src-web/App.tsx index 5cf1c9b6..30ee0ef2 100644 --- a/src-web/App.tsx +++ b/src-web/App.tsx @@ -33,7 +33,7 @@ function App() {
{request.name} diff --git a/src-web/components/Button.tsx b/src-web/components/Button.tsx index 9f4feba3..0914f89b 100644 --- a/src-web/components/Button.tsx +++ b/src-web/components/Button.tsx @@ -9,9 +9,8 @@ import { forwardRef } from 'react'; import { Icon } from './Icon'; const colorStyles = { - default: 'hover:bg-gray-500/10 text-gray-600', - gray: 'text-gray-800 bg-gray-100 hover:bg-gray-500/20', - tint: 'text-white/90 hover:text-white hover:bg-white/20', + default: 'hover:bg-gray-700/10 text-gray-700 hover:text-gray-900', + gray: 'text-gray-800 bg-gray-100 hover:bg-gray-500/20 hover:text-gray-900', primary: 'bg-blue-400', secondary: 'bg-violet-400', warning: 'bg-orange-400', diff --git a/src-web/components/Colors.tsx b/src-web/components/Colors.tsx new file mode 100644 index 00000000..7ee58f30 --- /dev/null +++ b/src-web/components/Colors.tsx @@ -0,0 +1,105 @@ +import classnames from 'classnames'; +import React from 'react'; +import { HStack, VStack } from './Stacks'; + +export function Colors() { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} + +function Color({ className }: { className: string }) { + return
; +} diff --git a/src-web/components/Dialog.tsx b/src-web/components/Dialog.tsx index 4f68cbb3..df66eeb3 100644 --- a/src-web/components/Dialog.tsx +++ b/src-web/components/Dialog.tsx @@ -28,14 +28,15 @@ export function Dialog({ ('#radix-portal')}> - + -
+
diff --git a/src-web/components/Dropdown.tsx b/src-web/components/Dropdown.tsx index 2a4e1dbd..a8dd1c4b 100644 --- a/src-web/components/Dropdown.tsx +++ b/src-web/components/Dropdown.tsx @@ -137,7 +137,7 @@ const DropdownMenuContent = forwardRef