diff --git a/package-lock.json b/package-lock.json index 2573a97..ab1b570 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3098,6 +3098,11 @@ "resolve": "^1.12.0" } }, + "babel-jsx-utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/babel-jsx-utils/-/babel-jsx-utils-1.1.0.tgz", + "integrity": "sha512-Mh1j/rw4xM9T3YICkw22aBQ78FhsHdsmlb9NEk4uVAFBOg+Ez9ZgXXHugoBPCZui3XLomk/7/JBBH4daJqTkQQ==" + }, "babel-loader": { "version": "8.2.2", "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", @@ -8206,6 +8211,57 @@ "micromatch": "^4.0.2" } }, + "gatsby-plugin-image": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-1.8.0.tgz", + "integrity": "sha512-nE7VAjhoKlAEtiBmDYo7PFsr4InyrKaHg47ou2b3PG++JiZQRkeVYDq1qeBPmbjh0DA93KMVOheIlc1NuVZvAQ==", + "requires": { + "@babel/code-frame": "^7.14.0", + "@babel/parser": "^7.14.0", + "@babel/traverse": "^7.14.0", + "babel-jsx-utils": "^1.1.0", + "babel-plugin-remove-graphql-queries": "^3.8.0", + "camelcase": "^5.3.1", + "chokidar": "^3.5.1", + "common-tags": "^1.8.0", + "fs-extra": "^8.1.0", + "gatsby-core-utils": "^2.8.0", + "objectFitPolyfill": "^2.3.0", + "prop-types": "^15.7.2" + }, + "dependencies": { + "babel-plugin-remove-graphql-queries": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-3.8.0.tgz", + "integrity": "sha512-ArP55oowkMmMXxz1Q7OAsPUSt09gwRDzRtOi5cdrhhNsN7z4XOmy0n+ImYSyNxId0NL7wG2g2KT8wRdgmZ95Ig==" + }, + "file-type": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.0.tgz", + "integrity": "sha512-OxgWA9tbL8N/WP00GD1z8O0MiwQKFyWRs1q+3FhjdvcGgKqwxcejyGWso3n4/IMU6DdwV+ARZ4A7TTnPkDcSiw==", + "requires": { + "readable-web-to-node-stream": "^3.0.0", + "strtok3": "^6.0.3", + "token-types": "^2.0.0" + } + }, + "gatsby-core-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.8.0.tgz", + "integrity": "sha512-CadvILN4ZyYMYQAp+haxSgE/0k5zIu6y2WcqVSJaQLmmWq0o49Gv4CftVKOEXOtXaN0DEr9e4wWFVBRAYaRHGA==", + "requires": { + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "file-type": "^16.2.0", + "fs-extra": "^8.1.0", + "node-object-hash": "^2.0.0", + "proper-lockfile": "^4.1.1", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + } + } + } + }, "gatsby-plugin-page-creator": { "version": "2.10.2", "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-2.10.2.tgz", @@ -12874,6 +12930,11 @@ "es-abstract": "^1.18.2" } }, + "objectFitPolyfill": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/objectFitPolyfill/-/objectFitPolyfill-2.3.5.tgz", + "integrity": "sha512-8Quz071ZmGi0QWEG4xB3Bv5Lpw6K0Uca87FLoLMKMWjB6qIq9IyBegP3b/VLNxv2WYvIMGoeUQ+c6ibUkNa8TA==" + }, "obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", diff --git a/package.json b/package.json index ddb2409..cc47b27 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "disqus-react": "^1.1.0", "gatsby": "^2.32.13", "gatsby-image": "^2.11.0", + "gatsby-plugin-image": "^1.8.0", "gatsby-plugin-react-helmet": "^3.10.0", "gatsby-plugin-sass": "^2.8.0", "gatsby-plugin-sharp": "^2.14.4", diff --git a/src/styles/bootstrap-variables.scss b/src/styles/bootstrap-variables.scss index e6a05da..69c7f3f 100644 --- a/src/styles/bootstrap-variables.scss +++ b/src/styles/bootstrap-variables.scss @@ -1,5 +1,5 @@ $body-bg: #26282d; -$body-color: #93979e; +$body-color: #ced5e2; $link-color: lighten($body-color, 50%);