From e3aba16bd6e5026e770efbaa9789c1e5eac00951 Mon Sep 17 00:00:00 2001 From: Kevin Kunst Date: Fri, 21 Jan 2022 22:33:48 -0600 Subject: [PATCH] Added colorways for Olivia Dark and Firefly --- src/config/colorways/colorway_firefly.json | 42 +++++++++++++++++++ .../colorways/colorway_olivia_dark.json | 25 +++++++++++ src/config/colorways/colorways.js | 4 ++ 3 files changed, 71 insertions(+) create mode 100644 src/config/colorways/colorway_firefly.json create mode 100644 src/config/colorways/colorway_olivia_dark.json diff --git a/src/config/colorways/colorway_firefly.json b/src/config/colorways/colorway_firefly.json new file mode 100644 index 0000000..0dacb16 --- /dev/null +++ b/src/config/colorways/colorway_firefly.json @@ -0,0 +1,42 @@ +{ + "id": "firefly", + "label": "Firefly", + "manufacturer": "", + "swatches": { + "base": { + "background": "#1A2B3C", + "color": "#E09887" + }, + "mods": { + "background": "#1A2B3C", + "color": "#637D96" + }, + "accent": { + "background": "#1A2B3C", + "color": "#928BA6" + } + }, + "override": { + "KC_GRV": "mods", + "KC_BSLS": "mods", + "KC_ENT": "mods", + "KC_ESC": "mods", + "KC_GESC": "mods", + "KC_F1": "mods", + "KC_F2": "mods", + "KC_F3": "mods", + "KC_F4": "mods", + "KC_F5": "mods", + "KC_F6": "mods", + "KC_F7": "mods", + "KC_F8": "mods", + "KC_F9": "mods", + "KC_F10": "mods", + "KC_F11": "mods", + "KC_F12": "mods", + "KC_TAB": "accent", + "KC_CAPS": "accent", + "KC_RALT": "accent", + "KC_RGUI": "accent" + } +} diff --git a/src/config/colorways/colorway_olivia_dark.json b/src/config/colorways/colorway_olivia_dark.json new file mode 100644 index 0000000..d4a239a --- /dev/null +++ b/src/config/colorways/colorway_olivia_dark.json @@ -0,0 +1,25 @@ +{ + "id": "olivia_dark", + "label": "Olivia Dark", + "manufacturer": "", + "swatches": { + "base": { + "background": "#2B2B2B", + "color": "#f1beb0" + }, + "mods": { + "background": "#2B2B2B", + "color": "#f1beb0" + }, + "accent": { + "background": "#f1beb0", + "color": "#2B2B2B" + } + }, + "override": { + "KC_ENT": "accent", + "KC_ESC": "accent", + "KC_GESC": "accent", + "KC_PENT": "accent" + } +} diff --git a/src/config/colorways/colorways.js b/src/config/colorways/colorways.js index 5ee0e25..546d718 100644 --- a/src/config/colorways/colorways.js +++ b/src/config/colorways/colorways.js @@ -70,6 +70,8 @@ import colorway_nuclear_data from "./colorway_nuclear_data.json"; import colorway_finer_things from "./colorway_finer_things.json"; import colorway_gregory from "./colorway_gregory.json"; import colorway_pluto from "./colorway_pluto.json"; +import colorway_firefly from "./colorway_firefly.json"; +import colorway_olivia_dark from "./colorway_olivia_dark.json"; const COLORWAYS = { //APPEND @@ -144,6 +146,8 @@ const COLORWAYS = { finer_things: colorway_finer_things, gregory: colorway_gregory, pluto: colorway_pluto, + firefly: colorway_firefly, + olivia_dark: colorway_olivia_dark, }; export default COLORWAYS;