Last active
October 1, 2024 17:26
-
-
Save bobmagicii/e3f540c292320612acc20b43b9cc96d3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Padparadscha Retro Terminal", | |
// a GoCoEdit (iPad) theme | |
// 2024-10-10 - bobmagicii | |
// based on my Synthwave Padparadscha for VS Code. | |
// based on Robb's Synthwave '84 for VS Code. | |
"defaults": { | |
"text_color": "#BBBBBB", | |
"background": "#252334", | |
"activeline_background": "#2A2738", | |
"matchingbracket_color": "#FFFF00", | |
}, | |
"gutters": { | |
"background": "#252334", | |
"text_color": "#7D7B85", | |
"border_color": "#444250" | |
}, | |
"tokens": { | |
// Unknown | |
"header_color": "ffff00", | |
"link_color": "ff00ff", | |
"variable3_color": "00ffff", | |
// Misc | |
"attribute_color": "#D36A54", // Shell: --args | |
"def_color": "#E2C5A0", // Shell: Variables | |
"property_color": "#E2C5A0", // JS: property names | |
"bracket_color": "#F2E0CB", // HTML < and > | |
"tag_color": "#FEAD83", // HTML the tag name | |
// Tuned for PHP. | |
"error_background": "#C42727", | |
"number_color": "#31D1E8", | |
"comment_color": "#6E6461", | |
"keyword_color": "#F9EAD4", | |
"string_color": "#F1AC85", | |
"atom_color": "#E3CDB0", // PHP: Constants, NULL, TRUE, FALSE | |
"builtin_color": "#F9EAD4", // PHP: Function names. | |
"variable_color": "#E2C5A0", // PHP: Class, Property, and Method names. | |
"variable2_color": "#D36A54", // PHP: normal variables including $this. | |
"variable_weight": "", | |
"keyword_weight": "" | |
} | |
// The token styles | |
// syntax: "[tokenname]_[property]" : "[value]", | |
// possible propertys [values]: | |
// color [color], background [color], style [italic], | |
// decoration [underline, overline, line-line-through], weight [bold] | |
// This are the the supported default tokens: | |
// comment, number, atom, property, attribute, keyword, builtin, | |
// string, variable, variable2, variable3, def, bracket, tag, header, | |
// link, error | |
// You can also define custom tokens for your own custom syntax modes | |
// example: "mytoken_color" : "244,155,223" | |
//. also all comments must be "within the json" not before or after it.. | |
//. - bob 20241001 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment