Skip to content

Commit c56e3ed

Browse files
committed
more colors.
1 parent 50c5d8b commit c56e3ed

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/components/Footer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const Footer = () => {
3333
<Link to="/logs" className="text-primary-400 hover:text-white transition-colors" onClick={() => window.scrollTo({ top: 0, behavior: 'smooth' })}>Logs</Link>
3434
</div>
3535
<p className="text-sm text-gray-500">
36-
&copy; {new Date().getFullYear()} fezcode. All rights reserved. <code> v0.0.6 </code>
36+
&copy; {new Date().getFullYear()} fezcode. All rights reserved. <code> v0.0.7 </code>
3737
</p>
3838
</div>
3939
</div>

src/components/ProjectCard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const ProjectCard = ({ project, size = 1 }) => {
66
const colSpanClass = size === 2 ? 'md:col-span-2' : size === 3 ? 'md:col-span-3' : 'col-span-1';
77

88
return (
9-
<Link to={`/projects/${project.slug}`} className={`block bg-gray-800/10 p-6 rounded-lg shadow-lg hover:bg-gray-800/20 transition-colors border border-gray-700/50 cursor-pointer flex flex-col ${colSpanClass}`}>
9+
<Link to={`/projects/${project.slug}`} className={`block bg-gray-500/10 p-6 rounded-lg shadow-lg hover:bg-gray-500/20 transition-colors border border-gray-700/50 cursor-pointer flex flex-col ${colSpanClass}`}>
1010
<h3 className="text-xl font-semibold text-white">{project.title}</h3>
1111
<p className="mt-2 text-gray-400 flex-grow">{project.description}</p>
1212
<a href={project.link || `/projects/${project.slug}`} target="_blank" rel="noopener noreferrer" className="mt-4 inline-block text-red-500 hover:text-red-300 transition-colors mt-auto flex items-center">

tailwind.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ module.exports = {
3030
'title-hover': '#fdd4a6', // orange-200
3131
'markdown-title-color': '#fed7aa', // orange-200
3232
'markdown-hx-color': '#ffedd5', // orange-100
33-
'dev-card-bg': 'rgba(68, 64, 60, 0.1)', // stone-900/10
34-
'dev-card-bg-hover': 'rgba(120, 113, 108, 0.2)', // stone-500/20
35-
'takes-card-bg': 'rgba(6, 95, 70, 0.15)', // emerald-900/15
36-
'takes-card-bg-hover': 'rgba(16, 185, 129, 0.2)', // emerald-500/20
33+
'dev-card-bg': 'rgba(68, 64, 59, 0.3)', // stone-700
34+
'dev-card-bg-hover': 'rgba(68, 64, 59, 0.55)', // stone-700/20
35+
'takes-card-bg': 'rgba(6, 95, 70, 0.175)', // emerald-900/15
36+
'takes-card-bg-hover': 'rgba(16, 185, 129, 0.275)', // emerald-500/20
3737
},
3838
typography: (theme) => ({
3939
dark: {

0 commit comments

Comments
 (0)