Skip to content

Instantly share code, notes, and snippets.

@davidcelis
Created May 25, 2019 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidcelis/f4b3eec60ad2c37d4108e5560c86c021 to your computer and use it in GitHub Desktop.
Save davidcelis/f4b3eec60ad2c37d4108e5560c86c021 to your computer and use it in GitHub Desktop.
A port of the Ariake Dark theme for Blink shell.
black = '#2a2d37';
red = '#85b1e0';
green = '#9aefea';
yellow = '#dda2f6';
blue = '#f5faff';
magenta = '#7e7edd';
cyan = '#4d8acb';
white = '#b9bed5';
lightBlack = '#2a2d37';
lightRed = '#85b1e0';
lightGreen = '#9aefea';
lightYellow = '#dda2f6';
lightBlue = '#f5faff';
lightMagenta = '#7e7edd';
lightCyan = '#4d8acb';
lightWhite = '#b9bed5';
background = '#2a2d37';
text = '#b9bed5';
boldText = '#b9bed5';
cursor = '#5274ff'; // '#c4c5c8';
selection = '#444444';
t.prefs_.set('color-palette-overrides', [
black,
red,
green,
yellow,
blue,
magenta,
cyan,
white,
lightBlack,
lightRed,
lightGreen,
lightYellow,
lightBlue,
lightMagenta,
lightCyan,
lightWhite,
]);
t.prefs_.set('foreground-color', text);
t.prefs_.set('background-color', background);
t.prefs_.set('cursor-color', cursor);
t.prefs_.set('cursor-blink', false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment