@tmjssz/jsonresume-theme-even
Version:
A flat JSON Resume theme, compatible with the latest resume schema
78 lines (55 loc) • 2.07 kB
Markdown
Fork of [jsonresume-theme-even](https://github.com/rbardini/jsonresume-theme-even).
A flat [JSON Resume](https://jsonresume.org/) theme, compatible with the latest [resume schema](https://github.com/jsonresume/resume-schema).
- 💄 Markdown support
- 📐 CSS grid layout
- 🌗 Light and dark modes
- 🎨 Customizable colors
- 🧩 Standalone CLI
- 📦 ESM and CommonJS builds
- 🤖 TypeScript typings
[](https://tmjssz.github.io/jsonresume-theme-even-compact/)
```console
yarn add @tmjssz/jsonresume-theme-even
npm install @tmjssz/jsonresume-theme-even
```
[](https://github.com/jsonresume/resume-cli) comes with _Even_ and uses it by default, so you don't even (pun intended) need to install the theme yourself:
```console
npm install resume-cli
npx resume export resume.html
```
[](https://github.com/rbardini/resumed) requires you to install the theme, since it does not come with any by default. It will then automatically load and use _Even_ when rendering a resume:
```console
npm install resumed @tmjssz/jsonresume-theme-even
npx resumed render
```
_Even_ comes with a barebones CLI that reads resumes from `stdin` and outputs HTML to `stdout`. This allows usage without any resume builder tools:
```console
npx @tmjssz/jsonresume-theme-even < resume.json > resume.html
```
You can override theme colors via the `.meta.themeOptions.colors` resume field. Each entry defines a tuple of light and (optional) dark color values. If only one array value is defined, it will be used in both light and dark modes.
Here's an example using the default theme colors:
```json
{
"meta": {
"themeOptions": {
"colors": {
"background": ["#ffffff", "#191e23"],
"dimmed": ["#f3f4f5", "#23282d"],
"primary": ["#191e23", "#fbfbfc"],
"secondary": ["#6c7781", "#ccd0d4"],
"accent": ["#0073aa", "#00a0d2"]
}
}
}
}
```