0.4.1 • Published 6 months ago

@tmjssz/jsonresume-theme-even v0.4.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

@tmjssz/jsonresume-theme-even

Fork of jsonresume-theme-even.

A flat JSON Resume theme, compatible with the latest resume schema.

  • 💄 Markdown support
  • 📐 CSS grid layout
  • 🌗 Light and dark modes
  • 🎨 Customizable colors
  • 🧩 Standalone CLI
  • 📦 ESM and CommonJS builds
  • 🤖 TypeScript typings

View demo →

Installation

# Yarn
yarn add @tmjssz/jsonresume-theme-even

# NPM
npm install @tmjssz/jsonresume-theme-even

Usage

With resume-cli

resume-cli comes with Even and uses it by default, so you don't even (pun intended) need to install the theme yourself:

npm install resume-cli
npx resume export resume.html

With Resumed

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:

npm install resumed @tmjssz/jsonresume-theme-even
npx resumed render

Standalone usage

Even comes with a barebones CLI that reads resumes from stdin and outputs HTML to stdout. This allows usage without any resume builder tools:

npx @tmjssz/jsonresume-theme-even < resume.json > resume.html

Options

Colors

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:

{
  "meta": {
    "themeOptions": {
      "colors": {
        "background": ["#ffffff", "#191e23"],
        "dimmed": ["#f3f4f5", "#23282d"],
        "primary": ["#191e23", "#fbfbfc"],
        "secondary": ["#6c7781", "#ccd0d4"],
        "accent": ["#0073aa", "#00a0d2"]
      }
    }
  }
}
0.4.1

6 months ago

0.4.0

6 months ago

0.3.0

7 months ago

0.2.0

7 months ago

0.1.0

7 months ago