{"id":21991736,"url":"https://github.com/kdesp73/swingpaint","last_synced_at":"2026-05-01T00:31:10.939Z","repository":{"id":126551496,"uuid":"598162963","full_name":"KDesp73/SwingPaint","owner":"KDesp73","description":"A user-friendly library that simplifies coloring and theming, making it easy to integrate into existing desktop applications.","archived":false,"fork":false,"pushed_at":"2026-04-21T14:03:21.000Z","size":815,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-21T16:11:05.147Z","etag":null,"topics":["java","maven","swing","swing-components","themes","theming-components"],"latest_commit_sha":null,"homepage":"https://kdesp73.github.io/SwingPaint/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KDesp73.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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}},"created_at":"2023-02-06T14:36:49.000Z","updated_at":"2026-04-21T14:03:26.000Z","dependencies_parsed_at":"2024-11-24T21:19:39.064Z","dependency_job_id":"79094090-0b29-4a09-b804-bd8a342aa7fa","html_url":"https://github.com/KDesp73/SwingPaint","commit_stats":null,"previous_names":["kdesp73/swingpaint","kdesp73/swing-themes-library"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/KDesp73/SwingPaint","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDesp73%2FSwingPaint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDesp73%2FSwingPaint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDesp73%2FSwingPaint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDesp73%2FSwingPaint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KDesp73","download_url":"https://codeload.github.com/KDesp73/SwingPaint/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDesp73%2FSwingPaint/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32481553,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: 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":["java","maven","swing","swing-components","themes","theming-components"],"created_at":"2024-11-29T20:11:26.779Z","updated_at":"2026-05-01T00:31:10.935Z","avatar_url":"https://github.com/KDesp73.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SwingPaint\n\n[![MvnRepository](https://badges.mvnrepository.com/badge/io.github.kdesp73/SwingPaint/badge.svg?label=MvnRepository)](https://mvnrepository.com/artifact/io.github.kdesp73/SwingPaint)\n\nA user-friendly library that simplifies coloring and theming,\nmaking it easy to integrate into existing desktop applications.\n\n## Dependency\n\n[Maven Central](https://central.sonatype.com/artifact/io.github.kdesp73/SwingPaint)\n\n### Maven\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.kdesp73\u003c/groupId\u003e\n    \u003cartifactId\u003eSwingPaint\u003c/artifactId\u003e\n    \u003cversion\u003e1.1.2\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Gradle\n\n```text\nimplementation 'io.github.kdesp73:SwingPaint:1.1.2'\n```\n\n## Usage\n\n```java\n@PaintAll(label = \"label\", type = JLabel.class)\n@PaintAll(label = \"button\", type = JButton.class)\npublic class MainFrame extends JFrame {\n\n\tprivate JButton button1;\n\n\t@Paint(label = \"specialbutton\")\n\tprivate JButton button2;\n\n\t@Paint(label = \"myspinner\")\n\tprivate JSpinner spinner1;\n\n\tprivate JLabel label1;\n\tprivate JLabel label2;\n\tprivate JLabel label3;\n\n\tMainFrame() {\n\t\tinitComponents();\n\n\t\tTheme theme = new Theme(\"light\");\n\t\ttheme.apply(this);\n\t}\n}\n\n```\n\n### Theme file\n\nFile path: `src/main/resources/themes/light.properties`\n\n```properties\nbutton.bg = #282828\nbutton.fg = #FFFFFF\n\nspecialbutton.bg = #FF00FF\n\nmyspinner.bg = #282828\nmyspinner.fg = #FFFFFF\nmyspinner.border.color = #000000\nmyspinner.button.bg = #FF00FF\nmyspinner.textfield.bg = #92AB01\nmyspinner.textfield.fg = #FFEEFF\n\nlabel.fg = #FFDDFF\n```\n\n## Contributing\n\nContributions are always welcome!\n\nSee [Contributing.md](https://github.com/KDesp73/Swing-Themes-Library/blob/main/CONTRIBUTING.md) for ways to get started.\n\nPlease adhere to this project's [Code of Conduct](https://github.com/KDesp73/Swing-Themes-Library/blob/main/CODE_OF_CONDUCT.md).\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkdesp73%2Fswingpaint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkdesp73%2Fswingpaint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkdesp73%2Fswingpaint/lists"}