diff --git a/package-lock.json b/package-lock.json index cc33cb0..261ed85 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9676,6 +9676,11 @@ "resolved": "https://registry.npmjs.org/themer-colors-finger-paint/-/themer-colors-finger-paint-1.0.0.tgz", "integrity": "sha512-CQqajEZ8BEdP9JXP8XQmGl19cNQj1J8V/haw11dATA352CDjX1cMvdstcA91QnLjyEdBH4YH6OkQhW1CphQAXA==" }, + "themer-colors-github-universe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/themer-colors-github-universe/-/themer-colors-github-universe-1.0.0.tgz", + "integrity": "sha512-tYk9rQ29llyHH+5VIRTv5Aoss1NdSyCrJAaxMplzor7L9gN8oG95krdMPdFVOX7tuTQiNJXYt02zuTD0w5AemA==" + }, "themer-colors-lucid": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/themer-colors-lucid/-/themer-colors-lucid-1.0.0.tgz", diff --git a/package.json b/package.json index 8336644..667a884 100644 --- a/package.json +++ b/package.json @@ -86,6 +86,7 @@ "themer-cmd": "^1.0.1", "themer-colors-default": "^1.0.5", "themer-colors-finger-paint": "^1.0.0", + "themer-colors-github-universe": "^1.0.0", "themer-colors-lucid": "^1.0.0", "themer-colors-night-sky": "^1.0.4", "themer-colors-one": "^1.0.4", diff --git a/renderer/components/PrefillDialog.js b/renderer/components/PrefillDialog.js index 6087d39..123952b 100644 --- a/renderer/components/PrefillDialog.js +++ b/renderer/components/PrefillDialog.js @@ -15,6 +15,7 @@ import { colors as colorsPolarIce } from 'themer-colors-polar-ice'; import { colors as colorsLucid } from 'themer-colors-lucid'; import { colors as colorsFingerPaint } from 'themer-colors-finger-paint'; import { colors as colorsSolarized } from 'themer-colors-solarized'; +import { colors as colorsGitHubUniverse } from 'themer-colors-github-universe'; import css from './FormDialogs.css'; const PrefillDialog = ({ prefillColorSetSelection, onClose, onPrefillColorSetSelect, onPrefillWithColorSet }) => ( @@ -68,6 +69,12 @@ const PrefillDialog = ({ prefillColorSetSelection, onClose, onPrefillColorSetSel selected={ prefillColorSetSelection === 'themer-colors-solarized' } onSelect={ onPrefillColorSetSelect } /> +
@@ -114,6 +121,9 @@ const mapDispatchToProps = dispatch => ({ case 'themer-colors-solarized': dispatch(prefillWithColorSet(colorsSolarized)); break; + case 'themer-colors-github-universe': + dispatch(prefillWithColorSet(colorsGitHubUniverse)); + break; default: dispatch(prefillWithColorSet(colorsDefault)); break;