Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am derjp on github.
  • I am derjp (https://keybase.io/derjp) on keybase.
  • I have a public key whose fingerprint is 2656 7BF8 BF4E 02D0 0A85 FF6B 536D BA21 4776 24C6

To claim this, I am signing this object:

@derjp
derjp / color.ini
Created March 20, 2021 01:35
pmndrs theme for Spotify, apply using Spicetify https://github.com/khanhas/spicetify-cli
[Base]
main_fg = E4F0FB ; offWhite
secondary_fg = 767C9D ; darkerGray
main_bg = 1B1E28 ; bg
sidebar_and_player_bg = 1B1E28 ; bg
cover_overlay_and_shadow = 000000 ; black
indicator_fg_and_button_bg = D0679D ; hotRed
slider_bg = 5d6383 ; darkerGray darkened (spicetify doesn't support alpha)
scrollbar_fg_and_selected_row_bg = 252937 ; bg lightened
pressing_button_fg = E4F0FB ; offWhite
const START_STRING = 'nwlIw6fcI6qf1pmTPuZV1c5SdaIEY2P2Jf9Hf50';
const CHARS_TO_GENERATE = 9;
const CODES_TO_GENERATE = 100;
const POSSIBLE_CHARS = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
const TEXTAREA = document.createElement('textarea');
TEXTAREA.cols = 150;
TEXTAREA.rows = 100;
document.body.appendChild(TEXTAREA);