{"id":23535073,"url":"https://github.com/ripta/color-tools","last_synced_at":"2025-04-23T04:20:09.981Z","repository":{"id":414784,"uuid":"34269","full_name":"ripta/color-tools","owner":"ripta","description":"Fork of the color-tools gem","archived":false,"fork":false,"pushed_at":"2015-04-09T05:48:34.000Z","size":215,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-20T08:12:20.023Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://ruby-pdf.rubyforge.org/color-tools/","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ripta.png","metadata":{"files":{"readme":"README.rdoc","changelog":"Changelog","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2008-07-15T15:10:04.000Z","updated_at":"2025-03-15T00:14:10.000Z","dependencies_parsed_at":"2022-07-04T15:12:20.943Z","dependency_job_id":null,"html_url":"https://github.com/ripta/color-tools","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ripta%2Fcolor-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ripta%2Fcolor-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ripta%2Fcolor-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ripta%2Fcolor-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ripta","download_url":"https://codeload.github.com/ripta/color-tools/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250367088,"owners_count":21418830,"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","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":[],"created_at":"2024-12-26T01:14:40.216Z","updated_at":"2025-04-23T04:20:09.960Z","avatar_url":"https://github.com/ripta.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"\ncolor-tools is a Ruby library to provide RGB, CMYK, and other colourspace\nsupport to applications that require it. It also provides 152 named RGB\ncolours. It offers 152 named RGB colours (184 with spelling variations)\nthat are commonly supported and used in HTML, SVG, and X11 applications. A\ntechnique for generating a monochromatic contrasting palette is also\nincluded.\n\nVersion 1.3 offers significant enhancements over color-tools 1.2, and a\nplan for an incompatible change to the library.\n\n* Colours that were defined in the Color namespace (e.g., Color::Red,\n  Color::AliceBlue) are now defined in Color::RGB (e.g., Color::RGB::Red,\n  Color::RGB::AliceBlue). They are added back to the Color namespace on\n  the first use of the old colours and a warning is printed. In version\n  1.4, this warning will be printed on every use of the old colours. In\n  version 1.5, the backwards compatible support for colours like\n  Color::Red will be removed completely.\n\n* A CSS colour name module has been added. It is based on the Color::RGB\n  predefined colours. It is called with \"Color::CSS[color]\". The provided\n  colour name will be looked up ignoring case so that \"DarkSalmon\" and\n  \"darksalmon\" (and :darksalmon) are the same value. This makes it easier\n  on web or SVG developers who wish to be able to manipulate a colour\n  based on a CSS colour name.\n\n* A new predefined colour namespace has been added for RGB metallic\n  colours (Color::Metallic, in color/rgb/metallic), suggested by Jim\n  Freeze \u003cjfn@freeze.org\u003e.\n\n* A new colour space, Color::HSL (hue, saturation, and luminosity) has\n  been added with some helper methods to Color::RGB for colour\n  manipulation.\n\n* Added unit tests and fixed various little bugs.\n\n== Copyright\nCopyright 2005 by Austin Ziegler\n\nColor::Palette was developed based on techniques described by Andy\n\"Malarkey\" Clarke[1], implemented in JavaScript by Steve G. Chipman at\nSlayerOffice[2] and by Patrick Fitzgerald of BarelyFitz[3] in PHP.\n\n== Licence\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the \"Soft-\nware\"), to deal in the Software without restriction, including without\nlimitation the rights to use, copy, modify, merge, publish, distribute,\nsublicense, and/or sell copies of the Software, and to permit persons to\nwhom the Software is furnished to do so, subject to the following\nconditions:\n\n* The names of its contributors may not be used to endorse or promote\n  products derived from this software without specific prior written\n  permission.\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\nTHE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n\n[1] http://www.stuffandnonsense.co.uk/archives/creating_colour_palettes.html \n[2] http://slayeroffice.com/tools/color_palette/\n[3] http://www.barelyfitz.com/projects/csscolor/\n\n#--\n# Colour management with Ruby.\n#\n# Copyright 2005 Austin Ziegler\n#   http://rubyforge.org/ruby-pdf/\n#\n#   Licensed under a MIT-style licence.\n#\n# $Id$\n#++\n# vim: sts=2 sw=2 ts=4 et ai tw=74\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fripta%2Fcolor-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fripta%2Fcolor-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fripta%2Fcolor-tools/lists"}