Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GMK Sandstorm and GMK Dracula colorways #73

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
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
58 changes: 58 additions & 0 deletions src/config/colorways/colorway_dracula.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"id": "dracula",
"label": "Dracula",
"manufacturer": "GMK",
"designer": "pikku-allu",
"swatches": {
"base": {
"background": "#44475a",
"color": "#f8f8f2"
},
"mods": {
"background": "#282a36",
"color": "#f8f8f2"
},
"accent": {
"background": "#282a36",
"color": "#f8f8f2"
},
"swatch-1": {
"background": "#282a36",
"color": "#ff79c6"
},
"swatch-2": {
"background": "#282a36",
"color": "#bd93f9"
},
"swatch-3": {
"background": "#282a36",
"color": "#8be9fd"
},
"swatch-4": {
"background": "#282a36",
"color": "#f1fa8c"
},
"swatch-5": {
"background": "#282a36",
"color": "#50fa7b"
},
"swatch-6": {
"background": "#282a36",
"color": "#ff5555"
}
},
"override": {
"KC_ENT": "swatch-2",
"KC_ESC": "accent",
"KC_GESC": "swatch-3",
"KC_TAB": "swatch-1",
"KC_RSFT": "swatch-3",
"KC_LSFT": "swatch-3",
"KC_CAPS": "swatch-2",
"KC_LALT": "swatch-2",
"KC_LCTL": "swatch-4",
"KC_RALT": "swatch-2",
"KC_RCTL": "swatch-4",
"KC_BSPC": "swatch-1"
}
}
21 changes: 21 additions & 0 deletions src/config/colorways/colorway_sandstorm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"id": "sandstorm",
"label": "Sandstorm",
"manufacturer": "GMK",
"designer": "Zambumon",
"swatches": {
"base": {
"background": "#b3a17b",
"color": "#dcddcf"
},
"mods": {
"background": "#b3a17b",
"color": "#dcddcf"
},
"accent": {
"background": "#f7f2ea",
"color": "#171718"
},
"override": {}
}
}
4 changes: 4 additions & 0 deletions src/config/colorways/colorways.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//IMPORT
import colorway_dracula from "./colorway_dracula.json";
import colorway_sandstorm from "./colorway_sandstorm.json";
import colorway_aurora_polaris from "./colorway_aurora_polaris.json";
import colorway_port from "./colorway_port.json";
import colorway_night_sakura from "./colorway_night_sakura.json";
Expand Down Expand Up @@ -144,6 +146,8 @@ const COLORWAYS = {
finer_things: colorway_finer_things,
gregory: colorway_gregory,
pluto: colorway_pluto,
dracula: colorway_dracula,
sandstorm: colorway_sandstorm,
};

export default COLORWAYS;
Expand Down