Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions src/config/colorways/colorway_firefly.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
25 changes: 25 additions & 0 deletions src/config/colorways/colorway_olivia_dark.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
4 changes: 4 additions & 0 deletions src/config/colorways/colorways.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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;
Expand Down