Skip to content

Commit dfc524b

Browse files
committed
Fix
1 parent 65ba0d3 commit dfc524b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

web/components/widgets/title.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export function Title(props: { className?: string; children?: ReactNode }) {
66
return (
77
<h1
88
className={clsx(
9-
'text-primary-700 mb-4 inline-block text-2xl font-normal sm:mb-6 sm:text-3xl',
9+
'mb-4 inline-block text-2xl font-normal sm:mb-6 sm:text-3xl',
1010
className
1111
)}
1212
>

web/styles/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
--color-primary-950: 255 255 255;
202202
--color-primary-900: 255 255 255;
203203
--color-primary-800: 170 220 250;
204-
--color-primary-700: 255 255 255;
204+
--color-primary-700: 150 200 250;
205205
--color-primary-600: 150 200 250;
206206
--color-primary-500: 59 130 246; /* standard blue */
207207
--color-primary-400: 37 99 235;

0 commit comments

Comments
 (0)