{"id":23624742,"url":"https://github.com/hcl-tech-software/voltscript-console-colors","last_synced_at":"2026-02-18T06:32:08.835Z","repository":{"id":196492446,"uuid":"693639968","full_name":"HCL-TECH-SOFTWARE/voltscript-console-colors","owner":"HCL-TECH-SOFTWARE","description":"Constants for manipulating colours on Terminal etc from VoltScript","archived":false,"fork":false,"pushed_at":"2023-11-08T09:35:39.000Z","size":46,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-10-22T02:17:12.590Z","etag":null,"topics":["volt-mx-go","voltscript"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HCL-TECH-SOFTWARE.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-09-19T12:28:44.000Z","updated_at":"2023-09-25T17:37:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"b37b41cc-9a71-4ea2-9e79-7ff84f33d95c","html_url":"https://github.com/HCL-TECH-SOFTWARE/voltscript-console-colors","commit_stats":null,"previous_names":["hcl-tech-software/voltscript-console-colors"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/HCL-TECH-SOFTWARE/voltscript-console-colors","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HCL-TECH-SOFTWARE%2Fvoltscript-console-colors","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HCL-TECH-SOFTWARE%2Fvoltscript-console-colors/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HCL-TECH-SOFTWARE%2Fvoltscript-console-colors/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HCL-TECH-SOFTWARE%2Fvoltscript-console-colors/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HCL-TECH-SOFTWARE","download_url":"https://codeload.github.com/HCL-TECH-SOFTWARE/voltscript-console-colors/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HCL-TECH-SOFTWARE%2Fvoltscript-console-colors/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29570334,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T06:19:27.422Z","status":"ssl_error","status_checked_at":"2026-02-18T06:18:44.348Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["volt-mx-go","voltscript"],"created_at":"2024-12-27T21:16:20.737Z","updated_at":"2026-02-18T06:32:08.819Z","avatar_url":"https://github.com/HCL-TECH-SOFTWARE.png","language":null,"readme":"# voltscript-console-colors\nConstants for manipulating colours on Terminal etc. For further details, see https://learn.microsoft.com/en-us/windows/console/console-virtual-terminal-sequences#text-formatting. The format is ESC character (ASCII character 27) + \"[\" + number + \"m\".\n\nThis requires support for colorizing text in the relevant console being used. Not all terminal programs support this. Where unsupported, the character sequence for the formatting will be outputted instead. Obviously, changing color is unsupported when writing to log files.\n\nSome terminals (e.g. Visual Studio Code) will enforce foreground color based on background, presumably to prevent accessibility violations.\n\n## Using dependency management\n\nDependency management is available in the documentation for each project, but also aggregated here:\n\n### Authentication\n\nYou'll need a [Personal Access Token](https://help.hcltechsw.com/docs/voltscript/early-access/howto/writing/archipelago.md#github-personal-access-token) to use GitHub REST APIs. You'll then need to add this to the JSON object in your [atlas-settings.json](https://help.hcltechsw.com/docs/voltscript/early-access/howto/writing/archipelago.md#atlas-settingsjson), in the .vss directory of your user home directory:\n\n```json\n    \"hcl-github\": {\n        \"type\": \"github\",\n        \"token\": \"${env.TOKEN}\"\n    }\n```\n\n### Repository\n\nYou'll need to add to your **repositories** object in the atlas.json of your project:\n\n```json\n        {\n            \"id\": \"hcl-github\",\n            \"type\": \"github\",\n            \"url\": \"https://api.github.com/repos/HCL-TECH-SOFTWARE\"\n        }\n```\n\n### Dependency\n\nYou'll need the relevant dependency to add to your **dependencies** or **testDependencies** object in the atlas.json of your project:\n\n```json\n        {\n            \"library\": \"voltscript-console-colors\",\n            \"version\": \"1.0.1\",\n            \"module\": \"VoltScriptConsoleColors.vss\",\n            \"repository\": \"hcl-github\"\n        }\n```\n\n## Contributing\n\nSee [CONTRIBUTING.md](contributing.md).\n\n## Code of Conduct\n\nSee [CODE_OF_CONDUCT.md](code_of_conduct.md).\n\n## Issues and discussions\n\nLet's chat on [OpenNTF Discord](https://openntf.org/discord).\n\nFor long-running discussions, use Discussions area in GitHub. For bugs and feature requests **specific to VoltScript Testing Framework** use, Issues area.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhcl-tech-software%2Fvoltscript-console-colors","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhcl-tech-software%2Fvoltscript-console-colors","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhcl-tech-software%2Fvoltscript-console-colors/lists"}