Skip to content

Commit

Permalink
fix: update footer gray for light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jsun969 committed Oct 8, 2024
1 parent 84618e6 commit 279b49e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const LINKS = [

export const Footer = () => {
return (
<footer className="text-xs text-apple-gray-500">
<footer className="text-xs text-apple-gray-700">
<div className="flex gap-6 mobile:flex-col mobile:gap-2">
{FOOTER_SECTIONS.map((section, i) => (
<section key={i}>
Expand Down
4 changes: 2 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default {
light: {
colors: {
primary: { DEFAULT: '#FC8500', foreground: '#FFFFFF' },
'apple-gray': { 300: '#DFDFDF', 500: '#AFAFAF' },
'apple-gray': { 300: '#DFDFDF', 500: '#AFAFAF', 700: '#6b6b6b' },
// Calendar Event Colors
// 300 - bg, 500 - border, 700 - text
'apple-blue': { 300: '#C9E6FE', 500: '#1D9BF6', 700: '#1D6AA1' },
Expand All @@ -46,7 +46,7 @@ export default {
primary: { DEFAULT: '#FC8500', foreground: '#FFFFFF' },
foreground: '#D5D5D5',
background: '#161718',
'apple-gray': { 300: '#313131', 500: '#8F8F8F' },
'apple-gray': { 300: '#313131', 500: '#434444', 700: '#8F8F8F' },
'apple-blue': { 300: '#19283B', 500: '#1D9BF6', 700: '#1D9BF6' },
'apple-purple': { 300: '#2F1E36', 500: '#BF58DA', 700: '#BF57DA' },
'apple-green': { 300: '#1D341F', 500: '#30D33B', 700: '#30D33B' },
Expand Down

0 comments on commit 279b49e

Please sign in to comment.