This update introduces two new features to Open-Resume:
Theme Selection:
Now, you can customize the appearance of your resume by selecting from various themes. Here’s an example of the new Minimal theme:
The theme setting changes the look of the exported PDF to match your style preference:
Export/Import Resume as JSON:
You can now export your resume data as a JSON file, making it easy to save, store, or transfer between devices. This also allows you to import the same JSON file, which is especially useful if you maintain multiple versions of your resume or want to switch between them effortlessly.
These enhancements provide more flexibility in styling your resume and managing multiple versions, making your experience with Open-Resume even more efficient!
How to Add a New Theme?
To create and integrate your own theme into Open-Resume, follow these steps:
Navigate to src > app > components > themes.
Duplicate the default theme folder. The default theme leverages core functionalities from the themes/core directory. You can either use the existing core functionalities or, if needed, create your own custom logic (refer to the minimal theme for an example of custom core functionality).
Rename your new theme folder with a unique and creative name that reflects your theme.
Modify the files within your new theme folder to suit your design preferences, adjusting styles, layouts, or functionalities as needed.
Once your theme is ready, open the constants.tsx file in the themes folder and add an entry for your new theme. This makes your theme selectable within the application.
Finally, submit your changes by creating a pull request.
This update introduces two new features to Open-Resume:
Theme Selection:
Now, you can customize the appearance of your resume by selecting from various themes. Here’s an example of the new Minimal theme:
The theme setting changes the look of the exported PDF to match your style preference:
Export/Import Resume as JSON:
You can now export your resume data as a JSON file, making it easy to save, store, or transfer between devices. This also allows you to import the same JSON file, which is especially useful if you maintain multiple versions of your resume or want to switch between them effortlessly.
These enhancements provide more flexibility in styling your resume and managing multiple versions, making your experience with Open-Resume even more efficient!
How to Add a New Theme?
To create and integrate your own theme into Open-Resume, follow these steps:
src > app > components > themes
.default
theme folder. Thedefault
theme leverages core functionalities from thethemes/core
directory. You can either use the existing core functionalities or, if needed, create your own custom logic (refer to theminimal
theme for an example of custom core functionality).constants.tsx
file in thethemes
folder and add an entry for your new theme. This makes your theme selectable within the application.