Skip to content

Releases: ZhengLinLei/paste-code

Release v20240220

20 Feb 09:44
56c5b2b
Compare
Choose a tag to compare

What's Changed

Full Changelog: v20231210...v20240220

Release v20231210

10 Dec 13:44
d7804ea
Compare
Choose a tag to compare

Add custom themes

You can edit your own theme colors with Theme Creator

/*
    Edit the JSON below
*/
let SS = 
`
{
     "--theme-bg-color": "#294936",
     "--theme-primary-color": "#212922",
     "--theme-secondary-color": "#294936",
     "--theme-color-muted": "#5B8266",
     "--theme-text-color": "#fff",
     "--theme-extra-color": "#000",
     "--theme-border-color": "rgba(174, 246, 199, 1)",
     "--theme-caret-color": "#cc99cd",
     "--theme-alert-color": "rgba(255, 255, 255, 0.8)",
     "--theme-cristal-color": "rgba(0, 0, 0, 0.3)",
     "--theme-footer-color": "rgba(255, 255, 255, 0.8)",
     "class": "night"
}
`;

/*
    Inner code to import colors
*/

let parse = JSON.parse(SS);
    
for(let i in parse) {
    document.body.style.setProperty(i, parse[i]);
}

document.body.removeAttribute('class');
document.body.classList.add(parse.class);

// Now run "run 0"
// Now run "theme export"

What's Changed

Full Changelog: v20231120...v20231210

Release v20231120

20 Nov 07:22
95c3dc4
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v20230110...v20231120

Release v20230110

10 Jan 09:31
Compare
Choose a tag to compare

Full Changelog: v20230109-alpha...v20230110

#12 And more language added to be executed

@User $   run list

Executer supported languages: python, javascript, typescript, brainfuck, php

Release v20230109

09 Jan 21:36
Compare
Choose a tag to compare

Release v20230105

05 Jan 22:04
Compare
Choose a tag to compare

Pre-release v20230104

04 Jan 15:52
Compare
Choose a tag to compare
Pre-release v20230104 Pre-release
Pre-release