The original one.
# Mac
npx degit material-theme/gitkraken ~/.gitkraken/themes --force
# Windows
npx degit material-theme/gitkraken %USERPROFILE%/AppData/Roaming/.gitkraken/themes --force
Open GitKraken preferences cmd + , → UI Customization → Pick the theme from the dropdown
GitKraken theme files are just static jsonc files without any programmatic code. If you want to customize the default accent color from teal
to another one, open the desired theme file from ~/.gitkraken/themes
, find the "accent"
key and change the value as you wish.
Accent colors from Material Theme:
{
"Acid Lime": "#C6FF00",
"Blue": "#2979FF",
"Breaking Bad": "#388E3C",
"Bright Teal": "#64FFDA",
"Cyan": "#00BCD4",
"Graphite": "#616161",
"Indigo": "#5C6BC0",
"Lime": "#7CB342",
"Orange": "#FF7042",
"Pink": "#FF4081",
"Purple": "#AB47BC",
"Red": "#E57373",
"Sky": "#84FFFF",
"Tomato": "#F44336",
"Teal": "#80CBC4",
"Yellow": "#FFA000"
}
Unfortunately, GitKraken doesn't provide a systematic way to get theme updates. The only thing you can do is manually checking for new releases and run the installation command again.