Skip to content

Commit

Permalink
Add different background color schema
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaschlegel committed Oct 12, 2024
1 parent 6924fa1 commit aa018c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/cv/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ const CvPage = async () => {
gridColumn: 2,
gridRow: `${rowStart} / ${rowEnd}`,
}}
className="p-2 border rounded-lg shadow bg-white"
className="p-2 rounded-lg shadow bg-gray-50"
>
<h3 className="font-semibold text-gray-900 text-sm">
{(entry.data as Job).title} at{' '}
Expand All @@ -247,7 +247,7 @@ const CvPage = async () => {
{(entry.data as Job).endDate || 'Present'} |{' '}
{(entry.data as Job).location}
</p>
<p className="text-gray-500">
<p className="text-gray-700">
{(entry.data as Job).description}
</p>
</div>
Expand All @@ -274,7 +274,7 @@ const CvPage = async () => {
gridColumn: 3,
gridRow: `${rowStart} / ${rowEnd}`,
}}
className="p-2 border rounded-lg shadow bg-white"
className="p-2 border rounded-lg shadow bg-gray-50"
>
<h3 className="font-semibold text-gray-900 text-sm">
{(entry.data as Education).degree} at{' '}
Expand All @@ -285,7 +285,7 @@ const CvPage = async () => {
{(entry.data as Education).endDate || 'Present'} |{' '}
{(entry.data as Education).location}
</p>
<p className="text-gray-500">
<p className="text-gray-700">
{(entry.data as Education).description}
</p>
</div>
Expand All @@ -311,7 +311,7 @@ const CvPage = async () => {
{yearPublications.map((pub, index) => (
<div
key={`publication-${year}-${index}`}
className="p-2 border rounded-lg shadow bg-white"
className="p-2 border rounded-lg shadow bg-gray-50"
>
<h3 className="font-semibold text-gray-900 text-sm">
{pub.title}
Expand Down
1 change: 1 addition & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const config: Config = {
},
colors: {
gray: {
50: '#E3DDDD',
100: '#f7fafc',
200: '#edf2f7',
300: '#e2e8f0',
Expand Down

0 comments on commit aa018c4

Please sign in to comment.