My new Developer Portfolio!
What’s your thoughts?
https://replit.com/@SketchxGFX/tylermessinainfinityfreeappcom?v=1
My new Developer Portfolio!
What’s your thoughts?
https://replit.com/@SketchxGFX/tylermessinainfinityfreeappcom?v=1
@sketchxcodingde Great work so far!
Some things that could enhance your site is using custom fonts from Google Fonts and adding scroll animations with AOS!
Just reply to this and I’ll be happy to elaborate on how to do so!
Hey @SketchxGFX!
Your portfolio is really good! I have one suggestion, you could make your portfolio change based on wether the user is using dark or light mode, you can do it like so:
CSS:
@media (prefers-color-scheme: light) {
:root {
--color: black;
--background-color: white;
}
}
@media (prefers-color-scheme: dark) {
:root {
--color: white;
--background-color: #121b2b;
}
}
And you can use the variables like this:
body {
color: var(--color);
background-color: var(--background-color);
}
Note: This is just an example of what you can do with this, you can customize it to your liking.