Skip to content

Commit 982f585

Browse files
committed
Updates UI styling with orange accents and blurred backgrounds
- Changes card and section borders from slate to orange. - Applies translucent white backgrounds with backdrop blur for a frosted glass effect. - Adjusts accent text color to orange for consistency.
1 parent 8a9a6a8 commit 982f585

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/pages/ToolsPage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ const groupDescriptions: Partial<Record<ToolGroup, string>> = {
1616
const ToolCard: React.FC<{ tool: ToolDefinition }> = ({ tool }) => (
1717
<Link
1818
to={`/tools/${tool.id}`}
19-
className="group rounded-lg border border-slate-200 bg-white p-5 transition-colors hover:border-primary-400 dark:border-slate-700 dark:bg-slate-900 dark:hover:border-primary-500"
19+
className="group rounded-lg border-2 border-slate-200 bg-white/70 dark:border-slate-700 dark:bg-slate-900/70 backdrop-blur-sm p-5 transition-colors hover:border-goldenrod-400 dark:hover:border-primary-500"
2020
>
2121
<div className="flex items-start gap-4">
2222
<img src={tool.icon} alt="" className="h-11 w-11 shrink-0 rounded-lg" />
2323
<div className="min-w-0">
2424
<p className="truncate font-semibold text-slate-900 dark:text-white">{tool.name}</p>
2525
<p className="mt-1 text-sm leading-6 text-slate-600 dark:text-slate-400">{tool.description}</p>
26-
<span className="mt-3 inline-block text-sm font-medium text-primary-600 group-hover:underline dark:text-primary-400">
26+
<span className="mt-3 inline-block text-sm font-medium text-orange-600 group-hover:underline dark:text-primary-400">
2727
Open tool →
2828
</span>
2929
</div>
@@ -35,7 +35,7 @@ export const ToolsPage: React.FC = () => {
3535
return (
3636
<Layout title="Tools">
3737
<div className="space-y-8">
38-
<section className="rounded-lg border border-slate-200 bg-white p-6 dark:border-slate-800 dark:bg-slate-900">
38+
<section className="rounded-lg border border-orange-200 bg-white/70 backdrop-blur-sm p-6 dark:border-slate-800 dark:bg-slate-900/70">
3939
<Badge variant="success">100% client-side</Badge>
4040
<h2 className="mt-3 text-2xl font-bold text-slate-950 dark:text-white">Image &amp; PDF tools</h2>
4141
<p className="mt-2 max-w-3xl text-sm leading-6 text-slate-600 dark:text-slate-300">

src/pages/WorkspacePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const WorkspacePage: React.FC = () => {
88
return (
99
<Layout title="Workspace">
1010
<div className="space-y-6">
11-
<section className="rounded-lg border border-slate-200 bg-white p-6 dark:border-slate-800 dark:bg-slate-900">
11+
<section className="rounded-lg border border-orange-200 bg-white/70 backdrop-blur-sm p-6 dark:border-slate-800 dark:bg-slate-900/70">
1212
<div className="flex flex-col gap-4 lg:flex-row lg:items-center lg:justify-between">
1313
<div>
1414
<Badge variant="success">All features unlocked and free</Badge>

0 commit comments

Comments
 (0)