feat(dark): add dark mode support
This commit is contained in:
parent
7b34043765
commit
21843b6456
|
@ -12,6 +12,7 @@ Inspired by [jsonresume-theme-flat](https://github.com/erming/jsonresume-theme-f
|
|||
|
||||
- 💄 Markdown support
|
||||
- 📐 CSS grid layout
|
||||
- 🌗 Light and dark modes
|
||||
- 🧩 Standalone CLI
|
||||
|
||||
[View demo →](https://jsonresume-theme-even.netlify.app)
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
"style.css"
|
||||
],
|
||||
"scripts": {
|
||||
"build:demo": "mkdir public && cat node_modules/resume-schema/sample.resume.json | ./bin/cli.js > public/index.html",
|
||||
"build:demo": "mkdir -p public && cat node_modules/resume-schema/sample.resume.json | ./bin/cli.js > public/index.html",
|
||||
"format": "prettier --write .",
|
||||
"lint": "eslint .",
|
||||
"postinstall": "husky install",
|
||||
|
|
11
style.css
11
style.css
|
@ -1,5 +1,6 @@
|
|||
:root {
|
||||
/* Colors */
|
||||
--backgroundColor: #ffffff;
|
||||
--primaryColor: #212529;
|
||||
--secondaryColor: #95a5a6;
|
||||
--accentColor: #f1c40f;
|
||||
|
@ -16,6 +17,15 @@
|
|||
--scale5: calc(var(--scale4) * var(--ratio));
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--backgroundColor: #181a1b;
|
||||
--primaryColor: #d1cdc7;
|
||||
--secondaryColor: #aaa398;
|
||||
--mutedColor: #1e2021;
|
||||
}
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
|
@ -27,6 +37,7 @@ html {
|
|||
}
|
||||
|
||||
body {
|
||||
background: var(--backgroundColor);
|
||||
color: var(--primaryColor);
|
||||
display: grid;
|
||||
font: 1em/1.5 Lato, sans-serif;
|
||||
|
|
|
@ -16,6 +16,7 @@ exports[`test/render.js TAP renders a resume > must match snapshot 1`] = `
|
|||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap">
|
||||
<style>:root {
|
||||
/* Colors */
|
||||
--backgroundColor: #ffffff;
|
||||
--primaryColor: #212529;
|
||||
--secondaryColor: #95a5a6;
|
||||
--accentColor: #f1c40f;
|
||||
|
@ -32,6 +33,15 @@ exports[`test/render.js TAP renders a resume > must match snapshot 1`] = `
|
|||
--scale5: calc(var(--scale4) * var(--ratio));
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--backgroundColor: #181a1b;
|
||||
--primaryColor: #d1cdc7;
|
||||
--secondaryColor: #aaa398;
|
||||
--mutedColor: #1e2021;
|
||||
}
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
|
@ -43,6 +53,7 @@ html {
|
|||
}
|
||||
|
||||
body {
|
||||
background: var(--backgroundColor);
|
||||
color: var(--primaryColor);
|
||||
display: grid;
|
||||
font: 1em/1.5 Lato, sans-serif;
|
||||
|
|
Loading…
Reference in New Issue