Skip to content

Instantly share code, notes, and snippets.

@goerz
Last active October 8, 2024 18:14
Show Gist options
  • Select an option

  • Save goerz/6ebedd5b0f0f4c559e9a6bc4098b5ee7 to your computer and use it in GitHub Desktop.

Select an option

Save goerz/6ebedd5b0f0f4c559e9a6bc4098b5ee7 to your computer and use it in GitHub Desktop.

Revisions

  1. goerz revised this gist Oct 8, 2024. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion light.js
    Original file line number Diff line number Diff line change
    @@ -21,6 +21,6 @@ t.prefs_.set('color-palette-overrides',
    lightBlack , lightRed , lightGreen , lightYellow,
    lightBlue , lightMagenta , lightCyan , lightWhite ]);

    t.prefs_.set('cursor-color', '#000000');
    t.prefs_.set('cursor-color', 'rgba(0, 0, 0, 0.5)');
    t.prefs_.set('foreground-color', '#000000');
    t.prefs_.set('background-color', '#FFFFFF');
  2. goerz created this gist Oct 8, 2024.
    26 changes: 26 additions & 0 deletions light.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,26 @@
    black = '#000000';
    red = '#B9211B';
    green = '#429429#';
    yellow = '#96942D';
    blue = '#081B90';
    magenta = '#8A2E90';
    cyan = '#419295';
    white = '#C7C7C7';
    lightBlack = '#686868';
    lightRed = '#ED776D';
    lightGreen = '#70C562';
    lightYellow = '#C8C663';
    lightBlue = '#5359C1';
    lightMagenta= '#BB63C3';
    lightCyan = '#6FC4C7';
    lightWhite = '#FAFAFA';

    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('cursor-color', '#000000');
    t.prefs_.set('foreground-color', '#000000');
    t.prefs_.set('background-color', '#FFFFFF');