{"id":29127851,"url":"https://github.com/technocrat/colorvintner.jl","last_synced_at":"2025-10-11T10:47:49.493Z","repository":{"id":301523802,"uuid":"1009519458","full_name":"technocrat/ColorVintner.jl","owner":"technocrat","description":"A  Julia package for exploring and visualizing ColorBrewer color schemes using Makie.","archived":false,"fork":false,"pushed_at":"2025-06-30T23:47:12.000Z","size":251,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-26T09:47:54.779Z","etag":null,"topics":["colorbrewer","julia"],"latest_commit_sha":null,"homepage":"http://technocrat.site/ColorVintner","language":"Julia","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/technocrat.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"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":"2025-06-27T09:07:45.000Z","updated_at":"2025-06-30T23:47:15.000Z","dependencies_parsed_at":"2025-06-27T10:35:12.290Z","dependency_job_id":null,"html_url":"https://github.com/technocrat/ColorVintner.jl","commit_stats":null,"previous_names":["technocrat/colorvintner.jl"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/technocrat/ColorVintner.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technocrat%2FColorVintner.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technocrat%2FColorVintner.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technocrat%2FColorVintner.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technocrat%2FColorVintner.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/technocrat","download_url":"https://codeload.github.com/technocrat/ColorVintner.jl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technocrat%2FColorVintner.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279006866,"owners_count":26084208,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["colorbrewer","julia"],"created_at":"2025-06-30T01:02:01.523Z","updated_at":"2025-10-11T10:47:49.488Z","avatar_url":"https://github.com/technocrat.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ColorVintner\n\nA Julia package for exploring and visualizing ColorBrewer color schemes using Makie.\n\n## Features\n\n- **Comprehensive Color Scheme Access**: Access to all ColorBrewer sequential, diverging, and qualitative color schemes\n- **Interactive Visualization**: Create beautiful color bar plots using Makie\n- **Scheme Exploration**: Browse and examine color schemes with detailed information\n- **Export Capabilities**: Save plots as PDF files for publication\n- **Organized Display**: Split large scheme collections into manageable parts\n\n## Installation \n\n```julia\nusing Pkg\nPkg.add(\"ColorVintner\")\n```\n\n## Quick Start\n\n```julia\nusing ColorVintner\n\n# Show all available scheme names\nshow_all_scheme_names()\n\n# Get information about a specific scheme\nlist_scheme_colors_in_rbg(:Blues_5)\n\n# Create a DataFrame with all schemes and their hex colors\ndf = list_schemes_colors_in_hex()\n\n# Plot a few schemes\nplot_color_bars([:Blues_5, :Reds_5, :Greens_5])\n\n# Create comprehensive plots for all categories\nplots = plot_schemes_by_category()\n```\n\n## Main Functions\n\n### Exploration Functions\n\n- `show_all_scheme_names()`: Print all available color scheme names\n- `list_scheme_colors_in_rbg(scheme_name)`: Display detailed information about a specific scheme\n- `list_schemes_colors_in_hex()`: Create a DataFrame with all schemes and their hex representations\n\n### Plotting Functions\n\n- `plot_color_bars(schemes)`: Create color bar plots for a list of schemes\n- `plot_schemes_by_category()`: Create comprehensive plots for all categories\n- `plot_sequential_schemes_split()`: Create plots for sequential schemes (split into 4 parts)\n- `plot_diverging_schemes_split()`: Create plots for diverging schemes (split into 3 parts)\n- `plot_qualitative_schemes_split()`: Create plots for qualitative schemes (split into 2 parts)\n\n### Distribution Functions\n\n- `show_sequential_distribution()`: Show how sequential schemes are distributed\n- `show_diverging_distribution()`: Show how diverging schemes are distributed\n- `show_qualitative_distribution()`: Show how qualitative schemes are distributed\n\n## Examples\n\n### Basic Usage\n\n```julia\nusing ColorVintner\n\n# Plot a few schemes with custom settings\nplot_color_bars([:Blues_5, :Reds_5, :Greens_5], \n                schemes_per_row=3, \n                save_path=\"my_plot.pdf\",\n                plot_title=\"My Color Schemes\")\n```\n\n### Comprehensive Visualization\n\n```julia\n# Create all category plots and save to a directory\nplots = plot_schemes_by_category(save_dir=\"./color_plots\")\n```\n\n### Scheme Information\n\n```julia\n# Get detailed information about a scheme\ncolors = list_scheme_colors_in_rbg(:Blues_5)\n\n# Get all schemes as a DataFrame\ndf = list_schemes_colors_in_hex()\nfirst(df, 10)  # Show first 10 schemes\n```\n\n## Color Scheme Categories\n\n### Sequential Schemes\nSequential color schemes are designed for data that progresses from low to high values. They use a single hue that varies in lightness and saturation.\n\n### Diverging Schemes\nDiverging color schemes are designed for data that has a meaningful center point (like zero). They use two different hues that meet at a neutral color.\n\n### Qualitative Schemes\nQualitative color schemes are designed for categorical data. They use distinct colors that are easily distinguishable from each other.\n\n## Dependencies\n\n- **CairoMakie**: For high-quality plotting\n- **ColorSchemes**: For access to ColorBrewer schemes\n- **Colors**: For color manipulation\n- **DataFrames**: For data organization\n- **Makie**: For plotting framework\n\n## License\n\nThis package is licensed under the MIT License.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechnocrat%2Fcolorvintner.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechnocrat%2Fcolorvintner.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechnocrat%2Fcolorvintner.jl/lists"}