Overview
This is a minimal portfolio template perfect for developers and designers looking for a simple and clean way to showcase their work. It uses pure HTML, CSS, and JavaScript with a responsive layout.
Customization
To change the color scheme of this portfolio template edit the styles.css
file.
Since the portfolio has a toggleable light and dark theme, you must edit both themes in styles.css
.
:root[data-theme="light"] {
--bg-color: #ffffff;
--text-color: #000000;
--accent-color: #5c98ff;
--skill-bg-color: #dddddd;
--svg-color: #767676;
}
:root[data-theme="dark"] {
--bg-color: #0f0f0f;
--text-color: #f5f5f5;
--accent-color: #5c98ff;
--skill-bg-color: #2a2a2a;
--svg-color: #b0b0b0;