diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..3471438 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @signmotion diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..da6572c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,35 @@ +--- +name: Bug report +about: Create a report to help us improve +--- + +# Bug report + +## Describe the bug + +A clear and concise description of what the bug is. + +## To reproduce + +Steps to reproduce the behavior: + +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +## Expected behavior + +A clear and concise description of what you expected to happen. + +## Screenshots + +If applicable, add screenshots to help explain your problem. + +## Version + +Paste the output of running `dart --version` here. + +## Additional context + +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..edb2987 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,22 @@ +--- +name: Feature request +about: Suggest an idea for this project +--- + +# Feature request + +## Is your feature request related to a problem? Please describe + +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +## Describe the solution you'd like + +A clear and concise description of what you want to happen. + +## Describe alternatives you've considered + +A clear and concise description of any alternative solutions or features you've considered. + +## Additional context + +Add any other context or screenshots about the feature request here. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..6307a62 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,39 @@ +# Pull Request Template + +## Status + +READY | IN DEVELOPMENT | HOLD + +## Breaking Changes + +YES | NO + +## Description + +A few sentences describing the overall goals of the pull request's commits. + +## Related PRs + +List related PRs against other branches: + +- + +## Todos + +- [ ] Tests +- [ ] Documentation +- [ ] Examples + +## Steps to Test or Reproduce + +Outline the steps to test or reproduce the PR here. + +```text + +``` + +## Impact to Remaining Code Base + +This PR will affect: + +- diff --git a/.github/workflows/dart-ci.yml b/.github/workflows/dart-ci.yml new file mode 100644 index 0000000..3374e38 --- /dev/null +++ b/.github/workflows/dart-ci.yml @@ -0,0 +1,29 @@ +name: Dart CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: dart-lang/setup-dart@v1 + with: + sdk: stable + + - name: Install dependencies + run: dart pub get + + - name: Format code + run: dart format --output=none --set-exit-if-changed . + + - name: Analyze code + run: dart analyze + + - name: Run tests + run: dart test diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..38613a3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# https://dart.dev/guides/libraries/private-files +# Created by `dart pub` +.dart_tool/ + +# Avoid committing pubspec.lock for library packages; see +# https://dart.dev/guides/libraries/private-files#pubspeclock. +#pubspec.lock + +/.vscode/settings.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..6f84dd5 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,5 @@ +{ + "MD013": false, + "MD033": false, + "MD045": false +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..0bcfb82 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "configurations": [ + { + "name": "Example Flutter", + "type": "dart", + "request": "launch", + "cwd": "example/all_palettes", + "program": "lib/main.dart" + } + ] +} diff --git a/.vscode/settings.default.json b/.vscode/settings.default.json new file mode 100644 index 0000000..fca6b8a --- /dev/null +++ b/.vscode/settings.default.json @@ -0,0 +1,101 @@ +{ + "editor.codeActionsOnSave": { "source.fixAll": true }, + + "workbench.colorTheme": "GitHub Dark Default", + "workbench.iconTheme": "fira-code-material-minimal", + "editor.fontFamily": "fira-code-nerd, FiraCode Nerd Font, Consolas, 'Courier New', monospace", + "editor.fontLigatures": true, + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnSave": true, + "editor.unicodeHighlight.allowedLocales": { + "ru": true, + "uk": true + }, + + "editor.accessibilitySupport": "off", + "explorer.confirmDragAndDrop": false, + "redhat.telemetry.enabled": true, + "editor.unicodeHighlight.allowedCharacters": { + "і": true + }, + "git.openRepositoryInParentFolders": "never", + + "typescript.tsserver.watchOptions": {}, + + "[dart]": { + "editor.formatOnSave": true, + "editor.formatOnType": true, + "editor.rulers": [80], + "editor.selectionHighlight": false, + "editor.suggest.snippetsPreventQuickSuggestions": false, + "editor.suggestSelection": "first", + "editor.tabCompletion": "onlySnippets", + "editor.wordBasedSuggestions": false + }, + "dart.openDevTools": "flutter", + "dart.warnWhenEditingFilesOutsideWorkspace": false, + "dart.showInspectorNotificationsForWidgetErrors": false, + "dart.debugExternalPackageLibraries": true, + "dart.debugSdkLibraries": true, + + "[python]": { + "editor.formatOnSave": true, + "editor.defaultFormatter": "ms-python.black-formatter" + }, + "python.analysis.typeCheckingMode": "basic", + "python.analysis.autoImportCompletions": true, + + "[env]": { + "editor.defaultFormatter": "IronGeek.vscode-env" + }, + + "files.associations": { + ".env": "env" + }, + + "hidefiles.configurationType": "local", + "hidefiles.globalConfig": { + "profiles": [ + { + "hidden": [ + "**/.*", + "analysis_options.yaml", + "CHANGELOG.md", + "CODE_OF_CONDUCT.md", + "CONTRIBUTING.md", + "LICENSE", + "pubspec.lock", + "SECURITY.md", + "STYLEGUIDE.md", + "**/README.md", + "**/android/", + "**/build/", + "**/ios/", + "**/windows/", + "**/app.iml", + "**/devtools_options.yaml", + "**/pubspec.*" + ], + "name": "Flutter", + "description": "", + "detail": "", + "peek": [] + }, + { + "hidden": ["**/__pycache__", "**/__init__.py"], + "name": "Python", + "description": "", + "detail": "", + "peek": [] + }, + { + "name": "Default", + "detail": "", + "description": "Test", + "hidden": [".vscode/"] + } + ] + }, + "hidefiles.selectedProfile": "Python", + "hide-files.files": [] +} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..eec3039 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to the project `UniColorPalette` will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.1.0 + +- Initial release. diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..a671ffa --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,76 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +- Using welcoming and inclusive language +- Being respectful of differing viewpoints and experiences +- Gracefully accepting constructive criticism +- Focusing on what is best for the community +- Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +- The use of sexualized language or imagery and unwelcome sexual attention or + advances +- Trolling, insulting/derogatory comments, and personal or political attacks +- Public or private harassment +- Publishing others' private information, such as a physical or electronic + address, without explicit permission +- Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting anyone with the contributors of `UniColorPalette`. +All complaints will be reviewed and investigated and will result in a response +that is deemed necessary and appropriate to the circumstances. The project team +is obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..56515f9 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,98 @@ +# Contribution Guidelines + +**Note:** If these contribution guidelines are not followed your issue or PR might be closed, so +please read these instructions carefully. + +## Contribution types + +### Bug Reports + +- If you find a bug, please first report it using [Github issues]. + - First check if there is not already an issue for it; duplicated issues will be closed. + +### Bug Fix + +- If you'd like to submit a fix for a bug, please read the [How To](#how-to-contribute) for how to + send a Pull Request. +- Indicate on the open issue that you are working on fixing the bug and the issue will be assigned + to you. +- Write `Fixes #xxxx` in your PR text, where xxxx is the issue number (if there is one). +- Include a test that isolates the bug and verifies that it was fixed. + +### New Features + +- If you'd like to add a feature to the library that doesn't already exist, feel free to describe + the feature in a new [GitHub issue]. + thoughts. +- If you'd like to implement the new feature, please wait for feedback from the project maintainers + before spending too much time writing the code. In some cases, enhancements may not align well + with the project objectives at the time. +- Implement the code for the new feature and please read the [How To](#how-to-contribute). + +### Documentation & Miscellaneous + +- If you have suggestions for improvements to the documentation, tutorial or examples (or something + else), we would love to hear about it. +- As always first file a [Github issue]. +- Implement the changes to the documentation, please read the [How To](#how-to-contribute). + +## How To Contribute + +### Requirements + +For a contribution to be accepted: + +- Documentation should always be updated or added.\* +- Examples should always be updated or added.\* +- Tests should always be updated or added.\* +- Format the Dart code accordingly with `flutter format`. +- Your code should pass the analyzer checks `melos run analyze`. +- Your code should pass all tests `melos run test`. +- Start your PR title with a [conventional commit] type + (`feat:`, `fix:` etc). + +\*When applicable. + +If the contribution doesn't meet these criteria, a maintainer will discuss it with you on the issue +or PR. You can still continue to add more commits to the branch you have sent the Pull Request from +and it will be automatically reflected in the PR. + +## Open an issue and fork the repository + +- If it is a bigger change or a new feature, first of all + [file a bug or feature report][GitHub issues], so that we can discuss what direction to follow. +- [Fork the project][fork guide] on GitHub. +- Clone the forked repository to your local development machine + (e.g. `git clone git@github.com:/uni_color_palette.git`). + +### Performing changes + +- Create a new local branch from `main` (e.g. `git checkout -b my-new-feature`) +- Make your changes. +- When committing your changes, make sure that each commit message is clear. +- Push your new branch to your own fork into the same remote branch + (e.g. `git push origin my-username.my-new-feature`, replace `origin` if you use another remote). + +### Open a pull request + +Go to the [pull request page of UniColorPalette][PRs] and in the top +of the page it will ask you if you want to open a pull request from your newly created branch. + +The title of the pull request should start with a [conventional commit] type. + +Examples of such types: + +- `fix:` - patches a bug and is not a new feature. +- `feat:` - introduces a new feature. +- `docs:` - updates or adds documentation or examples. +- `test:` - updates or adds tests. +- `refactor:` - refactors code but doesn't introduce any changes or additions to the public API. + +If you introduce a **breaking change** the conventional commit type MUST end with an exclamation +mark (e.g. `feat!: Remove the argument from ZipLoader.getFile()`). + +[GitHub issue]: https://github.com/signmotion/uni_color_palette/issues/new +[GitHub issues]: https://github.com/signmotion/uni_color_palette/issues/new +[PRs]: https://github.com/signmotion/uni_color_palette/pulls +[fork guide]: https://guides.github.com/activities/forking/#fork +[conventional commit]: https://www.conventionalcommits.org diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..5cbac71 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +# MIT License + +Copyright (c) 2024 [Andrii Syrokomskyi](https://syrokomskyi.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..f06ad0b --- /dev/null +++ b/README.md @@ -0,0 +1,156 @@ +# Uni(fying) Color Palette(s) + +![Cover - Unifying Color Palette](https://raw.githubusercontent.com/signmotion/uni_color_palette/master/images/cover.webp) + +[![GitHub License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) +[![Pub Package](https://img.shields.io/pub/v/uni_color_palette.svg?logo=dart&logoColor=00b9fc&color=blue)](https://pub.dartlang.org/packages/uni_color_palette) +[![Code Size](https://img.shields.io/github/languages/code-size/signmotion/uni_color_palette?logo=github&logoColor=white)](https://github.com/signmotion/uni_color_palette) +[![Publisher](https://img.shields.io/pub/publisher/uni_color_palette)](https://pub.dev/publishers/syrokomskyi.com) + +[![Build Status](https://img.shields.io/github/actions/workflow/status/signmotion/uni_color_palette/dart-ci.yml?logo=github-actions&logoColor=white)](https://github.com/signmotion/uni_color_palette/actions) +[![Pull Requests](https://img.shields.io/github/issues-pr/signmotion/uni_color_palette?logo=github&logoColor=white)](https://github.com/signmotion/uni_color_palette/pulls) +[![Issues](https://img.shields.io/github/issues/signmotion/uni_color_palette?logo=github&logoColor=white)](https://github.com/signmotion/uni_color_palette/issues) +[![Pub Score](https://img.shields.io/pub/points/uni_color_palette?logo=dart&logoColor=00b9fc)](https://pub.dev/packages/uni_color_palette/score) + +The amazing color palettes with links to original sources. +The easy-to-use package. +Feel free to use it in your awesome projects. + +The [UniColorName](https://github.com/signmotion/uni_color_name) package supports a fuzzy search for a color by value and name. + +| Android | iOS | Linux | MacOS | Web | Windows | | +| :-----: | :-: | :---: | :---: | :-: | :-----: | :----------- | +| ✅ | ✅ | ✅ | ✅ | ✘ | ✅ | **platform** | + +| Dart | Flutter | | +| :--: | :-----: | :------ | +| ✅ | ✅ | **SDK** | + +Share some ❤️ and star repo to support the project. + +## Usage + +```dart +final palette = UniPalette(zeplinColors); +print('I know ${palette.count} colors.'); +print(palette['forrest green']); +``` + +```text +I know 949 colors. +154406 +``` + +See also `example/all_palettes` folder with Flutter example that visualize palette `Zeplin`. + +[](https://raw.githubusercontent.com/signmotion/uni_color_palette/master/images/screenshots/zeplin_palette.webp) + +## Available Palettes + +### Zeplin + +
+ ... + +black, very dark blue, dark navy blue, dark blue, dark navy, navy blue, dark forest green, prussian blue, dark blue green, deep teal, petrol, kelley green, greenish turquoise, cyan, true blue, navy, marine blue, darkish blue, racing green, dark teal, deep sea blue, bright blue, peacock blue, dark aquamarine, deep turquoise, bluegreen, ocean, teal blue, irish green, emerald, shamrock, green/blue, bright teal, bright green, midnight blue, pure blue, dark royal blue, rich blue, deep green, emerald green, teal, kelly green, shamrock green, bright sky blue, aqua blue, midnight, darkblue, cobalt blue, dark green, vibrant blue, blue, ocean blue, deep blue, night blue, marine, bottle green, dark turquoise, sea blue, jungle green, cerulean, aquamarine, neon blue, turquoise green, royal blue, evergreen, british racing green, darkgreen, dark aqua, cerulean blue, bright sea green, very dark green, forest green, electric blue, azure, turquoise blue, green blue, turquoise, almost black, primary blue, deep aqua, true green, fluorescent green, twilight blue, pine green, spruce, dark cyan, vibrant green, fluro green, hunter green, forest, greenish blue, minty green, bright aqua, strong blue, royal, green teal, tealish green, neon green, deep sky blue, water blue, blue/green, bright turquoise, nice blue, bluish green, dark sea green, aqua green, blue green, topaz, aqua, vivid blue, forrest green, light navy, green, ultramarine blue, seaweed, dark, highlighter green, very dark brown, azul, cobalt, viridian, spearmint, dark indigo, dark blue grey, dark green blue, jade, dark seafoam, ultramarine, dark mint green, wintergreen, sapphire, dark slate blue, algae green, electric green, blue blue, greenblue, clear blue, tealish, teal green, hot green, dusk blue, bright light blue, mid blue, midnight purple, darkish green, dark grey blue, bluish, very dark purple, tree green, greenish cyan, pine, jade green, bluey green, medium blue, radioactive green, bright light green, light navy blue, aqua marine, vivid green, ugly blue, greenish teal, cool green, dark violet, dark brown, charcoal, dark purple, navy green, seaweed green, deep purple, dark grey, dark olive, windows blue, indigo, eggplant, dark grass green, medium green, indigo blue, light royal blue, weird green, denim blue, denim, muted blue, dark maroon, charcoal grey, dark olive green, flat blue, sea, aubergine, chocolate, lightish blue, ocean green, dodger blue, dark seafoam green, dark plum, dirty blue, grass green, greenish, poison green, deep brown, chocolate brown, grassy green, bright cyan, greeny blue, eggplant purple, french blue, dark sky blue, blueberry, dusky blue, dark mint, deep violet, dull blue, cool blue, mahogany, royal purple, dried blood, warm blue, army green, camouflage green, dusty teal, lawn green, plum purple, twilight, dusk, cadet blue, light neon green, metallic blue, light forest green, stormy blue, mid green, violet blue, slate, cornflower blue, leafy green, camo green, blue with a hint of purple, gunmetal, sea green, light bright green, green brown, fern green, algae, blurple, off blue, dark pastel green, light green blue, blue purple, plum, frog green, slate grey, dark sage, blue/purple, steel blue, dusty blue, slate blue, sap green, leaf green, grass, kermit green, blue violet, grape purple, purple/blue, greyish blue, grey teal, green apple, purpley blue, dull teal, muted green, purplish blue, mud brown, mud green, blue grey, burgundy, purpleish blue, toxic green, lightish green, bluey purple, iris, purple blue, mossy green, fern, boring green, light greenish blue, olive brown, grey/blue, soft blue, maroon, brown, muddy green, moss green, faded blue, slate green, tea, bright lime green, purply blue, dark periwinkle, military green, dirty green, purple brown, olive green, claret, burple, greeny brown, greenish brown, swamp, flat green, fresh green, brownish green, cornflower, purplish brown, battleship grey, grey blue, off green, grape, murky green, light indigo, robin's egg, reddy brown, olive, apple, browny green, olive drab, poop green, steel grey, soft green, bluish purple, brown green, nasty green, greyish teal, leaf, rich purple, khaki green, dark yellow green, merlot, dirty purple, mud, steel, chestnut, swamp green, bluish grey, drab green, dull green, velvet, darkish purple, shit green, blue/grey, turtle green, sky blue, lighter green, brownish purple, moss, dusty green, apple green, light bluish green, lightgreen, blood, green grey, greyblue, asparagus, grey green, seafoam blue, poop brown, purplish grey, greyish brown, ugly green, seafoam green, bordeaux, wine red, shit brown, faded green, lightblue, tiffany blue, light aquamarine, ugly brown, medium grey, purple, bruise, greeny grey, dark lime green, light turquoise, light blue green, reddish brown, milk chocolate, medium brown, poop, shit, dark taupe, grey brown, camo, wine, muted purple, seafoam, red purple, dusty purple, grey purple, drab, greyish green, sky, pale teal, dirt brown, dark red, dull purple, dark lime, indian red, dark lavender, bluegrey, purple grey, brownish grey, grey/green, dark mauve, purpley, cocoa, dull brown, avocado green, sage, bright lime, poo brown, muddy brown, greyish purple, baby shit green, sage green, light eggplant, dusky purple, bluey grey, vomit green, lime green, dirt, carolina blue, robin egg blue, red brown, rust brown, lavender blue, crimson, red wine, easter green, baby green, light aqua, deep lavender, brown grey, hazel, periwinkle, pea green, kiwi green, brick red, poo, perrywinkle, baby poop green, periwinkle blue, icky green, lichen, acid green, mint green, avocado, light teal, foam green, reddish purple, faded purple, mulberry, brown red, grey, pea soup, baby poop, purplish, puke brown, purpley grey, pea soup green, barf green, sickly green, warm purple, cool grey, light blue, dark magenta, warm brown, deep lilac, greenish grey, booger green, light green, warm grey, blood red, purply, purpleish, sepia, robin's egg blue, light sea green, vivid purple, purple red, berry, reddish grey, slime green, deep red, violet, auburn, raw sienna, puke green, light grass green, amethyst, yellowish brown, dark khaki, booger, hospital green, brownish, dark lilac, bright olive, kiwi, carmine, dark fuchsia, light plum, mocha, sick green, light grey blue, snot green, bright yellow green, cranberry, red violet, brownish red, medium purple, burnt red, diarrhea, mint, deep magenta, barney purple, brick, burnt umber, gross green, light seafoam, russet, light maroon, earth, vomit, pastel blue, baby blue, ugly purple, heather, light olive green, pea, violet red, lightish purple, lighter purple, puce, cement, puke, pale turquoise, soft purple, coffee, light moss green, light mint green, raw umber, light seafoam green, rust, light burgundy, bronze, wisteria, dark mustard, dark sand, greyish, mustard green, electric lime, darkish red, sienna, tan green, spring green, electric purple, rust red, khaki, lime, rouge, tan brown, baby poo, barney, cinnamon, leather, mustard brown, dusty lavender, dark beige, snot, light olive, cloudy blue, light cyan, vibrant purple, bright violet, light brown, baby shit brown, stone, lemon green, mauve, yellowy brown, light lime, key lime, rusty red, caramel, dark tan, bland, raspberry, purplish red, burnt sienna, yellowish green, pastel green, orangey brown, pinkish brown, pale brown, powder blue, pale olive green, pale light green, pale lime green, orangish brown, umber, clay brown, golden brown, brown yellow, dust, light pastel green, light urple, dark rose, dark gold, bile, green/yellow, copper, clay, baby puke green, light mint, burnt siena, pale purple, yellow brown, light blue grey, light grey green, pale cyan, pale aqua, dusty red, brown orange, taupe, pale olive, light lime green, dusky rose, mushroom, dull red, yellowgreen, neon purple, greenish tan, light sage, washed out green, adobe, pale sky blue, tea green, scarlet, rose red, bright purple, orange brown, putty, pale lime, celadon, light purple, ochre, ocher, muddy yellow, yellowy green, lemon lime, lipstick red, burnt orange, easter purple, dusty rose, pistachio, yellow green, brick orange, light periwinkle, chartreuse, celery, magenta, brownish pink, light mauve, olive yellow, puke yellow, light yellowish green, grey pink, duck egg blue, reddish, rust orange, liliac, sandy brown, light pea green, eggshell blue, silver, dark orange, ocre, camel, greeny yellow, light sky blue, deep rose, bright lavender, old pink, lavender, toupe, vomit yellow, pale green, purpley pink, dark salmon, orchid, dirty orange, old rose, greyish pink, pinkish grey, yellow/green, light light green, pinky purple, bright lilac, terra cotta, sandstone, brownish yellow, greenish beige, green yellow, ruby, terracotta, browny orange, dirty pink, baby purple, pastel purple, light light blue, hot purple, deep pink, dark pink, terracota, brownish orange, yellow ochre, sand brown, pear, dusky pink, desert, light yellow green, rusty orange, ugly pink, dirty yellow, greenish yellow, purplish pink, lilac, pale violet, mustard, cherry, dark coral, rose, fawn, very pale green, neon yellow, ugly yellow, sickly yellow, lime yellow, pale blue, muted pink, tan, very light green, mustard yellow, faded red, very light brown, pinkish, really light blue, lipstick, dull pink, dusty pink, burnt yellow, dark yellow, very light blue, pinkish purple, light violet, ice, very pale blue, purple/pink, pale magenta, ice blue, dull orange, light grey, dark hot pink, heliotrope, pale red, pinkish tan, darkish pink, pink purple, pastel red, gold, deep orange, lavender pink, piss yellow, cerise, dark peach, faded pink, purpleish pink, light lavender, purple pink, pumpkin, sand, pale lilac, red, beige, light khaki, pig pink, tomato red, fuchsia, light lilac, pale lavender, dull yellow, pink/purple, tomato, macaroni and cheese, light lavendar, purply pink, dusty orange, faded orange, pinkish red, sandy, off yellow, blush, squash, medium pink, vermillion, orangish red, maize, hot magenta, pink red, golden, rosy pink, very light purple, cherry red, rose pink, light mustard, reddish orange, orange, golden rod, red pink, orangey red, light magenta, goldenrod, yellowish, banana yellow, strawberry, warm pink, violet pink, pumpkin orange, wheat, light tan, pinky red, coral, orangish, pinky, yellow orange, marigold, sand yellow, straw, yellowish tan, red orange, orange red, watermelon, grapefruit, carnation, orangeish, light orange, soft pink, butterscotch, orangey yellow, pale rose, light gold, pale gold, sandy yellow, pale grey, lemon yellow, lemon, canary, fire engine red, neon pink, bright pink, shocking pink, reddish pink, lightish red, orangered, barbie pink, blood orange, salmon pink, blush pink, bubblegum pink, rosa, light salmon, saffron, amber, golden yellow, pale mauve, dandelion, buff, parchment, faded yellow, ecru, bright red, hot pink, electric pink, neon red, strong pink, bright magenta, light red, bright orange, coral pink, candy pink, bubble gum pink, bubblegum, orange pink, pinkish orange, melon, salmon, carnation pink, pink, tangerine, pastel orange, peachy pink, mango, pale orange, yellowish orange, orange yellow, peach, apricot, pale salmon, powder pink, baby pink, pastel pink, sunflower, light rose, pale pink, light pink, light peach, sunflower yellow, sun yellow, yellow tan, pale peach, dark cream, very light pink, sunny yellow, pale, manilla, egg shell, bright yellow, sunshine yellow, butter yellow, custard, canary yellow, pastel yellow, light yellow, light beige, yellow, banana, butter, pale yellow, creme, cream, ivory, eggshell, off white, white + +
+ +## Color Palettes + +You can add your own color palette: the folder `src/palettes` contains palettes as examples. + +Also I share the [helper table](https://docs.google.com/spreadsheets/d/1f8wvrgqfGcXFAiAXx-p9CgLXo3__IoEn8-Us-uRyfok/copy). + +## Resources + +Working on this project, I found amazing resources and am grateful to the authors: + +- + Pass in any valid color and get conversion into any other format, the name of the color, placeholder images and a multitude of schemes. +- + Get Ready to Explore a World of Color. +- + 10 color inspiration secrets only designers know about. +- + Color theory and the color wheel. +- + 100 inspiring color combinations & Free color palette generator. + +## Welcome to Inspiration + +Requests and suggestions are warmly welcome. + +Contributions are what make the open-source community such a great place to learn, create, and be inspired. + +If this is your first contribution, I'll leave you with some of the best links I've found: they will help you get started or/and become even more efficient. + +- [Guide to Making a First Contribution](https://github.com/firstcontributions/first-contributions). You will find the guide in your native language. +- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute). Longread for deep diving for first-timers and for veterans. +- [Summer Guide from Google](https://youtu.be/qGTQ7dEZXZc). + +The package **UniColorPalette** is open-source, stable and well-tested. Development happens on +[GitHub](https://github.com/signmotion/uni_color_palette). Feel free to report issues +or create a pull-request there. + +General questions are best asked on +[StackOverflow](https://stackoverflow.com/questions/tagged/uni_color_palette). + +And here is a curated list of how you can help: + +- Report parts of the documentation that are unclear. +- Fix typos/grammar mistakes. +- Update the documentation or add examples. +- Report bugs and scenarios that are difficult to implement. +- Implement new features by making a pull-request (look below). + +## TODO (perhaps) + +Once you start using the **UniColorPalette**, it will become easy to choose the functionality to contribute. But if you already get everything you need from this package but have some free time, let me write here what I have planned: + +- Converters between palettes. +- How to define your own map for color palette. + +- Sources for color palettes. + +- More palettes. See [1](https://en.wikipedia.org/wiki/List_of_colors:_A%E2%80%93F), [2](https://en.m.wikipedia.org/wiki/List_of_color_palettes), [3](https://en.wikipedia.org/wiki/Lists_of_colors). +- Faber Castell palettes. [1](https://curtisward.com/faber-castell-polychromos-pencils-colour-chart) +- Colors from WIKI as palette? [1]() + +- Construct a palette by color scheme? Complementary, triad, tetrad, analogus, accented, split... [1](https://en.wikipedia.org/wiki/Color_scheme) [2](https://rgb.to/ral/6038) + +- In fashion balance palettes? [1](https://infashionbalance.com) +- colorhunt.co palettes? [1](https://colorhunt.co) + +- PANTONE®, RAL®, Dulux®, Copic®, NCS®, HKS® and Prismacolor®. [!](https://github.com/fundevogel/we-love-colors) + +- ZxSpectrum palette [1](https://en.wikipedia.org/wiki/ZX_Spectrum_graphic_modes#Colour_palette) + +- [nice-color-palettes](https://github.com/Experience-Monks/nice-color-palettes) <- [colourlovers.com](https://colourlovers.com) +- [r-color-palettes](https://github.com/EmilHvitfeldt/r-color-palettes) +- [paletteer](https://github.com/EmilHvitfeldt/paletteer) +- [palettable](https://github.com/jiffyclub/palettable) + +- Freetone. + +- Color spaces (aka palettes) from . + +- RAL color system. | [1](https://github.com/fundevogel/we-love-colors) [2](https://pub.dev/packages/ral_color) [1](https://rgb.to/ral) [2](https://rgb.to/ral/6038) [all colors](https://web.archive.org/web/20201130075701/http://ral-farben.de/content/application-help/all-ral-colours-names/overview-ral-design-colours.html) or +- RAL light reflactance values? [1](https://ral-farben.de/en/downloads) +- RAL Classic & Design system plus color names. [1](https://ral-farben.de/en/downloads) +- RAL Classic, Design, Effect, Plastic P1, Plastic P2. +- Meaning from [ISO 3864](https://en.m.wikipedia.org/wiki/ISO_3864)? + +- Color blind friendly palettes. + +- Can we keep the palette organic combinations? [1](https://canva.com/learn/100-color-combinations/#100-color-palettes) [2](https://infashionbalance.com/fashion-palette-12-street-style) + +- Tagged color palettes. [1](https://colorhunt.co/palette/d61355f94a29fce22a30e3df) + +- Meanings of color? [1](https://www.smashingmagazine.com/2010/01/color-theory-for-designers-part-1-the-meaning-of-color) [2](https://99designs.com/blog/tips/color-meanings) [3](https://www.interaction-design.org/literature/topics/color-symbolism) + +- Color names for base color? [1](https://louisem.com/29880/color-thesaurus-infographic) + +It's just a habit of mine: writing down ideas that come to mind while working on a project. I confess that I rarely return to these notes. But now, hopefully, even if you don't have an idea yet, the above notes will help you choose the suitable "feature" and become a contributor to the open-source community. + +Created [with ❤️](https://syrokomskyi.com) diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..48885ae --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,9 @@ +# Reporting Security Issues + +The [Andrii Syrokomskyi](https://syrokomskyi.com) and community take security bugs seriously. We appreciate your efforts to responsibly disclose your findings, and will make every effort to acknowledge your contributions. + +To report a security issue, please use the **GitHub Security Advisory tab**. + +The our team will send a response indicating the next steps in handling your report. After the initial reply to your report, the security team will keep you informed of the progress towards a fix and full announcement, and may ask for additional information or guidance. + +Report security bugs in third-party modules to the person or team maintaining the module. diff --git a/STYLEGUIDE.md b/STYLEGUIDE.md new file mode 100644 index 0000000..ff4eb02 --- /dev/null +++ b/STYLEGUIDE.md @@ -0,0 +1,129 @@ +# Style Guide + +This is a general style guide that shall govern over all `UniColorPalette` repositories. The aim is +to keep all codebases clean and pristine. This includes high level guidance to help with simple +decisions in the day-to-day development life. + +This extends rules on the +official [Flutter Style Guide](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo) +and [Effective Dart Patterns](https://dart.dev/guides/language/effective-dart). Those rules apply +unless otherwise specified in this document. + +Note that this is not yet an exhaustive guide, and consider it a work in progress. PRs are welcome! + +## Code Formatting + +### Max line length + +For all files, including markdown, keep each line within a 100 or less characters. + +### Trailing Commas and Wrapping + +List of elements must always be all in one line or one element per line. This includes parameters, +arguments, collection literals, etc. Furthermore, if multiline, the last element must have a +trailing comma. + +For the sake of example, let's use a function invocation (the same apply for all cases): + +```dart +// good +foo(p1, p2, p3) + +// good +foo( + p1, + p2, + p3, +) + +// bad: missing trailing comma +foo( + p1, + p2, + p3 +) + +// bad: mixed argument lines +foo( + p1, p2, + p3, +) + +// bad: mixed argument lines +foo(f1, + f2) +``` + +### Imports + +- Never include unused or duplicated imports. +- You must always use relative imports for imports within the `UniColorPalette` library + (internal imports must be relative). +- Omit `./` for relative imports from the same directory. +- Avoid importing groups of APIs internally. +- Order your imports by: + - Three main blocks, each separated by exactly one empty line: + - Dart SDK dependencies, + - External libraries/Flutter imports, + - Internal (same library) imports. + - Then, for each block, order alphabetically. + - For relative imports, that means further away (more `../`) imports will be first. + +## Code Structure + +### Global Variables + +Do not use public global variables or constants; namespace everything inside appropriate scopes. + +### Asserts + +Use asserts to detect contract violation. + +Example: + +```dart +void something(int smaller, int bigger) { + assert(small < bigger, '`smaller` is not smaller than `bigger`'); + // ... +} +``` + +## Comments + +- For any `//` comments, always add a space after the second slash and before the next character. +- Use `//` (or block comments) for comments about the code; use `///` for dartdocs about APIs. + +### TODO + +TODO comments should follow this template: `// TODO(username): Comment` + +I.e., double slash, one space, `TODO` in caps followed by your name in parenthesis, colon, one space +and the comment, capitalized as a sentence. No need to include a period if it's a single sentence. + +```dart +// bad: missing identifier, mixed-case "TODO" and lowercase comment + +// Todo: this thing should be that thing +final thisThing = 13; + +// good: + +// TODO(wolfenrain): This thing should be that thing +const thisThing = 13; +``` + +### Dartdocs + +#### Consider adding examples + +Some elements may benefit from a simple usage example. + +#### Avoid useless code documentation + +Avoid documentation that just repeats the obvious. For example, `void doStuff()` be documented as +"Method that does stuff". + +#### Consider adding linkage between docs + +You should use `[]` (brackets) to link dartdoc elements that can be referenced on the same file. +Also, consider adding a "See also" section to element documentation. diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100644 index 0000000..53eb2a8 --- /dev/null +++ b/analysis_options.yaml @@ -0,0 +1,27 @@ +include: package:lints/recommended.yaml + +analyzer: + language: + strict-casts: true + strict-inference: true + strict-raw-types: true + + exclude: [build/**, lib/**.g.dart, example/all_palettes/**] + +linter: + rules: + - avoid_dynamic_calls + - avoid_final_parameters + - avoid_print + - camel_case_types + - omit_local_variable_types + - prefer_const_constructors + - prefer_const_constructors_in_immutables + - prefer_const_declarations + - prefer_const_literals_to_create_immutables + - prefer_function_declarations_over_variables + - prefer_relative_imports + - sort_constructors_first + - unnecessary_late + - unnecessary_statements + - use_super_parameters diff --git a/example/README.md b/example/README.md new file mode 100644 index 0000000..bc0398f --- /dev/null +++ b/example/README.md @@ -0,0 +1,22 @@ +# Example + +See also `all_palettes` forlder with Flutter example. + +## Getting Started + +This is a starting point for the examples of this package. + +A few resources to get you started if this is your first project. + +### Dart + +- [Get the Dart SDK](https://dart.dev/get-dart) +- [Online documentation](https://dart.dev/guides) +- [Learn Dart in Y minutes](https://learnxinyminutes.com/docs/dart) + +### Flutter + +- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) +- [Online documentation](https://flutter.dev/doc) +- [The ultimate Flutter resources](https://github.com/yassine-bennkhay/Ultimate-Flutter-Resources) diff --git a/example/all_palettes/.gitignore b/example/all_palettes/.gitignore new file mode 100644 index 0000000..29a3a50 --- /dev/null +++ b/example/all_palettes/.gitignore @@ -0,0 +1,43 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ +migrate_working_dir/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins +.flutter-plugins-dependencies +.pub-cache/ +.pub/ +/build/ + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release diff --git a/example/all_palettes/.metadata b/example/all_palettes/.metadata new file mode 100644 index 0000000..94c106f --- /dev/null +++ b/example/all_palettes/.metadata @@ -0,0 +1,45 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: "68bfaea224880b488c617afe30ab12091ea8fa4e" + channel: "stable" + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + base_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + - platform: android + create_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + base_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + - platform: ios + create_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + base_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + - platform: linux + create_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + base_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + - platform: macos + create_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + base_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + - platform: web + create_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + base_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + - platform: windows + create_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + base_revision: 68bfaea224880b488c617afe30ab12091ea8fa4e + + # User provided section + + # List of Local paths (relative to this file) that should be + # ignored by the migrate tool. + # + # Files that are not part of the templates will be ignored by default. + unmanaged_files: + - 'lib/main.dart' + - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/example/all_palettes/README.md b/example/all_palettes/README.md new file mode 100644 index 0000000..9d8eea6 --- /dev/null +++ b/example/all_palettes/README.md @@ -0,0 +1,20 @@ +# Example + +## Getting Started + +This is a starting point for the examples of this package. + +A few resources to get you started if this is your first project. + +### Dart + +- [Get the Dart SDK](https://dart.dev/get-dart) +- [Online documentation](https://dart.dev/guides) +- [Learn Dart in Y minutes](https://learnxinyminutes.com/docs/dart) + +### Flutter + +- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) +- [Online documentation](https://flutter.dev/doc) +- [The ultimate Flutter resources](https://github.com/yassine-bennkhay/Ultimate-Flutter-Resources) diff --git a/example/all_palettes/analysis_options.yaml b/example/all_palettes/analysis_options.yaml new file mode 100644 index 0000000..a7c3bc5 --- /dev/null +++ b/example/all_palettes/analysis_options.yaml @@ -0,0 +1,44 @@ +include: package:flutter_lints/flutter.yaml + +analyzer: + strong-mode: + implicit-casts: false + implicit-dynamic: false + + plugins: + - dart_code_metrics + + exclude: [build/**, lib/**.g.dart, lib/src/generated/**] + +linter: + rules: + - avoid_dynamic_calls + - avoid_final_parameters + - avoid_print + - camel_case_types + - omit_local_variable_types + - prefer_const_constructors + - prefer_const_constructors_in_immutables + - prefer_const_declarations + - prefer_const_literals_to_create_immutables + - prefer_function_declarations_over_variables + - prefer_relative_imports + - sort_constructors_first + - unnecessary_late + - unnecessary_statements + - use_super_parameters + +dart_code_metrics: + rules: + #- prefer-trailing-comma TODO(luan) this is broken on NS + - prefer-trailing-comma-for-collection + - no-equal-then-else + - no-object-declaration + - potential-null-dereference + metrics-exclude: + - test/** + metrics: + number-of-arguments: 8 + number-of-methods: 32 + source-lines-of-code: 200 + cyclomatic-complexity: 36 diff --git a/example/all_palettes/android/.gitignore b/example/all_palettes/android/.gitignore new file mode 100644 index 0000000..6f56801 --- /dev/null +++ b/example/all_palettes/android/.gitignore @@ -0,0 +1,13 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java + +# Remember to never publicly share your keystore. +# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app +key.properties +**/*.keystore +**/*.jks diff --git a/example/all_palettes/android/app/build.gradle b/example/all_palettes/android/app/build.gradle new file mode 100644 index 0000000..f650a61 --- /dev/null +++ b/example/all_palettes/android/app/build.gradle @@ -0,0 +1,67 @@ +plugins { + id "com.android.application" + id "kotlin-android" + id "dev.flutter.flutter-gradle-plugin" +} + +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +android { + namespace "com.example.all_palettes" + compileSdk flutter.compileSdkVersion + ndkVersion flutter.ndkVersion + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = '1.8' + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "com.example.all_palettes" + // You can update the following values to match your application needs. + // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. + minSdkVersion flutter.minSdkVersion + targetSdkVersion flutter.targetSdkVersion + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig signingConfigs.debug + } + } +} + +flutter { + source '../..' +} + +dependencies {} diff --git a/example/all_palettes/android/app/src/debug/AndroidManifest.xml b/example/all_palettes/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/example/all_palettes/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/example/all_palettes/android/app/src/main/AndroidManifest.xml b/example/all_palettes/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..f22906b --- /dev/null +++ b/example/all_palettes/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/example/all_palettes/android/app/src/main/kotlin/com/example/all_palettes/MainActivity.kt b/example/all_palettes/android/app/src/main/kotlin/com/example/all_palettes/MainActivity.kt new file mode 100644 index 0000000..17a140c --- /dev/null +++ b/example/all_palettes/android/app/src/main/kotlin/com/example/all_palettes/MainActivity.kt @@ -0,0 +1,5 @@ +package com.example.all_palettes + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() diff --git a/example/all_palettes/android/app/src/main/res/drawable-v21/launch_background.xml b/example/all_palettes/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/example/all_palettes/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/example/all_palettes/android/app/src/main/res/drawable/launch_background.xml b/example/all_palettes/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/example/all_palettes/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/example/all_palettes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/example/all_palettes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..db77bb4 Binary files /dev/null and b/example/all_palettes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/example/all_palettes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/example/all_palettes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..17987b7 Binary files /dev/null and b/example/all_palettes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/example/all_palettes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/example/all_palettes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..09d4391 Binary files /dev/null and b/example/all_palettes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/example/all_palettes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/example/all_palettes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..d5f1c8d Binary files /dev/null and b/example/all_palettes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/example/all_palettes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/example/all_palettes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..4d6372e Binary files /dev/null and b/example/all_palettes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/example/all_palettes/android/app/src/main/res/values-night/styles.xml b/example/all_palettes/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000..06952be --- /dev/null +++ b/example/all_palettes/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/example/all_palettes/android/app/src/main/res/values/styles.xml b/example/all_palettes/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..cb1ef88 --- /dev/null +++ b/example/all_palettes/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/example/all_palettes/android/app/src/profile/AndroidManifest.xml b/example/all_palettes/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/example/all_palettes/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/example/all_palettes/android/build.gradle b/example/all_palettes/android/build.gradle new file mode 100644 index 0000000..bc157bd --- /dev/null +++ b/example/all_palettes/android/build.gradle @@ -0,0 +1,18 @@ +allprojects { + repositories { + google() + mavenCentral() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" +} +subprojects { + project.evaluationDependsOn(':app') +} + +tasks.register("clean", Delete) { + delete rootProject.buildDir +} diff --git a/example/all_palettes/android/gradle.properties b/example/all_palettes/android/gradle.properties new file mode 100644 index 0000000..598d13f --- /dev/null +++ b/example/all_palettes/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx4G +android.useAndroidX=true +android.enableJetifier=true diff --git a/example/all_palettes/android/gradle/wrapper/gradle-wrapper.properties b/example/all_palettes/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..e1ca574 --- /dev/null +++ b/example/all_palettes/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-all.zip diff --git a/example/all_palettes/android/settings.gradle b/example/all_palettes/android/settings.gradle new file mode 100644 index 0000000..1d6d19b --- /dev/null +++ b/example/all_palettes/android/settings.gradle @@ -0,0 +1,26 @@ +pluginManagement { + def flutterSdkPath = { + def properties = new Properties() + file("local.properties").withInputStream { properties.load(it) } + def flutterSdkPath = properties.getProperty("flutter.sdk") + assert flutterSdkPath != null, "flutter.sdk not set in local.properties" + return flutterSdkPath + } + settings.ext.flutterSdkPath = flutterSdkPath() + + includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle") + + repositories { + google() + mavenCentral() + gradlePluginPortal() + } +} + +plugins { + id "dev.flutter.flutter-plugin-loader" version "1.0.0" + id "com.android.application" version "7.3.0" apply false + id "org.jetbrains.kotlin.android" version "1.7.10" apply false +} + +include ":app" diff --git a/example/all_palettes/ios/.gitignore b/example/all_palettes/ios/.gitignore new file mode 100644 index 0000000..7a7f987 --- /dev/null +++ b/example/all_palettes/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/example/all_palettes/ios/Flutter/AppFrameworkInfo.plist b/example/all_palettes/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..7c56964 --- /dev/null +++ b/example/all_palettes/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 12.0 + + diff --git a/example/all_palettes/ios/Flutter/Debug.xcconfig b/example/all_palettes/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/example/all_palettes/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/example/all_palettes/ios/Flutter/Release.xcconfig b/example/all_palettes/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/example/all_palettes/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/example/all_palettes/ios/Runner.xcodeproj/project.pbxproj b/example/all_palettes/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..ff4ecfa --- /dev/null +++ b/example/all_palettes/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,616 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C146ED1CF9000F007C117D; + remoteInfo = Runner; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C8082294A63A400263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C807B294A618700263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 331C8082294A63A400263BE5 /* RunnerTests */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 331C8081294A63A400263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C8080294A63A400263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C807D294A63A400263BE5 /* Sources */, + 331C807F294A63A400263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C8086294A63A400263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C8080294A63A400263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 97C146ED1CF9000F007C117D; + }; + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + 331C8080294A63A400263BE5 /* RunnerTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C807F294A63A400263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C807D294A63A400263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 97C146ED1CF9000F007C117D /* Runner */; + targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.allPalettes; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 331C8088294A63A400263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.allPalettes.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Debug; + }; + 331C8089294A63A400263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.allPalettes.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Release; + }; + 331C808A294A63A400263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.allPalettes.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.allPalettes; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.allPalettes; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C8088294A63A400263BE5 /* Debug */, + 331C8089294A63A400263BE5 /* Release */, + 331C808A294A63A400263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/example/all_palettes/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/example/all_palettes/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..8e3ca5d --- /dev/null +++ b/example/all_palettes/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/example/all_palettes/ios/Runner.xcworkspace/contents.xcworkspacedata b/example/all_palettes/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/example/all_palettes/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/example/all_palettes/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/example/all_palettes/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/example/all_palettes/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/example/all_palettes/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/example/all_palettes/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/example/all_palettes/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/example/all_palettes/ios/Runner/AppDelegate.swift b/example/all_palettes/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..70693e4 --- /dev/null +++ b/example/all_palettes/ios/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import UIKit +import Flutter + +@UIApplicationMain +@objc class AppDelegate: FlutterAppDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + GeneratedPluginRegistrant.register(with: self) + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } +} diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000..dc9ada4 Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000..7353c41 Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000..6ed2d93 Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000..4cd7b00 Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000..fe73094 Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000..321773c Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000..502f463 Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000..e9f5fea Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000..84ac32a Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000..8953cba Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000..0467bf1 Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/example/all_palettes/ios/Runner/Base.lproj/LaunchScreen.storyboard b/example/all_palettes/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/example/all_palettes/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/example/all_palettes/ios/Runner/Base.lproj/Main.storyboard b/example/all_palettes/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/example/all_palettes/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/example/all_palettes/ios/Runner/Info.plist b/example/all_palettes/ios/Runner/Info.plist new file mode 100644 index 0000000..a8698f1 --- /dev/null +++ b/example/all_palettes/ios/Runner/Info.plist @@ -0,0 +1,49 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + All Palettes + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + all_palettes + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + CADisableMinimumFrameDurationOnPhone + + UIApplicationSupportsIndirectInputEvents + + + diff --git a/example/all_palettes/ios/Runner/Runner-Bridging-Header.h b/example/all_palettes/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/example/all_palettes/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/example/all_palettes/ios/RunnerTests/RunnerTests.swift b/example/all_palettes/ios/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..86a7c3b --- /dev/null +++ b/example/all_palettes/ios/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Flutter +import UIKit +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/example/all_palettes/lib/main.dart b/example/all_palettes/lib/main.dart new file mode 100644 index 0000000..ad6fdd1 --- /dev/null +++ b/example/all_palettes/lib/main.dart @@ -0,0 +1,87 @@ +import 'package:flutter/material.dart'; +import 'package:uni_color_palette/uni_color_palette.dart'; + +/// See also `example/main.dart` file with pure Dart SDK example. +/// You can choose any palette from [PalettesMaps]. +void main() => runApp(App( + palette: UniPalette(zeplinColors), + )); + +class App extends StatelessWidget { + const App({super.key, required this.palette}); + + final UniPalette palette; + + @override + Widget build(BuildContext context) => MaterialApp( + home: Scaffold( + appBar: AppBar( + title: const Center( + child: Text('UniColorPalette Palettes'), + ), + ), + body: SingleChildScrollView( + child: Wrap( + alignment: WrapAlignment.center, + children: [note, ...glasses], + ), + ), + ), + debugShowCheckedModeBanner: false, + ); + + Widget get note => Text( + 'The palette contains ${palette.count} colors', + textScaler: const TextScaler.linear(1.5), + ); + + List get glasses => [ + for (final color in palette.list..sort()) Glass(color.rgbInt8Color), + ]; +} + +class Glass extends StatelessWidget { + const Glass( + this.color, { + super.key, + }); + + final RgbInt8Color color; + + String get code => '#$color'; + + @override + Widget build(BuildContext context) { + final c = Color(color.int24).withOpacity(1.0); + + final size = MediaQuery.of(context).size; + final height = size.height / 12; + + return Padding( + padding: const EdgeInsets.all(6), + child: Container( + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(12), + boxShadow: [ + BoxShadow( + color: c, + offset: const Offset(0, 2), + blurRadius: 1, + ) + ], + gradient: LinearGradient( + begin: Alignment.topLeft, + end: Alignment.bottomRight, + colors: [Colors.white, c], + ), + ), + height: height, + alignment: Alignment.centerLeft, + child: Text( + '$code ${color.name}', + textScaler: const TextScaler.linear(2), + ), + ), + ); + } +} diff --git a/example/all_palettes/linux/.gitignore b/example/all_palettes/linux/.gitignore new file mode 100644 index 0000000..d3896c9 --- /dev/null +++ b/example/all_palettes/linux/.gitignore @@ -0,0 +1 @@ +flutter/ephemeral diff --git a/example/all_palettes/linux/CMakeLists.txt b/example/all_palettes/linux/CMakeLists.txt new file mode 100644 index 0000000..2bb4674 --- /dev/null +++ b/example/all_palettes/linux/CMakeLists.txt @@ -0,0 +1,145 @@ +# Project-level configuration. +cmake_minimum_required(VERSION 3.10) +project(runner LANGUAGES CXX) + +# The name of the executable created for the application. Change this to change +# the on-disk name of your application. +set(BINARY_NAME "all_palettes") +# The unique GTK application identifier for this application. See: +# https://wiki.gnome.org/HowDoI/ChooseApplicationID +set(APPLICATION_ID "com.example.all_palettes") + +# Explicitly opt in to modern CMake behaviors to avoid warnings with recent +# versions of CMake. +cmake_policy(SET CMP0063 NEW) + +# Load bundled libraries from the lib/ directory relative to the binary. +set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") + +# Root filesystem for cross-building. +if(FLUTTER_TARGET_PLATFORM_SYSROOT) + set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) + set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) +endif() + +# Define build configuration options. +if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") +endif() + +# Compilation settings that should be applied to most targets. +# +# Be cautious about adding new options here, as plugins use this function by +# default. In most cases, you should add new options to specific targets instead +# of modifying this function. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_14) + target_compile_options(${TARGET} PRIVATE -Wall -Werror) + target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") + target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") +endfunction() + +# Flutter library and tool build rules. +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) + +add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") + +# Define the application target. To change its name, change BINARY_NAME above, +# not the value here, or `flutter run` will no longer work. +# +# Any new source files that you add to the application should be added here. +add_executable(${BINARY_NAME} + "main.cc" + "my_application.cc" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" +) + +# Apply the standard set of build settings. This can be removed for applications +# that need different build settings. +apply_standard_settings(${BINARY_NAME}) + +# Add dependency libraries. Add any application-specific dependencies here. +target_link_libraries(${BINARY_NAME} PRIVATE flutter) +target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) + +# Run the Flutter tool portions of the build. This must not be removed. +add_dependencies(${BINARY_NAME} flutter_assemble) + +# Only the install-generated bundle's copy of the executable will launch +# correctly, since the resources must in the right relative locations. To avoid +# people trying to run the unbundled copy, put it in a subdirectory instead of +# the default top-level location. +set_target_properties(${BINARY_NAME} + PROPERTIES + RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" +) + + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# By default, "installing" just makes a relocatable bundle in the build +# directory. +set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +# Start with a clean build bundle directory every time. +install(CODE " + file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") + " COMPONENT Runtime) + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES}) + install(FILES "${bundled_library}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endforeach(bundled_library) + +# Copy the native assets provided by the build.dart from all packages. +set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/linux/") +install(DIRECTORY "${NATIVE_ASSETS_DIR}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") + install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() diff --git a/example/all_palettes/linux/flutter/CMakeLists.txt b/example/all_palettes/linux/flutter/CMakeLists.txt new file mode 100644 index 0000000..d5bd016 --- /dev/null +++ b/example/all_palettes/linux/flutter/CMakeLists.txt @@ -0,0 +1,88 @@ +# This file controls Flutter-level build steps. It should not be edited. +cmake_minimum_required(VERSION 3.10) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. + +# Serves the same purpose as list(TRANSFORM ... PREPEND ...), +# which isn't available in 3.10. +function(list_prepend LIST_NAME PREFIX) + set(NEW_LIST "") + foreach(element ${${LIST_NAME}}) + list(APPEND NEW_LIST "${PREFIX}${element}") + endforeach(element) + set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) +endfunction() + +# === Flutter Library === +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) +pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) +pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) + +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "fl_basic_message_channel.h" + "fl_binary_codec.h" + "fl_binary_messenger.h" + "fl_dart_project.h" + "fl_engine.h" + "fl_json_message_codec.h" + "fl_json_method_codec.h" + "fl_message_codec.h" + "fl_method_call.h" + "fl_method_channel.h" + "fl_method_codec.h" + "fl_method_response.h" + "fl_plugin_registrar.h" + "fl_plugin_registry.h" + "fl_standard_message_codec.h" + "fl_standard_method_codec.h" + "fl_string_codec.h" + "fl_value.h" + "fl_view.h" + "flutter_linux.h" +) +list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") +target_link_libraries(flutter INTERFACE + PkgConfig::GTK + PkgConfig::GLIB + PkgConfig::GIO +) +add_dependencies(flutter flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CMAKE_CURRENT_BINARY_DIR}/_phony_ + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" + ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} +) diff --git a/example/all_palettes/linux/flutter/generated_plugin_registrant.cc b/example/all_palettes/linux/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..e71a16d --- /dev/null +++ b/example/all_palettes/linux/flutter/generated_plugin_registrant.cc @@ -0,0 +1,11 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + + +void fl_register_plugins(FlPluginRegistry* registry) { +} diff --git a/example/all_palettes/linux/flutter/generated_plugin_registrant.h b/example/all_palettes/linux/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..e0f0a47 --- /dev/null +++ b/example/all_palettes/linux/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void fl_register_plugins(FlPluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/example/all_palettes/linux/flutter/generated_plugins.cmake b/example/all_palettes/linux/flutter/generated_plugins.cmake new file mode 100644 index 0000000..2e1de87 --- /dev/null +++ b/example/all_palettes/linux/flutter/generated_plugins.cmake @@ -0,0 +1,23 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST +) + +list(APPEND FLUTTER_FFI_PLUGIN_LIST +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) + +foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) +endforeach(ffi_plugin) diff --git a/example/all_palettes/linux/main.cc b/example/all_palettes/linux/main.cc new file mode 100644 index 0000000..e7c5c54 --- /dev/null +++ b/example/all_palettes/linux/main.cc @@ -0,0 +1,6 @@ +#include "my_application.h" + +int main(int argc, char** argv) { + g_autoptr(MyApplication) app = my_application_new(); + return g_application_run(G_APPLICATION(app), argc, argv); +} diff --git a/example/all_palettes/linux/my_application.cc b/example/all_palettes/linux/my_application.cc new file mode 100644 index 0000000..a995e95 --- /dev/null +++ b/example/all_palettes/linux/my_application.cc @@ -0,0 +1,124 @@ +#include "my_application.h" + +#include +#ifdef GDK_WINDOWING_X11 +#include +#endif + +#include "flutter/generated_plugin_registrant.h" + +struct _MyApplication { + GtkApplication parent_instance; + char** dart_entrypoint_arguments; +}; + +G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) + +// Implements GApplication::activate. +static void my_application_activate(GApplication* application) { + MyApplication* self = MY_APPLICATION(application); + GtkWindow* window = + GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); + + // Use a header bar when running in GNOME as this is the common style used + // by applications and is the setup most users will be using (e.g. Ubuntu + // desktop). + // If running on X and not using GNOME then just use a traditional title bar + // in case the window manager does more exotic layout, e.g. tiling. + // If running on Wayland assume the header bar will work (may need changing + // if future cases occur). + gboolean use_header_bar = TRUE; +#ifdef GDK_WINDOWING_X11 + GdkScreen* screen = gtk_window_get_screen(window); + if (GDK_IS_X11_SCREEN(screen)) { + const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); + if (g_strcmp0(wm_name, "GNOME Shell") != 0) { + use_header_bar = FALSE; + } + } +#endif + if (use_header_bar) { + GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); + gtk_widget_show(GTK_WIDGET(header_bar)); + gtk_header_bar_set_title(header_bar, "all_palettes"); + gtk_header_bar_set_show_close_button(header_bar, TRUE); + gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); + } else { + gtk_window_set_title(window, "all_palettes"); + } + + gtk_window_set_default_size(window, 1280, 720); + gtk_widget_show(GTK_WIDGET(window)); + + g_autoptr(FlDartProject) project = fl_dart_project_new(); + fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments); + + FlView* view = fl_view_new(project); + gtk_widget_show(GTK_WIDGET(view)); + gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); + + fl_register_plugins(FL_PLUGIN_REGISTRY(view)); + + gtk_widget_grab_focus(GTK_WIDGET(view)); +} + +// Implements GApplication::local_command_line. +static gboolean my_application_local_command_line(GApplication* application, gchar*** arguments, int* exit_status) { + MyApplication* self = MY_APPLICATION(application); + // Strip out the first argument as it is the binary name. + self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); + + g_autoptr(GError) error = nullptr; + if (!g_application_register(application, nullptr, &error)) { + g_warning("Failed to register: %s", error->message); + *exit_status = 1; + return TRUE; + } + + g_application_activate(application); + *exit_status = 0; + + return TRUE; +} + +// Implements GApplication::startup. +static void my_application_startup(GApplication* application) { + //MyApplication* self = MY_APPLICATION(object); + + // Perform any actions required at application startup. + + G_APPLICATION_CLASS(my_application_parent_class)->startup(application); +} + +// Implements GApplication::shutdown. +static void my_application_shutdown(GApplication* application) { + //MyApplication* self = MY_APPLICATION(object); + + // Perform any actions required at application shutdown. + + G_APPLICATION_CLASS(my_application_parent_class)->shutdown(application); +} + +// Implements GObject::dispose. +static void my_application_dispose(GObject* object) { + MyApplication* self = MY_APPLICATION(object); + g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); + G_OBJECT_CLASS(my_application_parent_class)->dispose(object); +} + +static void my_application_class_init(MyApplicationClass* klass) { + G_APPLICATION_CLASS(klass)->activate = my_application_activate; + G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line; + G_APPLICATION_CLASS(klass)->startup = my_application_startup; + G_APPLICATION_CLASS(klass)->shutdown = my_application_shutdown; + G_OBJECT_CLASS(klass)->dispose = my_application_dispose; +} + +static void my_application_init(MyApplication* self) {} + +MyApplication* my_application_new() { + return MY_APPLICATION(g_object_new(my_application_get_type(), + "application-id", APPLICATION_ID, + "flags", G_APPLICATION_NON_UNIQUE, + nullptr)); +} diff --git a/example/all_palettes/linux/my_application.h b/example/all_palettes/linux/my_application.h new file mode 100644 index 0000000..72271d5 --- /dev/null +++ b/example/all_palettes/linux/my_application.h @@ -0,0 +1,18 @@ +#ifndef FLUTTER_MY_APPLICATION_H_ +#define FLUTTER_MY_APPLICATION_H_ + +#include + +G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION, + GtkApplication) + +/** + * my_application_new: + * + * Creates a new Flutter-based application. + * + * Returns: a new #MyApplication. + */ +MyApplication* my_application_new(); + +#endif // FLUTTER_MY_APPLICATION_H_ diff --git a/example/all_palettes/macos/.gitignore b/example/all_palettes/macos/.gitignore new file mode 100644 index 0000000..746adbb --- /dev/null +++ b/example/all_palettes/macos/.gitignore @@ -0,0 +1,7 @@ +# Flutter-related +**/Flutter/ephemeral/ +**/Pods/ + +# Xcode-related +**/dgph +**/xcuserdata/ diff --git a/example/all_palettes/macos/Flutter/Flutter-Debug.xcconfig b/example/all_palettes/macos/Flutter/Flutter-Debug.xcconfig new file mode 100644 index 0000000..c2efd0b --- /dev/null +++ b/example/all_palettes/macos/Flutter/Flutter-Debug.xcconfig @@ -0,0 +1 @@ +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/example/all_palettes/macos/Flutter/Flutter-Release.xcconfig b/example/all_palettes/macos/Flutter/Flutter-Release.xcconfig new file mode 100644 index 0000000..c2efd0b --- /dev/null +++ b/example/all_palettes/macos/Flutter/Flutter-Release.xcconfig @@ -0,0 +1 @@ +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/example/all_palettes/macos/Flutter/GeneratedPluginRegistrant.swift b/example/all_palettes/macos/Flutter/GeneratedPluginRegistrant.swift new file mode 100644 index 0000000..cccf817 --- /dev/null +++ b/example/all_palettes/macos/Flutter/GeneratedPluginRegistrant.swift @@ -0,0 +1,10 @@ +// +// Generated file. Do not edit. +// + +import FlutterMacOS +import Foundation + + +func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { +} diff --git a/example/all_palettes/macos/Runner.xcodeproj/project.pbxproj b/example/all_palettes/macos/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..89b7d09 --- /dev/null +++ b/example/all_palettes/macos/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,705 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXAggregateTarget section */ + 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; + buildPhases = ( + 33CC111E2044C6BF0003C045 /* ShellScript */, + ); + dependencies = ( + ); + name = "Flutter Assemble"; + productName = FLX; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC10EC2044A3C60003C045; + remoteInfo = Runner; + }; + 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC111A2044C6BA0003C045; + remoteInfo = FLX; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 33CC110E2044A8840003C045 /* Bundle Framework */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Bundle Framework"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; + 33CC10ED2044A3C60003C045 /* all_palettes.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "all_palettes.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; + 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; + 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; + 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; + 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; + 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 331C80D2294CF70F00263BE5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EA2044A3C60003C045 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C80D6294CF71000263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C80D7294CF71000263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 33BA886A226E78AF003329D5 /* Configs */ = { + isa = PBXGroup; + children = ( + 33E5194F232828860026EE4D /* AppInfo.xcconfig */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, + ); + path = Configs; + sourceTree = ""; + }; + 33CC10E42044A3C60003C045 = { + isa = PBXGroup; + children = ( + 33FAB671232836740065AC1E /* Runner */, + 33CEB47122A05771004F2AC0 /* Flutter */, + 331C80D6294CF71000263BE5 /* RunnerTests */, + 33CC10EE2044A3C60003C045 /* Products */, + D73912EC22F37F3D000D13A0 /* Frameworks */, + ); + sourceTree = ""; + }; + 33CC10EE2044A3C60003C045 /* Products */ = { + isa = PBXGroup; + children = ( + 33CC10ED2044A3C60003C045 /* all_palettes.app */, + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 33CC11242044D66E0003C045 /* Resources */ = { + isa = PBXGroup; + children = ( + 33CC10F22044A3C60003C045 /* Assets.xcassets */, + 33CC10F42044A3C60003C045 /* MainMenu.xib */, + 33CC10F72044A3C60003C045 /* Info.plist */, + ); + name = Resources; + path = ..; + sourceTree = ""; + }; + 33CEB47122A05771004F2AC0 /* Flutter */ = { + isa = PBXGroup; + children = ( + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, + ); + path = Flutter; + sourceTree = ""; + }; + 33FAB671232836740065AC1E /* Runner */ = { + isa = PBXGroup; + children = ( + 33CC10F02044A3C60003C045 /* AppDelegate.swift */, + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, + 33E51913231747F40026EE4D /* DebugProfile.entitlements */, + 33E51914231749380026EE4D /* Release.entitlements */, + 33CC11242044D66E0003C045 /* Resources */, + 33BA886A226E78AF003329D5 /* Configs */, + ); + path = Runner; + sourceTree = ""; + }; + D73912EC22F37F3D000D13A0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C80D4294CF70F00263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C80D1294CF70F00263BE5 /* Sources */, + 331C80D2294CF70F00263BE5 /* Frameworks */, + 331C80D3294CF70F00263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C80DA294CF71000263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 33CC10EC2044A3C60003C045 /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 33CC10E92044A3C60003C045 /* Sources */, + 33CC10EA2044A3C60003C045 /* Frameworks */, + 33CC10EB2044A3C60003C045 /* Resources */, + 33CC110E2044A8840003C045 /* Bundle Framework */, + 3399D490228B24CF009A79C7 /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + 33CC11202044C79F0003C045 /* PBXTargetDependency */, + ); + name = Runner; + productName = Runner; + productReference = 33CC10ED2044A3C60003C045 /* all_palettes.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 33CC10E52044A3C60003C045 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastSwiftUpdateCheck = 0920; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C80D4294CF70F00263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 33CC10EC2044A3C60003C045; + }; + 33CC10EC2044A3C60003C045 = { + CreatedOnToolsVersion = 9.2; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + SystemCapabilities = { + com.apple.Sandbox = { + enabled = 1; + }; + }; + }; + 33CC111A2044C6BA0003C045 = { + CreatedOnToolsVersion = 9.2; + ProvisioningStyle = Manual; + }; + }; + }; + buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 33CC10E42044A3C60003C045; + productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 33CC10EC2044A3C60003C045 /* Runner */, + 331C80D4294CF70F00263BE5 /* RunnerTests */, + 33CC111A2044C6BA0003C045 /* Flutter Assemble */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C80D3294CF70F00263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EB2044A3C60003C045 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3399D490228B24CF009A79C7 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; + }; + 33CC111E2044C6BF0003C045 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + Flutter/ephemeral/FlutterInputs.xcfilelist, + ); + inputPaths = ( + Flutter/ephemeral/tripwire, + ); + outputFileListPaths = ( + Flutter/ephemeral/FlutterOutputs.xcfilelist, + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C80D1294CF70F00263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10E92044A3C60003C045 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC10EC2044A3C60003C045 /* Runner */; + targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; + }; + 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; + targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { + isa = PBXVariantGroup; + children = ( + 33CC10F52044A3C60003C045 /* Base */, + ); + name = MainMenu.xib; + path = Runner; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 331C80DB294CF71000263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.allPalettes.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/all_palettes.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/all_palettes"; + }; + name = Debug; + }; + 331C80DC294CF71000263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.allPalettes.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/all_palettes.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/all_palettes"; + }; + name = Release; + }; + 331C80DD294CF71000263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.allPalettes.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/all_palettes.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/all_palettes"; + }; + name = Profile; + }; + 338D0CE9231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Profile; + }; + 338D0CEA231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Profile; + }; + 338D0CEB231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Profile; + }; + 33CC10F92044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 33CC10FA2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + 33CC10FC2044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + 33CC10FD2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + 33CC111C2044C6BA0003C045 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 33CC111D2044C6BA0003C045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C80DB294CF71000263BE5 /* Debug */, + 331C80DC294CF71000263BE5 /* Release */, + 331C80DD294CF71000263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10F92044A3C60003C045 /* Debug */, + 33CC10FA2044A3C60003C045 /* Release */, + 338D0CE9231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10FC2044A3C60003C045 /* Debug */, + 33CC10FD2044A3C60003C045 /* Release */, + 338D0CEA231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC111C2044C6BA0003C045 /* Debug */, + 33CC111D2044C6BA0003C045 /* Release */, + 338D0CEB231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 33CC10E52044A3C60003C045 /* Project object */; +} diff --git a/example/all_palettes/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/example/all_palettes/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/example/all_palettes/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/example/all_palettes/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/example/all_palettes/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..71b8ace --- /dev/null +++ b/example/all_palettes/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/example/all_palettes/macos/Runner.xcworkspace/contents.xcworkspacedata b/example/all_palettes/macos/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/example/all_palettes/macos/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/example/all_palettes/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/example/all_palettes/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/example/all_palettes/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/example/all_palettes/macos/Runner/AppDelegate.swift b/example/all_palettes/macos/Runner/AppDelegate.swift new file mode 100644 index 0000000..d53ef64 --- /dev/null +++ b/example/all_palettes/macos/Runner/AppDelegate.swift @@ -0,0 +1,9 @@ +import Cocoa +import FlutterMacOS + +@NSApplicationMain +class AppDelegate: FlutterAppDelegate { + override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { + return true + } +} diff --git a/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..a2ec33f --- /dev/null +++ b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,68 @@ +{ + "images" : [ + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_16.png", + "scale" : "1x" + }, + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "2x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "1x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_64.png", + "scale" : "2x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_128.png", + "scale" : "1x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "2x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "1x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "2x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "1x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_1024.png", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png new file mode 100644 index 0000000..82b6f9d Binary files /dev/null and b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png differ diff --git a/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png new file mode 100644 index 0000000..13b35eb Binary files /dev/null and b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png differ diff --git a/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png new file mode 100644 index 0000000..0a3f5fa Binary files /dev/null and b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png differ diff --git a/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png new file mode 100644 index 0000000..bdb5722 Binary files /dev/null and b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png differ diff --git a/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png new file mode 100644 index 0000000..f083318 Binary files /dev/null and b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png differ diff --git a/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png new file mode 100644 index 0000000..326c0e7 Binary files /dev/null and b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png differ diff --git a/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png new file mode 100644 index 0000000..2f1632c Binary files /dev/null and b/example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png differ diff --git a/example/all_palettes/macos/Runner/Base.lproj/MainMenu.xib b/example/all_palettes/macos/Runner/Base.lproj/MainMenu.xib new file mode 100644 index 0000000..80e867a --- /dev/null +++ b/example/all_palettes/macos/Runner/Base.lproj/MainMenu.xib @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/example/all_palettes/macos/Runner/Configs/AppInfo.xcconfig b/example/all_palettes/macos/Runner/Configs/AppInfo.xcconfig new file mode 100644 index 0000000..2b88296 --- /dev/null +++ b/example/all_palettes/macos/Runner/Configs/AppInfo.xcconfig @@ -0,0 +1,14 @@ +// Application-level settings for the Runner target. +// +// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the +// future. If not, the values below would default to using the project name when this becomes a +// 'flutter create' template. + +// The application's name. By default this is also the title of the Flutter window. +PRODUCT_NAME = all_palettes + +// The application's bundle identifier +PRODUCT_BUNDLE_IDENTIFIER = com.example.allPalettes + +// The copyright displayed in application information +PRODUCT_COPYRIGHT = Copyright © 2024 com.example. All rights reserved. diff --git a/example/all_palettes/macos/Runner/Configs/Debug.xcconfig b/example/all_palettes/macos/Runner/Configs/Debug.xcconfig new file mode 100644 index 0000000..36b0fd9 --- /dev/null +++ b/example/all_palettes/macos/Runner/Configs/Debug.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Debug.xcconfig" +#include "Warnings.xcconfig" diff --git a/example/all_palettes/macos/Runner/Configs/Release.xcconfig b/example/all_palettes/macos/Runner/Configs/Release.xcconfig new file mode 100644 index 0000000..dff4f49 --- /dev/null +++ b/example/all_palettes/macos/Runner/Configs/Release.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Release.xcconfig" +#include "Warnings.xcconfig" diff --git a/example/all_palettes/macos/Runner/Configs/Warnings.xcconfig b/example/all_palettes/macos/Runner/Configs/Warnings.xcconfig new file mode 100644 index 0000000..42bcbf4 --- /dev/null +++ b/example/all_palettes/macos/Runner/Configs/Warnings.xcconfig @@ -0,0 +1,13 @@ +WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings +GCC_WARN_UNDECLARED_SELECTOR = YES +CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES +CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE +CLANG_WARN__DUPLICATE_METHOD_MATCH = YES +CLANG_WARN_PRAGMA_PACK = YES +CLANG_WARN_STRICT_PROTOTYPES = YES +CLANG_WARN_COMMA = YES +GCC_WARN_STRICT_SELECTOR_MATCH = YES +CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES +CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES +GCC_WARN_SHADOW = YES +CLANG_WARN_UNREACHABLE_CODE = YES diff --git a/example/all_palettes/macos/Runner/DebugProfile.entitlements b/example/all_palettes/macos/Runner/DebugProfile.entitlements new file mode 100644 index 0000000..dddb8a3 --- /dev/null +++ b/example/all_palettes/macos/Runner/DebugProfile.entitlements @@ -0,0 +1,12 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.cs.allow-jit + + com.apple.security.network.server + + + diff --git a/example/all_palettes/macos/Runner/Info.plist b/example/all_palettes/macos/Runner/Info.plist new file mode 100644 index 0000000..4789daa --- /dev/null +++ b/example/all_palettes/macos/Runner/Info.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + $(PRODUCT_COPYRIGHT) + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/example/all_palettes/macos/Runner/MainFlutterWindow.swift b/example/all_palettes/macos/Runner/MainFlutterWindow.swift new file mode 100644 index 0000000..3cc05eb --- /dev/null +++ b/example/all_palettes/macos/Runner/MainFlutterWindow.swift @@ -0,0 +1,15 @@ +import Cocoa +import FlutterMacOS + +class MainFlutterWindow: NSWindow { + override func awakeFromNib() { + let flutterViewController = FlutterViewController() + let windowFrame = self.frame + self.contentViewController = flutterViewController + self.setFrame(windowFrame, display: true) + + RegisterGeneratedPlugins(registry: flutterViewController) + + super.awakeFromNib() + } +} diff --git a/example/all_palettes/macos/Runner/Release.entitlements b/example/all_palettes/macos/Runner/Release.entitlements new file mode 100644 index 0000000..852fa1a --- /dev/null +++ b/example/all_palettes/macos/Runner/Release.entitlements @@ -0,0 +1,8 @@ + + + + + com.apple.security.app-sandbox + + + diff --git a/example/all_palettes/macos/RunnerTests/RunnerTests.swift b/example/all_palettes/macos/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..5418c9f --- /dev/null +++ b/example/all_palettes/macos/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import FlutterMacOS +import Cocoa +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/example/all_palettes/pubspec.lock b/example/all_palettes/pubspec.lock new file mode 100644 index 0000000..a77831c --- /dev/null +++ b/example/all_palettes/pubspec.lock @@ -0,0 +1,493 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + sha256: "0b2f2bd91ba804e53a61d757b986f89f1f9eaed5b11e4b2f5a2468d86d6c9fc7" + url: "https://pub.dev" + source: hosted + version: "67.0.0" + analyzer: + dependency: transitive + description: + name: analyzer + sha256: "37577842a27e4338429a1cbc32679d508836510b056f1eedf0c8d20e39c1383d" + url: "https://pub.dev" + source: hosted + version: "6.4.1" + archive: + dependency: transitive + description: + name: archive + sha256: "22600aa1e926be775fa5fe7e6894e7fb3df9efda8891c73f70fb3262399a432d" + url: "https://pub.dev" + source: hosted + version: "3.4.10" + args: + dependency: transitive + description: + name: args + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + collection: + dependency: transitive + description: + name: collection + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" + source: hosted + version: "1.18.0" + convert: + dependency: transitive + description: + name: convert + sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + url: "https://pub.dev" + source: hosted + version: "3.1.1" + coverage: + dependency: transitive + description: + name: coverage + sha256: "8acabb8306b57a409bf4c83522065672ee13179297a6bb0cb9ead73948df7c76" + url: "https://pub.dev" + source: hosted + version: "1.7.2" + crypto: + dependency: transitive + description: + name: crypto + sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + url: "https://pub.dev" + source: hosted + version: "3.0.3" + file: + dependency: transitive + description: + name: file + sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: e2a421b7e59244faef694ba7b30562e489c2b489866e505074eb005cd7060db7 + url: "https://pub.dev" + source: hosted + version: "3.0.1" + frontend_server_client: + dependency: transitive + description: + name: frontend_server_client + sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" + url: "https://pub.dev" + source: hosted + version: "3.2.0" + glob: + dependency: transitive + description: + name: glob + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + http_multi_server: + dependency: transitive + description: + name: http_multi_server + sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" + url: "https://pub.dev" + source: hosted + version: "3.2.1" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + image: + dependency: transitive + description: + name: image + sha256: "4c68bfd5ae83e700b5204c1e74451e7bf3cf750e6843c6e158289cf56bda018e" + url: "https://pub.dev" + source: hosted + version: "4.1.7" + io: + dependency: transitive + description: + name: io + sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + js: + dependency: transitive + description: + name: js + sha256: c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf + url: "https://pub.dev" + source: hosted + version: "0.7.1" + json_dart: + dependency: transitive + description: + name: json_dart + sha256: "9ab4066092d5be0031dbc610f7b9237afd919eca4f1241c18e2dfbc0d4f47c84" + url: "https://pub.dev" + source: hosted + version: "0.1.1" + lints: + dependency: transitive + description: + name: lints + sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290 + url: "https://pub.dev" + source: hosted + version: "3.0.0" + logging: + dependency: transitive + description: + name: logging + sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + matcher: + dependency: transitive + description: + name: matcher + sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb + url: "https://pub.dev" + source: hosted + version: "0.12.16+1" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + url: "https://pub.dev" + source: hosted + version: "0.8.0" + meta: + dependency: transitive + description: + name: meta + sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 + url: "https://pub.dev" + source: hosted + version: "1.11.0" + mime: + dependency: transitive + description: + name: mime + sha256: "2e123074287cc9fd6c09de8336dae606d1ddb88d9ac47358826db698c176a1f2" + url: "https://pub.dev" + source: hosted + version: "1.0.5" + node_preamble: + dependency: transitive + description: + name: node_preamble + sha256: "6e7eac89047ab8a8d26cf16127b5ed26de65209847630400f9aefd7cd5c730db" + url: "https://pub.dev" + source: hosted + version: "2.0.2" + package_config: + dependency: transitive + description: + name: package_config + sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + path: + dependency: transitive + description: + name: path + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + url: "https://pub.dev" + source: hosted + version: "1.9.0" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + url: "https://pub.dev" + source: hosted + version: "6.0.2" + pointycastle: + dependency: transitive + description: + name: pointycastle + sha256: "43ac87de6e10afabc85c445745a7b799e04de84cebaa4fd7bf55a5e1e9604d29" + url: "https://pub.dev" + source: hosted + version: "3.7.4" + pool: + dependency: transitive + description: + name: pool + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" + url: "https://pub.dev" + source: hosted + version: "1.5.1" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + shelf: + dependency: transitive + description: + name: shelf + sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 + url: "https://pub.dev" + source: hosted + version: "1.4.1" + shelf_packages_handler: + dependency: transitive + description: + name: shelf_packages_handler + sha256: "89f967eca29607c933ba9571d838be31d67f53f6e4ee15147d5dc2934fee1b1e" + url: "https://pub.dev" + source: hosted + version: "3.0.2" + shelf_static: + dependency: transitive + description: + name: shelf_static + sha256: a41d3f53c4adf0f57480578c1d61d90342cd617de7fc8077b1304643c2d85c1e + url: "https://pub.dev" + source: hosted + version: "1.1.2" + shelf_web_socket: + dependency: transitive + description: + name: shelf_web_socket + sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_map_stack_trace: + dependency: transitive + description: + name: source_map_stack_trace + sha256: "84cf769ad83aa6bb61e0aa5a18e53aea683395f196a6f39c4c881fb90ed4f7ae" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + source_maps: + dependency: transitive + description: + name: source_maps + sha256: "708b3f6b97248e5781f493b765c3337db11c5d2c81c3094f10904bfa8004c703" + url: "https://pub.dev" + source: hosted + version: "0.10.12" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" + source: hosted + version: "1.11.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" + source: hosted + version: "2.1.2" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test: + dependency: transitive + description: + name: test + sha256: "7ee446762c2c50b3bd4ea96fe13ffac69919352bd3b4b17bac3f3465edc58073" + url: "https://pub.dev" + source: hosted + version: "1.25.2" + test_api: + dependency: transitive + description: + name: test_api + sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f" + url: "https://pub.dev" + source: hosted + version: "0.7.0" + test_core: + dependency: transitive + description: + name: test_core + sha256: "2bc4b4ecddd75309300d8096f781c0e3280ca1ef85beda558d33fcbedc2eead4" + url: "https://pub.dev" + source: hosted + version: "0.6.0" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + uni_color_model: + dependency: transitive + description: + path: "../../../uni_color_model" + relative: true + source: path + version: "0.1.0" + uni_color_palette: + dependency: "direct main" + description: + path: "../.." + relative: true + source: path + version: "0.1.0" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: a75f83f14ad81d5fe4b3319710b90dec37da0e22612326b696c9e1b8f34bbf48 + url: "https://pub.dev" + source: hosted + version: "14.2.0" + watcher: + dependency: transitive + description: + name: watcher + sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + web: + dependency: transitive + description: + name: web + sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" + url: "https://pub.dev" + source: hosted + version: "0.5.1" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + sha256: "1d8e795e2a8b3730c41b8a98a2dff2e0fb57ae6f0764a1c46ec5915387d257b2" + url: "https://pub.dev" + source: hosted + version: "2.4.4" + webkit_inspection_protocol: + dependency: transitive + description: + name: webkit_inspection_protocol + sha256: "87d3f2333bb240704cd3f1c6b5b7acd8a10e7f0bc28c28dcf14e782014f4a572" + url: "https://pub.dev" + source: hosted + version: "1.2.1" + wfile: + dependency: transitive + description: + name: wfile + sha256: "2be73888b0c625426947c90fa8b54f7dc7e6e031673c6baea1de8a17b890e93f" + url: "https://pub.dev" + source: hosted + version: "0.4.1" + xml: + dependency: transitive + description: + name: xml + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + url: "https://pub.dev" + source: hosted + version: "6.5.0" + yaml: + dependency: transitive + description: + name: yaml + sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" + url: "https://pub.dev" + source: hosted + version: "3.1.2" +sdks: + dart: ">=3.3.0 <4.0.0" diff --git a/example/all_palettes/pubspec.yaml b/example/all_palettes/pubspec.yaml new file mode 100644 index 0000000..2b6b7d9 --- /dev/null +++ b/example/all_palettes/pubspec.yaml @@ -0,0 +1,26 @@ +name: all_palettes +description: Example for package TitleWidget. +homepage: https://github.com/signmotion/uni_color_palette +publish_to: none + +# Format: +# version: major.minor.patch +# You can calculate the number version code by this formula: +# code = m[A]jor * 100 * 100 + m[I]nor * 100 + [P]atch +# Otherwise: +AAIIPP +version: 0.1.0 + +environment: + sdk: ">=3.0.0 <4.0.0" + +dependencies: + flutter: + sdk: flutter + uni_color_palette: + path: ../../../uni_color_palette + +dev_dependencies: + flutter_lints: ^3.0.1 + +flutter: + uses-material-design: true diff --git a/example/all_palettes/web/favicon.png b/example/all_palettes/web/favicon.png new file mode 100644 index 0000000..8aaa46a Binary files /dev/null and b/example/all_palettes/web/favicon.png differ diff --git a/example/all_palettes/web/icons/Icon-192.png b/example/all_palettes/web/icons/Icon-192.png new file mode 100644 index 0000000..b749bfe Binary files /dev/null and b/example/all_palettes/web/icons/Icon-192.png differ diff --git a/example/all_palettes/web/icons/Icon-512.png b/example/all_palettes/web/icons/Icon-512.png new file mode 100644 index 0000000..88cfd48 Binary files /dev/null and b/example/all_palettes/web/icons/Icon-512.png differ diff --git a/example/all_palettes/web/icons/Icon-maskable-192.png b/example/all_palettes/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000..eb9b4d7 Binary files /dev/null and b/example/all_palettes/web/icons/Icon-maskable-192.png differ diff --git a/example/all_palettes/web/icons/Icon-maskable-512.png b/example/all_palettes/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000..d69c566 Binary files /dev/null and b/example/all_palettes/web/icons/Icon-maskable-512.png differ diff --git a/example/all_palettes/web/index.html b/example/all_palettes/web/index.html new file mode 100644 index 0000000..2e89196 --- /dev/null +++ b/example/all_palettes/web/index.html @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + all_palettes + + + + + + + + + + diff --git a/example/all_palettes/web/manifest.json b/example/all_palettes/web/manifest.json new file mode 100644 index 0000000..ca1484b --- /dev/null +++ b/example/all_palettes/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "all_palettes", + "short_name": "all_palettes", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} diff --git a/example/all_palettes/windows/.gitignore b/example/all_palettes/windows/.gitignore new file mode 100644 index 0000000..d492d0d --- /dev/null +++ b/example/all_palettes/windows/.gitignore @@ -0,0 +1,17 @@ +flutter/ephemeral/ + +# Visual Studio user-specific files. +*.suo +*.user +*.userosscache +*.sln.docstates + +# Visual Studio build-related files. +x64/ +x86/ + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ diff --git a/example/all_palettes/windows/CMakeLists.txt b/example/all_palettes/windows/CMakeLists.txt new file mode 100644 index 0000000..0e94ebc --- /dev/null +++ b/example/all_palettes/windows/CMakeLists.txt @@ -0,0 +1,108 @@ +# Project-level configuration. +cmake_minimum_required(VERSION 3.14) +project(all_palettes LANGUAGES CXX) + +# The name of the executable created for the application. Change this to change +# the on-disk name of your application. +set(BINARY_NAME "all_palettes") + +# Explicitly opt in to modern CMake behaviors to avoid warnings with recent +# versions of CMake. +cmake_policy(VERSION 3.14...3.25) + +# Define build configuration option. +get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) +if(IS_MULTICONFIG) + set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" + CACHE STRING "" FORCE) +else() + if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") + endif() +endif() +# Define settings for the Profile build mode. +set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") +set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") +set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") +set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") + +# Use Unicode for all projects. +add_definitions(-DUNICODE -D_UNICODE) + +# Compilation settings that should be applied to most targets. +# +# Be cautious about adding new options here, as plugins use this function by +# default. In most cases, you should add new options to specific targets instead +# of modifying this function. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_17) + target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") + target_compile_options(${TARGET} PRIVATE /EHsc) + target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") + target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") +endfunction() + +# Flutter library and tool build rules. +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# Application build; see runner/CMakeLists.txt. +add_subdirectory("runner") + + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# Support files are copied into place next to the executable, so that it can +# run in place. This is done instead of making a separate bundle (as on Linux) +# so that building and running from within Visual Studio will work. +set(BUILD_BUNDLE_DIR "$") +# Make the "install" step default, as it's required to run. +set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +if(PLUGIN_BUNDLED_LIBRARIES) + install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() + +# Copy the native assets provided by the build.dart from all packages. +set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/windows/") +install(DIRECTORY "${NATIVE_ASSETS_DIR}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + CONFIGURATIONS Profile;Release + COMPONENT Runtime) diff --git a/example/all_palettes/windows/flutter/CMakeLists.txt b/example/all_palettes/windows/flutter/CMakeLists.txt new file mode 100644 index 0000000..903f489 --- /dev/null +++ b/example/all_palettes/windows/flutter/CMakeLists.txt @@ -0,0 +1,109 @@ +# This file controls Flutter-level build steps. It should not be edited. +cmake_minimum_required(VERSION 3.14) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. +set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") + +# Set fallback configurations for older versions of the flutter tool. +if (NOT DEFINED FLUTTER_TARGET_PLATFORM) + set(FLUTTER_TARGET_PLATFORM "windows-x64") +endif() + +# === Flutter Library === +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "flutter_export.h" + "flutter_windows.h" + "flutter_messenger.h" + "flutter_plugin_registrar.h" + "flutter_texture_registrar.h" +) +list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") +add_dependencies(flutter flutter_assemble) + +# === Wrapper === +list(APPEND CPP_WRAPPER_SOURCES_CORE + "core_implementations.cc" + "standard_codec.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_PLUGIN + "plugin_registrar.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_APP + "flutter_engine.cc" + "flutter_view_controller.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") + +# Wrapper sources needed for a plugin. +add_library(flutter_wrapper_plugin STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} +) +apply_standard_settings(flutter_wrapper_plugin) +set_target_properties(flutter_wrapper_plugin PROPERTIES + POSITION_INDEPENDENT_CODE ON) +set_target_properties(flutter_wrapper_plugin PROPERTIES + CXX_VISIBILITY_PRESET hidden) +target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) +target_include_directories(flutter_wrapper_plugin PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_plugin flutter_assemble) + +# Wrapper sources needed for the runner. +add_library(flutter_wrapper_app STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_APP} +) +apply_standard_settings(flutter_wrapper_app) +target_link_libraries(flutter_wrapper_app PUBLIC flutter) +target_include_directories(flutter_wrapper_app PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_app flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") +set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} + ${PHONY_OUTPUT} + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" + ${FLUTTER_TARGET_PLATFORM} $ + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} +) diff --git a/example/all_palettes/windows/flutter/generated_plugin_registrant.cc b/example/all_palettes/windows/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..8b6d468 --- /dev/null +++ b/example/all_palettes/windows/flutter/generated_plugin_registrant.cc @@ -0,0 +1,11 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + + +void RegisterPlugins(flutter::PluginRegistry* registry) { +} diff --git a/example/all_palettes/windows/flutter/generated_plugin_registrant.h b/example/all_palettes/windows/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..dc139d8 --- /dev/null +++ b/example/all_palettes/windows/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void RegisterPlugins(flutter::PluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/example/all_palettes/windows/flutter/generated_plugins.cmake b/example/all_palettes/windows/flutter/generated_plugins.cmake new file mode 100644 index 0000000..b93c4c3 --- /dev/null +++ b/example/all_palettes/windows/flutter/generated_plugins.cmake @@ -0,0 +1,23 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST +) + +list(APPEND FLUTTER_FFI_PLUGIN_LIST +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) + +foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) +endforeach(ffi_plugin) diff --git a/example/all_palettes/windows/runner/CMakeLists.txt b/example/all_palettes/windows/runner/CMakeLists.txt new file mode 100644 index 0000000..394917c --- /dev/null +++ b/example/all_palettes/windows/runner/CMakeLists.txt @@ -0,0 +1,40 @@ +cmake_minimum_required(VERSION 3.14) +project(runner LANGUAGES CXX) + +# Define the application target. To change its name, change BINARY_NAME in the +# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer +# work. +# +# Any new source files that you add to the application should be added here. +add_executable(${BINARY_NAME} WIN32 + "flutter_window.cpp" + "main.cpp" + "utils.cpp" + "win32_window.cpp" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" + "Runner.rc" + "runner.exe.manifest" +) + +# Apply the standard set of build settings. This can be removed for applications +# that need different build settings. +apply_standard_settings(${BINARY_NAME}) + +# Add preprocessor definitions for the build version. +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}") + +# Disable Windows macros that collide with C++ standard library functions. +target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") + +# Add dependency libraries and include directories. Add any application-specific +# dependencies here. +target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) +target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib") +target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") + +# Run the Flutter tool portions of the build. This must not be removed. +add_dependencies(${BINARY_NAME} flutter_assemble) diff --git a/example/all_palettes/windows/runner/Runner.rc b/example/all_palettes/windows/runner/Runner.rc new file mode 100644 index 0000000..61cb56c --- /dev/null +++ b/example/all_palettes/windows/runner/Runner.rc @@ -0,0 +1,121 @@ +// Microsoft Visual C++ generated resource script. +// +#pragma code_page(65001) +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "winres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (United States) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""winres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Icon +// + +// Icon with lowest ID value placed first to ensure application icon +// remains consistent on all systems. +IDI_APP_ICON ICON "resources\\app_icon.ico" + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +#if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD) +#define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD +#else +#define VERSION_AS_NUMBER 1,0,0,0 +#endif + +#if defined(FLUTTER_VERSION) +#define VERSION_AS_STRING FLUTTER_VERSION +#else +#define VERSION_AS_STRING "1.0.0" +#endif + +VS_VERSION_INFO VERSIONINFO + FILEVERSION VERSION_AS_NUMBER + PRODUCTVERSION VERSION_AS_NUMBER + FILEFLAGSMASK VS_FFI_FILEFLAGSMASK +#ifdef _DEBUG + FILEFLAGS VS_FF_DEBUG +#else + FILEFLAGS 0x0L +#endif + FILEOS VOS__WINDOWS32 + FILETYPE VFT_APP + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904e4" + BEGIN + VALUE "CompanyName", "com.example" "\0" + VALUE "FileDescription", "all_palettes" "\0" + VALUE "FileVersion", VERSION_AS_STRING "\0" + VALUE "InternalName", "all_palettes" "\0" + VALUE "LegalCopyright", "Copyright (C) 2024 com.example. All rights reserved." "\0" + VALUE "OriginalFilename", "all_palettes.exe" "\0" + VALUE "ProductName", "all_palettes" "\0" + VALUE "ProductVersion", VERSION_AS_STRING "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1252 + END +END + +#endif // English (United States) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED diff --git a/example/all_palettes/windows/runner/flutter_window.cpp b/example/all_palettes/windows/runner/flutter_window.cpp new file mode 100644 index 0000000..955ee30 --- /dev/null +++ b/example/all_palettes/windows/runner/flutter_window.cpp @@ -0,0 +1,71 @@ +#include "flutter_window.h" + +#include + +#include "flutter/generated_plugin_registrant.h" + +FlutterWindow::FlutterWindow(const flutter::DartProject& project) + : project_(project) {} + +FlutterWindow::~FlutterWindow() {} + +bool FlutterWindow::OnCreate() { + if (!Win32Window::OnCreate()) { + return false; + } + + RECT frame = GetClientArea(); + + // The size here must match the window dimensions to avoid unnecessary surface + // creation / destruction in the startup path. + flutter_controller_ = std::make_unique( + frame.right - frame.left, frame.bottom - frame.top, project_); + // Ensure that basic setup of the controller was successful. + if (!flutter_controller_->engine() || !flutter_controller_->view()) { + return false; + } + RegisterPlugins(flutter_controller_->engine()); + SetChildContent(flutter_controller_->view()->GetNativeWindow()); + + flutter_controller_->engine()->SetNextFrameCallback([&]() { + this->Show(); + }); + + // Flutter can complete the first frame before the "show window" callback is + // registered. The following call ensures a frame is pending to ensure the + // window is shown. It is a no-op if the first frame hasn't completed yet. + flutter_controller_->ForceRedraw(); + + return true; +} + +void FlutterWindow::OnDestroy() { + if (flutter_controller_) { + flutter_controller_ = nullptr; + } + + Win32Window::OnDestroy(); +} + +LRESULT +FlutterWindow::MessageHandler(HWND hwnd, UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + // Give Flutter, including plugins, an opportunity to handle window messages. + if (flutter_controller_) { + std::optional result = + flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, + lparam); + if (result) { + return *result; + } + } + + switch (message) { + case WM_FONTCHANGE: + flutter_controller_->engine()->ReloadSystemFonts(); + break; + } + + return Win32Window::MessageHandler(hwnd, message, wparam, lparam); +} diff --git a/example/all_palettes/windows/runner/flutter_window.h b/example/all_palettes/windows/runner/flutter_window.h new file mode 100644 index 0000000..6da0652 --- /dev/null +++ b/example/all_palettes/windows/runner/flutter_window.h @@ -0,0 +1,33 @@ +#ifndef RUNNER_FLUTTER_WINDOW_H_ +#define RUNNER_FLUTTER_WINDOW_H_ + +#include +#include + +#include + +#include "win32_window.h" + +// A window that does nothing but host a Flutter view. +class FlutterWindow : public Win32Window { + public: + // Creates a new FlutterWindow hosting a Flutter view running |project|. + explicit FlutterWindow(const flutter::DartProject& project); + virtual ~FlutterWindow(); + + protected: + // Win32Window: + bool OnCreate() override; + void OnDestroy() override; + LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, + LPARAM const lparam) noexcept override; + + private: + // The project to run. + flutter::DartProject project_; + + // The Flutter instance hosted by this window. + std::unique_ptr flutter_controller_; +}; + +#endif // RUNNER_FLUTTER_WINDOW_H_ diff --git a/example/all_palettes/windows/runner/main.cpp b/example/all_palettes/windows/runner/main.cpp new file mode 100644 index 0000000..bbb54fd --- /dev/null +++ b/example/all_palettes/windows/runner/main.cpp @@ -0,0 +1,43 @@ +#include +#include +#include + +#include "flutter_window.h" +#include "utils.h" + +int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, + _In_ wchar_t *command_line, _In_ int show_command) { + // Attach to console when present (e.g., 'flutter run') or create a + // new console when running with a debugger. + if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { + CreateAndAttachConsole(); + } + + // Initialize COM, so that it is available for use in the library and/or + // plugins. + ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); + + flutter::DartProject project(L"data"); + + std::vector command_line_arguments = + GetCommandLineArguments(); + + project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); + + FlutterWindow window(project); + Win32Window::Point origin(10, 10); + Win32Window::Size size(1280, 720); + if (!window.Create(L"all_palettes", origin, size)) { + return EXIT_FAILURE; + } + window.SetQuitOnClose(true); + + ::MSG msg; + while (::GetMessage(&msg, nullptr, 0, 0)) { + ::TranslateMessage(&msg); + ::DispatchMessage(&msg); + } + + ::CoUninitialize(); + return EXIT_SUCCESS; +} diff --git a/example/all_palettes/windows/runner/resource.h b/example/all_palettes/windows/runner/resource.h new file mode 100644 index 0000000..66a65d1 --- /dev/null +++ b/example/all_palettes/windows/runner/resource.h @@ -0,0 +1,16 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by Runner.rc +// +#define IDI_APP_ICON 101 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 102 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1001 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/example/all_palettes/windows/runner/resources/app_icon.ico b/example/all_palettes/windows/runner/resources/app_icon.ico new file mode 100644 index 0000000..c04e20c Binary files /dev/null and b/example/all_palettes/windows/runner/resources/app_icon.ico differ diff --git a/example/all_palettes/windows/runner/runner.exe.manifest b/example/all_palettes/windows/runner/runner.exe.manifest new file mode 100644 index 0000000..a42ea76 --- /dev/null +++ b/example/all_palettes/windows/runner/runner.exe.manifest @@ -0,0 +1,20 @@ + + + + + PerMonitorV2 + + + + + + + + + + + + + + + diff --git a/example/all_palettes/windows/runner/utils.cpp b/example/all_palettes/windows/runner/utils.cpp new file mode 100644 index 0000000..b2b0873 --- /dev/null +++ b/example/all_palettes/windows/runner/utils.cpp @@ -0,0 +1,65 @@ +#include "utils.h" + +#include +#include +#include +#include + +#include + +void CreateAndAttachConsole() { + if (::AllocConsole()) { + FILE *unused; + if (freopen_s(&unused, "CONOUT$", "w", stdout)) { + _dup2(_fileno(stdout), 1); + } + if (freopen_s(&unused, "CONOUT$", "w", stderr)) { + _dup2(_fileno(stdout), 2); + } + std::ios::sync_with_stdio(); + FlutterDesktopResyncOutputStreams(); + } +} + +std::vector GetCommandLineArguments() { + // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. + int argc; + wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); + if (argv == nullptr) { + return std::vector(); + } + + std::vector command_line_arguments; + + // Skip the first argument as it's the binary name. + for (int i = 1; i < argc; i++) { + command_line_arguments.push_back(Utf8FromUtf16(argv[i])); + } + + ::LocalFree(argv); + + return command_line_arguments; +} + +std::string Utf8FromUtf16(const wchar_t* utf16_string) { + if (utf16_string == nullptr) { + return std::string(); + } + int target_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + -1, nullptr, 0, nullptr, nullptr) + -1; // remove the trailing null character + int input_length = (int)wcslen(utf16_string); + std::string utf8_string; + if (target_length <= 0 || target_length > utf8_string.max_size()) { + return utf8_string; + } + utf8_string.resize(target_length); + int converted_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + input_length, utf8_string.data(), target_length, nullptr, nullptr); + if (converted_length == 0) { + return std::string(); + } + return utf8_string; +} diff --git a/example/all_palettes/windows/runner/utils.h b/example/all_palettes/windows/runner/utils.h new file mode 100644 index 0000000..3879d54 --- /dev/null +++ b/example/all_palettes/windows/runner/utils.h @@ -0,0 +1,19 @@ +#ifndef RUNNER_UTILS_H_ +#define RUNNER_UTILS_H_ + +#include +#include + +// Creates a console for the process, and redirects stdout and stderr to +// it for both the runner and the Flutter library. +void CreateAndAttachConsole(); + +// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string +// encoded in UTF-8. Returns an empty std::string on failure. +std::string Utf8FromUtf16(const wchar_t* utf16_string); + +// Gets the command line arguments passed in as a std::vector, +// encoded in UTF-8. Returns an empty std::vector on failure. +std::vector GetCommandLineArguments(); + +#endif // RUNNER_UTILS_H_ diff --git a/example/all_palettes/windows/runner/win32_window.cpp b/example/all_palettes/windows/runner/win32_window.cpp new file mode 100644 index 0000000..60608d0 --- /dev/null +++ b/example/all_palettes/windows/runner/win32_window.cpp @@ -0,0 +1,288 @@ +#include "win32_window.h" + +#include +#include + +#include "resource.h" + +namespace { + +/// Window attribute that enables dark mode window decorations. +/// +/// Redefined in case the developer's machine has a Windows SDK older than +/// version 10.0.22000.0. +/// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute +#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE +#define DWMWA_USE_IMMERSIVE_DARK_MODE 20 +#endif + +constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; + +/// Registry key for app theme preference. +/// +/// A value of 0 indicates apps should use dark mode. A non-zero or missing +/// value indicates apps should use light mode. +constexpr const wchar_t kGetPreferredBrightnessRegKey[] = + L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"; +constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme"; + +// The number of Win32Window objects that currently exist. +static int g_active_window_count = 0; + +using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); + +// Scale helper to convert logical scaler values to physical using passed in +// scale factor +int Scale(int source, double scale_factor) { + return static_cast(source * scale_factor); +} + +// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. +// This API is only needed for PerMonitor V1 awareness mode. +void EnableFullDpiSupportIfAvailable(HWND hwnd) { + HMODULE user32_module = LoadLibraryA("User32.dll"); + if (!user32_module) { + return; + } + auto enable_non_client_dpi_scaling = + reinterpret_cast( + GetProcAddress(user32_module, "EnableNonClientDpiScaling")); + if (enable_non_client_dpi_scaling != nullptr) { + enable_non_client_dpi_scaling(hwnd); + } + FreeLibrary(user32_module); +} + +} // namespace + +// Manages the Win32Window's window class registration. +class WindowClassRegistrar { + public: + ~WindowClassRegistrar() = default; + + // Returns the singleton registrar instance. + static WindowClassRegistrar* GetInstance() { + if (!instance_) { + instance_ = new WindowClassRegistrar(); + } + return instance_; + } + + // Returns the name of the window class, registering the class if it hasn't + // previously been registered. + const wchar_t* GetWindowClass(); + + // Unregisters the window class. Should only be called if there are no + // instances of the window. + void UnregisterWindowClass(); + + private: + WindowClassRegistrar() = default; + + static WindowClassRegistrar* instance_; + + bool class_registered_ = false; +}; + +WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; + +const wchar_t* WindowClassRegistrar::GetWindowClass() { + if (!class_registered_) { + WNDCLASS window_class{}; + window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); + window_class.lpszClassName = kWindowClassName; + window_class.style = CS_HREDRAW | CS_VREDRAW; + window_class.cbClsExtra = 0; + window_class.cbWndExtra = 0; + window_class.hInstance = GetModuleHandle(nullptr); + window_class.hIcon = + LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); + window_class.hbrBackground = 0; + window_class.lpszMenuName = nullptr; + window_class.lpfnWndProc = Win32Window::WndProc; + RegisterClass(&window_class); + class_registered_ = true; + } + return kWindowClassName; +} + +void WindowClassRegistrar::UnregisterWindowClass() { + UnregisterClass(kWindowClassName, nullptr); + class_registered_ = false; +} + +Win32Window::Win32Window() { + ++g_active_window_count; +} + +Win32Window::~Win32Window() { + --g_active_window_count; + Destroy(); +} + +bool Win32Window::Create(const std::wstring& title, + const Point& origin, + const Size& size) { + Destroy(); + + const wchar_t* window_class = + WindowClassRegistrar::GetInstance()->GetWindowClass(); + + const POINT target_point = {static_cast(origin.x), + static_cast(origin.y)}; + HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); + UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); + double scale_factor = dpi / 96.0; + + HWND window = CreateWindow( + window_class, title.c_str(), WS_OVERLAPPEDWINDOW, + Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), + Scale(size.width, scale_factor), Scale(size.height, scale_factor), + nullptr, nullptr, GetModuleHandle(nullptr), this); + + if (!window) { + return false; + } + + UpdateTheme(window); + + return OnCreate(); +} + +bool Win32Window::Show() { + return ShowWindow(window_handle_, SW_SHOWNORMAL); +} + +// static +LRESULT CALLBACK Win32Window::WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + if (message == WM_NCCREATE) { + auto window_struct = reinterpret_cast(lparam); + SetWindowLongPtr(window, GWLP_USERDATA, + reinterpret_cast(window_struct->lpCreateParams)); + + auto that = static_cast(window_struct->lpCreateParams); + EnableFullDpiSupportIfAvailable(window); + that->window_handle_ = window; + } else if (Win32Window* that = GetThisFromHandle(window)) { + return that->MessageHandler(window, message, wparam, lparam); + } + + return DefWindowProc(window, message, wparam, lparam); +} + +LRESULT +Win32Window::MessageHandler(HWND hwnd, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + switch (message) { + case WM_DESTROY: + window_handle_ = nullptr; + Destroy(); + if (quit_on_close_) { + PostQuitMessage(0); + } + return 0; + + case WM_DPICHANGED: { + auto newRectSize = reinterpret_cast(lparam); + LONG newWidth = newRectSize->right - newRectSize->left; + LONG newHeight = newRectSize->bottom - newRectSize->top; + + SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, + newHeight, SWP_NOZORDER | SWP_NOACTIVATE); + + return 0; + } + case WM_SIZE: { + RECT rect = GetClientArea(); + if (child_content_ != nullptr) { + // Size and position the child window. + MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, + rect.bottom - rect.top, TRUE); + } + return 0; + } + + case WM_ACTIVATE: + if (child_content_ != nullptr) { + SetFocus(child_content_); + } + return 0; + + case WM_DWMCOLORIZATIONCOLORCHANGED: + UpdateTheme(hwnd); + return 0; + } + + return DefWindowProc(window_handle_, message, wparam, lparam); +} + +void Win32Window::Destroy() { + OnDestroy(); + + if (window_handle_) { + DestroyWindow(window_handle_); + window_handle_ = nullptr; + } + if (g_active_window_count == 0) { + WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); + } +} + +Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { + return reinterpret_cast( + GetWindowLongPtr(window, GWLP_USERDATA)); +} + +void Win32Window::SetChildContent(HWND content) { + child_content_ = content; + SetParent(content, window_handle_); + RECT frame = GetClientArea(); + + MoveWindow(content, frame.left, frame.top, frame.right - frame.left, + frame.bottom - frame.top, true); + + SetFocus(child_content_); +} + +RECT Win32Window::GetClientArea() { + RECT frame; + GetClientRect(window_handle_, &frame); + return frame; +} + +HWND Win32Window::GetHandle() { + return window_handle_; +} + +void Win32Window::SetQuitOnClose(bool quit_on_close) { + quit_on_close_ = quit_on_close; +} + +bool Win32Window::OnCreate() { + // No-op; provided for subclasses. + return true; +} + +void Win32Window::OnDestroy() { + // No-op; provided for subclasses. +} + +void Win32Window::UpdateTheme(HWND const window) { + DWORD light_mode; + DWORD light_mode_size = sizeof(light_mode); + LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey, + kGetPreferredBrightnessRegValue, + RRF_RT_REG_DWORD, nullptr, &light_mode, + &light_mode_size); + + if (result == ERROR_SUCCESS) { + BOOL enable_dark_mode = light_mode == 0; + DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE, + &enable_dark_mode, sizeof(enable_dark_mode)); + } +} diff --git a/example/all_palettes/windows/runner/win32_window.h b/example/all_palettes/windows/runner/win32_window.h new file mode 100644 index 0000000..e901dde --- /dev/null +++ b/example/all_palettes/windows/runner/win32_window.h @@ -0,0 +1,102 @@ +#ifndef RUNNER_WIN32_WINDOW_H_ +#define RUNNER_WIN32_WINDOW_H_ + +#include + +#include +#include +#include + +// A class abstraction for a high DPI-aware Win32 Window. Intended to be +// inherited from by classes that wish to specialize with custom +// rendering and input handling +class Win32Window { + public: + struct Point { + unsigned int x; + unsigned int y; + Point(unsigned int x, unsigned int y) : x(x), y(y) {} + }; + + struct Size { + unsigned int width; + unsigned int height; + Size(unsigned int width, unsigned int height) + : width(width), height(height) {} + }; + + Win32Window(); + virtual ~Win32Window(); + + // Creates a win32 window with |title| that is positioned and sized using + // |origin| and |size|. New windows are created on the default monitor. Window + // sizes are specified to the OS in physical pixels, hence to ensure a + // consistent size this function will scale the inputted width and height as + // as appropriate for the default monitor. The window is invisible until + // |Show| is called. Returns true if the window was created successfully. + bool Create(const std::wstring& title, const Point& origin, const Size& size); + + // Show the current window. Returns true if the window was successfully shown. + bool Show(); + + // Release OS resources associated with window. + void Destroy(); + + // Inserts |content| into the window tree. + void SetChildContent(HWND content); + + // Returns the backing Window handle to enable clients to set icon and other + // window properties. Returns nullptr if the window has been destroyed. + HWND GetHandle(); + + // If true, closing this window will quit the application. + void SetQuitOnClose(bool quit_on_close); + + // Return a RECT representing the bounds of the current client area. + RECT GetClientArea(); + + protected: + // Processes and route salient window messages for mouse handling, + // size change and DPI. Delegates handling of these to member overloads that + // inheriting classes can handle. + virtual LRESULT MessageHandler(HWND window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Called when CreateAndShow is called, allowing subclass window-related + // setup. Subclasses should return false if setup fails. + virtual bool OnCreate(); + + // Called when Destroy is called. + virtual void OnDestroy(); + + private: + friend class WindowClassRegistrar; + + // OS callback called by message pump. Handles the WM_NCCREATE message which + // is passed when the non-client area is being created and enables automatic + // non-client DPI scaling so that the non-client area automatically + // responds to changes in DPI. All other messages are handled by + // MessageHandler. + static LRESULT CALLBACK WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Retrieves a class instance pointer for |window| + static Win32Window* GetThisFromHandle(HWND const window) noexcept; + + // Update the window frame's theme to match the system theme. + static void UpdateTheme(HWND const window); + + bool quit_on_close_ = false; + + // window handle for top level window. + HWND window_handle_ = nullptr; + + // window handle for hosted content. + HWND child_content_ = nullptr; +}; + +#endif // RUNNER_WIN32_WINDOW_H_ diff --git a/example/main.dart b/example/main.dart new file mode 100644 index 0000000..b4018fd --- /dev/null +++ b/example/main.dart @@ -0,0 +1,11 @@ +// ignore_for_file: avoid_print + +import 'package:uni_color_palette/uni_color_palette.dart'; + +/// See also `example/all_palettes` forlder with Flutter SDK example +/// that visualize a palette. +void main() { + final palette = UniPalette(zeplinColors); + print('I know ${palette.count} colors.'); + print(palette['forrest green']); +} diff --git a/images/cover.webp b/images/cover.webp new file mode 100644 index 0000000..64613c9 Binary files /dev/null and b/images/cover.webp differ diff --git a/images/screenshots/zeplin_palette.webp b/images/screenshots/zeplin_palette.webp new file mode 100644 index 0000000..30c16bc Binary files /dev/null and b/images/screenshots/zeplin_palette.webp differ diff --git a/lib/src/palettes/commodore_64.dart b/lib/src/palettes/commodore_64.dart new file mode 100644 index 0000000..b55d527 --- /dev/null +++ b/lib/src/palettes/commodore_64.dart @@ -0,0 +1,22 @@ +part of '../../uni_color_palette.dart'; + +/// Source: https://en.wikipedia.org/wiki/Commodore_64#Graphics +/// Helper sheet: https://docs.google.com/spreadsheets/d/1f8wvrgqfGcXFAiAXx-p9CgLXo3__IoEn8-Us-uRyfok/edit#gid=0 +final commodore64Colors = [ + RgbInt8Color.rgbIndexName(0x00, 0x00, 0x00, 0, 'black'), + RgbInt8Color.rgbIndexName(0xff, 0xff, 0xff, 1, 'white'), + RgbInt8Color.rgbIndexName(0x9f, 0x4e, 0x44, 2, 'red'), + RgbInt8Color.rgbIndexName(0x6a, 0xbf, 0xc6, 3, 'cyan'), + RgbInt8Color.rgbIndexName(0xa0, 0x57, 0xa3, 4, 'purple'), + RgbInt8Color.rgbIndexName(0x5c, 0xab, 0x5e, 5, 'green'), + RgbInt8Color.rgbIndexName(0x50, 0x45, 0x9b, 6, 'blue'), + RgbInt8Color.rgbIndexName(0xc9, 0xd4, 0x87, 7, 'yellow'), + RgbInt8Color.rgbIndexName(0xa1, 0x68, 0x3c, 8, 'orange'), + RgbInt8Color.rgbIndexName(0x6d, 0x54, 0x12, 9, 'brown'), + RgbInt8Color.rgbIndexName(0xcb, 0x7e, 0x75, 10, 'light red'), + RgbInt8Color.rgbIndexName(0x62, 0x62, 0x62, 11, 'dark-gray'), + RgbInt8Color.rgbIndexName(0x89, 0x89, 0x89, 12, 'mid-gray'), + RgbInt8Color.rgbIndexName(0x9a, 0xe2, 0x9b, 13, 'light green'), + RgbInt8Color.rgbIndexName(0x88, 0x7e, 0xcb, 14, 'light blue'), + RgbInt8Color.rgbIndexName(0xad, 0xad, 0xad, 15, 'light-gray'), +]; diff --git a/lib/src/palettes/pantone_fashion_design.dart b/lib/src/palettes/pantone_fashion_design.dart new file mode 100644 index 0000000..971e470 --- /dev/null +++ b/lib/src/palettes/pantone_fashion_design.dart @@ -0,0 +1,2449 @@ +part of '../../uni_color_palette.dart'; + +/// Source: https://numerosamente.it/pantone-list +/// Helper sheet: https://docs.google.com/spreadsheets/d/1f8wvrgqfGcXFAiAXx-p9CgLXo3__IoEn8-Us-uRyfok/edit#gid=804555128 +final pantoneFashionDesignColors = [ + RgbInt8Color.rgbName(0x2e, 0x27, 0x2a, 'black bean'), + RgbInt8Color.rgbName(0x26, 0x26, 0x2a, 'black beauty'), + RgbInt8Color.rgbName(0x26, 0x29, 0x34, 'sky captain'), + RgbInt8Color.rgbName(0x2b, 0x27, 0x2b, 'black onyx'), + RgbInt8Color.rgbName(0x2a, 0x2b, 0x2d, 'tap shoe'), + RgbInt8Color.rgbName(0x29, 0x2a, 0x2d, 'caviar'), + RgbInt8Color.rgbName(0x28, 0x28, 0x2d, 'anthracite'), + RgbInt8Color.rgbName(0x2b, 0x29, 0x29, 'meteorite'), + RgbInt8Color.rgbName(0x23, 0x31, 0x2d, 'scarab'), + RgbInt8Color.rgbName(0x26, 0x2c, 0x2a, 'jet set'), + RgbInt8Color.rgbName(0x12, 0x38, 0x50, 'gibraltar sea'), + RgbInt8Color.rgbName(0xe, 0x3a, 0x53, 'sailor blue'), + RgbInt8Color.rgbName(0xf, 0x3b, 0x57, 'blue opal'), + RgbInt8Color.rgbName(0x20, 0x3c, 0x7f, 'surf the web'), + RgbInt8Color.rgbName(0x27, 0x3c, 0x76, 'mazarine blue'), + RgbInt8Color.rgbName(0x36, 0x3b, 0x7c, 'clematis blue'), + RgbInt8Color.rgbName(0x0, 0x4b, 0x8d, 'lapis blue'), + RgbInt8Color.rgbName(0x0, 0x4d, 0x8c, 'snorkel blue'), + RgbInt8Color.rgbName(0x16, 0x4d, 0x8f, 'nautical blue'), + RgbInt8Color.rgbName(0x2e, 0x4d, 0xa7, 'dazzling blue'), + RgbInt8Color.rgbName(0xf, 0x4c, 0x81, 'classic blue'), + RgbInt8Color.rgbName(0x1a, 0x4c, 0x8b, 'blue iolite'), + RgbInt8Color.rgbName(0x2c, 0x45, 0x78, 'limoges'), + RgbInt8Color.rgbName(0x0, 0x53, 0x9c, 'princess blue'), + RgbInt8Color.rgbName(0x0, 0x58, 0x9b, 'skydiver'), + RgbInt8Color.rgbName(0x0, 0x59, 0x9a, 'imperial blue'), + RgbInt8Color.rgbName(0x8, 0x58, 0x9d, 'victoria blue'), + RgbInt8Color.rgbName(0x19, 0x51, 0x90, 'turkish sea'), + RgbInt8Color.rgbName(0x0, 0x63, 0xb2, 'electric blue lemonade'), + RgbInt8Color.rgbName(0x0, 0x61, 0xa3, 'directoire blue'), + RgbInt8Color.rgbName(0xf, 0x5f, 0x9a, 'daphne'), + RgbInt8Color.rgbName(0x1f, 0x5d, 0xa0, 'strong blue'), + RgbInt8Color.rgbName(0x49, 0x60, 0xa8, 'amparo blue'), + RgbInt8Color.rgbName(0x2d, 0x62, 0xa3, 'nebulas blue'), + RgbInt8Color.rgbName(0x12, 0x39, 0x55, 'poseidon'), + RgbInt8Color.rgbName(0x0, 0x6f, 0xaf, 'indigo bunting'), + RgbInt8Color.rgbName(0x34, 0x6c, 0xb0, 'palace blue'), + RgbInt8Color.rgbName(0x12, 0x40, 0x3c, 'botanical garden'), + RgbInt8Color.rgbName(0x15, 0x46, 0x3e, 'rain forest'), + RgbInt8Color.rgbName(0x1e, 0x44, 0x77, 'true blue'), + RgbInt8Color.rgbName(0x0, 0x72, 0xb5, 'french blue'), + RgbInt8Color.rgbName(0x0, 0x78, 0xba, 'brilliant blue'), + RgbInt8Color.rgbName(0x0, 0x77, 0xb3, 'blue aster'), + RgbInt8Color.rgbName(0x0, 0x75, 0xaf, 'cloisonné'), + RgbInt8Color.rgbName(0x21, 0x36, 0x31, 'pine grove'), + RgbInt8Color.rgbName(0x18, 0x4a, 0x45, 'forest biome'), + RgbInt8Color.rgbName(0x1c, 0x47, 0x46, 'june bug'), + RgbInt8Color.rgbName(0x0, 0x7c, 0xb7, 'ibiza blue'), + RgbInt8Color.rgbName(0x0, 0x7b, 0xb2, 'diva blue'), + RgbInt8Color.rgbName(0x0, 0x7e, 0xb1, 'swedish blue'), + RgbInt8Color.rgbName(0x0, 0x82, 0xb5, 'blue jewel'), + RgbInt8Color.rgbName(0x2e, 0x3d, 0x30, 'mountain view'), + RgbInt8Color.rgbName(0x17, 0x49, 0x50, 'deep teal'), + RgbInt8Color.rgbName(0x3, 0x54, 0x53, 'storm'), + RgbInt8Color.rgbName(0x0, 0x58, 0x5e, 'shaded spruce'), + RgbInt8Color.rgbName(0x0, 0x52, 0x65, 'deep lagoon'), + RgbInt8Color.rgbName(0xf, 0x4e, 0x67, 'moroccan blue'), + RgbInt8Color.rgbName(0x0, 0x58, 0x71, 'lyons blue'), + RgbInt8Color.rgbName(0x0, 0x57, 0x80, 'mykonos blue'), + RgbInt8Color.rgbName(0x9, 0x57, 0x7b, 'blue sapphire'), + RgbInt8Color.rgbName(0x15, 0x51, 0x87, 'baleine blue'), + RgbInt8Color.rgbName(0x32, 0x72, 0xaf, 'campanula'), + RgbInt8Color.rgbName(0x26, 0x4e, 0x36, 'eden'), + RgbInt8Color.rgbName(0x2c, 0x4c, 0x32, 'greener pastures'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x56, 'alpine green'), + RgbInt8Color.rgbName(0x0, 0x5b, 0x5d, 'everglade'), + RgbInt8Color.rgbName(0xb, 0x53, 0x69, 'ink blue'), + RgbInt8Color.rgbName(0x0, 0x64, 0x65, 'teal green'), + RgbInt8Color.rgbName(0x0, 0x5e, 0x7d, 'seaport'), + RgbInt8Color.rgbName(0x0, 0x61, 0x75, 'ocean depths'), + RgbInt8Color.rgbName(0x0, 0x63, 0x80, 'celestial'), + RgbInt8Color.rgbName(0x0, 0x7c, 0xad, 'methyl blue'), + RgbInt8Color.rgbName(0x11, 0x57, 0x4a, 'evergreen'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x54, 'ultramarine green'), + RgbInt8Color.rgbName(0x0, 0x6e, 0x51, 'lush meadow'), + RgbInt8Color.rgbName(0x0, 0x67, 0x5b, 'cadmium green'), + RgbInt8Color.rgbName(0x0, 0x68, 0x65, 'quetzal green'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x64, 'tidepool'), + RgbInt8Color.rgbName(0x0, 0x65, 0x6e, 'harbor blue'), + RgbInt8Color.rgbName(0x0, 0x65, 0x6b, 'deep lake'), + RgbInt8Color.rgbName(0x0, 0x63, 0x7c, 'crystal teal'), + RgbInt8Color.rgbName(0x0, 0x69, 0x8b, 'turkish tile'), + RgbInt8Color.rgbName(0x0, 0x84, 0xbd, 'blithe'), + RgbInt8Color.rgbName(0x0, 0x8a, 0xc2, 'dresden blue'), + RgbInt8Color.rgbName(0x0, 0x8c, 0xc1, 'malibu blue'), + RgbInt8Color.rgbName(0x0, 0x78, 0x44, 'jolly green'), + RgbInt8Color.rgbName(0x0, 0x6e, 0x5b, 'shady glade'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x70, 'fanfare'), + RgbInt8Color.rgbName(0x11, 0x5a, 0x6f, 'corsair'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x7e, 'tahitian tide'), + RgbInt8Color.rgbName(0x0, 0x74, 0x93, 'fjord blue'), + RgbInt8Color.rgbName(0x0, 0x78, 0xa7, 'hawaiian surf'), + RgbInt8Color.rgbName(0x0, 0x95, 0xc6, 'hawaiian ocean'), + RgbInt8Color.rgbName(0x12, 0x67, 0x4a, 'verdant green'), + RgbInt8Color.rgbName(0x0, 0x75, 0x58, 'bosphorus'), + RgbInt8Color.rgbName(0x0, 0x73, 0x6c, 'parasailing'), + RgbInt8Color.rgbName(0x0, 0x77, 0x84, 'biscay bay'), + RgbInt8Color.rgbName(0x0, 0x75, 0x8f, 'mosaic blue'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x45, 'fern green'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x60, 'pepper green'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x69, 'greenlake'), + RgbInt8Color.rgbName(0x0, 0x7f, 0x7c, 'teal blue'), + RgbInt8Color.rgbName(0x0, 0x7c, 0x7a, 'blue grass'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x8e, 'enamel blue'), + RgbInt8Color.rgbName(0x0, 0x81, 0x9d, 'caribbean sea'), + RgbInt8Color.rgbName(0x0, 0x87, 0x4f, 'jelly bean'), + RgbInt8Color.rgbName(0x0, 0x84, 0x6b, 'viridis'), + RgbInt8Color.rgbName(0x0, 0x87, 0x63, 'golf green'), + RgbInt8Color.rgbName(0x0, 0x83, 0x81, 'deep peacock blue'), + RgbInt8Color.rgbName(0x0, 0x87, 0x78, 'alhambra'), + RgbInt8Color.rgbName(0x0, 0x85, 0x83, 'navigate'), + RgbInt8Color.rgbName(0x0, 0x86, 0x84, 'lapis'), + RgbInt8Color.rgbName(0x0, 0x87, 0x86, 'tropical green'), + RgbInt8Color.rgbName(0x0, 0x84, 0x91, 'tile blue'), + RgbInt8Color.rgbName(0x0, 0x85, 0x9c, 'algiers blue'), + RgbInt8Color.rgbName(0x0, 0x84, 0x9f, 'caneel bay'), + RgbInt8Color.rgbName(0x0, 0x87, 0x99, 'capri breeze'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x96, 'lake blue'), + RgbInt8Color.rgbName(0x0, 0x84, 0xa1, 'barrier reef'), + RgbInt8Color.rgbName(0x0, 0x88, 0xb0, 'vivid blue'), + RgbInt8Color.rgbName(0x0, 0x87, 0xb6, 'blue danube'), + RgbInt8Color.rgbName(0x0, 0x89, 0xb9, 'atomic blue'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x69, 'parakeet'), + RgbInt8Color.rgbName(0x0, 0x8e, 0x80, 'dynasty green'), + RgbInt8Color.rgbName(0x0, 0x92, 0x76, 'deep green'), + RgbInt8Color.rgbName(0x0, 0x92, 0x88, 'columbia'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x5c, 'bright green'), + RgbInt8Color.rgbName(0x0, 0x94, 0x73, 'emerald'), + RgbInt8Color.rgbName(0x0, 0xa1, 0x70, 'mint'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x75, 'simply green'), + RgbInt8Color.rgbName(0x0, 0x9e, 0x6d, 'deep mint'), + RgbInt8Color.rgbName(0x0, 0x9e, 0x82, 'vivid green'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x8c, 'spectra green'), + RgbInt8Color.rgbName(0x0, 0x94, 0x99, 'viridian green'), + RgbInt8Color.rgbName(0x0, 0xa1, 0x76, 'holly green'), + RgbInt8Color.rgbName(0x0, 0xa7, 0x76, 'blarney'), + RgbInt8Color.rgbName(0x0, 0xa0, 0x86, 'sea green'), + RgbInt8Color.rgbName(0x0, 0xa7, 0x8b, 'peacock green'), + RgbInt8Color.rgbName(0x0, 0xa2, 0x8a, 'arcadia'), + RgbInt8Color.rgbName(0x0, 0x9d, 0xae, 'bluebird'), + RgbInt8Color.rgbName(0x0, 0xa0, 0xb0, 'peacock blue'), + RgbInt8Color.rgbName(0x0, 0xaa, 0xa9, 'ceramic'), + RgbInt8Color.rgbName(0x0, 0xa6, 0xcb, 'cyan blue'), + RgbInt8Color.rgbName(0x0, 0xb1, 0xd2, 'blue atoll'), + RgbInt8Color.rgbName(0x19, 0x9d, 0x5c, 'kelly green'), + RgbInt8Color.rgbName(0x0, 0xaa, 0x92, 'billiard'), + RgbInt8Color.rgbName(0x0, 0xaf, 0x9f, 'atlantis'), + RgbInt8Color.rgbName(0x0, 0xaf, 0x9d, 'pool green'), + RgbInt8Color.rgbName(0x0, 0xab, 0xc0, 'scuba blue'), + RgbInt8Color.rgbName(0x39, 0xa8, 0x45, 'classic green'), + RgbInt8Color.rgbName(0x0, 0xc7, 0x56, 'andean toucan'), + RgbInt8Color.rgbName(0x0, 0xb6, 0x94, 'mint leaf'), + RgbInt8Color.rgbName(0x0, 0xb8, 0x9f, 'aqua green'), + RgbInt8Color.rgbName(0x1f, 0xb5, 0x66, 'island green'), + RgbInt8Color.rgbName(0x3a, 0xa2, 0x78, 'ming green'), + RgbInt8Color.rgbName(0x33, 0xad, 0x8a, 'gumdrop green'), + RgbInt8Color.rgbName(0x2a, 0xbd, 0xc7, 'blue curacao'), + RgbInt8Color.rgbName(0x3b, 0xb3, 0xd0, 'river blue'), + RgbInt8Color.rgbName(0x3c, 0xad, 0xd4, 'aquarius'), + RgbInt8Color.rgbName(0x4d, 0xb5, 0x60, 'poison green'), + RgbInt8Color.rgbName(0x33, 0xc3, 0xa6, 'electric green'), + RgbInt8Color.rgbName(0x45, 0xbe, 0x76, 'irish green'), + RgbInt8Color.rgbName(0x28, 0x2b, 0x34, 'salute'), + RgbInt8Color.rgbName(0x26, 0x2b, 0x37, 'dark sapphire'), + RgbInt8Color.rgbName(0x27, 0x29, 0x3d, 'maritime blue'), + RgbInt8Color.rgbName(0x3d, 0x3c, 0x7c, 'spectrum blue'), + RgbInt8Color.rgbName(0x44, 0x37, 0x7d, 'deep blue'), + RgbInt8Color.rgbName(0x3d, 0x42, 0x8b, 'royal blue'), + RgbInt8Color.rgbName(0x28, 0x2d, 0x3c, 'navy blazer'), + RgbInt8Color.rgbName(0x27, 0x2f, 0x38, 'carbon'), + RgbInt8Color.rgbName(0x26, 0x31, 0x45, 'black iris'), + RgbInt8Color.rgbName(0x26, 0x30, 0x56, 'blue depths'), + RgbInt8Color.rgbName(0x25, 0x36, 0x68, 'sodalite blue'), + RgbInt8Color.rgbName(0x22, 0x3a, 0x5e, 'navy peony'), + RgbInt8Color.rgbName(0x5a, 0x69, 0xaf, 'baja blue'), + RgbInt8Color.rgbName(0x27, 0x33, 0x47, 'dress blues'), + RgbInt8Color.rgbName(0x23, 0x36, 0x58, 'estate blue'), + RgbInt8Color.rgbName(0x27, 0x43, 0x74, 'blue quartz'), + RgbInt8Color.rgbName(0x20, 0x3b, 0x3d, 'ponderosa pine'), + RgbInt8Color.rgbName(0x20, 0x3e, 0x4a, 'reflecting pond'), + RgbInt8Color.rgbName(0x25, 0x44, 0x45, 'sea moss'), + RgbInt8Color.rgbName(0x1f, 0x49, 0x5b, 'legion blue'), + RgbInt8Color.rgbName(0x27, 0x43, 0x57, 'majolica blue'), + RgbInt8Color.rgbName(0x1b, 0x53, 0x66, 'blue coral'), + RgbInt8Color.rgbName(0x17, 0x60, 0x54, 'galapagos green'), + RgbInt8Color.rgbName(0x1f, 0x59, 0x5c, 'pacific'), + RgbInt8Color.rgbName(0x45, 0x8a, 0xc6, 'azure blue'), + RgbInt8Color.rgbName(0x25, 0x59, 0x58, 'bayberry'), + RgbInt8Color.rgbName(0x1f, 0x66, 0x80, 'saxony blue'), + RgbInt8Color.rgbName(0x14, 0x78, 0xa7, 'mediterranian blue'), + RgbInt8Color.rgbName(0x1f, 0x73, 0x49, 'amazon'), + RgbInt8Color.rgbName(0x22, 0x6c, 0x63, 'ivy'), + RgbInt8Color.rgbName(0x20, 0x70, 0x6f, 'bayou'), + RgbInt8Color.rgbName(0x15, 0x7e, 0xa0, 'bluejay'), + RgbInt8Color.rgbName(0x10, 0x87, 0x80, 'porcelain green'), + RgbInt8Color.rgbName(0x1a, 0x7f, 0x8e, 'pagoda blue'), + RgbInt8Color.rgbName(0x44, 0x88, 0x3c, 'online lime'), + RgbInt8Color.rgbName(0x1a, 0x9a, 0x9d, 'baltic'), + RgbInt8Color.rgbName(0x28, 0xa3, 0xc4, 'horizon blue'), + RgbInt8Color.rgbName(0x43, 0xbc, 0xd8, 'bachelor button'), + RgbInt8Color.rgbName(0x44, 0xbb, 0xca, 'capri'), + RgbInt8Color.rgbName(0x55, 0xaa, 0x59, 'vibrant green'), + RgbInt8Color.rgbName(0x41, 0xb4, 0xa6, 'waterfall'), + RgbInt8Color.rgbName(0x45, 0xb5, 0xaa, 'turquoise'), + RgbInt8Color.rgbName(0x4d, 0xc6, 0xe2, 'bluefish'), + RgbInt8Color.rgbName(0x34, 0x29, 0x2a, 'ganache'), + RgbInt8Color.rgbName(0x2c, 0x2a, 0x33, 'deep well'), + RgbInt8Color.rgbName(0x2a, 0x2a, 0x35, 'night sky'), + RgbInt8Color.rgbName(0x2a, 0x29, 0x3e, 'evening blue'), + RgbInt8Color.rgbName(0x60, 0x50, 0xa8, 'simply purple'), + RgbInt8Color.rgbName(0x4d, 0x44, 0x8a, 'liberty'), + RgbInt8Color.rgbName(0x64, 0x59, 0xa2, 'purple opulence'), + RgbInt8Color.rgbName(0x2d, 0x2c, 0x2f, 'jet black'), + RgbInt8Color.rgbName(0x2b, 0x2c, 0x30, 'stretch limo'), + RgbInt8Color.rgbName(0x2f, 0x2d, 0x30, 'moonless night'), + RgbInt8Color.rgbName(0x2b, 0x2e, 0x43, 'peacoat'), + RgbInt8Color.rgbName(0x2d, 0x2e, 0x49, 'eclipse'), + RgbInt8Color.rgbName(0x2d, 0x2c, 0x4d, 'astral aura'), + RgbInt8Color.rgbName(0x29, 0x30, 0x4e, 'medieval blue'), + RgbInt8Color.rgbName(0x2c, 0x31, 0x3d, 'total eclipse'), + RgbInt8Color.rgbName(0x2d, 0x33, 0x59, 'blueprint'), + RgbInt8Color.rgbName(0x2e, 0x2f, 0x36, 'dark navy'), + RgbInt8Color.rgbName(0x2d, 0x30, 0x36, 'vulcan'), + RgbInt8Color.rgbName(0x2f, 0x34, 0x35, 'pirate black'), + RgbInt8Color.rgbName(0x2c, 0x33, 0x3e, 'blueberry'), + RgbInt8Color.rgbName(0x29, 0x3b, 0x4d, 'moonlit ocean'), + RgbInt8Color.rgbName(0x30, 0x3d, 0x3c, 'darkest spruce'), + RgbInt8Color.rgbName(0x2a, 0x42, 0x39, 'sycamore'), + RgbInt8Color.rgbName(0x2f, 0x3e, 0x55, 'insignia blue'), + RgbInt8Color.rgbName(0x2c, 0x40, 0x53, 'blue wing teal'), + RgbInt8Color.rgbName(0x31, 0x3d, 0x64, 'twilight blue'), + RgbInt8Color.rgbName(0x35, 0x42, 0x30, 'kombu green'), + RgbInt8Color.rgbName(0x32, 0x42, 0x41, 'green gables'), + RgbInt8Color.rgbName(0x27, 0x4e, 0x55, 'atlantic deep'), + RgbInt8Color.rgbName(0x29, 0x49, 0x5c, 'deep dive'), + RgbInt8Color.rgbName(0x2a, 0x4b, 0x7c, 'galaxy blue'), + RgbInt8Color.rgbName(0x48, 0x7a, 0xb7, 'regatta'), + RgbInt8Color.rgbName(0x2c, 0x50, 0x4a, 'bistro green'), + RgbInt8Color.rgbName(0x31, 0x4f, 0x40, 'dark green'), + RgbInt8Color.rgbName(0x26, 0x5f, 0x6c, 'dragonfly'), + RgbInt8Color.rgbName(0x4f, 0x84, 0xc4, 'marina'), + RgbInt8Color.rgbName(0x32, 0x5b, 0x51, 'posy green'), + RgbInt8Color.rgbName(0x2d, 0x5c, 0x5a, 'jasper'), + RgbInt8Color.rgbName(0x30, 0x56, 0x79, 'dark blue'), + RgbInt8Color.rgbName(0x31, 0x5d, 0x78, 'midnight'), + RgbInt8Color.rgbName(0x26, 0x66, 0x91, 'deep water'), + RgbInt8Color.rgbName(0x29, 0x67, 0x5c, 'antique green'), + RgbInt8Color.rgbName(0x2d, 0x64, 0x71, 'colonial blue'), + RgbInt8Color.rgbName(0x30, 0x65, 0x8e, 'vallarta blue'), + RgbInt8Color.rgbName(0x2a, 0x6a, 0x8b, 'faience'), + RgbInt8Color.rgbName(0x31, 0x6c, 0x6b, 'north sea'), + RgbInt8Color.rgbName(0x31, 0x82, 0x84, 'green-blue slate'), + RgbInt8Color.rgbName(0x31, 0x83, 0xa0, 'navagio bay'), + RgbInt8Color.rgbName(0x30, 0xa2, 0x99, 'bright aqua'), + RgbInt8Color.rgbName(0x47, 0xc6, 0xa3, 'biscay green'), + RgbInt8Color.rgbName(0x48, 0xc1, 0xaa, 'florida keys'), + RgbInt8Color.rgbName(0x39, 0x28, 0x52, 'parachute purple'), + RgbInt8Color.rgbName(0x35, 0x30, 0x30, 'after dark'), + RgbInt8Color.rgbName(0x34, 0x31, 0x32, 'licorice'), + RgbInt8Color.rgbName(0x36, 0x30, 0x31, 'espresso'), + RgbInt8Color.rgbName(0x39, 0x2d, 0x2b, 'mole\''), + RgbInt8Color.rgbName(0x38, 0x2e, 0x2d, 'chocolate torte'), + RgbInt8Color.rgbName(0x3c, 0x2d, 0x2e, 'chocolate plum'), + RgbInt8Color.rgbName(0x36, 0x36, 0x2d, 'rosin'), + RgbInt8Color.rgbName(0x32, 0x31, 0x37, 'blue graphite'), + RgbInt8Color.rgbName(0x2f, 0x34, 0x41, 'outer space'), + RgbInt8Color.rgbName(0x32, 0x34, 0x41, 'parisian night'), + RgbInt8Color.rgbName(0x36, 0x37, 0x56, 'patriot blue'), + RgbInt8Color.rgbName(0x38, 0x48, 0x83, 'deep ultramarine'), + RgbInt8Color.rgbName(0x34, 0x37, 0x3b, 'phantom'), + RgbInt8Color.rgbName(0x36, 0x3b, 0x48, 'blue nights'), + RgbInt8Color.rgbName(0x35, 0x3a, 0x4c, 'mood indigo'), + RgbInt8Color.rgbName(0x34, 0x41, 0x4e, 'midnight navy'), + RgbInt8Color.rgbName(0x35, 0x43, 0x5a, 'sargasso sea'), + RgbInt8Color.rgbName(0x39, 0x40, 0x34, 'duffel bag'), + RgbInt8Color.rgbName(0x33, 0x4d, 0x41, 'pineneedle'), + RgbInt8Color.rgbName(0x37, 0x41, 0x3a, 'deep forest'), + RgbInt8Color.rgbName(0x33, 0x4e, 0x45, 'garden topiary'), + RgbInt8Color.rgbName(0x35, 0x46, 0x5e, 'dark denim'), + RgbInt8Color.rgbName(0x5a, 0x7c, 0xc2, 'ultramarine'), + RgbInt8Color.rgbName(0x3c, 0x32, 0x30, 'coffee bean'), + RgbInt8Color.rgbName(0x35, 0x50, 0x48, 'trekking green'), + RgbInt8Color.rgbName(0x33, 0x57, 0x49, 'hunter green'), + RgbInt8Color.rgbName(0x3c, 0x4e, 0x47, 'jungle green'), + RgbInt8Color.rgbName(0x39, 0x50, 0x5c, 'stargazer'), + RgbInt8Color.rgbName(0x32, 0x57, 0x5d, 'mediterranea'), + RgbInt8Color.rgbName(0x33, 0x56, 0x5e, 'balsam'), + RgbInt8Color.rgbName(0x38, 0x4c, 0x67, 'ensign blue'), + RgbInt8Color.rgbName(0x3a, 0x5c, 0x6e, 'mallard blue'), + RgbInt8Color.rgbName(0x37, 0x5d, 0x8a, 'federal blue'), + RgbInt8Color.rgbName(0x38, 0x5d, 0x8d, 'bright cobalt'), + RgbInt8Color.rgbName(0x3a, 0x5b, 0x8d, 'delft'), + RgbInt8Color.rgbName(0x4e, 0x63, 0x2c, 'twist of lime'), + RgbInt8Color.rgbName(0x35, 0x63, 0x7c, 'bluesteel'), + RgbInt8Color.rgbName(0x38, 0x61, 0x92, 'star sapphire'), + RgbInt8Color.rgbName(0x47, 0x6a, 0x30, 'treetop'), + RgbInt8Color.rgbName(0x3a, 0x72, 0x5f, 'fir'), + RgbInt8Color.rgbName(0x3b, 0x71, 0x5b, 'foliage green'), + RgbInt8Color.rgbName(0x36, 0x71, 0x6f, 'deep jungle'), + RgbInt8Color.rgbName(0x3a, 0x79, 0x5e, 'pine green'), + RgbInt8Color.rgbName(0x35, 0x7b, 0x91, 'larkspur'), + RgbInt8Color.rgbName(0x3c, 0x82, 0x4e, 'medium green'), + RgbInt8Color.rgbName(0x37, 0x86, 0x61, 'leprechaun'), + RgbInt8Color.rgbName(0x36, 0x86, 0xa0, 'blue moon'), + RgbInt8Color.rgbName(0x37, 0x91, 0x90, 'latigo bay'), + RgbInt8Color.rgbName(0x56, 0xcb, 0xb3, 'bermuda'), + RgbInt8Color.rgbName(0x5a, 0xd0, 0xba, 'cockatoo'), + RgbInt8Color.rgbName(0x58, 0xc9, 0xd4, 'blue radiance'), + RgbInt8Color.rgbName(0x69, 0xff, 0x47, 'green gecko'), + RgbInt8Color.rgbName(0x3e, 0x28, 0x5c, 'violet indigo'), + RgbInt8Color.rgbName(0x46, 0x26, 0x39, 'potent purple'), + RgbInt8Color.rgbName(0x3b, 0x30, 0x2f, 'black coffee'), + RgbInt8Color.rgbName(0x3f, 0x2a, 0x47, 'blackberry cordial'), + RgbInt8Color.rgbName(0x46, 0x29, 0x5a, 'acai'), + RgbInt8Color.rgbName(0x35, 0x36, 0x35, 'raven'), + RgbInt8Color.rgbName(0x3a, 0x36, 0x3b, 'obsidian'), + RgbInt8Color.rgbName(0x3d, 0x32, 0x49, 'mysterioso'), + RgbInt8Color.rgbName(0x3f, 0x31, 0x4f, 'gothic grape'), + RgbInt8Color.rgbName(0x3a, 0x39, 0x5f, 'blue ribbon'), + RgbInt8Color.rgbName(0x3b, 0x3a, 0x36, 'peat'), + RgbInt8Color.rgbName(0x3b, 0x3b, 0x48, 'graphite'), + RgbInt8Color.rgbName(0x40, 0x3f, 0x6f, 'navy blue'), + RgbInt8Color.rgbName(0x44, 0x3f, 0x6f, 'deep wisteria'), + RgbInt8Color.rgbName(0x41, 0x48, 0x32, 'rifle green'), + RgbInt8Color.rgbName(0x41, 0x38, 0x2e, 'wren'), + RgbInt8Color.rgbName(0x40, 0x34, 0x2b, 'demitasse'), + RgbInt8Color.rgbName(0x42, 0x45, 0x3b, 'forest night'), + RgbInt8Color.rgbName(0x3c, 0x43, 0x4e, 'india ink'), + RgbInt8Color.rgbName(0x40, 0x44, 0x66, 'deep cobalt'), + RgbInt8Color.rgbName(0x3f, 0x35, 0x2f, 'delicioso'), + RgbInt8Color.rgbName(0x44, 0x37, 0x31, 'chocolate brown'), + RgbInt8Color.rgbName(0x43, 0x33, 0x31, 'java'), + RgbInt8Color.rgbName(0x41, 0x4f, 0x3c, 'black forest'), + RgbInt8Color.rgbName(0x3e, 0x4f, 0x5c, 'orion blue'), + RgbInt8Color.rgbName(0x3f, 0x52, 0x77, 'true navy'), + RgbInt8Color.rgbName(0x3c, 0x58, 0x6b, 'indian teal'), + RgbInt8Color.rgbName(0x3b, 0x5f, 0x78, 'blue ashes'), + RgbInt8Color.rgbName(0x39, 0x5e, 0x7a, 'stellar'), + RgbInt8Color.rgbName(0x41, 0x59, 0x7e, 'bijou blue'), + RgbInt8Color.rgbName(0x49, 0x5e, 0x35, 'garden green'), + RgbInt8Color.rgbName(0x46, 0x48, 0x3c, 'deep depths'), + RgbInt8Color.rgbName(0x3e, 0x62, 0x57, 'smoke pine'), + RgbInt8Color.rgbName(0x3d, 0x64, 0x72, 'tapestry'), + RgbInt8Color.rgbName(0x3d, 0x81, 0xac, 'cendre blue'), + RgbInt8Color.rgbName(0x3d, 0x72, 0x45, 'juniper'), + RgbInt8Color.rgbName(0x43, 0x6f, 0x4d, 'fairway'), + RgbInt8Color.rgbName(0x44, 0x7b, 0x8c, 'storm blue'), + RgbInt8Color.rgbName(0x42, 0x7d, 0x6d, 'bottle green'), + RgbInt8Color.rgbName(0x41, 0x86, 0x89, 'teal'), + RgbInt8Color.rgbName(0x40, 0x9c, 0x6a, 'greenbriar'), + RgbInt8Color.rgbName(0x3d, 0x9f, 0x88, 'marine green'), + RgbInt8Color.rgbName(0x52, 0xa3, 0xd6, 'bonnie blue'), + RgbInt8Color.rgbName(0x71, 0xcc, 0x51, 'green flash'), + RgbInt8Color.rgbName(0x60, 0xb8, 0x92, 'jade cream'), + RgbInt8Color.rgbName(0x64, 0xba, 0x92, 'katydid'), + RgbInt8Color.rgbName(0x61, 0xc2, 0xa2, 'spearmint'), + RgbInt8Color.rgbName(0x47, 0x24, 0x3b, 'winter bloom'), + RgbInt8Color.rgbName(0x43, 0x2c, 0x47, 'purple pennant'), + RgbInt8Color.rgbName(0x4d, 0x23, 0x3d, 'pickled beet'), + RgbInt8Color.rgbName(0x69, 0x44, 0x8e, 'electric purple'), + RgbInt8Color.rgbName(0x48, 0x2d, 0x54, 'crown jewel'), + RgbInt8Color.rgbName(0x41, 0x35, 0x4d, 'purple velvet'), + RgbInt8Color.rgbName(0x43, 0x34, 0x55, 'grape'), + RgbInt8Color.rgbName(0x41, 0x34, 0x33, 'seal brown'), + RgbInt8Color.rgbName(0x47, 0x3a, 0x2f, 'slate black'), + RgbInt8Color.rgbName(0x3c, 0x3e, 0x38, 'black ink'), + RgbInt8Color.rgbName(0x41, 0x3d, 0x38, 'black olive'), + RgbInt8Color.rgbName(0x40, 0x39, 0x35, 'turkish coffee'), + RgbInt8Color.rgbName(0x3f, 0x39, 0x49, 'nightshade'), + RgbInt8Color.rgbName(0x3f, 0x3e, 0x47, 'nine iron'), + RgbInt8Color.rgbName(0x3d, 0x42, 0x49, 'ebony'), + RgbInt8Color.rgbName(0x48, 0x3d, 0x58, 'purple plumeria'), + RgbInt8Color.rgbName(0x41, 0x42, 0x56, 'graystone'), + RgbInt8Color.rgbName(0x49, 0x3c, 0x62, 'mulberry purple'), + RgbInt8Color.rgbName(0x47, 0x45, 0x7a, 'orient blue'), + RgbInt8Color.rgbName(0x42, 0x41, 0x3e, 'beluga'), + RgbInt8Color.rgbName(0x43, 0x44, 0x47, 'asphalt'), + RgbInt8Color.rgbName(0x43, 0x44, 0x52, 'odyssey gray'), + RgbInt8Color.rgbName(0x43, 0x48, 0x54, 'ombre blue'), + RgbInt8Color.rgbName(0x46, 0x4b, 0x65, 'crown blue'), + RgbInt8Color.rgbName(0x6e, 0x81, 0xbe, 'persian jewel'), + RgbInt8Color.rgbName(0x4a, 0x53, 0x35, 'chive'), + RgbInt8Color.rgbName(0x4a, 0x34, 0x2e, 'chicory coffee'), + RgbInt8Color.rgbName(0x44, 0x49, 0x40, 'climbing ivy'), + RgbInt8Color.rgbName(0x43, 0x54, 0x4b, 'cilantro'), + RgbInt8Color.rgbName(0x46, 0x4e, 0x4d, 'urban chic'), + RgbInt8Color.rgbName(0x46, 0x51, 0x5a, 'dark slate'), + RgbInt8Color.rgbName(0x49, 0x51, 0x6d, 'blue indigo'), + RgbInt8Color.rgbName(0x40, 0x5e, 0x5c, 'mallard green'), + RgbInt8Color.rgbName(0x40, 0x5d, 0x73, 'real teal'), + RgbInt8Color.rgbName(0x42, 0x69, 0x72, 'hydro'), + RgbInt8Color.rgbName(0x4a, 0x63, 0x8d, 'dutch blue'), + RgbInt8Color.rgbName(0x4e, 0x81, 0xad, 'parisian blue'), + RgbInt8Color.rgbName(0x4b, 0x6d, 0x41, 'artichoke green'), + RgbInt8Color.rgbName(0x48, 0x7d, 0x49, 'mint green'), + RgbInt8Color.rgbName(0x49, 0x7d, 0x76, 'deep sea'), + RgbInt8Color.rgbName(0x4c, 0xa5, 0xc7, 'norse blue'), + RgbInt8Color.rgbName(0x4c, 0x9c, 0x95, 'sea blue'), + RgbInt8Color.rgbName(0x4f, 0x9e, 0x81, 'winter green'), + RgbInt8Color.rgbName(0x4d, 0x9e, 0x9a, 'lagoon'), + RgbInt8Color.rgbName(0x4e, 0xa4, 0xba, 'maui blue'), + RgbInt8Color.rgbName(0x6d, 0xce, 0x87, 'spring bouquet'), + RgbInt8Color.rgbName(0x6b, 0xcd, 0x9c, 'spring bud'), + RgbInt8Color.rgbName(0x6e, 0xd1, 0xb4, 'opal'), + RgbInt8Color.rgbName(0x7e, 0xc8, 0x45, 'jasmine green'), + RgbInt8Color.rgbName(0x7a, 0xab, 0x55, 'kiwi'), + RgbInt8Color.rgbName(0x6c, 0xc0, 0xba, 'pool blue'), + RgbInt8Color.rgbName(0x49, 0x2a, 0x34, 'winetasting'), + RgbInt8Color.rgbName(0x58, 0x21, 0x47, 'dark purple'), + RgbInt8Color.rgbName(0x4c, 0x2d, 0x4c, 'shadow purple'), + RgbInt8Color.rgbName(0x50, 0x31, 0x30, 'bitter chocolate'), + RgbInt8Color.rgbName(0x50, 0x2b, 0x33, 'port royale'), + RgbInt8Color.rgbName(0x4d, 0x32, 0x46, 'blackberry wine'), + RgbInt8Color.rgbName(0x51, 0x30, 0x4e, 'plum purple'), + RgbInt8Color.rgbName(0x4f, 0x2d, 0x54, 'grape royale'), + RgbInt8Color.rgbName(0x54, 0x2c, 0x5d, 'imperial purple'), + RgbInt8Color.rgbName(0x47, 0x34, 0x42, 'plum perfect'), + RgbInt8Color.rgbName(0x4f, 0x34, 0x66, 'petunia'), + RgbInt8Color.rgbName(0x56, 0x34, 0x74, 'tillandsia purple'), + RgbInt8Color.rgbName(0x4f, 0x38, 0x72, 'heliotrope'), + RgbInt8Color.rgbName(0x58, 0x45, 0x87, 'prism violet'), + RgbInt8Color.rgbName(0x43, 0x39, 0x37, 'mulch'), + RgbInt8Color.rgbName(0x49, 0x33, 0x38, 'fudge'), + RgbInt8Color.rgbName(0x4c, 0x39, 0x57, 'indigo'), + RgbInt8Color.rgbName(0x5a, 0x4e, 0x8f, 'purple corallites'), + RgbInt8Color.rgbName(0x43, 0x3d, 0x42, 'shale'), + RgbInt8Color.rgbName(0x4b, 0x3b, 0x4f, 'sweet grape'), + RgbInt8Color.rgbName(0x48, 0x4a, 0x72, 'skipper blue'), + RgbInt8Color.rgbName(0x48, 0x46, 0x4a, 'forged iron'), + RgbInt8Color.rgbName(0x46, 0x44, 0x4c, 'periscope'), + RgbInt8Color.rgbName(0x49, 0x49, 0x4d, 'gray pinstripe'), + RgbInt8Color.rgbName(0x46, 0x4b, 0x4e, 'dark shadow'), + RgbInt8Color.rgbName(0x5a, 0x5b, 0x9f, 'blue iris'), + RgbInt8Color.rgbName(0x58, 0x60, 0xa2, 'violet storm'), + RgbInt8Color.rgbName(0x54, 0x4b, 0x32, 'beech'), + RgbInt8Color.rgbName(0x4d, 0x4b, 0x50, 'blackened pearl'), + RgbInt8Color.rgbName(0x4a, 0x55, 0x6b, 'vintage indigo'), + RgbInt8Color.rgbName(0x63, 0x8c, 0xc7, 'provence'), + RgbInt8Color.rgbName(0x65, 0x85, 0xc1, 'granada sky'), + RgbInt8Color.rgbName(0x5a, 0x46, 0x32, 'desert palm'), + RgbInt8Color.rgbName(0x59, 0x5f, 0x34, 'pesto'), + RgbInt8Color.rgbName(0x54, 0x5a, 0x3e, 'cypress'), + RgbInt8Color.rgbName(0x51, 0x5a, 0x4e, 'thyme'), + RgbInt8Color.rgbName(0x4b, 0x5b, 0x6e, 'bering sea'), + RgbInt8Color.rgbName(0x4d, 0x58, 0x7a, 'gray blue'), + RgbInt8Color.rgbName(0x4d, 0x5d, 0x83, 'coastal fjord'), + RgbInt8Color.rgbName(0x50, 0x5c, 0x84, 'marlin'), + RgbInt8Color.rgbName(0x52, 0x5f, 0x48, 'bronze green'), + RgbInt8Color.rgbName(0x48, 0x6b, 0x67, 'blue spruce'), + RgbInt8Color.rgbName(0x4a, 0x6b, 0x6c, 'sea pine'), + RgbInt8Color.rgbName(0x4e, 0x64, 0x82, 'blue horizon'), + RgbInt8Color.rgbName(0x4c, 0x6a, 0x92, 'riverside'), + RgbInt8Color.rgbName(0x52, 0x70, 0x3f, 'willow bough'), + RgbInt8Color.rgbName(0x53, 0x71, 0x3d, 'cactus'), + RgbInt8Color.rgbName(0x4f, 0x6d, 0x5a, 'myrtle'), + RgbInt8Color.rgbName(0x4e, 0x6e, 0x81, 'aegean blue'), + RgbInt8Color.rgbName(0x50, 0x72, 0xa7, 'blue yonder'), + RgbInt8Color.rgbName(0x4c, 0x7e, 0x86, 'brittany blue'), + RgbInt8Color.rgbName(0x52, 0x85, 0x67, 'deep grass green'), + RgbInt8Color.rgbName(0x50, 0x81, 0x6d, 'frosty spruce'), + RgbInt8Color.rgbName(0x54, 0x80, 0xac, 'pacific coast'), + RgbInt8Color.rgbName(0x4e, 0x90, 0x93, 'bristol blue'), + RgbInt8Color.rgbName(0x57, 0x8c, 0xa9, 'niagara'), + RgbInt8Color.rgbName(0x54, 0x9b, 0xa2, 'porcelain'), + RgbInt8Color.rgbName(0x54, 0x9b, 0xa0, 'meadowbrook'), + RgbInt8Color.rgbName(0x58, 0xaf, 0xc9, 'blue mist'), + RgbInt8Color.rgbName(0x58, 0x9f, 0x7e, 'green spruce'), + RgbInt8Color.rgbName(0x59, 0x9f, 0x99, 'agate green'), + RgbInt8Color.rgbName(0x53, 0xb0, 0xae, 'blue turquoise'), + RgbInt8Color.rgbName(0x5d, 0xab, 0xd5, 'ethereal blue'), + RgbInt8Color.rgbName(0x79, 0xd3, 0x81, 'summer green'), + RgbInt8Color.rgbName(0x73, 0xb8, 0x81, 'absinthe green'), + RgbInt8Color.rgbName(0x88, 0xb0, 0x4b, 'greenery'), + RgbInt8Color.rgbName(0x58, 0x2b, 0x36, 'windsor wine'), + RgbInt8Color.rgbName(0x51, 0x32, 0x35, 'decadent chocolate'), + RgbInt8Color.rgbName(0x53, 0x2d, 0x3b, 'fig'), + RgbInt8Color.rgbName(0x61, 0x22, 0x4a, 'plum caspia'), + RgbInt8Color.rgbName(0x53, 0x31, 0x46, 'italian plum'), + RgbInt8Color.rgbName(0x50, 0x31, 0x4c, 'deep purple'), + RgbInt8Color.rgbName(0x64, 0x24, 0x2e, 'cabernet'), + RgbInt8Color.rgbName(0x5c, 0x29, 0x35, 'zinfandel'), + RgbInt8Color.rgbName(0x5c, 0x2c, 0x35, 'tawny port'), + RgbInt8Color.rgbName(0x5a, 0x2f, 0x43, 'grape wine'), + RgbInt8Color.rgbName(0x5a, 0x31, 0x5d, 'plum'), + RgbInt8Color.rgbName(0x4f, 0x3a, 0x3c, 'puce'), + RgbInt8Color.rgbName(0x54, 0x35, 0x3b, 'sassafras'), + RgbInt8Color.rgbName(0x60, 0x3f, 0x83, 'royal purple'), + RgbInt8Color.rgbName(0x54, 0x39, 0x2d, 'potting soil'), + RgbInt8Color.rgbName(0x56, 0x35, 0x2d, 'chocolate fondant'), + RgbInt8Color.rgbName(0x58, 0x34, 0x32, 'rum raisin'), + RgbInt8Color.rgbName(0x55, 0x3b, 0x50, 'hortensia'), + RgbInt8Color.rgbName(0x50, 0x3b, 0x53, 'navy cosmos'), + RgbInt8Color.rgbName(0x59, 0x37, 0x61, 'majesty'), + RgbInt8Color.rgbName(0x54, 0x42, 0x75, 'gentian violet'), + RgbInt8Color.rgbName(0x54, 0x3b, 0x35, 'shaved chocolate'), + RgbInt8Color.rgbName(0x4f, 0x3f, 0x3b, 'bracken'), + RgbInt8Color.rgbName(0x52, 0x3f, 0x3b, 'shopping bag'), + RgbInt8Color.rgbName(0x5a, 0x39, 0x5b, 'wineberry'), + RgbInt8Color.rgbName(0x56, 0x45, 0x6b, 'purple reign'), + RgbInt8Color.rgbName(0x59, 0x45, 0x77, 'imperial palace'), + RgbInt8Color.rgbName(0x57, 0x43, 0x33, 'dark earth'), + RgbInt8Color.rgbName(0x51, 0x42, 0x39, '2r15 sp'), + RgbInt8Color.rgbName(0x55, 0x43, 0x3c, 'chestnut'), + RgbInt8Color.rgbName(0x53, 0x43, 0x3a, '3r15 sp'), + RgbInt8Color.rgbName(0x4d, 0x4b, 0x4f, 'magnet'), + RgbInt8Color.rgbName(0x5a, 0x47, 0x69, 'loganberry'), + RgbInt8Color.rgbName(0x5f, 0x4b, 0x8b, 'ultra violet'), + RgbInt8Color.rgbName(0x65, 0x7b, 0xb8, 'wedgewood'), + RgbInt8Color.rgbName(0x57, 0x4d, 0x35, 'dark olive'), + RgbInt8Color.rgbName(0x53, 0x50, 0x40, 'olive night'), + RgbInt8Color.rgbName(0x52, 0x4d, 0x40, 'tarmac'), + RgbInt8Color.rgbName(0x54, 0x51, 0x44, 'grape leaf'), + RgbInt8Color.rgbName(0x52, 0x4d, 0x50, 'pavement'), + RgbInt8Color.rgbName(0x4e, 0x50, 0x55, 'iron gate'), + RgbInt8Color.rgbName(0x4e, 0x54, 0x5b, 'turbulence'), + RgbInt8Color.rgbName(0x4e, 0x53, 0x68, 'nightshadow blue'), + RgbInt8Color.rgbName(0x7a, 0x83, 0xbf, 'deep periwinkle'), + RgbInt8Color.rgbName(0x63, 0x86, 0xbf, 'blue bonnet'), + RgbInt8Color.rgbName(0x5b, 0x5a, 0x41, 'winter moss'), + RgbInt8Color.rgbName(0x55, 0x58, 0x4c, 'beetle'), + RgbInt8Color.rgbName(0x58, 0x57, 0x48, 'ivy green'), + RgbInt8Color.rgbName(0x5b, 0x60, 0x9e, 'iris bloom'), + RgbInt8Color.rgbName(0x5e, 0x67, 0x37, 'cedar green'), + RgbInt8Color.rgbName(0x56, 0x6b, 0x43, 'dill'), + RgbInt8Color.rgbName(0x53, 0x65, 0x5e, 'dark forest'), + RgbInt8Color.rgbName(0x53, 0x66, 0x5c, 'duck green'), + RgbInt8Color.rgbName(0x4e, 0x68, 0x66, 'silver pine'), + RgbInt8Color.rgbName(0x57, 0x66, 0x64, 'balsam green'), + RgbInt8Color.rgbName(0x58, 0x64, 0x6d, 'stormy weather'), + RgbInt8Color.rgbName(0x54, 0x64, 0x77, 'china blue'), + RgbInt8Color.rgbName(0x51, 0x6b, 0x84, 'copen blue'), + RgbInt8Color.rgbName(0x50, 0x68, 0x86, 'moonlight blue'), + RgbInt8Color.rgbName(0x5a, 0x72, 0x47, 'kale'), + RgbInt8Color.rgbName(0x54, 0x70, 0x53, 'elm green'), + RgbInt8Color.rgbName(0x53, 0x6d, 0x70, 'north atlantic'), + RgbInt8Color.rgbName(0x51, 0x74, 0x70, 'sagebrush green'), + RgbInt8Color.rgbName(0x58, 0x6e, 0x7d, 'blue mirage'), + RgbInt8Color.rgbName(0x55, 0x70, 0x88, 'captain\'s blue'), + RgbInt8Color.rgbName(0x57, 0x72, 0x84, 'bluestone'), + RgbInt8Color.rgbName(0x53, 0x71, 0x8f, 'coronet blue'), + RgbInt8Color.rgbName(0x56, 0x77, 0xa6, 'riviera'), + RgbInt8Color.rgbName(0x61, 0x8b, 0xb9, 'silver lake blue'), + RgbInt8Color.rgbName(0x63, 0x8d, 0xb7, 'lichen blue'), + RgbInt8Color.rgbName(0x5b, 0x77, 0x63, 'dark ivy'), + RgbInt8Color.rgbName(0x57, 0x7c, 0x97, 'blue heaven'), + RgbInt8Color.rgbName(0x5a, 0x78, 0x9a, 'quiet harbor'), + RgbInt8Color.rgbName(0x5f, 0x8d, 0x9f, 'adriatic blue'), + RgbInt8Color.rgbName(0x5d, 0x96, 0xbc, 'heritage blue'), + RgbInt8Color.rgbName(0x60, 0x9d, 0xb3, 'delphinium blue'), + RgbInt8Color.rgbName(0x5c, 0xac, 0xce, 'blue grotto'), + RgbInt8Color.rgbName(0x60, 0xb1, 0xd3, 'crystal seas'), + RgbInt8Color.rgbName(0x63, 0xa2, 0xb0, 'aqua'), + RgbInt8Color.rgbName(0x6c, 0xa0, 0xdc, 'little boy blue'), + RgbInt8Color.rgbName(0x63, 0x8e, 0x4e, 'fluorite green'), + RgbInt8Color.rgbName(0x61, 0xaa, 0xb1, 'aquarelle'), + RgbInt8Color.rgbName(0x75, 0xa1, 0x4f, 'foliage'), + RgbInt8Color.rgbName(0x7b, 0xb6, 0x61, 'bud green'), + RgbInt8Color.rgbName(0x7b, 0xb6, 0x65, 'grass green'), + RgbInt8Color.rgbName(0x8f, 0xb3, 0x4c, 'parrot green'), + RgbInt8Color.rgbName(0x81, 0xbe, 0xa1, 'neptune green'), + RgbInt8Color.rgbName(0x7d, 0xcf, 0xb6, 'beveled glass'), + RgbInt8Color.rgbName(0x7e, 0xd9, 0xc3, 'ice green'), + RgbInt8Color.rgbName(0x81, 0xd7, 0xd3, 'aruba blue'), + RgbInt8Color.rgbName(0x6a, 0x28, 0x2c, 'syrah'), + RgbInt8Color.rgbName(0x58, 0x36, 0x3d, 'vineyard wine'), + RgbInt8Color.rgbName(0x6c, 0x28, 0x31, 'pomegranate'), + RgbInt8Color.rgbName(0x69, 0x27, 0x46, 'purple potion'), + RgbInt8Color.rgbName(0x6b, 0x26, 0x4b, 'magenta purple'), + RgbInt8Color.rgbName(0x6a, 0x2e, 0x2a, 'fired brick'), + RgbInt8Color.rgbName(0x61, 0x2e, 0x35, 'chocolate truffle'), + RgbInt8Color.rgbName(0x63, 0x2a, 0x60, 'charisma'), + RgbInt8Color.rgbName(0x62, 0x2e, 0x5a, 'gloxinia'), + RgbInt8Color.rgbName(0x68, 0x29, 0x61, 'grape juice'), + RgbInt8Color.rgbName(0x66, 0x32, 0x71, 'purple magic'), + RgbInt8Color.rgbName(0x6a, 0x39, 0x7b, 'amaranth purple'), + RgbInt8Color.rgbName(0x54, 0x3b, 0x39, 'deep mahogany'), + RgbInt8Color.rgbName(0x5b, 0x36, 0x44, 'mauve wine'), + RgbInt8Color.rgbName(0x60, 0x35, 0x35, 'andorra'), + RgbInt8Color.rgbName(0x52, 0x41, 0x44, 'raisin'), + RgbInt8Color.rgbName(0x5c, 0x3a, 0x4d, 'prune purple'), + RgbInt8Color.rgbName(0x56, 0x42, 0x35, 'carafe'), + RgbInt8Color.rgbName(0x5a, 0x3e, 0x36, 'rocky road'), + RgbInt8Color.rgbName(0x59, 0x3c, 0x39, 'brown stone'), + RgbInt8Color.rgbName(0x5c, 0x3e, 0x35, 'chocolate lab'), + RgbInt8Color.rgbName(0x54, 0x43, 0x38, '1r15 sp'), + RgbInt8Color.rgbName(0x54, 0x42, 0x39, '4r15 sp'), + RgbInt8Color.rgbName(0x58, 0x42, 0x3f, 'french roast'), + RgbInt8Color.rgbName(0x59, 0x42, 0x49, 'huckleberry'), + RgbInt8Color.rgbName(0x5d, 0x3c, 0x43, 'catawba grape'), + RgbInt8Color.rgbName(0x60, 0x3e, 0x4f, 'prune'), + RgbInt8Color.rgbName(0x62, 0x40, 0x76, 'plum jam'), + RgbInt8Color.rgbName(0x65, 0x3d, 0x7c, 'pansy'), + RgbInt8Color.rgbName(0x6d, 0x56, 0x98, 'passion flower'), + RgbInt8Color.rgbName(0x88, 0x70, 0xb9, 'purple hebe'), + RgbInt8Color.rgbName(0x5d, 0x42, 0x36, 'fondue fudge'), + RgbInt8Color.rgbName(0x5e, 0x47, 0x3c, 'pinecone'), + RgbInt8Color.rgbName(0x5b, 0x48, 0x5c, 'vintage violet'), + RgbInt8Color.rgbName(0x5c, 0x51, 0x6d, 'mulled grape'), + RgbInt8Color.rgbName(0x63, 0x48, 0x78, 'picasso lily'), + RgbInt8Color.rgbName(0x65, 0x56, 0x2a, 'fir green'), + RgbInt8Color.rgbName(0x5b, 0x51, 0x49, 'major brown'), + RgbInt8Color.rgbName(0x5c, 0x52, 0x44, 'canteen'), + RgbInt8Color.rgbName(0x58, 0x53, 0x58, 'rabbit'), + RgbInt8Color.rgbName(0x5f, 0x4e, 0x72, 'mystical'), + RgbInt8Color.rgbName(0x67, 0x62, 0x32, 'avocado'), + RgbInt8Color.rgbName(0x63, 0x56, 0x3b, 'military olive'), + RgbInt8Color.rgbName(0x5e, 0x57, 0x49, 'sea turtle'), + RgbInt8Color.rgbName(0x5c, 0x5d, 0x5b, 'gunmetal'), + RgbInt8Color.rgbName(0x5d, 0x5a, 0x59, 'dark gull gray'), + RgbInt8Color.rgbName(0x5c, 0x56, 0x58, 'eiffel tower'), + RgbInt8Color.rgbName(0x5c, 0x59, 0x5b, 'plum kitten'), + RgbInt8Color.rgbName(0x59, 0x5e, 0x62, 'castlerock'), + RgbInt8Color.rgbName(0x5e, 0x5b, 0x60, 'tornado'), + RgbInt8Color.rgbName(0x58, 0x5e, 0x6f, 'grisaille'), + RgbInt8Color.rgbName(0x65, 0x66, 0x3f, 'mayfly'), + RgbInt8Color.rgbName(0x5c, 0x63, 0x4f, 'four leaf clover'), + RgbInt8Color.rgbName(0x65, 0x63, 0x44, 'capulet olive'), + RgbInt8Color.rgbName(0x60, 0x62, 0x63, 'pewter'), + RgbInt8Color.rgbName(0x5c, 0x64, 0x76, 'folkstone gray'), + RgbInt8Color.rgbName(0x60, 0x68, 0x8d, 'velvet morning'), + RgbInt8Color.rgbName(0x65, 0x63, 0x98, 'corsican blue'), + RgbInt8Color.rgbName(0x63, 0x65, 0x9e, 'dusted peri'), + RgbInt8Color.rgbName(0x6a, 0x6f, 0x34, 'calla green'), + RgbInt8Color.rgbName(0x58, 0x71, 0x4d, 'vineyard green'), + RgbInt8Color.rgbName(0x5c, 0x6d, 0x61, 'laurel wreath'), + RgbInt8Color.rgbName(0x5b, 0x6f, 0x74, 'goblin blue'), + RgbInt8Color.rgbName(0x65, 0x6d, 0x6d, 'sedona sage'), + RgbInt8Color.rgbName(0x64, 0x6f, 0x9b, 'bleached denim'), + RgbInt8Color.rgbName(0x5b, 0x79, 0x61, 'comfrey'), + RgbInt8Color.rgbName(0x5c, 0x79, 0x8e, 'provincial blue'), + RgbInt8Color.rgbName(0x61, 0x76, 0x9d, 'colony blue'), + RgbInt8Color.rgbName(0x61, 0x84, 0x5b, 'english ivy'), + RgbInt8Color.rgbName(0x66, 0x8d, 0x4e, 'forest green'), + RgbInt8Color.rgbName(0x61, 0x91, 0x87, 'beryl green'), + RgbInt8Color.rgbName(0x65, 0x8c, 0x88, 'oil blue'), + RgbInt8Color.rgbName(0x63, 0x88, 0x8e, 'arctic'), + RgbInt8Color.rgbName(0x6d, 0xa9, 0xd2, 'alaskan blue'), + RgbInt8Color.rgbName(0x6d, 0x96, 0x54, 'meadow green'), + RgbInt8Color.rgbName(0x64, 0x92, 0x66, 'stone green'), + RgbInt8Color.rgbName(0x67, 0x98, 0x84, 'malachite green'), + RgbInt8Color.rgbName(0x64, 0x9b, 0x9e, 'dusty turquoise'), + RgbInt8Color.rgbName(0x69, 0x9e, 0x6d, 'peppermint'), + RgbInt8Color.rgbName(0x6c, 0x9e, 0xaa, 'reef waters'), + RgbInt8Color.rgbName(0x6b, 0xaa, 0xae, 'aqua sea'), + RgbInt8Color.rgbName(0x6f, 0xac, 0xb6, 'marine blue'), + RgbInt8Color.rgbName(0x88, 0xdc, 0xbe, 'cabbage'), + RgbInt8Color.rgbName(0x9f, 0xc1, 0x31, 'lime green'), + RgbInt8Color.rgbName(0x9b, 0xb5, 0x3e, 'macaw green'), + RgbInt8Color.rgbName(0x8b, 0xc2, 0x8c, 'greengage'), + RgbInt8Color.rgbName(0x66, 0x35, 0x2b, 'cherry mahogany'), + RgbInt8Color.rgbName(0x75, 0x23, 0x29, 'sun-dried tomato'), + RgbInt8Color.rgbName(0x72, 0x26, 0x2c, 'merlot'), + RgbInt8Color.rgbName(0x7d, 0x20, 0x27, 'red dahlia'), + RgbInt8Color.rgbName(0x77, 0x21, 0x2e, 'biking red'), + RgbInt8Color.rgbName(0x77, 0x20, 0x2f, 'rhubarb'), + RgbInt8Color.rgbName(0x60, 0x37, 0x3d, 'red mahogany'), + RgbInt8Color.rgbName(0x64, 0x31, 0x3e, 'burgundy'), + RgbInt8Color.rgbName(0x69, 0x2d, 0x5d, 'phlox'), + RgbInt8Color.rgbName(0x91, 0x64, 0xab, 'amethyst orchid'), + RgbInt8Color.rgbName(0x6a, 0x33, 0x31, 'madder brown'), + RgbInt8Color.rgbName(0x66, 0x33, 0x36, 'port'), + RgbInt8Color.rgbName(0x6f, 0x46, 0x85, 'purple sapphire'), + RgbInt8Color.rgbName(0x78, 0x43, 0x84, 'bright violet'), + RgbInt8Color.rgbName(0x70, 0x48, 0x22, 'monk\'s robe'), + RgbInt8Color.rgbName(0x6a, 0x32, 0x3f, 'cordovan'), + RgbInt8Color.rgbName(0x5f, 0x43, 0x4f, 'eggplant'), + RgbInt8Color.rgbName(0x64, 0x3a, 0x4c, 'crushed violets'), + RgbInt8Color.rgbName(0x6b, 0x34, 0x53, 'amaranth'), + RgbInt8Color.rgbName(0x77, 0x4d, 0x8e, 'royal lilac'), + RgbInt8Color.rgbName(0x63, 0x3f, 0x33, 'cappuccino'), + RgbInt8Color.rgbName(0x63, 0x42, 0x35, 'tiramisu'), + RgbInt8Color.rgbName(0x60, 0x41, 0x3a, 'brunette'), + RgbInt8Color.rgbName(0x68, 0x3b, 0x39, 'hot chocolate'), + RgbInt8Color.rgbName(0x63, 0x40, 0x3a, 'fudgesickle'), + RgbInt8Color.rgbName(0x68, 0x3d, 0x62, 'purple passion'), + RgbInt8Color.rgbName(0x77, 0x54, 0x96, 'deep lavender'), + RgbInt8Color.rgbName(0x68, 0x48, 0x32, 'emperador'), + RgbInt8Color.rgbName(0x5f, 0x4c, 0x40, 'rain drum'), + RgbInt8Color.rgbName(0x64, 0x4b, 0x3c, '1r14 sp'), + RgbInt8Color.rgbName(0x63, 0x4b, 0x3f, '2r14 sp'), + RgbInt8Color.rgbName(0x63, 0x48, 0x3e, '4r14 sp'), + RgbInt8Color.rgbName(0x67, 0x45, 0x50, 'plum wine'), + RgbInt8Color.rgbName(0x6f, 0x45, 0x6e, 'sunset purple'), + RgbInt8Color.rgbName(0x6a, 0x51, 0x3b, 'coffee liqueúr'), + RgbInt8Color.rgbName(0x66, 0x4d, 0x3b, 'bison'), + RgbInt8Color.rgbName(0x65, 0x53, 0x41, 'teak'), + RgbInt8Color.rgbName(0x5d, 0x53, 0x48, 'crocodile'), + RgbInt8Color.rgbName(0x65, 0x4d, 0x3e, '1y14 sp'), + RgbInt8Color.rgbName(0x6c, 0x4e, 0x79, 'patrician purple'), + RgbInt8Color.rgbName(0x5f, 0x5b, 0x4c, 'kalamata'), + RgbInt8Color.rgbName(0x67, 0x5e, 0x45, 'capers'), + RgbInt8Color.rgbName(0x68, 0x5a, 0x48, 'cub'), + RgbInt8Color.rgbName(0x68, 0x5a, 0x4e, 'chocolate chip'), + RgbInt8Color.rgbName(0x61, 0x5c, 0x60, 'volcanic glass'), + RgbInt8Color.rgbName(0x61, 0x5e, 0x5f, 'granite gray'), + RgbInt8Color.rgbName(0x68, 0x5a, 0x60, 'sparrow'), + RgbInt8Color.rgbName(0x61, 0x5d, 0x65, 'excalibur'), + RgbInt8Color.rgbName(0x62, 0x61, 0x7e, 'heron'), + RgbInt8Color.rgbName(0x66, 0x64, 0x8b, 'twilight purple'), + RgbInt8Color.rgbName(0x64, 0x60, 0x49, 'burnt olive'), + RgbInt8Color.rgbName(0x71, 0x64, 0x3e, 'lizard'), + RgbInt8Color.rgbName(0x6a, 0x6a, 0x45, 'olive branch'), + RgbInt8Color.rgbName(0x63, 0x5f, 0x4d, 'stone gray'), + RgbInt8Color.rgbName(0x64, 0x5d, 0x54, 'bungee cord'), + RgbInt8Color.rgbName(0x64, 0x63, 0x56, 'dusty olive'), + RgbInt8Color.rgbName(0x65, 0x64, 0x66, 'smoked pearl'), + RgbInt8Color.rgbName(0x66, 0x67, 0x66, 'gargoyle'), + RgbInt8Color.rgbName(0x64, 0x67, 0x62, 'castor gray'), + RgbInt8Color.rgbName(0x6a, 0x63, 0x6d, 'shark'), + RgbInt8Color.rgbName(0x66, 0x67, 0x6d, 'quiet shade'), + RgbInt8Color.rgbName(0x6a, 0x63, 0x78, 'cadet'), + RgbInt8Color.rgbName(0x6d, 0x66, 0x95, 'veronica'), + RgbInt8Color.rgbName(0x70, 0x7b, 0xb4, 'iolite'), + RgbInt8Color.rgbName(0x74, 0x6e, 0x46, 'olive drab'), + RgbInt8Color.rgbName(0x67, 0x6b, 0x57, 'deep lichen green'), + RgbInt8Color.rgbName(0x66, 0x6b, 0x54, 'olivine'), + RgbInt8Color.rgbName(0x6a, 0x6c, 0x70, 'steel gray'), + RgbInt8Color.rgbName(0x67, 0x72, 0x83, 'flint stone'), + RgbInt8Color.rgbName(0x69, 0x7a, 0x7e, 'trooper'), + RgbInt8Color.rgbName(0x6b, 0x7d, 0x98, 'infinity'), + RgbInt8Color.rgbName(0x73, 0x91, 0xc8, 'cornflower blue'), + RgbInt8Color.rgbName(0x70, 0x7c, 0x43, 'grasshopper'), + RgbInt8Color.rgbName(0x6e, 0x7f, 0x71, 'sea spray'), + RgbInt8Color.rgbName(0x6e, 0x86, 0x6f, 'hedge green'), + RgbInt8Color.rgbName(0x66, 0x84, 0x84, 'trellis'), + RgbInt8Color.rgbName(0x6e, 0x80, 0x82, 'stormy sea'), + RgbInt8Color.rgbName(0x66, 0x82, 0x9a, 'blue shadow'), + RgbInt8Color.rgbName(0x78, 0x99, 0xc8, 'della robbia blue'), + RgbInt8Color.rgbName(0x70, 0x93, 0x50, 'piquant green'), + RgbInt8Color.rgbName(0x6c, 0x8e, 0x68, 'turf green'), + RgbInt8Color.rgbName(0x70, 0x8c, 0x66, 'watercress'), + RgbInt8Color.rgbName(0x69, 0x8c, 0x69, 'kashmir'), + RgbInt8Color.rgbName(0x75, 0x8e, 0x77, 'loden frost'), + RgbInt8Color.rgbName(0x6a, 0x8b, 0x95, 'smoke blue'), + RgbInt8Color.rgbName(0x71, 0x8d, 0xb1, 'allure'), + RgbInt8Color.rgbName(0x6b, 0x91, 0x91, 'mineral blue'), + RgbInt8Color.rgbName(0x6f, 0xa2, 0x6b, 'shamrock'), + RgbInt8Color.rgbName(0x70, 0xa0, 0x72, 'jadesheen'), + RgbInt8Color.rgbName(0x70, 0xa3, 0x8d, 'crème de menthe'), + RgbInt8Color.rgbName(0x6d, 0xa2, 0x9e, 'canton'), + RgbInt8Color.rgbName(0x6d, 0xa2, 0xaf, 'stillwater'), + RgbInt8Color.rgbName(0x78, 0xbd, 0xd4, 'blue topaz'), + RgbInt8Color.rgbName(0x73, 0xa8, 0x9e, 'wasabi'), + RgbInt8Color.rgbName(0x74, 0xa9, 0xbd, 'milky blue'), + RgbInt8Color.rgbName(0x77, 0xac, 0xc7, 'air blue'), + RgbInt8Color.rgbName(0x77, 0xbe, 0xb1, 'cascade'), + RgbInt8Color.rgbName(0x91, 0xdc, 0xe8, 'tanager turquoise'), + RgbInt8Color.rgbName(0x95, 0xde, 0xe3, 'island paradise'), + RgbInt8Color.rgbName(0x85, 0xd0, 0xd1, 'aqua splash'), + RgbInt8Color.rgbName(0x6e, 0x36, 0x2c, 'smoked paprika'), + RgbInt8Color.rgbName(0x72, 0x2b, 0x3f, 'rhododendron'), + RgbInt8Color.rgbName(0x7a, 0x1f, 0x3d, 'beet red'), + RgbInt8Color.rgbName(0x9d, 0x36, 0x95, 'purple cactus flower'), + RgbInt8Color.rgbName(0x7c, 0x24, 0x39, 'rumba red'), + RgbInt8Color.rgbName(0x78, 0x2a, 0x39, 'tibetan red'), + RgbInt8Color.rgbName(0x7c, 0x29, 0x46, 'red plum'), + RgbInt8Color.rgbName(0x82, 0x32, 0x70, 'hollyhock'), + RgbInt8Color.rgbName(0x73, 0x36, 0x2a, 'brandy brown'), + RgbInt8Color.rgbName(0x77, 0x33, 0x76, 'sparkling grape'), + RgbInt8Color.rgbName(0x74, 0x33, 0x32, 'russet brown'), + RgbInt8Color.rgbName(0x70, 0x39, 0x3f, 'oxblood red'), + RgbInt8Color.rgbName(0x77, 0x33, 0x3b, 'ruby wine'), + RgbInt8Color.rgbName(0x6b, 0x41, 0x39, 'cinnamon'), + RgbInt8Color.rgbName(0x6e, 0x40, 0x3c, 'sable'), + RgbInt8Color.rgbName(0x75, 0x40, 0x6a, 'wood violet'), + RgbInt8Color.rgbName(0x6d, 0x47, 0x73, 'spiced plum'), + RgbInt8Color.rgbName(0x6e, 0x49, 0x3a, 'friar brown'), + RgbInt8Color.rgbName(0x75, 0x47, 0x34, 'tortoise shell'), + RgbInt8Color.rgbName(0x68, 0x4b, 0x40, 'mustang'), + RgbInt8Color.rgbName(0x66, 0x4c, 0x41, '3r14 sp'), + RgbInt8Color.rgbName(0x67, 0x56, 0x57, 'plum truffle'), + RgbInt8Color.rgbName(0x72, 0x4b, 0x66, 'berry conserve'), + RgbInt8Color.rgbName(0x73, 0x4d, 0x85, 'meadow violet'), + RgbInt8Color.rgbName(0x71, 0x51, 0x38, 'toffee'), + RgbInt8Color.rgbName(0x70, 0x4f, 0x37, 'dachshund'), + RgbInt8Color.rgbName(0x6b, 0x54, 0x3e, 'sepia'), + RgbInt8Color.rgbName(0x6f, 0x52, 0x41, 'partridge'), + RgbInt8Color.rgbName(0x6c, 0x50, 0x43, 'cocoa brown'), + RgbInt8Color.rgbName(0x6f, 0x50, 0x4f, 'marron'), + RgbInt8Color.rgbName(0x6c, 0x56, 0x56, 'peppercorn'), + RgbInt8Color.rgbName(0x6e, 0x58, 0x62, 'flint'), + RgbInt8Color.rgbName(0x6c, 0x57, 0x65, 'black plum'), + RgbInt8Color.rgbName(0x6f, 0x59, 0x65, 'ephemera'), + RgbInt8Color.rgbName(0x72, 0x56, 0x71, 'grape jam'), + RgbInt8Color.rgbName(0x6b, 0x58, 0x76, 'grape compote'), + RgbInt8Color.rgbName(0x6c, 0x59, 0x71, 'montana grape'), + RgbInt8Color.rgbName(0x75, 0x56, 0x8c, 'purple heart'), + RgbInt8Color.rgbName(0x7e, 0x6e, 0xac, 'dahlia purple'), + RgbInt8Color.rgbName(0x80, 0x5d, 0x24, 'tapenade'), + RgbInt8Color.rgbName(0x75, 0x5c, 0x3b, 'breen'), + RgbInt8Color.rgbName(0x68, 0x5c, 0x53, 'morel'), + RgbInt8Color.rgbName(0x73, 0x5b, 0x6a, 'arctic dusk'), + RgbInt8Color.rgbName(0x71, 0x64, 0x41, 'nutria'), + RgbInt8Color.rgbName(0x7a, 0x63, 0x32, 'plantation'), + RgbInt8Color.rgbName(0x7a, 0x64, 0x3f, 'butternut'), + RgbInt8Color.rgbName(0x71, 0x60, 0x47, 'kangaroo'), + RgbInt8Color.rgbName(0x71, 0x61, 0x51, 'shitake'), + RgbInt8Color.rgbName(0x6d, 0x62, 0x5b, 'falcon'), + RgbInt8Color.rgbName(0x6a, 0x6a, 0x6a, 'charcoal gray'), + RgbInt8Color.rgbName(0x71, 0x6a, 0x4d, 'martini olive'), + RgbInt8Color.rgbName(0x6e, 0x71, 0x53, 'loden green'), + RgbInt8Color.rgbName(0x6b, 0x71, 0x69, 'agave green'), + RgbInt8Color.rgbName(0x73, 0x70, 0x6f, 'brushed nickel'), + RgbInt8Color.rgbName(0x75, 0x6c, 0x7f, 'purple sage'), + RgbInt8Color.rgbName(0x71, 0x73, 0x88, 'blue granite'), + RgbInt8Color.rgbName(0x79, 0x7b, 0x3a, 'guacamole'), + RgbInt8Color.rgbName(0x7b, 0x7f, 0x32, 'woodbine'), + RgbInt8Color.rgbName(0x75, 0x7a, 0x4e, 'calliste green'), + RgbInt8Color.rgbName(0x70, 0x7e, 0x9b, 'country blue'), + RgbInt8Color.rgbName(0x70, 0x78, 0x9b, 'blue ice'), + RgbInt8Color.rgbName(0x6e, 0x80, 0xa4, 'english manor'), + RgbInt8Color.rgbName(0x74, 0x7c, 0xa8, 'lavender violet'), + RgbInt8Color.rgbName(0x73, 0x80, 0x9b, 'tempest'), + RgbInt8Color.rgbName(0x74, 0x80, 0x9a, 'stonewash'), + RgbInt8Color.rgbName(0x7c, 0x9e, 0xd9, 'vista blue'), + RgbInt8Color.rgbName(0x82, 0x97, 0xce, 'grapemist'), + RgbInt8Color.rgbName(0x7b, 0x93, 0x44, 'peridot'), + RgbInt8Color.rgbName(0x73, 0x90, 0x72, 'shale green'), + RgbInt8Color.rgbName(0x7a, 0x8e, 0x81, 'green bay'), + RgbInt8Color.rgbName(0x77, 0x8a, 0x86, 'chinois green'), + RgbInt8Color.rgbName(0x77, 0x89, 0x8f, 'lead'), + RgbInt8Color.rgbName(0x74, 0x89, 0x95, 'citadel'), + RgbInt8Color.rgbName(0x74, 0x98, 0x62, 'jade green'), + RgbInt8Color.rgbName(0x7a, 0x9b, 0x78, 'mineral green'), + RgbInt8Color.rgbName(0x72, 0x9b, 0x8b, 'feldspar'), + RgbInt8Color.rgbName(0x76, 0x9d, 0xa6, 'cameo blue'), + RgbInt8Color.rgbName(0x7b, 0xa0, 0xc0, 'dusk blue'), + RgbInt8Color.rgbName(0x79, 0xb5, 0xd8, 'baltic sea'), + RgbInt8Color.rgbName(0x80, 0xa8, 0x67, 'green tea'), + RgbInt8Color.rgbName(0x7c, 0xb0, 0x83, 'zephyr green'), + RgbInt8Color.rgbName(0x76, 0xa7, 0xab, 'nile blue'), + RgbInt8Color.rgbName(0x7f, 0xb1, 0x85, 'peapod'), + RgbInt8Color.rgbName(0x7d, 0xb2, 0x89, 'light grass green'), + RgbInt8Color.rgbName(0x7c, 0xb0, 0x8a, 'ming'), + RgbInt8Color.rgbName(0x7b, 0xb5, 0xa3, 'dusty jade green'), + RgbInt8Color.rgbName(0x7b, 0xc2, 0xb3, 'holiday'), + RgbInt8Color.rgbName(0x82, 0xc2, 0xc7, 'tibetan stone'), + RgbInt8Color.rgbName(0x7b, 0xc4, 0xc4, 'aqua sky'), + RgbInt8Color.rgbName(0x83, 0xc4, 0xcf, 'antigua sand'), + RgbInt8Color.rgbName(0x83, 0xc6, 0xcf, 'angel blue'), + RgbInt8Color.rgbName(0x97, 0xbc, 0x62, 'bright lime green'), + RgbInt8Color.rgbName(0x98, 0xe2, 0xcf, 'beach glass'), + RgbInt8Color.rgbName(0x98, 0xdd, 0xde, 'limpet shell'), + RgbInt8Color.rgbName(0x8a, 0x22, 0x32, 'rio red'), + RgbInt8Color.rgbName(0x80, 0x2a, 0x50, 'raspberry radiance'), + RgbInt8Color.rgbName(0x85, 0x3b, 0x7b, 'byzantium'), + RgbInt8Color.rgbName(0x81, 0x2f, 0x4f, 'beaujolais'), + RgbInt8Color.rgbName(0x84, 0x3e, 0x83, 'dahlia'), + RgbInt8Color.rgbName(0x86, 0x4c, 0x24, 'caramel café'), + RgbInt8Color.rgbName(0x78, 0x39, 0x37, 'spiced apple'), + RgbInt8Color.rgbName(0x7b, 0x35, 0x39, 'red pear'), + RgbInt8Color.rgbName(0x85, 0x32, 0x5c, 'boysenberry'), + RgbInt8Color.rgbName(0x7e, 0x39, 0x2f, 'burnt henna'), + RgbInt8Color.rgbName(0x7c, 0x42, 0x3c, 'henna'), + RgbInt8Color.rgbName(0x71, 0x4a, 0x41, 'root beer'), + RgbInt8Color.rgbName(0x72, 0x4c, 0x44, 'mink'), + RgbInt8Color.rgbName(0x7b, 0x43, 0x68, 'grape kiss'), + RgbInt8Color.rgbName(0x8b, 0x58, 0x97, 'dewberry'), + RgbInt8Color.rgbName(0x7a, 0x4b, 0x56, 'nocturne'), + RgbInt8Color.rgbName(0x7f, 0x4d, 0x64, 'damson'), + RgbInt8Color.rgbName(0x76, 0x54, 0x46, 'aztec'), + RgbInt8Color.rgbName(0x78, 0x54, 0x44, '2r13 sp'), + RgbInt8Color.rgbName(0x77, 0x54, 0x45, '3r13 sp'), + RgbInt8Color.rgbName(0x6e, 0x60, 0x5d, 'iron'), + RgbInt8Color.rgbName(0x71, 0x5c, 0x56, 'deep taupe'), + RgbInt8Color.rgbName(0x80, 0x4f, 0x5a, 'crushed berry'), + RgbInt8Color.rgbName(0x7c, 0x53, 0x79, 'concord grape'), + RgbInt8Color.rgbName(0x7a, 0x54, 0x7f, 'crushed grape'), + RgbInt8Color.rgbName(0x81, 0x5b, 0x37, 'rubber'), + RgbInt8Color.rgbName(0x77, 0x56, 0x42, '1r13 sp'), + RgbInt8Color.rgbName(0x77, 0x57, 0x41, '1y13 sp'), + RgbInt8Color.rgbName(0x79, 0x59, 0x45, '2y13 sp'), + RgbInt8Color.rgbName(0x72, 0x5f, 0x69, 'moonscape'), + RgbInt8Color.rgbName(0x7a, 0x59, 0x6f, 'purple gumdrop'), + RgbInt8Color.rgbName(0x7d, 0x5d, 0x99, 'chive blossom'), + RgbInt8Color.rgbName(0x81, 0x5f, 0x34, 'bronze brown'), + RgbInt8Color.rgbName(0x84, 0x6d, 0x3d, 'dull gold'), + RgbInt8Color.rgbName(0x7c, 0x6e, 0x4f, 'gothic olive'), + RgbInt8Color.rgbName(0x74, 0x6c, 0x57, 'dusky green'), + RgbInt8Color.rgbName(0x77, 0x6a, 0x5f, 'walnut'), + RgbInt8Color.rgbName(0x78, 0x73, 0x76, 'storm front'), + RgbInt8Color.rgbName(0x76, 0x72, 0x75, 'december sky'), + RgbInt8Color.rgbName(0x7b, 0x72, 0x82, 'gray ridge'), + RgbInt8Color.rgbName(0x7d, 0x70, 0x98, 'purple haze'), + RgbInt8Color.rgbName(0x7d, 0x74, 0xa8, 'aster purple'), + RgbInt8Color.rgbName(0x85, 0x79, 0x46, 'green moss'), + RgbInt8Color.rgbName(0x7f, 0x77, 0x5d, 'aloe'), + RgbInt8Color.rgbName(0x7f, 0x7a, 0x64, 'mermaid'), + RgbInt8Color.rgbName(0x7f, 0x78, 0x65, 'covert green'), + RgbInt8Color.rgbName(0x80, 0x79, 0x6c, 'brindle'), + RgbInt8Color.rgbName(0x7f, 0x7c, 0x81, 'silver filigree'), + RgbInt8Color.rgbName(0x84, 0x8d, 0xc5, 'jacaranda'), + RgbInt8Color.rgbName(0x8b, 0x96, 0xc9, 'pale iris'), + RgbInt8Color.rgbName(0x7e, 0x87, 0x4b, 'turtle green'), + RgbInt8Color.rgbName(0x81, 0x84, 0x55, 'iguana'), + RgbInt8Color.rgbName(0x84, 0x81, 0x63, 'dried herb'), + RgbInt8Color.rgbName(0x80, 0x85, 0x6d, 'oil green'), + RgbInt8Color.rgbName(0x7d, 0x7d, 0x6d, 'vetiver'), + RgbInt8Color.rgbName(0x7c, 0x80, 0x7b, 'moon mist'), + RgbInt8Color.rgbName(0x84, 0x82, 0x83, 'frost gray'), + RgbInt8Color.rgbName(0x84, 0x81, 0x82, 'gray flannel'), + RgbInt8Color.rgbName(0x7a, 0x83, 0x87, 'monument'), + RgbInt8Color.rgbName(0x86, 0x9f, 0xca, 'bel air blue'), + RgbInt8Color.rgbName(0x84, 0x9b, 0xcc, 'hydrangea'), + RgbInt8Color.rgbName(0xaa, 0x88, 0x5, 'golden palm'), + RgbInt8Color.rgbName(0x7e, 0x8f, 0x84, 'lily pad'), + RgbInt8Color.rgbName(0x79, 0x8e, 0xa4, 'faded denim'), + RgbInt8Color.rgbName(0x7b, 0x96, 0x69, 'green eyes'), + RgbInt8Color.rgbName(0x7e, 0x9b, 0x76, 'aspen green'), + RgbInt8Color.rgbName(0x84, 0x95, 0x8d, 'green milieu'), + RgbInt8Color.rgbName(0x81, 0x9a, 0xbd, 'forever blue'), + RgbInt8Color.rgbName(0x8c, 0xad, 0xd3, 'placid blue'), + RgbInt8Color.rgbName(0x82, 0x9e, 0x86, 'basil'), + RgbInt8Color.rgbName(0x84, 0xa2, 0x95, 'granite green'), + RgbInt8Color.rgbName(0x83, 0xab, 0xad, 'aquifer'), + RgbInt8Color.rgbName(0x84, 0xb7, 0xbb, 'aqua haze'), + RgbInt8Color.rgbName(0x8b, 0xba, 0x94, 'meadow'), + RgbInt8Color.rgbName(0x87, 0xc2, 0xd4, 'petit four'), + RgbInt8Color.rgbName(0x8c, 0xbe, 0xd6, 'sky blue'), + RgbInt8Color.rgbName(0x88, 0xc3, 0xd0, 'gulf stream'), + RgbInt8Color.rgbName(0xa1, 0xca, 0x7b, 'jade lime'), + RgbInt8Color.rgbName(0xaa, 0xa, 0x27, 'barbados cherry'), + RgbInt8Color.rgbName(0xa1, 0x17, 0x29, 'haute red'), + RgbInt8Color.rgbName(0x9e, 0x10, 0x30, 'jester red'), + RgbInt8Color.rgbName(0x94, 0x1e, 0x32, 'scooter'), + RgbInt8Color.rgbName(0x93, 0x30, 0x2c, 'bossa nova'), + RgbInt8Color.rgbName(0x84, 0x2c, 0x48, 'anemone'), + RgbInt8Color.rgbName(0x92, 0x31, 0x6f, 'wild aster'), + RgbInt8Color.rgbName(0x81, 0x36, 0x39, 'rosewood'), + RgbInt8Color.rgbName(0x8a, 0x33, 0x71, 'clover'), + RgbInt8Color.rgbName(0x8c, 0x35, 0x73, 'purple wine'), + RgbInt8Color.rgbName(0x8e, 0x44, 0x83, 'willowherb'), + RgbInt8Color.rgbName(0x8d, 0x46, 0x87, 'hyacinth violet'), + RgbInt8Color.rgbName(0x7e, 0x39, 0x40, 'burnt russet'), + RgbInt8Color.rgbName(0x88, 0x43, 0x32, 'arabian spice'), + RgbInt8Color.rgbName(0x8c, 0x3d, 0x45, 'brick red'), + RgbInt8Color.rgbName(0x7c, 0x4c, 0x53, 'wild ginger'), + RgbInt8Color.rgbName(0x83, 0x46, 0x55, 'maroon'), + RgbInt8Color.rgbName(0x82, 0x4d, 0x5c, 'renaissance rose'), + RgbInt8Color.rgbName(0x82, 0x4b, 0x77, 'amethyst'), + RgbInt8Color.rgbName(0x94, 0x4a, 0x1f, 'umber'), + RgbInt8Color.rgbName(0x80, 0x48, 0x39, 'sequoia'), + RgbInt8Color.rgbName(0x83, 0x4b, 0x39, 'coconut shell'), + RgbInt8Color.rgbName(0x83, 0x4f, 0x3d, 'brown patina'), + RgbInt8Color.rgbName(0x82, 0x4d, 0x46, 'mahogany'), + RgbInt8Color.rgbName(0x84, 0x4b, 0x4d, 'apple butter'), + RgbInt8Color.rgbName(0x8c, 0x47, 0x59, 'dry rose'), + RgbInt8Color.rgbName(0x80, 0x54, 0x66, 'tulipwood'), + RgbInt8Color.rgbName(0x86, 0x4e, 0x61, 'hawthorn rose'), + RgbInt8Color.rgbName(0x8b, 0x49, 0x63, 'violet quartz'), + RgbInt8Color.rgbName(0x8a, 0x4e, 0x36, 'ginger bread'), + RgbInt8Color.rgbName(0x85, 0x51, 0x41, 'rustic brown'), + RgbInt8Color.rgbName(0x80, 0x56, 0x5b, 'rose brown'), + RgbInt8Color.rgbName(0x88, 0x51, 0x57, 'roan rouge'), + RgbInt8Color.rgbName(0x8b, 0x59, 0x3e, 'argan oil'), + RgbInt8Color.rgbName(0x7e, 0x5e, 0x52, 'acorn'), + RgbInt8Color.rgbName(0x7e, 0x5c, 0x54, 'nutmeg'), + RgbInt8Color.rgbName(0x7e, 0x5e, 0x60, 'rose taupe'), + RgbInt8Color.rgbName(0x83, 0x5a, 0x76, 'argyle purple'), + RgbInt8Color.rgbName(0x83, 0x5e, 0x81, 'chinese violet'), + RgbInt8Color.rgbName(0x7c, 0x65, 0x4c, 'otter'), + RgbInt8Color.rgbName(0x7f, 0x67, 0x47, 'ermine'), + RgbInt8Color.rgbName(0x84, 0x63, 0x49, '3y12 sp'), + RgbInt8Color.rgbName(0x86, 0x63, 0x51, 'rawhide'), + RgbInt8Color.rgbName(0x86, 0x64, 0x59, 'clove'), + RgbInt8Color.rgbName(0x85, 0x67, 0x7b, 'grapeade'), + RgbInt8Color.rgbName(0x80, 0x6f, 0x63, 'fossil'), + RgbInt8Color.rgbName(0x81, 0x6d, 0x5e, 'caribou'), + RgbInt8Color.rgbName(0x82, 0x70, 0x64, 'pine bark'), + RgbInt8Color.rgbName(0x8a, 0x6f, 0x79, 'grape shake'), + RgbInt8Color.rgbName(0x88, 0x77, 0xb2, 'paisley purple'), + RgbInt8Color.rgbName(0x85, 0x78, 0x60, 'lead gray'), + RgbInt8Color.rgbName(0x80, 0x76, 0x69, 'fallen rock'), + RgbInt8Color.rgbName(0x84, 0x7a, 0x75, 'driftwood'), + RgbInt8Color.rgbName(0x7e, 0x7d, 0x88, 'quicksilver'), + RgbInt8Color.rgbName(0x80, 0x7d, 0x7f, 'titanium'), + RgbInt8Color.rgbName(0x8b, 0x79, 0xa6, 'chalk violet'), + RgbInt8Color.rgbName(0x85, 0x89, 0x61, 'mosstone'), + RgbInt8Color.rgbName(0x88, 0x7e, 0x65, 'elmwood'), + RgbInt8Color.rgbName(0x8b, 0x81, 0x70, 'timber wolf'), + RgbInt8Color.rgbName(0x82, 0x7e, 0x7c, 'steeple gray'), + RgbInt8Color.rgbName(0x83, 0x7f, 0x7f, 'cloudburst'), + RgbInt8Color.rgbName(0x83, 0x84, 0x87, 'sharkskin'), + RgbInt8Color.rgbName(0x7f, 0x87, 0x93, 'tradewinds'), + RgbInt8Color.rgbName(0x81, 0x83, 0x9a, 'silver bullet'), + RgbInt8Color.rgbName(0x8a, 0x82, 0x9e, 'dusk'), + RgbInt8Color.rgbName(0x89, 0x81, 0xa0, 'daybreak'), + RgbInt8Color.rgbName(0x91, 0x9b, 0xc9, 'easter egg'), + RgbInt8Color.rgbName(0x8a, 0x88, 0x53, 'green olive'), + RgbInt8Color.rgbName(0x84, 0x91, 0x61, 'epsom'), + RgbInt8Color.rgbName(0x8b, 0x8a, 0x79, 'laurel oak'), + RgbInt8Color.rgbName(0x8c, 0x8d, 0x82, 'rock ridge'), + RgbInt8Color.rgbName(0x88, 0x8d, 0x82, 'shadow'), + RgbInt8Color.rgbName(0x8b, 0x8d, 0x8d, 'wild dove'), + RgbInt8Color.rgbName(0x89, 0x8f, 0x8d, 'neutral gray'), + RgbInt8Color.rgbName(0x85, 0x8f, 0xb1, 'purple impression'), + RgbInt8Color.rgbName(0x8b, 0x8d, 0xb2, 'persian violet'), + RgbInt8Color.rgbName(0x95, 0xaa, 0xd3, 'serenity'), + RgbInt8Color.rgbName(0x84, 0x9d, 0x7a, 'mistletoe'), + RgbInt8Color.rgbName(0x8a, 0x96, 0x91, 'slate gray'), + RgbInt8Color.rgbName(0x89, 0x99, 0x9b, 'silver blue'), + RgbInt8Color.rgbName(0x87, 0x9b, 0xa3, 'arona'), + RgbInt8Color.rgbName(0x82, 0x9c, 0xa5, 'stone blue'), + RgbInt8Color.rgbName(0x86, 0x99, 0xab, 'ashley blue'), + RgbInt8Color.rgbName(0x8e, 0x9c, 0x4b, 'spinach green'), + RgbInt8Color.rgbName(0x89, 0xa0, 0x6b, 'tendril'), + RgbInt8Color.rgbName(0x89, 0x9c, 0x92, 'iceberg green'), + RgbInt8Color.rgbName(0x8d, 0xa0, 0x99, 'jadeite'), + RgbInt8Color.rgbName(0x8c, 0x9f, 0xa1, 'slate'), + RgbInt8Color.rgbName(0x86, 0xa1, 0xa9, 'tourmaline'), + RgbInt8Color.rgbName(0x8a, 0x9c, 0xc4, 'lavender lustre'), + RgbInt8Color.rgbName(0x93, 0xab, 0x5a, 'herbal garden'), + RgbInt8Color.rgbName(0x8f, 0xac, 0x7f, 'forest shade'), + RgbInt8Color.rgbName(0x90, 0xb2, 0x89, 'fair green'), + RgbInt8Color.rgbName(0x93, 0xb4, 0xd7, 'blue bell'), + RgbInt8Color.rgbName(0x90, 0xc0, 0xcc, 'porcelain blue'), + RgbInt8Color.rgbName(0x8e, 0xc5, 0xb6, 'ocean wave'), + RgbInt8Color.rgbName(0x96, 0xc1, 0xa4, 'hemlock'), + RgbInt8Color.rgbName(0xb0, 0xbc, 0x4a, 'bright chartreuse'), + RgbInt8Color.rgbName(0xa0, 0xda, 0xa9, 'green ash'), + RgbInt8Color.rgbName(0xb0, 0xc9, 0x65, 'green glow'), + RgbInt8Color.rgbName(0xa2, 0xc5, 0x83, 'opaline green'), + RgbInt8Color.rgbName(0x9d, 0xc6, 0x8f, 'arcadian green'), + RgbInt8Color.rgbName(0xb2, 0xe7, 0x9f, 'paradise green'), + RgbInt8Color.rgbName(0xa1, 0xdd, 0xdd, 'blue tint'), + RgbInt8Color.rgbName(0x9b, 0x1b, 0x30, 'chili pepper'), + RgbInt8Color.rgbName(0x9d, 0x20, 0x2f, 'scarlet sage'), + RgbInt8Color.rgbName(0xac, 0xe, 0x2e, 'tango red'), + RgbInt8Color.rgbName(0xa2, 0x14, 0x41, 'persian red'), + RgbInt8Color.rgbName(0xa4, 0x12, 0x47, 'cerise'), + RgbInt8Color.rgbName(0x98, 0x25, 0x51, 'sangria'), + RgbInt8Color.rgbName(0x99, 0x32, 0x6d, 'baton rouge'), + RgbInt8Color.rgbName(0x9e, 0x2c, 0x6a, 'festival fuchsia'), + RgbInt8Color.rgbName(0x99, 0x3c, 0x7c, 'vivid viola'), + RgbInt8Color.rgbName(0x9e, 0x46, 0x24, 'potter\'s clay'), + RgbInt8Color.rgbName(0x8d, 0x3f, 0x2d, 'picante'), + RgbInt8Color.rgbName(0x8e, 0x3c, 0x36, 'chili oil'), + RgbInt8Color.rgbName(0x91, 0x38, 0x32, 'red ochre'), + RgbInt8Color.rgbName(0x88, 0x43, 0x44, 'cowhide'), + RgbInt8Color.rgbName(0x94, 0x35, 0x43, 'garnet'), + RgbInt8Color.rgbName(0x9b, 0x34, 0x56, 'cherries jubilee'), + RgbInt8Color.rgbName(0x90, 0x3f, 0x75, 'deep orchid'), + RgbInt8Color.rgbName(0x98, 0x50, 0x8e, 'striking purple'), + RgbInt8Color.rgbName(0x93, 0x3d, 0x3a, 'ketchup'), + RgbInt8Color.rgbName(0x8f, 0x42, 0x3b, 'barn red'), + RgbInt8Color.rgbName(0xa0, 0x5c, 0x17, 'pumpkin spice'), + RgbInt8Color.rgbName(0x9b, 0x47, 0x22, 'cinnamon stick'), + RgbInt8Color.rgbName(0x91, 0x55, 0x2b, 'glazed ginger'), + RgbInt8Color.rgbName(0x93, 0x55, 0x29, 'sugar almond'), + RgbInt8Color.rgbName(0x8c, 0x54, 0x3a, 'mocha bisque'), + RgbInt8Color.rgbName(0x85, 0x5c, 0x4c, 'carob brown'), + RgbInt8Color.rgbName(0x8f, 0x69, 0xa5, 'hyacinth'), + RgbInt8Color.rgbName(0x9b, 0x84, 0xc0, 'bougainvillea'), + RgbInt8Color.rgbName(0x93, 0x59, 0x2b, 'roasted pecan'), + RgbInt8Color.rgbName(0x97, 0x57, 0x2b, 'leather brown'), + RgbInt8Color.rgbName(0x86, 0x60, 0x48, '1r12 sp'), + RgbInt8Color.rgbName(0x87, 0x62, 0x49, '1y12 sp'), + RgbInt8Color.rgbName(0x89, 0x5f, 0x4d, '3r12 sp'), + RgbInt8Color.rgbName(0x8f, 0x5f, 0x50, 'russet'), + RgbInt8Color.rgbName(0x88, 0x61, 0x59, 'cognac'), + RgbInt8Color.rgbName(0x8d, 0x5c, 0x74, 'grape nectar'), + RgbInt8Color.rgbName(0x91, 0x67, 0x2c, 'golden brown'), + RgbInt8Color.rgbName(0x99, 0x64, 0x2c, 'cathay spice'), + RgbInt8Color.rgbName(0x89, 0x63, 0x4c, '2y12 sp'), + RgbInt8Color.rgbName(0x8c, 0x62, 0x4e, '2r12 sp'), + RgbInt8Color.rgbName(0x8b, 0x6a, 0x4f, 'toasted coconut'), + RgbInt8Color.rgbName(0x94, 0x69, 0xa2, 'bellflower'), + RgbInt8Color.rgbName(0x91, 0x6f, 0x3b, 'cumin'), + RgbInt8Color.rgbName(0x92, 0x71, 0x41, 'bistre'), + RgbInt8Color.rgbName(0x90, 0x6f, 0x54, '3y11 sp'), + RgbInt8Color.rgbName(0x8f, 0x70, 0x54, '4y11 sp'), + RgbInt8Color.rgbName(0x8f, 0x6e, 0x5d, 'raw umber'), + RgbInt8Color.rgbName(0x91, 0x70, 0x5a, 'thrush'), + RgbInt8Color.rgbName(0x8d, 0x6f, 0x60, 'brownie'), + RgbInt8Color.rgbName(0x8b, 0x6f, 0x70, 'twilight mauve'), + RgbInt8Color.rgbName(0x8f, 0x6f, 0x89, 'very grape'), + RgbInt8Color.rgbName(0x92, 0x7b, 0x3c, 'ecru olive'), + RgbInt8Color.rgbName(0x90, 0x79, 0x54, 'antique bronze'), + RgbInt8Color.rgbName(0x8d, 0x79, 0x60, 'petrified oak'), + RgbInt8Color.rgbName(0x89, 0x75, 0x60, 'sepia tint'), + RgbInt8Color.rgbName(0x88, 0x7b, 0x6e, 'taupe gray'), + RgbInt8Color.rgbName(0x8a, 0x7e, 0x78, 'cinder'), + RgbInt8Color.rgbName(0x91, 0x77, 0x98, 'orchid mist'), + RgbInt8Color.rgbName(0x8c, 0x83, 0x97, 'purple ash'), + RgbInt8Color.rgbName(0x94, 0x79, 0xaf, 'fairy wren'), + RgbInt8Color.rgbName(0x9b, 0x90, 0xc8, 'violet tulip'), + RgbInt8Color.rgbName(0x9a, 0x80, 0x3a, 'amber green'), + RgbInt8Color.rgbName(0x8e, 0x85, 0x5f, 'boa'), + RgbInt8Color.rgbName(0x8e, 0x82, 0x6a, 'coriander'), + RgbInt8Color.rgbName(0x8d, 0x81, 0x77, 'fungi'), + RgbInt8Color.rgbName(0x8d, 0x7e, 0x71, 'desert taupe'), + RgbInt8Color.rgbName(0x9a, 0x8b, 0x4f, 'willow'), + RgbInt8Color.rgbName(0x92, 0x8e, 0x64, 'cedar'), + RgbInt8Color.rgbName(0x91, 0x94, 0x6e, 'sage'), + RgbInt8Color.rgbName(0x93, 0x8b, 0x78, 'silver sage'), + RgbInt8Color.rgbName(0x96, 0x8c, 0x7a, 'dune'), + RgbInt8Color.rgbName(0x95, 0x8d, 0x79, 'seneca rock'), + RgbInt8Color.rgbName(0x8f, 0x89, 0x82, 'elephant skin'), + RgbInt8Color.rgbName(0x91, 0x89, 0x8c, 'zinc'), + RgbInt8Color.rgbName(0x91, 0x8c, 0x8f, 'gull'), + RgbInt8Color.rgbName(0x8d, 0x8f, 0x8f, 'griffin'), + RgbInt8Color.rgbName(0x91, 0x8e, 0x9b, 'minimal gray'), + RgbInt8Color.rgbName(0x9a, 0x97, 0x38, 'golden lime'), + RgbInt8Color.rgbName(0x9c, 0x9a, 0x40, 'split pea'), + RgbInt8Color.rgbName(0x90, 0x97, 0x87, 'seagrass'), + RgbInt8Color.rgbName(0x92, 0x94, 0x9b, 'sleet'), + RgbInt8Color.rgbName(0x8b, 0x9d, 0x9e, 'abyss'), + RgbInt8Color.rgbName(0x98, 0x96, 0x96, 'wet weather'), + RgbInt8Color.rgbName(0x8c, 0x9d, 0xad, 'dusty blue'), + RgbInt8Color.rgbName(0x90, 0x9b, 0xb5, 'eventide'), + RgbInt8Color.rgbName(0x95, 0x9a, 0xc0, 'thistle down'), + RgbInt8Color.rgbName(0x94, 0xa0, 0x9b, 'wrought iron'), + RgbInt8Color.rgbName(0x96, 0xa3, 0xc7, 'blue heron'), + RgbInt8Color.rgbName(0x9d, 0xaa, 0x4a, 'dark citron'), + RgbInt8Color.rgbName(0x90, 0xa8, 0xa4, 'blue surf'), + RgbInt8Color.rgbName(0x8f, 0xad, 0xbd, 'forget-me-not'), + RgbInt8Color.rgbName(0x97, 0xab, 0xbd, 'blue fog'), + RgbInt8Color.rgbName(0x92, 0xb6, 0xd5, 'airy blue'), + RgbInt8Color.rgbName(0x96, 0xb3, 0xd2, 'powder blue'), + RgbInt8Color.rgbName(0x98, 0xb4, 0xd4, 'cerulean'), + RgbInt8Color.rgbName(0x9c, 0xbf, 0x9d, 'sprucestone'), + RgbInt8Color.rgbName(0x9b, 0xbe, 0xa9, 'grayed jade'), + RgbInt8Color.rgbName(0x98, 0xbf, 0xca, 'sea angel'), + RgbInt8Color.rgbName(0x9a, 0xbf, 0xcb, 'stratosphere'), + RgbInt8Color.rgbName(0x97, 0xc0, 0xcc, 'aquatic'), + RgbInt8Color.rgbName(0x9a, 0xc1, 0xc7, 'canal blue'), + RgbInt8Color.rgbName(0x95, 0xc5, 0xc6, 'pastel turquoise'), + RgbInt8Color.rgbName(0xb5, 0xcc, 0x39, 'tender shoots'), + RgbInt8Color.rgbName(0xba, 0xdf, 0x30, 'acid lime'), + RgbInt8Color.rgbName(0xbf, 0xd6, 0x41, 'lime punch'), + RgbInt8Color.rgbName(0x9f, 0xc0, 0x9a, 'quiet green'), + RgbInt8Color.rgbName(0x9e, 0xd9, 0xcc, 'yucca'), + RgbInt8Color.rgbName(0xa0, 0xc9, 0xdb, 'crystal blue'), + RgbInt8Color.rgbName(0xba, 0xb8, 0x3a, 'apple green'), + RgbInt8Color.rgbName(0xb0, 0xe7, 0xaf, 'patina green'), + RgbInt8Color.rgbName(0xae, 0xdb, 0x9f, 'pistachio green'), + RgbInt8Color.rgbName(0xaa, 0x18, 0x2b, 'salsa'), + RgbInt8Color.rgbName(0xb9, 0x12, 0x28, 'goji berry'), + RgbInt8Color.rgbName(0xae, 0xe, 0x36, 'crimson'), + RgbInt8Color.rgbName(0xba, 0xb, 0x32, 'lychee'), + RgbInt8Color.rgbName(0xb2, 0x10, 0x3c, 'jalapeño red'), + RgbInt8Color.rgbName(0xa2, 0x24, 0x2f, 'samba'), + RgbInt8Color.rgbName(0xa5, 0x23, 0x50, 'granita'), + RgbInt8Color.rgbName(0xa3, 0x28, 0x57, 'vivacious'), + RgbInt8Color.rgbName(0xa4, 0x29, 0x2e, 'pompeian red'), + RgbInt8Color.rgbName(0x96, 0x2d, 0x49, 'red bud'), + RgbInt8Color.rgbName(0xa2, 0x3c, 0x26, 'rooibos tea'), + RgbInt8Color.rgbName(0x97, 0x34, 0x43, 'deep claret'), + RgbInt8Color.rgbName(0xa3, 0x35, 0x46, 'american beauty'), + RgbInt8Color.rgbName(0x95, 0x42, 0x4e, 'earth red'), + RgbInt8Color.rgbName(0x9c, 0x45, 0x3b, 'cinnabar'), + RgbInt8Color.rgbName(0x9d, 0x44, 0x6e, 'magenta haze'), + RgbInt8Color.rgbName(0xa8, 0x62, 0x17, 'honey ginger'), + RgbInt8Color.rgbName(0x9d, 0x48, 0x44, 'tandoori spice'), + RgbInt8Color.rgbName(0x96, 0x4f, 0x4c, 'marsala'), + RgbInt8Color.rgbName(0xa1, 0x53, 0x25, 'autumnal'), + RgbInt8Color.rgbName(0x9f, 0x51, 0x30, 'bombay brown'), + RgbInt8Color.rgbName(0x9f, 0x50, 0x69, 'malaga'), + RgbInt8Color.rgbName(0xaa, 0x66, 0xaa, 'iris orchid'), + RgbInt8Color.rgbName(0x98, 0x5c, 0x41, 'sierra'), + RgbInt8Color.rgbName(0x98, 0x59, 0x4b, 'chutney'), + RgbInt8Color.rgbName(0x98, 0x5f, 0x68, 'deco rose'), + RgbInt8Color.rgbName(0x99, 0x63, 0x78, 'mellow mauve'), + RgbInt8Color.rgbName(0x96, 0x63, 0x7b, 'bordeaux'), + RgbInt8Color.rgbName(0x93, 0x6a, 0x98, 'lavender crystal'), + RgbInt8Color.rgbName(0x94, 0x6c, 0x51, '1y11 sp'), + RgbInt8Color.rgbName(0x97, 0x64, 0x59, 'copper brown'), + RgbInt8Color.rgbName(0x94, 0x6c, 0x74, 'wistful mauve'), + RgbInt8Color.rgbName(0xa1, 0x7e, 0xb6, 'english lavender'), + RgbInt8Color.rgbName(0xa7, 0x6f, 0x1f, 'buckthorn brown'), + RgbInt8Color.rgbName(0x96, 0x74, 0x44, 'medal bronze'), + RgbInt8Color.rgbName(0x96, 0x6e, 0x4b, 'chipmunk'), + RgbInt8Color.rgbName(0x9a, 0x72, 0x40, 'bone brown'), + RgbInt8Color.rgbName(0x96, 0x73, 0x53, 'tobacco brown'), + RgbInt8Color.rgbName(0x97, 0x6c, 0x52, '1r11 sp'), + RgbInt8Color.rgbName(0x98, 0x6f, 0x54, '2y11 sp'), + RgbInt8Color.rgbName(0x91, 0x75, 0x60, 'woodsmoke'), + RgbInt8Color.rgbName(0x94, 0x75, 0x63, 'beaver fur'), + RgbInt8Color.rgbName(0x9b, 0x71, 0x6b, 'burlwood'), + RgbInt8Color.rgbName(0x92, 0x7a, 0x77, 'antler'), + RgbInt8Color.rgbName(0x9a, 0x71, 0x82, 'dusky orchid'), + RgbInt8Color.rgbName(0x99, 0x7b, 0x38, 'dried tobacco'), + RgbInt8Color.rgbName(0x97, 0x75, 0x4c, 'dijon'), + RgbInt8Color.rgbName(0x99, 0x79, 0x5d, '4y10 sp'), + RgbInt8Color.rgbName(0x97, 0x7c, 0x61, 'tiger\'s eye'), + RgbInt8Color.rgbName(0x93, 0x7b, 0x6a, 'portabella'), + RgbInt8Color.rgbName(0x97, 0x7d, 0x70, 'ginger snap'), + RgbInt8Color.rgbName(0x91, 0x85, 0x79, 'roasted cashew'), + RgbInt8Color.rgbName(0x9d, 0x78, 0x9a, 'dusty lavender'), + RgbInt8Color.rgbName(0x9d, 0x78, 0x94, 'valerian'), + RgbInt8Color.rgbName(0x98, 0x79, 0xa2, 'diffused orchid'), + RgbInt8Color.rgbName(0x97, 0x87, 0xb8, 'sunlit allium'), + RgbInt8Color.rgbName(0x9c, 0x7e, 0x41, 'bronze mist'), + RgbInt8Color.rgbName(0x99, 0x84, 0x56, 'fennel seed'), + RgbInt8Color.rgbName(0x98, 0x84, 0x67, 'kelp'), + RgbInt8Color.rgbName(0x92, 0x84, 0x75, 'greige'), + RgbInt8Color.rgbName(0x9b, 0x85, 0x71, 'amphora'), + RgbInt8Color.rgbName(0x94, 0x8a, 0x7a, 'winter twig'), + RgbInt8Color.rgbName(0x98, 0x87, 0x8c, 'purple dove'), + RgbInt8Color.rgbName(0x98, 0x86, 0x8c, 'quail'), + RgbInt8Color.rgbName(0x99, 0x81, 0x89, 'toadstool'), + RgbInt8Color.rgbName(0xa9, 0x8b, 0x2d, 'olive oil'), + RgbInt8Color.rgbName(0x98, 0x8c, 0x75, 'tree house'), + RgbInt8Color.rgbName(0x98, 0x8b, 0x79, 'silver mink'), + RgbInt8Color.rgbName(0x95, 0x8b, 0x84, 'moon rock'), + RgbInt8Color.rgbName(0x97, 0x8d, 0x89, 'satellite'), + RgbInt8Color.rgbName(0x94, 0x90, 0x8b, 'mourning dove'), + RgbInt8Color.rgbName(0x9c, 0x8d, 0x9a, 'nirvana'), + RgbInt8Color.rgbName(0x98, 0x90, 0xa2, 'lavender gray'), + RgbInt8Color.rgbName(0x99, 0x93, 0xb1, 'heirloom lilac'), + RgbInt8Color.rgbName(0x9c, 0x9c, 0x53, 'moss'), + RgbInt8Color.rgbName(0x98, 0x9e, 0x68, 'fern'), + RgbInt8Color.rgbName(0xa0, 0x91, 0x65, 'khaki'), + RgbInt8Color.rgbName(0x9e, 0x95, 0x7a, 'slate green'), + RgbInt8Color.rgbName(0x9b, 0x90, 0x78, 'chinchilla'), + RgbInt8Color.rgbName(0x98, 0x97, 0x9a, 'alloy'), + RgbInt8Color.rgbName(0x98, 0x99, 0x98, 'drizzle'), + RgbInt8Color.rgbName(0x98, 0x9a, 0x98, 'limestone'), + RgbInt8Color.rgbName(0x99, 0x9a, 0x98, 'ghost gray'), + RgbInt8Color.rgbName(0x98, 0x96, 0xa4, 'lilac gray'), + RgbInt8Color.rgbName(0x9f, 0x99, 0xaa, 'lavender aura'), + RgbInt8Color.rgbName(0x9a, 0x9b, 0xc1, 'sweet lavender'), + RgbInt8Color.rgbName(0xa3, 0xa3, 0x47, 'oasis'), + RgbInt8Color.rgbName(0x99, 0x9b, 0x85, 'tea'), + RgbInt8Color.rgbName(0x98, 0xa0, 0xa5, 'quarry'), + RgbInt8Color.rgbName(0x9e, 0x9e, 0xab, 'dapple gray'), + RgbInt8Color.rgbName(0x9a, 0x9e, 0xb3, 'aleutian'), + RgbInt8Color.rgbName(0x9a, 0xa8, 0xc9, 'brunnera blue'), + RgbInt8Color.rgbName(0x9f, 0xaf, 0x6c, 'leaf green'), + RgbInt8Color.rgbName(0xa0, 0xad, 0xaa, 'puritan gray'), + RgbInt8Color.rgbName(0xa1, 0xad, 0xaa, 'mirage gray'), + RgbInt8Color.rgbName(0x99, 0xae, 0xae, 'gray mist'), + RgbInt8Color.rgbName(0x9f, 0xa9, 0xbe, 'zen blue'), + RgbInt8Color.rgbName(0xa4, 0xb2, 0x79, 'tarragon'), + RgbInt8Color.rgbName(0xa1, 0xb4, 0xa7, 'frosty green'), + RgbInt8Color.rgbName(0x9d, 0xb5, 0xb9, 'cloud blue'), + RgbInt8Color.rgbName(0x9e, 0xb6, 0xb8, 'ether'), + RgbInt8Color.rgbName(0x9d, 0xb8, 0xb8, 'blue haze'), + RgbInt8Color.rgbName(0x9e, 0xb4, 0xd3, 'chambray blue'), + RgbInt8Color.rgbName(0x9b, 0xc2, 0xb1, 'lichen'), + RgbInt8Color.rgbName(0x9f, 0xbb, 0xc6, 'sterling blue'), + RgbInt8Color.rgbName(0x9c, 0xc3, 0xd5, 'aquamarine'), + RgbInt8Color.rgbName(0x9e, 0xbd, 0xd0, 'dream blue'), + RgbInt8Color.rgbName(0x9c, 0xba, 0xd4, 'angel falls'), + RgbInt8Color.rgbName(0xa7, 0xc7, 0x96, 'nile green'), + RgbInt8Color.rgbName(0x9c, 0xc8, 0xc6, 'eggshell blue'), + RgbInt8Color.rgbName(0xa8, 0xd0, 0xbd, 'bird\'s egg green'), + RgbInt8Color.rgbName(0xab, 0xd2, 0xdc, 'blue glow'), + RgbInt8Color.rgbName(0xa4, 0xd1, 0xd9, 'plume'), + RgbInt8Color.rgbName(0xc0, 0xdb, 0x3a, 'love bird'), + RgbInt8Color.rgbName(0xa8, 0xde, 0xcc, 'brook green'), + RgbInt8Color.rgbName(0xa7, 0xdd, 0xdb, 'blue light'), + RgbInt8Color.rgbName(0xab, 0xd6, 0xdf, 'clearwater'), + RgbInt8Color.rgbName(0xc6, 0xe6, 0x7a, 'sharp green'), + RgbInt8Color.rgbName(0xa9, 0xca, 0xdf, 'cool blue'), + RgbInt8Color.rgbName(0xc7, 0xb5, 0x33, 'warm olive'), + RgbInt8Color.rgbName(0xb6, 0x10, 0x32, 'toreador'), + RgbInt8Color.rgbName(0xb3, 0x1a, 0x38, 'lipstick red'), + RgbInt8Color.rgbName(0xb4, 0x26, 0x2a, 'aura orange'), + RgbInt8Color.rgbName(0xab, 0x34, 0x75, 'fuchsia red'), + RgbInt8Color.rgbName(0xb1, 0x63, 0xa3, 'radiant orchid'), + RgbInt8Color.rgbName(0xa8, 0x3e, 0x6c, 'cactus flower'), + RgbInt8Color.rgbName(0xae, 0x4f, 0x93, 'purple orchid'), + RgbInt8Color.rgbName(0xa5, 0x3e, 0x4b, 'cardinal'), + RgbInt8Color.rgbName(0xa9, 0x56, 0x8c, 'meadow mauve'), + RgbInt8Color.rgbName(0xa1, 0x4d, 0x3a, 'burnt brick'), + RgbInt8Color.rgbName(0xa6, 0x4f, 0x82, 'dahlia mauve'), + RgbInt8Color.rgbName(0xb5, 0x63, 0x9f, 'rosebud'), + RgbInt8Color.rgbName(0xab, 0x68, 0x19, 'thai curry'), + RgbInt8Color.rgbName(0x9c, 0x56, 0x42, 'baked clay'), + RgbInt8Color.rgbName(0xa1, 0x58, 0x43, 'auburn'), + RgbInt8Color.rgbName(0xa0, 0x58, 0x51, 'etruscan red'), + RgbInt8Color.rgbName(0xa4, 0x59, 0x6d, 'rose wine'), + RgbInt8Color.rgbName(0xa3, 0x57, 0x76, 'red violet'), + RgbInt8Color.rgbName(0xb2, 0x84, 0xbe, 'african violet'), + RgbInt8Color.rgbName(0xa3, 0x62, 0x3b, 'adobe'), + RgbInt8Color.rgbName(0xa4, 0x56, 0x41, 'copper coin'), + RgbInt8Color.rgbName(0xa7, 0x59, 0x49, 'bruschetta'), + RgbInt8Color.rgbName(0xa4, 0x5a, 0x52, 'redwood'), + RgbInt8Color.rgbName(0xa6, 0x66, 0x46, 'amber brown'), + RgbInt8Color.rgbName(0x9a, 0x6b, 0x54, '2r11 sp'), + RgbInt8Color.rgbName(0x99, 0x6a, 0x58, '3r11 sp'), + RgbInt8Color.rgbName(0xa1, 0x65, 0x5b, 'cedar wood'), + RgbInt8Color.rgbName(0xa2, 0x66, 0x66, 'withered rose'), + RgbInt8Color.rgbName(0xac, 0x6b, 0x29, 'sudan brown'), + RgbInt8Color.rgbName(0xa4, 0x6f, 0x44, 'meerkat'), + RgbInt8Color.rgbName(0xa1, 0x72, 0x49, 'brown sugar'), + RgbInt8Color.rgbName(0xa0, 0x71, 0x4f, 'lion'), + RgbInt8Color.rgbName(0xa3, 0x6e, 0x51, 'pecan brown'), + RgbInt8Color.rgbName(0x9b, 0x77, 0x5d, '3y10 sp'), + RgbInt8Color.rgbName(0xa6, 0x6e, 0x7a, 'mesa rose'), + RgbInt8Color.rgbName(0xa7, 0x6c, 0x97, 'mulberry'), + RgbInt8Color.rgbName(0xa7, 0x7e, 0x3d, 'wood thrush'), + RgbInt8Color.rgbName(0xa6, 0x76, 0x51, 'cashew'), + RgbInt8Color.rgbName(0xa2, 0x78, 0x5d, '1r10 sp'), + RgbInt8Color.rgbName(0xa0, 0x76, 0x5a, '1y10 sp'), + RgbInt8Color.rgbName(0xa0, 0x79, 0x5f, '2y10 sp'), + RgbInt8Color.rgbName(0xa4, 0x78, 0x64, 'mocha mousse'), + RgbInt8Color.rgbName(0x9e, 0x7e, 0x67, 'burro'), + RgbInt8Color.rgbName(0xa4, 0x77, 0x7e, 'nostalgia rose'), + RgbInt8Color.rgbName(0x9d, 0x84, 0x8e, 'elderberry'), + RgbInt8Color.rgbName(0x9f, 0x86, 0xaa, 'rhapsody'), + RgbInt8Color.rgbName(0x9f, 0x90, 0xc1, 'sand verbena'), + RgbInt8Color.rgbName(0xb1, 0x83, 0x2f, 'chai tea'), + RgbInt8Color.rgbName(0xa6, 0x82, 0x66, '3y09 sp'), + RgbInt8Color.rgbName(0xa5, 0x81, 0x63, '4y09 sp'), + RgbInt8Color.rgbName(0xa3, 0x82, 0x64, '5y09 sp'), + RgbInt8Color.rgbName(0xb0, 0x9f, 0xca, 'purple rose'), + RgbInt8Color.rgbName(0xb3, 0xa0, 0xc9, 'lilac breeze'), + RgbInt8Color.rgbName(0xae, 0x8e, 0x2c, 'green sulphur'), + RgbInt8Color.rgbName(0xa6, 0x8a, 0x6d, 'tannin'), + RgbInt8Color.rgbName(0xa3, 0x8c, 0x79, 'chanterelle'), + RgbInt8Color.rgbName(0x9a, 0x91, 0x86, 'vintage khaki'), + RgbInt8Color.rgbName(0xa3, 0x8e, 0x80, 'stucco'), + RgbInt8Color.rgbName(0xb2, 0xa4, 0xd4, 'lavender'), + RgbInt8Color.rgbName(0xaf, 0x98, 0x41, 'golden olive'), + RgbInt8Color.rgbName(0xa8, 0x9a, 0x51, 'burnished gold'), + RgbInt8Color.rgbName(0xa4, 0x97, 0x75, 'sponge'), + RgbInt8Color.rgbName(0xa6, 0x93, 0x73, 'cornstalk'), + RgbInt8Color.rgbName(0xa4, 0x9a, 0x79, 'gray green'), + RgbInt8Color.rgbName(0xa4, 0x9a, 0x7a, 'olive gray'), + RgbInt8Color.rgbName(0xa1, 0x99, 0x85, 'tuffet'), + RgbInt8Color.rgbName(0x9f, 0x95, 0x86, 'aluminum'), + RgbInt8Color.rgbName(0xa2, 0x97, 0x8f, 'atmosphere'), + RgbInt8Color.rgbName(0x99, 0x9b, 0x9b, 'silver'), + RgbInt8Color.rgbName(0xa0, 0x99, 0x98, 'ash'), + RgbInt8Color.rgbName(0x9d, 0x9d, 0x98, 'flint gray'), + RgbInt8Color.rgbName(0x9e, 0x9d, 0x9c, 'paloma'), + RgbInt8Color.rgbName(0xa4, 0x94, 0xa1, 'sea fog'), + RgbInt8Color.rgbName(0x9e, 0x9e, 0xa3, 'silver sconce'), + RgbInt8Color.rgbName(0xa1, 0x98, 0xaf, 'wisteria'), + RgbInt8Color.rgbName(0xa8, 0x93, 0xbd, 'viola'), + RgbInt8Color.rgbName(0xa3, 0xa9, 0x69, 'sweet pea'), + RgbInt8Color.rgbName(0xa3, 0x9f, 0x86, 'elm'), + RgbInt8Color.rgbName(0xa7, 0x9b, 0x82, 'twill'), + RgbInt8Color.rgbName(0xa2, 0x9e, 0x92, 'london fog'), + RgbInt8Color.rgbName(0xa4, 0x9d, 0x90, 'goat'), + RgbInt8Color.rgbName(0xa6, 0x9e, 0x8c, 'plaza taupe'), + RgbInt8Color.rgbName(0xa4, 0x9e, 0x9e, 'opal gray'), + RgbInt8Color.rgbName(0xa4, 0x9c, 0xa0, 'gull gray'), + RgbInt8Color.rgbName(0xa2, 0xa1, 0xba, 'languid lavender'), + RgbInt8Color.rgbName(0xa0, 0xb0, 0xd1, 'kentucky blue'), + RgbInt8Color.rgbName(0xab, 0xa4, 0x4d, 'lentil sprout'), + RgbInt8Color.rgbName(0xa1, 0xad, 0x92, 'reseda'), + RgbInt8Color.rgbName(0xa5, 0xa6, 0x96, 'abbey stone'), + RgbInt8Color.rgbName(0xaa, 0xa9, 0x94, 'moss gray'), + RgbInt8Color.rgbName(0xa3, 0xac, 0x9b, 'desert sage'), + RgbInt8Color.rgbName(0xa3, 0xa9, 0xa6, 'belgian block'), + RgbInt8Color.rgbName(0xa2, 0xae, 0xa8, 'aqua gray'), + RgbInt8Color.rgbName(0xa6, 0xb0, 0xab, 'pigeon'), + RgbInt8Color.rgbName(0xa5, 0xa8, 0xc4, 'cosmic sky'), + RgbInt8Color.rgbName(0xac, 0xb3, 0x50, 'green oasis'), + RgbInt8Color.rgbName(0xb1, 0xb2, 0x58, 'palm'), + RgbInt8Color.rgbName(0xa8, 0xb1, 0x97, 'swamp'), + RgbInt8Color.rgbName(0xa3, 0xb4, 0xc4, 'celestial blue'), + RgbInt8Color.rgbName(0xa1, 0xb5, 0xd0, 'cashmere blue'), + RgbInt8Color.rgbName(0xa8, 0xbb, 0xa2, 'smoke green'), + RgbInt8Color.rgbName(0xaa, 0xc0, 0xad, 'cameo green'), + RgbInt8Color.rgbName(0xa9, 0xbd, 0xb1, 'silt green'), + RgbInt8Color.rgbName(0xa6, 0xc2, 0xbb, 'harbor gray'), + RgbInt8Color.rgbName(0xa5, 0xbd, 0xca, 'winter sky'), + RgbInt8Color.rgbName(0xaf, 0xcb, 0x80, 'sap green'), + RgbInt8Color.rgbName(0xa9, 0xca, 0xda, 'corydalis blue'), + RgbInt8Color.rgbName(0xcc, 0xdb, 0x1e, 'evening primrose'), + RgbInt8Color.rgbName(0xa7, 0xce, 0xb9, 'mist green'), + RgbInt8Color.rgbName(0xae, 0xce, 0xbe, 'gossamer green'), + RgbInt8Color.rgbName(0xad, 0xd2, 0xd0, 'icy morn'), + RgbInt8Color.rgbName(0xab, 0xd3, 0xdb, 'iced aqua'), + RgbInt8Color.rgbName(0xd2, 0xd4, 0x31, 'sulphur spring'), + RgbInt8Color.rgbName(0xb2, 0xe0, 0xdc, 'bleached aqua'), + RgbInt8Color.rgbName(0xb2, 0xd4, 0xb2, 'pastel green'), + RgbInt8Color.rgbName(0xc3, 0xd3, 0x63, 'wild lime'), + RgbInt8Color.rgbName(0xbe, 0x13, 0x2d, 'chinese red'), + RgbInt8Color.rgbName(0xbd, 0x16, 0x2c, 'racing red'), + RgbInt8Color.rgbName(0xbb, 0x12, 0x37, 'ski patrol'), + RgbInt8Color.rgbName(0xb6, 0x17, 0x45, 'barberry'), + RgbInt8Color.rgbName(0xb6, 0x1c, 0x50, 'jazzy'), + RgbInt8Color.rgbName(0xbe, 0x18, 0x5a, 'bright rose'), + RgbInt8Color.rgbName(0xbc, 0x27, 0x31, 'mars red'), + RgbInt8Color.rgbName(0xb9, 0x26, 0x36, 'ribbon red'), + RgbInt8Color.rgbName(0xb8, 0x29, 0x28, 'molten lava'), + RgbInt8Color.rgbName(0xbc, 0x32, 0x2c, 'valiant poppy'), + RgbInt8Color.rgbName(0xb7, 0x32, 0x75, 'very berry'), + RgbInt8Color.rgbName(0xb5, 0x2c, 0x45, 'scarlet'), + RgbInt8Color.rgbName(0xbe, 0x42, 0x7b, 'lilac rose'), + RgbInt8Color.rgbName(0xb6, 0x31, 0x57, 'raspberry wine'), + RgbInt8Color.rgbName(0xb9, 0x3a, 0x32, 'aurora red'), + RgbInt8Color.rgbName(0xaf, 0x42, 0x49, 'baked apple'), + RgbInt8Color.rgbName(0xbb, 0x5c, 0x14, 'hawaiian sunset'), + RgbInt8Color.rgbName(0xab, 0x4f, 0x41, 'hot sauce'), + RgbInt8Color.rgbName(0xac, 0x4b, 0x55, 'garnet rose'), + RgbInt8Color.rgbName(0xb3, 0x4a, 0x5e, 'holly berry'), + RgbInt8Color.rgbName(0xbb, 0x46, 0x6f, 'carmine'), + RgbInt8Color.rgbName(0xb4, 0x54, 0x22, 'gold flame'), + RgbInt8Color.rgbName(0xb4, 0x4e, 0x3d, 'burnt ochre'), + RgbInt8Color.rgbName(0xae, 0x54, 0x59, 'mineral red'), + RgbInt8Color.rgbName(0xa7, 0x5d, 0x67, 'mauvewood'), + RgbInt8Color.rgbName(0xaf, 0x52, 0x63, 'baroque rose'), + RgbInt8Color.rgbName(0xba, 0x69, 0xa1, 'spring crocus'), + RgbInt8Color.rgbName(0xb7, 0x6b, 0xa3, 'bodacious'), + RgbInt8Color.rgbName(0xb5, 0x5a, 0x30, 'rust'), + RgbInt8Color.rgbName(0xb0, 0x58, 0x46, 'autumn glaze'), + RgbInt8Color.rgbName(0xad, 0x5d, 0x5d, 'dusty cedar'), + RgbInt8Color.rgbName(0xa6, 0x6e, 0x4a, 'bran'), + RgbInt8Color.rgbName(0xad, 0x66, 0x59, 'aragon'), + RgbInt8Color.rgbName(0xad, 0x6d, 0x7f, 'heather rose'), + RgbInt8Color.rgbName(0xbe, 0x81, 0xb6, 'violet'), + RgbInt8Color.rgbName(0xa7, 0x75, 0x4d, 'almond'), + RgbInt8Color.rgbName(0xae, 0x72, 0x50, 'hazel'), + RgbInt8Color.rgbName(0xa5, 0x75, 0x5f, '2r10 sp'), + RgbInt8Color.rgbName(0xaf, 0x6c, 0x67, 'canyon rose'), + RgbInt8Color.rgbName(0xad, 0x6d, 0x68, 'light mahogany'), + RgbInt8Color.rgbName(0xa5, 0x74, 0x61, '3r10 sp'), + RgbInt8Color.rgbName(0xa8, 0x7f, 0x64, '1y09 sp'), + RgbInt8Color.rgbName(0xa8, 0x85, 0x6e, 'tawny brown'), + RgbInt8Color.rgbName(0xa9, 0x83, 0x6e, 'café au lait'), + RgbInt8Color.rgbName(0xb2, 0x7a, 0x78, 'old rose'), + RgbInt8Color.rgbName(0xb4, 0x88, 0x34, 'harvest gold'), + RgbInt8Color.rgbName(0xad, 0x81, 0x66, 'camel'), + RgbInt8Color.rgbName(0xad, 0x85, 0x67, 'indian tan'), + RgbInt8Color.rgbName(0xab, 0x81, 0x67, '1r09 sp'), + RgbInt8Color.rgbName(0xa9, 0x81, 0x67, '2y09 sp'), + RgbInt8Color.rgbName(0xae, 0x85, 0x6c, 'tawny birch'), + RgbInt8Color.rgbName(0xae, 0x7f, 0x6e, '3r09 sp'), + RgbInt8Color.rgbName(0xa7, 0x8c, 0x7b, 'almondine'), + RgbInt8Color.rgbName(0xb2, 0x82, 0x82, 'ash rose'), + RgbInt8Color.rgbName(0xb1, 0x86, 0x9f, 'orchid haze'), + RgbInt8Color.rgbName(0xa9, 0x8b, 0xaf, 'regal orchid'), + RgbInt8Color.rgbName(0xbb, 0xa0, 0xce, 'lavendula'), + RgbInt8Color.rgbName(0xbd, 0x97, 0xcb, 'sheer lilac'), + RgbInt8Color.rgbName(0xbc, 0x8d, 0x1f, 'arrowwood'), + RgbInt8Color.rgbName(0xb0, 0x8e, 0x51, 'mustard gold'), + RgbInt8Color.rgbName(0xa9, 0x92, 0x60, 'antelope'), + RgbInt8Color.rgbName(0xb0, 0x88, 0x5a, 'apple cinnamon'), + RgbInt8Color.rgbName(0xaa, 0x8b, 0x6d, '5y08 sp'), + RgbInt8Color.rgbName(0xa9, 0x8b, 0x74, 'praline'), + RgbInt8Color.rgbName(0xb0, 0x89, 0x6e, '3y08 sp'), + RgbInt8Color.rgbName(0xad, 0x8b, 0x6f, '4y08 sp'), + RgbInt8Color.rgbName(0xa5, 0x95, 0x8f, 'etherea'), + RgbInt8Color.rgbName(0xa3, 0x98, 0x88, 'crockery'), + RgbInt8Color.rgbName(0xa5, 0x9a, 0x8b, 'cobblestone'), + RgbInt8Color.rgbName(0xa7, 0x95, 0x92, 'bark'), + RgbInt8Color.rgbName(0xae, 0x8c, 0x8e, 'woodrose'), + RgbInt8Color.rgbName(0xad, 0x92, 0x94, 'deauville mauve'), + RgbInt8Color.rgbName(0xb1, 0x8e, 0xaa, 'lavender herb'), + RgbInt8Color.rgbName(0xbd, 0xa1, 0x1e, 'antique moss'), + RgbInt8Color.rgbName(0xab, 0x96, 0x77, 'incense'), + RgbInt8Color.rgbName(0xaf, 0x94, 0x83, 'warm taupe'), + RgbInt8Color.rgbName(0xab, 0x98, 0x95, 'sphinx'), + RgbInt8Color.rgbName(0xb5, 0xab, 0x23, 'citronelle'), + RgbInt8Color.rgbName(0xb6, 0xa1, 0x66, 'antique gold'), + RgbInt8Color.rgbName(0xb0, 0x9a, 0x77, 'starfish'), + RgbInt8Color.rgbName(0xaf, 0x9c, 0x83, 'travertine'), + RgbInt8Color.rgbName(0xab, 0xa0, 0x93, 'simply taupe'), + RgbInt8Color.rgbName(0xa7, 0xa1, 0x9e, 'porpoise'), + RgbInt8Color.rgbName(0xad, 0xa3, 0x96, 'pure cashmere'), + RgbInt8Color.rgbName(0xaa, 0x9f, 0x96, 'string'), + RgbInt8Color.rgbName(0xbe, 0xad, 0x3b, 'cress green'), + RgbInt8Color.rgbName(0xaf, 0xac, 0x87, 'sage green'), + RgbInt8Color.rgbName(0xb2, 0xad, 0x7f, 'weeping willow'), + RgbInt8Color.rgbName(0xad, 0xa8, 0x90, 'eucalyptus'), + RgbInt8Color.rgbName(0xad, 0xa7, 0x93, 'spray green'), + RgbInt8Color.rgbName(0xad, 0xa8, 0xa4, 'dove'), + RgbInt8Color.rgbName(0xae, 0xac, 0xa1, 'pussywillow gray'), + RgbInt8Color.rgbName(0xb2, 0xab, 0xac, 'ashes of roses'), + RgbInt8Color.rgbName(0xb1, 0xaa, 0xb3, 'raindrops'), + RgbInt8Color.rgbName(0xaa, 0xb1, 0xb3, 'high-rise'), + RgbInt8Color.rgbName(0xa9, 0xad, 0xc2, 'icelandic blue'), + RgbInt8Color.rgbName(0xbd, 0xc6, 0xdc, 'halogen blue'), + RgbInt8Color.rgbName(0xae, 0xb3, 0x85, 'winter pear'), + RgbInt8Color.rgbName(0xa8, 0xb8, 0x9e, 'laurel green'), + RgbInt8Color.rgbName(0xb0, 0xb6, 0xae, 'mineral gray'), + RgbInt8Color.rgbName(0xaf, 0xb1, 0xb4, 'harbor mist'), + RgbInt8Color.rgbName(0xb0, 0xb8, 0xb4, 'storm gray'), + RgbInt8Color.rgbName(0xb0, 0xb7, 0xbe, 'pearl blue'), + RgbInt8Color.rgbName(0xb7, 0xbd, 0x6b, 'green banana'), + RgbInt8Color.rgbName(0xb4, 0xbb, 0x85, 'nile'), + RgbInt8Color.rgbName(0xb1, 0xc1, 0xa2, 'celadon green'), + RgbInt8Color.rgbName(0xad, 0xc3, 0xb4, 'aqua foam'), + RgbInt8Color.rgbName(0xab, 0xc4, 0xc0, 'surf spray'), + RgbInt8Color.rgbName(0xad, 0xbe, 0xd3, 'skyway'), + RgbInt8Color.rgbName(0xb4, 0xc7, 0x9c, 'foam green'), + RgbInt8Color.rgbName(0xb4, 0xca, 0xb7, 'celadon'), + RgbInt8Color.rgbName(0xaf, 0xc9, 0xba, 'subtle green'), + RgbInt8Color.rgbName(0xbe, 0xd3, 0x8e, 'lettuce green'), + RgbInt8Color.rgbName(0xb5, 0xd2, 0xdc, 'starlight blue'), + RgbInt8Color.rgbName(0xb8, 0xe3, 0xd2, 'honeydew'), + RgbInt8Color.rgbName(0xba, 0xe5, 0xd6, 'bay'), + RgbInt8Color.rgbName(0xb8, 0xe2, 0xdc, 'fair aqua'), + RgbInt8Color.rgbName(0xbc, 0xd9, 0xc8, 'misty jade'), + RgbInt8Color.rgbName(0xbf, 0x19, 0x32, 'true red'), + RgbInt8Color.rgbName(0xc8, 0x1d, 0x31, 'high risk red'), + RgbInt8Color.rgbName(0xc6, 0x17, 0x4e, 'virtual pink'), + RgbInt8Color.rgbName(0xc0, 0x13, 0x52, 'love potion'), + RgbInt8Color.rgbName(0xc2, 0x1e, 0x56, 'rose red'), + RgbInt8Color.rgbName(0xfa, 0x0, 0x8a, 'pink glo'), + RgbInt8Color.rgbName(0xd0, 0x1c, 0x1f, 'fiery red'), + RgbInt8Color.rgbName(0xc6, 0x21, 0x68, 'pink peacock'), + RgbInt8Color.rgbName(0xc0, 0x42, 0x8a, 'rose violet'), + RgbInt8Color.rgbName(0xc3, 0x41, 0x21, 'pureed pumpkin'), + RgbInt8Color.rgbName(0xc7, 0x45, 0x8b, 'raspberry rose'), + RgbInt8Color.rgbName(0xc3, 0x44, 0x7a, 'fuchsia rose'), + RgbInt8Color.rgbName(0xd3, 0x61, 0xa3, 'phlox pink'), + RgbInt8Color.rgbName(0xbb, 0x36, 0x3f, 'rococco red'), + RgbInt8Color.rgbName(0xc5, 0x33, 0x46, 'tomato puree'), + RgbInt8Color.rgbName(0xb7, 0x48, 0x4f, 'cranberry'), + RgbInt8Color.rgbName(0xbe, 0x45, 0x4f, 'chrysanthemum'), + RgbInt8Color.rgbName(0xc4, 0x62, 0x15, 'autumn maple'), + RgbInt8Color.rgbName(0xc2, 0x45, 0x2d, 'red clay'), + RgbInt8Color.rgbName(0xbe, 0x4b, 0x3b, 'summer fig'), + RgbInt8Color.rgbName(0xc1, 0x4a, 0x64, 'claret red'), + RgbInt8Color.rgbName(0xc1, 0x65, 0x12, 'marmalade'), + RgbInt8Color.rgbName(0xbe, 0x51, 0x41, 'chili'), + RgbInt8Color.rgbName(0xb4, 0x58, 0x65, 'slate rose'), + RgbInt8Color.rgbName(0xb9, 0x5b, 0x3f, 'spice route'), + RgbInt8Color.rgbName(0xb7, 0x5e, 0x41, 'mango'), + RgbInt8Color.rgbName(0xc2, 0x5a, 0x3c, 'orange rust'), + RgbInt8Color.rgbName(0xbb, 0x5b, 0x46, 'mecca orange'), + RgbInt8Color.rgbName(0xb6, 0x5d, 0x4b, 'ginger spice'), + RgbInt8Color.rgbName(0xb0, 0x65, 0x4b, 'autumn leaf'), + RgbInt8Color.rgbName(0xad, 0x6b, 0x4e, 'copper'), + RgbInt8Color.rgbName(0xb1, 0x6e, 0x52, 'sunburn'), + RgbInt8Color.rgbName(0xba, 0x63, 0x64, 'faded rose'), + RgbInt8Color.rgbName(0xb0, 0x70, 0x69, 'brick dust'), + RgbInt8Color.rgbName(0xb9, 0x71, 0x4f, 'raw sienna'), + RgbInt8Color.rgbName(0xbb, 0x7a, 0x2c, 'inca gold'), + RgbInt8Color.rgbName(0xbe, 0x75, 0x2d, 'golden oak'), + RgbInt8Color.rgbName(0xac, 0x7e, 0x69, '2r09 sp'), + RgbInt8Color.rgbName(0xba, 0x78, 0x72, 'desert sand'), + RgbInt8Color.rgbName(0xad, 0x7e, 0x71, '4r09 sp'), + RgbInt8Color.rgbName(0xba, 0x79, 0x7d, 'dusty rose'), + RgbInt8Color.rgbName(0xb5, 0x82, 0x99, 'mauve orchid'), + RgbInt8Color.rgbName(0xc1, 0x93, 0xc0, 'violet tulle'), + RgbInt8Color.rgbName(0xb4, 0x83, 0x5b, 'biscuit'), + RgbInt8Color.rgbName(0xbb, 0x83, 0x64, 'toasted nut'), + RgbInt8Color.rgbName(0xb1, 0x88, 0x6e, 'macaroon'), + RgbInt8Color.rgbName(0xb3, 0x88, 0x6e, '1r08 sp'), + RgbInt8Color.rgbName(0xb1, 0x88, 0x6c, '1y08 sp'), + RgbInt8Color.rgbName(0xb3, 0x86, 0x72, '2r08 sp'), + RgbInt8Color.rgbName(0xaf, 0x88, 0x70, '2y08 sp'), + RgbInt8Color.rgbName(0xaa, 0x90, 0x7d, 'natural'), + RgbInt8Color.rgbName(0xb5, 0x85, 0x76, '3r08 sp'), + RgbInt8Color.rgbName(0xb5, 0x86, 0x78, '4r08 sp'), + RgbInt8Color.rgbName(0xb0, 0x90, 0x80, 'roebuck'), + RgbInt8Color.rgbName(0xb9, 0x83, 0x91, 'foxglove'), + RgbInt8Color.rgbName(0xb8, 0x89, 0x95, 'lilas'), + RgbInt8Color.rgbName(0xae, 0x90, 0xa7, 'lavender mist'), + RgbInt8Color.rgbName(0xb8, 0x8b, 0xb3, 'smoky grape'), + RgbInt8Color.rgbName(0xbe, 0x9e, 0xc9, 'crocus petal'), + RgbInt8Color.rgbName(0xbe, 0xa0, 0xc8, 'lupine'), + RgbInt8Color.rgbName(0xc4, 0x94, 0x1f, 'tawny olive'), + RgbInt8Color.rgbName(0xba, 0x92, 0x38, 'honey'), + RgbInt8Color.rgbName(0xbc, 0x8e, 0x48, 'amber gold'), + RgbInt8Color.rgbName(0xbe, 0x8a, 0x4a, 'spruce yellow'), + RgbInt8Color.rgbName(0xb6, 0x8f, 0x52, 'honey mustard'), + RgbInt8Color.rgbName(0xb7, 0x8b, 0x5f, 'pale gold'), + RgbInt8Color.rgbName(0xb1, 0x8f, 0x6a, 'iced coffee'), + RgbInt8Color.rgbName(0xb6, 0x8d, 0x7b, '2r07 sp'), + RgbInt8Color.rgbName(0xb4, 0x92, 0x77, '3y07 sp'), + RgbInt8Color.rgbName(0xb3, 0x92, 0x76, '4y07 sp'), + RgbInt8Color.rgbName(0xb1, 0x91, 0x75, '5y07 sp'), + RgbInt8Color.rgbName(0xb9, 0x8d, 0x7e, '3r07 sp'), + RgbInt8Color.rgbName(0xae, 0x94, 0x90, 'fawn'), + RgbInt8Color.rgbName(0xc8, 0x97, 0x20, 'nugget gold'), + RgbInt8Color.rgbName(0xc5, 0x96, 0x36, 'golden spice'), + RgbInt8Color.rgbName(0xb4, 0x9b, 0x57, 'rich gold'), + RgbInt8Color.rgbName(0xb5, 0x9a, 0x6a, 'prairie sand'), + RgbInt8Color.rgbName(0xb4, 0x9c, 0x73, 'lark'), + RgbInt8Color.rgbName(0xb6, 0x95, 0x74, 'tan'), + RgbInt8Color.rgbName(0xb6, 0x92, 0x79, '1y07 sp'), + RgbInt8Color.rgbName(0xb5, 0x92, 0x7b, '2y07 sp'), + RgbInt8Color.rgbName(0xb4, 0x9b, 0x80, 'gilded beige'), + RgbInt8Color.rgbName(0xae, 0x9d, 0x8a, 'light taupe'), + RgbInt8Color.rgbName(0xb6, 0x98, 0x85, 'nougat'), + RgbInt8Color.rgbName(0xb5, 0x98, 0xa3, 'mauve shadows'), + RgbInt8Color.rgbName(0xbf, 0xb1, 0xd2, 'pastel lilac'), + RgbInt8Color.rgbName(0xbe, 0x9e, 0x6f, 'curry'), + RgbInt8Color.rgbName(0xb4, 0x9f, 0x89, 'nomad'), + RgbInt8Color.rgbName(0xb4, 0xa8, 0xac, 'cloud gray'), + RgbInt8Color.rgbName(0xb9, 0xa8, 0xbe, 'lavender frost'), + RgbInt8Color.rgbName(0xbb, 0xb1, 0x67, 'golden green'), + RgbInt8Color.rgbName(0xbe, 0xa9, 0x68, 'southern moss'), + RgbInt8Color.rgbName(0xb6, 0xb1, 0x74, 'leek green'), + RgbInt8Color.rgbName(0xbb, 0xaa, 0x7e, 'silver fern'), + RgbInt8Color.rgbName(0xb5, 0xad, 0x88, 'pale olive green'), + RgbInt8Color.rgbName(0xbf, 0xab, 0x83, 'taos taupe'), + RgbInt8Color.rgbName(0xba, 0xaa, 0x91, 'safari'), + RgbInt8Color.rgbName(0xb9, 0xa6, 0x8d, 'sesame'), + RgbInt8Color.rgbName(0xb4, 0xa9, 0x95, 'oxford tan'), + RgbInt8Color.rgbName(0xb6, 0xa8, 0x93, 'white pepper'), + RgbInt8Color.rgbName(0xb7, 0xa8, 0x97, 'humus'), + RgbInt8Color.rgbName(0xb1, 0xb0, 0x9f, 'agate gray'), + RgbInt8Color.rgbName(0xbf, 0xc8, 0xe0, 'xenon blue'), + RgbInt8Color.rgbName(0xb6, 0xba, 0x99, 'lint'), + RgbInt8Color.rgbName(0xba, 0xb6, 0x96, 'bog'), + RgbInt8Color.rgbName(0xbb, 0xb4, 0xa0, 'tidal foam'), + RgbInt8Color.rgbName(0xb7, 0xb5, 0x9f, 'alfalfa'), + RgbInt8Color.rgbName(0xb8, 0xb0, 0xa1, 'feather gray'), + RgbInt8Color.rgbName(0xb7, 0xb1, 0xab, 'silver cloud'), + RgbInt8Color.rgbName(0xb2, 0xbc, 0xb9, 'metal'), + RgbInt8Color.rgbName(0xbc, 0xb1, 0xbe, 'iris'), + RgbInt8Color.rgbName(0xb9, 0xb3, 0xc5, 'thistle'), + RgbInt8Color.rgbName(0xb9, 0xb7, 0xd4, 'purple heather'), + RgbInt8Color.rgbName(0xc4, 0xbf, 0x71, 'linden green'), + RgbInt8Color.rgbName(0xbd, 0xbe, 0x88, 'beechnut'), + RgbInt8Color.rgbName(0xb5, 0xc3, 0x8e, 'margarita'), + RgbInt8Color.rgbName(0xb9, 0xbc, 0xb6, 'blue fox'), + RgbInt8Color.rgbName(0xb7, 0xc2, 0xb2, 'sea foam'), + RgbInt8Color.rgbName(0xba, 0xbc, 0xc0, 'micro chip'), + RgbInt8Color.rgbName(0xb9, 0xba, 0xbd, 'quiet gray'), + RgbInt8Color.rgbName(0xbd, 0xbe, 0xbf, 'vapor blue'), + RgbInt8Color.rgbName(0xb7, 0xbe, 0xcb, 'gray dawn'), + RgbInt8Color.rgbName(0xb7, 0xc0, 0xd6, 'heather'), + RgbInt8Color.rgbName(0xc5, 0xca, 0x79, 'celery green'), + RgbInt8Color.rgbName(0xbd, 0xc9, 0xa1, 'seedling'), + RgbInt8Color.rgbName(0xb7, 0xc9, 0xb1, 'bok choy'), + RgbInt8Color.rgbName(0xbc, 0xc8, 0xc6, 'sky gray'), + RgbInt8Color.rgbName(0xb3, 0xcb, 0xd9, 'omphalodes'), + RgbInt8Color.rgbName(0xb5, 0xc7, 0xd3, 'baby blue'), + RgbInt8Color.rgbName(0xc4, 0xd1, 0x9a, 'lily green'), + RgbInt8Color.rgbName(0xc1, 0xd3, 0xa5, 'reed'), + RgbInt8Color.rgbName(0xbf, 0xd1, 0xad, 'gleam'), + RgbInt8Color.rgbName(0xbf, 0xd1, 0xb3, 'seacrest'), + RgbInt8Color.rgbName(0xbd, 0xd5, 0xbc, 'spray'), + RgbInt8Color.rgbName(0xbe, 0xd0, 0xbe, 'green lily'), + RgbInt8Color.rgbName(0xd5, 0xdb, 0x5c, 'limeade'), + RgbInt8Color.rgbName(0xc2, 0xe5, 0xdb, 'moonlight jade'), + RgbInt8Color.rgbName(0xc3, 0xe9, 0xe4, 'soothing sea'), + RgbInt8Color.rgbName(0xc9, 0xdd, 0xa2, 'butterfly'), + RgbInt8Color.rgbName(0xc0, 0xdc, 0xcd, 'dusty aqua'), + RgbInt8Color.rgbName(0xc3, 0xdd, 0xd6, 'opal blue'), + RgbInt8Color.rgbName(0xc5, 0xde, 0xd9, 'glacier'), + RgbInt8Color.rgbName(0xc6, 0xe3, 0xe1, 'blue glass'), + RgbInt8Color.rgbName(0xc8, 0xe0, 0xe0, 'skylight'), + RgbInt8Color.rgbName(0xc8, 0xdd, 0xdd, 'whispering blue'), + RgbInt8Color.rgbName(0xcc, 0x1c, 0x3b, 'lollipop'), + RgbInt8Color.rgbName(0xff, 0x3e, 0xa5, 'knockout pink'), + RgbInt8Color.rgbName(0xcd, 0x21, 0x2a, 'flame scarlet'), + RgbInt8Color.rgbName(0xcf, 0x2d, 0x71, 'beetroot purple'), + RgbInt8Color.rgbName(0xce, 0x31, 0x75, 'pink yarrow'), + RgbInt8Color.rgbName(0xca, 0x34, 0x22, 'poinciana'), + RgbInt8Color.rgbName(0xcb, 0x33, 0x73, 'cabaret'), + RgbInt8Color.rgbName(0xcc, 0x39, 0x7b, 'fuchsia purple'), + RgbInt8Color.rgbName(0xcc, 0x3a, 0x71, 'raspberry sorbet'), + RgbInt8Color.rgbName(0xd2, 0x3c, 0x77, 'magenta'), + RgbInt8Color.rgbName(0xce, 0x29, 0x39, 'tomato'), + RgbInt8Color.rgbName(0xda, 0x32, 0x1c, 'orange.com'), + RgbInt8Color.rgbName(0xcb, 0x34, 0x41, 'poinsettia'), + RgbInt8Color.rgbName(0xc8, 0x4b, 0x45, 'paprika'), + RgbInt8Color.rgbName(0xc1, 0x59, 0x50, 'burnt sienna'), + RgbInt8Color.rgbName(0xce, 0x6b, 0xa4, 'super pink'), + RgbInt8Color.rgbName(0xd8, 0x8a, 0xbe, 'cyclamen'), + RgbInt8Color.rgbName(0xce, 0x5b, 0x78, 'fruit dove'), + RgbInt8Color.rgbName(0xc6, 0x60, 0x91, 'ibis rose'), + RgbInt8Color.rgbName(0xc7, 0x62, 0x2b, 'burnt orange'), + RgbInt8Color.rgbName(0xc3, 0x65, 0x3c, 'apricot orange'), + RgbInt8Color.rgbName(0xc2, 0x6a, 0x5a, 'apricot brandy'), + RgbInt8Color.rgbName(0xc6, 0x7f, 0xae, 'crocus'), + RgbInt8Color.rgbName(0xca, 0x80, 0xb1, 'opera mauve'), + RgbInt8Color.rgbName(0xc8, 0x76, 0x29, 'desert sun'), + RgbInt8Color.rgbName(0xc5, 0x73, 0x3d, 'peach caramel'), + RgbInt8Color.rgbName(0xbf, 0x76, 0x51, 'caramel'), + RgbInt8Color.rgbName(0xc7, 0x79, 0x43, 'golden ochre'), + RgbInt8Color.rgbName(0xc5, 0x76, 0x44, 'tomato cream'), + RgbInt8Color.rgbName(0xcb, 0x8e, 0x16, 'golden yellow'), + RgbInt8Color.rgbName(0xbc, 0x8a, 0x65, 'sandstorm'), + RgbInt8Color.rgbName(0xba, 0x86, 0x71, 'cork'), + RgbInt8Color.rgbName(0xc0, 0x8a, 0x80, 'cameo brown'), + RgbInt8Color.rgbName(0xc2, 0x87, 0x7d, 'rose dawn'), + RgbInt8Color.rgbName(0xbc, 0x8d, 0x80, '4r07 sp'), + RgbInt8Color.rgbName(0xc2, 0x87, 0x99, 'polignac'), + RgbInt8Color.rgbName(0xc6, 0x92, 0x41, 'narcissus'), + RgbInt8Color.rgbName(0xbd, 0x8c, 0x66, 'pastry shell'), + RgbInt8Color.rgbName(0xb9, 0x8e, 0x68, 'doe'), + RgbInt8Color.rgbName(0xb7, 0x92, 0x7b, '1r07 sp'), + RgbInt8Color.rgbName(0xb9, 0x99, 0x84, 'brush'), + RgbInt8Color.rgbName(0xba, 0x99, 0x82, '3y06 sp'), + RgbInt8Color.rgbName(0xbe, 0x91, 0x86, '5r07 sp'), + RgbInt8Color.rgbName(0xc1, 0x95, 0x8c, '5r06 sp'), + RgbInt8Color.rgbName(0xb8, 0x9c, 0x96, 'adobe rose'), + RgbInt8Color.rgbName(0xcc, 0xa0, 0x1d, 'lemon curry'), + RgbInt8Color.rgbName(0xc3, 0x96, 0x4d, 'tinsel'), + RgbInt8Color.rgbName(0xc2, 0x9e, 0x4d, 'sauterne'), + RgbInt8Color.rgbName(0xc0, 0x91, 0x6c, 'fenugreek'), + RgbInt8Color.rgbName(0xbb, 0x98, 0x81, '1y06 sp'), + RgbInt8Color.rgbName(0xb9, 0x99, 0x80, '4y06 sp'), + RgbInt8Color.rgbName(0xb8, 0x9a, 0x7e, '5y06 sp'), + RgbInt8Color.rgbName(0xbe, 0x97, 0x85, 'tuscany'), + RgbInt8Color.rgbName(0xc4, 0x98, 0x83, 'café crème'), + RgbInt8Color.rgbName(0xbb, 0x99, 0x83, '1r06 sp'), + RgbInt8Color.rgbName(0xbd, 0x95, 0x84, '2r06 sp'), + RgbInt8Color.rgbName(0xbd, 0x99, 0x83, '2y06 sp'), + RgbInt8Color.rgbName(0xbb, 0xa5, 0xa0, 'shadow gray'), + RgbInt8Color.rgbName(0xc4, 0x9d, 0xb4, 'mauve mist'), + RgbInt8Color.rgbName(0xc6, 0xb0, 0xd5, 'orchid bloom'), + RgbInt8Color.rgbName(0xd2, 0xad, 0xd5, 'orchid bouquet'), + RgbInt8Color.rgbName(0xc4, 0xa6, 0x47, 'oil yellow'), + RgbInt8Color.rgbName(0xc1, 0xa6, 0x5c, 'olivenite'), + RgbInt8Color.rgbName(0xc4, 0x9d, 0x69, 'taffy'), + RgbInt8Color.rgbName(0xbc, 0xa6, 0x86, 'candied ginger'), + RgbInt8Color.rgbName(0xbc, 0xa4, 0x83, 'curds & whey'), + RgbInt8Color.rgbName(0xc0, 0xa6, 0x82, 'croissant'), + RgbInt8Color.rgbName(0xbe, 0x9d, 0x86, '1y05 sp'), + RgbInt8Color.rgbName(0xbc, 0x9d, 0x87, '4y05 sp'), + RgbInt8Color.rgbName(0xbd, 0x9f, 0x87, '5y05 sp'), + RgbInt8Color.rgbName(0xbf, 0xa5, 0x8a, 'ginger root'), + RgbInt8Color.rgbName(0xbf, 0x9f, 0x8c, '1r05 sp'), + RgbInt8Color.rgbName(0xc2, 0x9c, 0x8c, '2r05 sp'), + RgbInt8Color.rgbName(0xbe, 0x9d, 0x88, '3y05 sp'), + RgbInt8Color.rgbName(0xc0, 0xa4, 0x8d, '5y04 sp'), + RgbInt8Color.rgbName(0xc6, 0xa0, 0x96, '4r04 sp'), + RgbInt8Color.rgbName(0xbb, 0xa9, 0x9f, 'mushroom'), + RgbInt8Color.rgbName(0xb5, 0xae, 0xa5, 'chateau gray'), + RgbInt8Color.rgbName(0xbf, 0xa3, 0xaf, 'dawn pink'), + RgbInt8Color.rgbName(0xc0, 0xa5, 0xae, 'keepsake lilac'), + RgbInt8Color.rgbName(0xc8, 0xaa, 0x6e, 'fall leaf'), + RgbInt8Color.rgbName(0xc0, 0xad, 0x7c, 'hemp'), + RgbInt8Color.rgbName(0xc4, 0xa9, 0x81, 'lattè'), + RgbInt8Color.rgbName(0xc0, 0xab, 0x8e, 'warm sand'), + RgbInt8Color.rgbName(0xc1, 0xa6, 0x8d, 'cuban sand'), + RgbInt8Color.rgbName(0xc0, 0xac, 0x92, 'irish cream'), + RgbInt8Color.rgbName(0xbd, 0xab, 0x9b, 'doeskin'), + RgbInt8Color.rgbName(0xc3, 0xad, 0xb3, 'burnished lilac'), + RgbInt8Color.rgbName(0xc2, 0xac, 0xb1, 'violet ice'), + RgbInt8Color.rgbName(0xc0, 0xaa, 0xc0, 'fair orchid'), + RgbInt8Color.rgbName(0xbd, 0xb1, 0xcb, 'orchid petal'), + RgbInt8Color.rgbName(0xbf, 0xaf, 0x92, 'pale khaki'), + RgbInt8Color.rgbName(0xc7, 0xb5, 0x95, 'mojave desert'), + RgbInt8Color.rgbName(0xbd, 0xb6, 0xab, 'silver lining'), + RgbInt8Color.rgbName(0xbd, 0xba, 0xa9, 'pelican'), + RgbInt8Color.rgbName(0xc0, 0xb9, 0xc2, 'lilac marble'), + RgbInt8Color.rgbName(0xbb, 0xbc, 0xbc, 'gray violet'), + RgbInt8Color.rgbName(0xbc, 0xb4, 0xc4, 'misty lilac'), + RgbInt8Color.rgbName(0xbd, 0xb8, 0xc7, 'evening haze'), + RgbInt8Color.rgbName(0xc0, 0xbd, 0xd1, 'lavender blue'), + RgbInt8Color.rgbName(0xce, 0xc1, 0x53, 'celery'), + RgbInt8Color.rgbName(0xc0, 0xb9, 0xa4, 'cement'), + RgbInt8Color.rgbName(0xc3, 0xbd, 0xab, 'overcast'), + RgbInt8Color.rgbName(0xc4, 0xbc, 0xad, 'peyote'), + RgbInt8Color.rgbName(0xc4, 0xbe, 0xb4, 'pumice stone'), + RgbInt8Color.rgbName(0xc2, 0xbe, 0xb6, 'moonstruck'), + RgbInt8Color.rgbName(0xba, 0xc2, 0xba, 'mercury'), + RgbInt8Color.rgbName(0xbc, 0xc6, 0xc2, 'smoke'), + RgbInt8Color.rgbName(0xbf, 0xca, 0xb4, 'fog green'), + RgbInt8Color.rgbName(0xc3, 0xc6, 0xc8, 'oyster mushroom'), + RgbInt8Color.rgbName(0xbf, 0xcd, 0xcc, 'misty blue'), + RgbInt8Color.rgbName(0xc0, 0xcd, 0xc4, 'pale aqua'), + RgbInt8Color.rgbName(0xc5, 0xc6, 0xc7, 'glacier gray'), + RgbInt8Color.rgbName(0xc7, 0xc8, 0xca, 'lunar rock'), + RgbInt8Color.rgbName(0xbf, 0xc7, 0xd6, 'arctic ice'), + RgbInt8Color.rgbName(0xbf, 0xca, 0xd6, 'plein air'), + RgbInt8Color.rgbName(0xbc, 0xcc, 0xda, 'ballad blue'), + RgbInt8Color.rgbName(0xc9, 0xd7, 0x7e, 'daiquiri green'), + RgbInt8Color.rgbName(0xce, 0xd4, 0x8c, 'lime sherbet'), + RgbInt8Color.rgbName(0xc5, 0xcf, 0xb4, 'tender greens'), + RgbInt8Color.rgbName(0xc1, 0xd0, 0xbe, 'dewkist'), + RgbInt8Color.rgbName(0xbc, 0xd3, 0xd5, 'pastel blue'), + RgbInt8Color.rgbName(0xc6, 0xd2, 0xd2, 'ice flow'), + RgbInt8Color.rgbName(0xc9, 0xd9, 0xb3, 'seafoam green'), + RgbInt8Color.rgbName(0xcf, 0xe0, 0x9d, 'shadow lime'), + RgbInt8Color.rgbName(0xed, 0xff, 0x0, 'safety yellow'), + RgbInt8Color.rgbName(0xd2, 0xe7, 0xca, 'ambrosia'), + RgbInt8Color.rgbName(0xce, 0xe1, 0xd4, 'clearly aqua'), + RgbInt8Color.rgbName(0xd4, 0x2e, 0x5b, 'azalea'), + RgbInt8Color.rgbName(0xd4, 0x29, 0x5e, 'sparkling cosmo'), + RgbInt8Color.rgbName(0xd3, 0x2e, 0x5e, 'raspberry'), + RgbInt8Color.rgbName(0xd7, 0x3c, 0x26, 'spicy orange'), + RgbInt8Color.rgbName(0xd5, 0x35, 0x47, 'hibiscus'), + RgbInt8Color.rgbName(0xdc, 0x33, 0x59, 'teaberry'), + RgbInt8Color.rgbName(0xda, 0x3d, 0x58, 'geranium'), + RgbInt8Color.rgbName(0xd8, 0x46, 0x52, 'bittersweet'), + RgbInt8Color.rgbName(0xcd, 0x4e, 0x7c, 'pink flambé'), + RgbInt8Color.rgbName(0xd6, 0x50, 0x76, 'honeysuckle'), + RgbInt8Color.rgbName(0xd1, 0x58, 0x37, 'koi'), + RgbInt8Color.rgbName(0xc7, 0x5f, 0x4e, 'ginger'), + RgbInt8Color.rgbName(0xd1, 0x62, 0x77, 'rapture rose'), + RgbInt8Color.rgbName(0xd6, 0x73, 0xa0, 'wild orchid'), + RgbInt8Color.rgbName(0xe8, 0x68, 0x0, 'exuberance'), + RgbInt8Color.rgbName(0xd5, 0x62, 0x31, 'harvest pumpkin'), + RgbInt8Color.rgbName(0xc7, 0x67, 0x53, 'langoustino'), + RgbInt8Color.rgbName(0xcf, 0x69, 0x77, 'desert rose'), + RgbInt8Color.rgbName(0xd6, 0x63, 0x8d, 'shocking pink'), + RgbInt8Color.rgbName(0xd1, 0x6f, 0x52, 'arabesque'), + RgbInt8Color.rgbName(0xd2, 0x73, 0x8f, 'chateau rose'), + RgbInt8Color.rgbName(0xcf, 0x7d, 0x49, 'apricot buff'), + RgbInt8Color.rgbName(0xce, 0x7b, 0x5b, 'brandied melon'), + RgbInt8Color.rgbName(0xce, 0x78, 0x5d, 'carnelian'), + RgbInt8Color.rgbName(0xd0, 0x7b, 0x61, 'dusted clay'), + RgbInt8Color.rgbName(0xc6, 0x84, 0x63, 'pheasant'), + RgbInt8Color.rgbName(0xca, 0x84, 0x8a, 'brandied apricot'), + RgbInt8Color.rgbName(0xd0, 0x89, 0x3f, 'yam'), + RgbInt8Color.rgbName(0xd0, 0x83, 0x44, 'topaz'), + RgbInt8Color.rgbName(0xcf, 0x88, 0x48, 'nugget'), + RgbInt8Color.rgbName(0xc4, 0x8a, 0x69, 'sandstone'), + RgbInt8Color.rgbName(0xc4, 0x8f, 0x65, 'butterum'), + RgbInt8Color.rgbName(0xcd, 0x84, 0x72, 'tawny orange'), + RgbInt8Color.rgbName(0xce, 0x84, 0x77, 'canyon clay'), + RgbInt8Color.rgbName(0xce, 0x83, 0x7a, 'terra cotta'), + RgbInt8Color.rgbName(0xcb, 0x89, 0x86, 'rosette'), + RgbInt8Color.rgbName(0xd1, 0x84, 0x89, 'mauveglow'), + RgbInt8Color.rgbName(0xce, 0x84, 0x98, 'wild rose'), + RgbInt8Color.rgbName(0xce, 0x87, 0x9f, 'cashmere rose'), + RgbInt8Color.rgbName(0xd3, 0x9b, 0xcb, 'orchid'), + RgbInt8Color.rgbName(0xd3, 0x90, 0x27, 'sunflower'), + RgbInt8Color.rgbName(0xd7, 0x92, 0x32, 'golden orange'), + RgbInt8Color.rgbName(0xcc, 0x93, 0x50, 'honey yellow'), + RgbInt8Color.rgbName(0xd3, 0x8e, 0x4f, 'buckskin'), + RgbInt8Color.rgbName(0xbe, 0x9c, 0x87, '2y05 sp'), + RgbInt8Color.rgbName(0xc2, 0x97, 0x87, '3r06 sp'), + RgbInt8Color.rgbName(0xc1, 0x94, 0x87, '4r06 sp'), + RgbInt8Color.rgbName(0xc3, 0x9a, 0x8d, '3r05 sp'), + RgbInt8Color.rgbName(0xc3, 0x9a, 0x8e, '4r05 sp'), + RgbInt8Color.rgbName(0xc3, 0x99, 0x90, '5r05 sp'), + RgbInt8Color.rgbName(0xd0, 0x91, 0xb2, 'moonlite mauve'), + RgbInt8Color.rgbName(0xdb, 0x93, 0x32, 'autumn blaze'), + RgbInt8Color.rgbName(0xca, 0x99, 0x78, 'toast'), + RgbInt8Color.rgbName(0xc1, 0x9e, 0x87, 'sirocco'), + RgbInt8Color.rgbName(0xc2, 0xa3, 0x8e, '1y04 sp'), + RgbInt8Color.rgbName(0xc3, 0xa2, 0x8f, '2y04 sp'), + RgbInt8Color.rgbName(0xc2, 0xa4, 0x8d, '4y04 sp'), + RgbInt8Color.rgbName(0xc2, 0xa5, 0x94, 'rugby tan'), + RgbInt8Color.rgbName(0xc5, 0xa1, 0x93, 'mahogany rose'), + RgbInt8Color.rgbName(0xce, 0x96, 0x94, 'rose tan'), + RgbInt8Color.rgbName(0xc5, 0xa1, 0x92, '2r04 sp'), + RgbInt8Color.rgbName(0xc6, 0xa1, 0x95, '3r04 sp'), + RgbInt8Color.rgbName(0xc6, 0xa0, 0x98, '5r04 sp'), + RgbInt8Color.rgbName(0xc4, 0xa4, 0xa3, 'pale mauve'), + RgbInt8Color.rgbName(0xd0, 0x96, 0x9e, 'blush'), + RgbInt8Color.rgbName(0xc8, 0x9f, 0xa5, 'zephyr'), + RgbInt8Color.rgbName(0xd2, 0x94, 0xaa, 'orchid smoke'), + RgbInt8Color.rgbName(0xd6, 0x9c, 0x2f, 'mango mojito'), + RgbInt8Color.rgbName(0xd4, 0xab, 0x31, 'ceylon yellow'), + RgbInt8Color.rgbName(0xd3, 0x9c, 0x43, 'mineral yellow'), + RgbInt8Color.rgbName(0xd5, 0xa1, 0x49, 'honey gold'), + RgbInt8Color.rgbName(0xd1, 0xa1, 0x4a, 'bright gold'), + RgbInt8Color.rgbName(0xd0, 0x9d, 0x5d, 'oak buff'), + RgbInt8Color.rgbName(0xc9, 0xa3, 0x8d, 'maple sugar'), + RgbInt8Color.rgbName(0xc3, 0xa3, 0x8f, '1r04 sp'), + RgbInt8Color.rgbName(0xc2, 0xa3, 0x8f, '3y04 sp'), + RgbInt8Color.rgbName(0xca, 0xa3, 0x9a, 'misty rose'), + RgbInt8Color.rgbName(0xc7, 0xa8, 0x96, '1r02 sp'), + RgbInt8Color.rgbName(0xc7, 0xa6, 0x94, '1r03 sp'), + RgbInt8Color.rgbName(0xc5, 0xa6, 0x91, '1y03 sp'), + RgbInt8Color.rgbName(0xca, 0xa5, 0x96, '2r03 sp'), + RgbInt8Color.rgbName(0xc2, 0xae, 0x9d, 'moonlight'), + RgbInt8Color.rgbName(0xd2, 0xb0, 0x4c, 'bamboo'), + RgbInt8Color.rgbName(0xd8, 0xae, 0x47, 'spicy mustard'), + RgbInt8Color.rgbName(0xcd, 0xab, 0x81, 'sand'), + RgbInt8Color.rgbName(0xc7, 0xa9, 0x92, '4y02 sp'), + RgbInt8Color.rgbName(0xc6, 0xa8, 0x91, '4y03 sp'), + RgbInt8Color.rgbName(0xc5, 0xa9, 0x91, '5y02 sp'), + RgbInt8Color.rgbName(0xc4, 0xa8, 0x90, '5y03 sp'), + RgbInt8Color.rgbName(0xc8, 0xac, 0x99, '1y01 sp'), + RgbInt8Color.rgbName(0xc8, 0xa9, 0x95, '1y02 sp'), + RgbInt8Color.rgbName(0xc9, 0xa9, 0x96, '2y02 sp'), + RgbInt8Color.rgbName(0xc8, 0xa7, 0x93, '2y03 sp'), + RgbInt8Color.rgbName(0xca, 0xab, 0x96, '3y01 sp'), + RgbInt8Color.rgbName(0xc8, 0xa9, 0x94, '3y02 sp'), + RgbInt8Color.rgbName(0xc7, 0xa7, 0x92, '3y03 sp'), + RgbInt8Color.rgbName(0xcb, 0xac, 0x95, '4y01 sp'), + RgbInt8Color.rgbName(0xc9, 0xad, 0x95, '5y01 sp'), + RgbInt8Color.rgbName(0xc1, 0xb7, 0xb0, 'silver gray'), + RgbInt8Color.rgbName(0xce, 0xad, 0xbe, 'fragrant lilac'), + RgbInt8Color.rgbName(0xd1, 0xb2, 0x72, 'rattan'), + RgbInt8Color.rgbName(0xc9, 0xb2, 0x7c, 'cocoon'), + RgbInt8Color.rgbName(0xcc, 0xb3, 0x90, 'almond buff'), + RgbInt8Color.rgbName(0xca, 0xb6, 0x98, 'pebble'), + RgbInt8Color.rgbName(0xcd, 0xb8, 0xa0, 'frosted almond'), + RgbInt8Color.rgbName(0xcb, 0xb7, 0xa2, 'smoke gray'), + RgbInt8Color.rgbName(0xcf, 0xb4, 0xa8, 'rose dust'), + RgbInt8Color.rgbName(0xcc, 0xb9, 0x7e, 'dried moss'), + RgbInt8Color.rgbName(0xcf, 0xbb, 0x7b, 'pampas'), + RgbInt8Color.rgbName(0xcf, 0xc3, 0x85, 'shadow green'), + RgbInt8Color.rgbName(0xc8, 0xc0, 0x9f, 'gravel'), + RgbInt8Color.rgbName(0xd1, 0xbe, 0x9a, 'boulder'), + RgbInt8Color.rgbName(0xc7, 0xbb, 0xa4, 'brown rice'), + RgbInt8Color.rgbName(0xc7, 0xbf, 0xb3, 'gray morn'), + RgbInt8Color.rgbName(0xc8, 0xc1, 0xab, 'castle wall'), + RgbInt8Color.rgbName(0xca, 0xc2, 0xaf, 'oyster gray'), + RgbInt8Color.rgbName(0xc6, 0xc5, 0xc6, 'antarctica'), + RgbInt8Color.rgbName(0xcd, 0xc3, 0xd3, 'orchid hush'), + RgbInt8Color.rgbName(0xd9, 0xce, 0x52, 'green sheen'), + RgbInt8Color.rgbName(0xda, 0xcd, 0x65, 'acacia'), + RgbInt8Color.rgbName(0xd1, 0xc8, 0x7c, 'muted lime'), + RgbInt8Color.rgbName(0xd2, 0xcc, 0x81, 'endive'), + RgbInt8Color.rgbName(0xcb, 0xce, 0x91, 'pale green'), + RgbInt8Color.rgbName(0xca, 0xc4, 0xa4, 'green haze'), + RgbInt8Color.rgbName(0xcb, 0xc3, 0xb4, 'oatmeal'), + RgbInt8Color.rgbName(0xc5, 0xcc, 0xc0, 'green tint'), + RgbInt8Color.rgbName(0xc8, 0xcc, 0xca, 'dawn blue'), + RgbInt8Color.rgbName(0xca, 0xc7, 0xc6, 'wind chime'), + RgbInt8Color.rgbName(0xcf, 0xd2, 0xb2, 'aloe wash'), + RgbInt8Color.rgbName(0xca, 0xd3, 0xc1, 'almost aqua'), + RgbInt8Color.rgbName(0xcb, 0xce, 0xbe, 'celadon tint'), + RgbInt8Color.rgbName(0xcb, 0xd7, 0xd2, 'sprout green'), + RgbInt8Color.rgbName(0xc4, 0xd6, 0xd3, 'pale blue'), + RgbInt8Color.rgbName(0xc9, 0xd3, 0xdc, 'illusion blue'), + RgbInt8Color.rgbName(0xd2, 0xd5, 0x91, 'mellow green'), + RgbInt8Color.rgbName(0xd4, 0xdb, 0xb2, 'white jade'), + RgbInt8Color.rgbName(0xc8, 0xd8, 0xd7, 'chalk blue'), + RgbInt8Color.rgbName(0xca, 0xdd, 0xd9, 'morning mist'), + RgbInt8Color.rgbName(0xcf, 0xdb, 0xd1, 'milky green'), + RgbInt8Color.rgbName(0xcb, 0xdc, 0xdf, 'wan blue'), + RgbInt8Color.rgbName(0xf8, 0xe7, 0x2c, 'blazing yellow'), + RgbInt8Color.rgbName(0xd7, 0xe8, 0xbc, 'lime cream'), + RgbInt8Color.rgbName(0xd8, 0xeb, 0xe6, 'hint of mint'), + RgbInt8Color.rgbName(0xf6, 0xd3, 0x0, 'empire yellow'), + RgbInt8Color.rgbName(0xdf, 0xef, 0x87, 'sunny lime'), + RgbInt8Color.rgbName(0xd3, 0xde, 0xc4, 'meadow mist'), + RgbInt8Color.rgbName(0xd6, 0xde, 0xc9, 'canary green'), + RgbInt8Color.rgbName(0xd3, 0xe8, 0xdd, 'aqua glass'), + RgbInt8Color.rgbName(0xff, 0x67, 0xb3, 'sugar plum'), + RgbInt8Color.rgbName(0xdd, 0x41, 0x24, 'tangerine tango'), + RgbInt8Color.rgbName(0xdc, 0x34, 0x3b, 'poppy red'), + RgbInt8Color.rgbName(0xdf, 0x3f, 0x32, 'grenadine'), + RgbInt8Color.rgbName(0xdd, 0x41, 0x32, 'fiesta'), + RgbInt8Color.rgbName(0xe6, 0x3e, 0x62, 'paradise pink'), + RgbInt8Color.rgbName(0xe4, 0x41, 0x65, 'rouge red'), + RgbInt8Color.rgbName(0xde, 0x52, 0x85, 'fandango pink'), + RgbInt8Color.rgbName(0xdd, 0x5a, 0x91, 'carmine rose'), + RgbInt8Color.rgbName(0xe3, 0x41, 0x32, 'cherry tomato'), + RgbInt8Color.rgbName(0xe0, 0x49, 0x51, 'cayenne'), + RgbInt8Color.rgbName(0xe2, 0x55, 0x2c, 'orangeade'), + RgbInt8Color.rgbName(0xd8, 0x58, 0x63, 'rose of sharon'), + RgbInt8Color.rgbName(0xe4, 0x6c, 0x9a, 'azalea pink'), + RgbInt8Color.rgbName(0xdf, 0x75, 0x0, 'orange pepper'), + RgbInt8Color.rgbName(0xd7, 0x5c, 0x5d, 'spiced coral'), + RgbInt8Color.rgbName(0xd9, 0x61, 0x5b, 'deep sea coral'), + RgbInt8Color.rgbName(0xe5, 0x59, 0x82, 'hot pink'), + RgbInt8Color.rgbName(0xe0, 0x81, 0x19, 'dark cheddar'), + RgbInt8Color.rgbName(0xd8, 0x6d, 0x39, 'jaffa orange'), + RgbInt8Color.rgbName(0xdb, 0x6d, 0x7b, 'tea rose'), + RgbInt8Color.rgbName(0xe6, 0x80, 0xaa, 'aurora pink'), + RgbInt8Color.rgbName(0xe5, 0x76, 0x1f, 'russet orange'), + RgbInt8Color.rgbName(0xdf, 0x6e, 0x51, 'flamingo'), + RgbInt8Color.rgbName(0xd5, 0x7c, 0x6f, 'crabapple'), + RgbInt8Color.rgbName(0xdf, 0x88, 0xb7, 'fuchsia pink'), + RgbInt8Color.rgbName(0xdc, 0x79, 0x3a, 'orange ochre'), + RgbInt8Color.rgbName(0xdc, 0x79, 0x3d, 'amberglow'), + RgbInt8Color.rgbName(0xd2, 0x7d, 0x56, 'coral gold'), + RgbInt8Color.rgbName(0xd2, 0x7f, 0x63, 'sun baked'), + RgbInt8Color.rgbName(0xda, 0x7e, 0x7a, 'lantana'), + RgbInt8Color.rgbName(0xdf, 0x9d, 0xcc, 'lilac chiffon'), + RgbInt8Color.rgbName(0xd0, 0x9b, 0x81, 'dusty coral'), + RgbInt8Color.rgbName(0xd2, 0x93, 0x80, 'muted clay'), + RgbInt8Color.rgbName(0xda, 0xa4, 0xc9, 'pastel lavender'), + RgbInt8Color.rgbName(0xd9, 0x99, 0x38, 'golden glow'), + RgbInt8Color.rgbName(0xe1, 0x96, 0x40, 'butterscotch'), + RgbInt8Color.rgbName(0xd6, 0x9f, 0xa2, 'bridal rose'), + RgbInt8Color.rgbName(0xde, 0x98, 0xab, 'sea pink'), + RgbInt8Color.rgbName(0xdd, 0xb6, 0x14, 'sulphur'), + RgbInt8Color.rgbName(0xe2, 0xa8, 0x29, 'golden rod'), + RgbInt8Color.rgbName(0xdb, 0x9b, 0x59, 'golden nugget'), + RgbInt8Color.rgbName(0xd2, 0xa1, 0x72, 'clay'), + RgbInt8Color.rgbName(0xcc, 0xa5, 0x80, 'porcini'), + RgbInt8Color.rgbName(0xd3, 0xa2, 0x97, 'peach beige'), + RgbInt8Color.rgbName(0xcb, 0xab, 0x99, '2y01 sp'), + RgbInt8Color.rgbName(0xd7, 0xa7, 0xb4, 'pink nectar'), + RgbInt8Color.rgbName(0xd8, 0xac, 0x59, 'ochre'), + RgbInt8Color.rgbName(0xdd, 0xa7, 0x58, 'golden apricot'), + RgbInt8Color.rgbName(0xd1, 0xb0, 0x99, 'toasted almond'), + RgbInt8Color.rgbName(0xcf, 0xb0, 0x95, 'hazelnut'), + RgbInt8Color.rgbName(0xe3, 0xb0, 0x4b, 'yolk yellow'), + RgbInt8Color.rgbName(0xd8, 0xb9, 0x65, 'misted yellow'), + RgbInt8Color.rgbName(0xd7, 0xb5, 0x7f, 'new wheat'), + RgbInt8Color.rgbName(0xd4, 0xb9, 0x96, 'beige'), + RgbInt8Color.rgbName(0xce, 0xb8, 0x99, 'semolina'), + RgbInt8Color.rgbName(0xd1, 0xb7, 0xa0, 'frappé'), + RgbInt8Color.rgbName(0xd6, 0xb6, 0xa9, 'cameo rose'), + RgbInt8Color.rgbName(0xd3, 0xb4, 0xad, 'rose smoke'), + RgbInt8Color.rgbName(0xd4, 0xba, 0xb6, 'sepia rose'), + RgbInt8Color.rgbName(0xd4, 0xb9, 0xcb, 'winsome orchid'), + RgbInt8Color.rgbName(0xe4, 0xbf, 0x45, 'super lemon'), + RgbInt8Color.rgbName(0xde, 0xc0, 0x5f, 'cream gold'), + RgbInt8Color.rgbName(0xda, 0xbe, 0x81, 'jojoba'), + RgbInt8Color.rgbName(0xd2, 0xc2, 0x9d, 'soybean'), + RgbInt8Color.rgbName(0xd0, 0xc5, 0xb1, 'fog'), + RgbInt8Color.rgbName(0xcc, 0xc4, 0xb8, 'rainy day'), + RgbInt8Color.rgbName(0xcd, 0xc6, 0xbd, 'moonbeam'), + RgbInt8Color.rgbName(0xd1, 0xc0, 0xbf, 'hushed violet'), + RgbInt8Color.rgbName(0xd2, 0xc4, 0xd6, 'lavender fog'), + RgbInt8Color.rgbName(0xda, 0xc4, 0x83, 'raffia'), + RgbInt8Color.rgbName(0xd6, 0xc6, 0x94, 'parsnip'), + RgbInt8Color.rgbName(0xd4, 0xcc, 0x9a, 'dusty yellow'), + RgbInt8Color.rgbName(0xd5, 0xcd, 0x94, 'golden mist'), + RgbInt8Color.rgbName(0xd3, 0xcc, 0xa3, 'hay'), + RgbInt8Color.rgbName(0xd8, 0xc9, 0xa3, 'sea mist'), + RgbInt8Color.rgbName(0xd2, 0xcb, 0xaf, 'moth'), + RgbInt8Color.rgbName(0xd4, 0xca, 0xb0, 'putty'), + RgbInt8Color.rgbName(0xd2, 0xca, 0xaf, 'oyster white'), + RgbInt8Color.rgbName(0xda, 0xc7, 0xab, 'biscotti'), + RgbInt8Color.rgbName(0xd3, 0xc8, 0xab, 'wood ash'), + RgbInt8Color.rgbName(0xd2, 0xcd, 0xb4, 'asparagus green'), + RgbInt8Color.rgbName(0xce, 0xcd, 0xc1, 'silver birch'), + RgbInt8Color.rgbName(0xd5, 0xcb, 0xd2, 'gray lilac'), + RgbInt8Color.rgbName(0xd0, 0xd0, 0xda, 'lilac hint'), + RgbInt8Color.rgbName(0xd9, 0xd4, 0x91, 'lemon grass'), + RgbInt8Color.rgbName(0xdd, 0xd3, 0x8e, 'lima bean'), + RgbInt8Color.rgbName(0xd5, 0xd1, 0xbf, 'bone white'), + RgbInt8Color.rgbName(0xd6, 0xce, 0xbe, 'almond milk'), + RgbInt8Color.rgbName(0xd1, 0xd4, 0xcd, 'foggy dew'), + RgbInt8Color.rgbName(0xd2, 0xd8, 0xd2, 'murmur'), + RgbInt8Color.rgbName(0xd0, 0xd9, 0xd4, 'blue flower'), + RgbInt8Color.rgbName(0xdf, 0xd8, 0x7e, 'canary yellow'), + RgbInt8Color.rgbName(0xdc, 0xd8, 0xa8, 'garden glade'), + RgbInt8Color.rgbName(0xd7, 0xd7, 0xc8, 'silver green'), + RgbInt8Color.rgbName(0xd3, 0xd9, 0xd1, 'zephyr blue'), + RgbInt8Color.rgbName(0xd3, 0xde, 0xdf, 'spa blue'), + RgbInt8Color.rgbName(0xfb, 0xe3, 0x37, 'buttercup'), + RgbInt8Color.rgbName(0xf3, 0xdd, 0x3e, 'golden kiwi'), + RgbInt8Color.rgbName(0xe5, 0xe7, 0x90, 'charlock'), + RgbInt8Color.rgbName(0xdf, 0xe6, 0x9f, 'pale lime yellow'), + RgbInt8Color.rgbName(0xe1, 0xe3, 0xa9, 'young wheat'), + RgbInt8Color.rgbName(0xd8, 0xe7, 0xe7, 'billowing sail'), + RgbInt8Color.rgbName(0xd8, 0xe9, 0xe5, 'hushed green'), + RgbInt8Color.rgbName(0xe3, 0xea, 0xa5, 'luminary green'), + RgbInt8Color.rgbName(0xff, 0xdc, 0x1, 'vibrant yellow'), + RgbInt8Color.rgbName(0xfc, 0xf9, 0x51, 'lemon tonic'), + RgbInt8Color.rgbName(0xea, 0xd9, 0x4e, 'meadowlark'), + RgbInt8Color.rgbName(0xdf, 0xde, 0x9b, 'citron'), + RgbInt8Color.rgbName(0xf0, 0x56, 0x27, 'red orange'), + RgbInt8Color.rgbName(0xe9, 0x5c, 0x20, 'puffin\'s bill'), + RgbInt8Color.rgbName(0xe7, 0x4a, 0x33, 'mandarin red'), + RgbInt8Color.rgbName(0xe2, 0x58, 0x3e, 'tigerlily'), + RgbInt8Color.rgbName(0xe9, 0x69, 0x3d, 'mandarin orange'), + RgbInt8Color.rgbName(0xe4, 0x66, 0x5c, 'emberglow'), + RgbInt8Color.rgbName(0xe4, 0x6a, 0x6d, 'porcelain rose'), + RgbInt8Color.rgbName(0xea, 0x63, 0x6b, 'dubarry'), + RgbInt8Color.rgbName(0xea, 0x66, 0x76, 'sun kissed coral'), + RgbInt8Color.rgbName(0xeb, 0x60, 0x81, 'camellia rose'), + RgbInt8Color.rgbName(0xe8, 0x70, 0x3a, 'celosia orange'), + RgbInt8Color.rgbName(0xea, 0x73, 0x8d, 'bubblegum'), + RgbInt8Color.rgbName(0xe2, 0x7a, 0x53, 'dusty orange'), + RgbInt8Color.rgbName(0xde, 0x82, 0x86, 'peach blossom'), + RgbInt8Color.rgbName(0xe6, 0x79, 0x8e, 'confetti'), + RgbInt8Color.rgbName(0xe3, 0x8f, 0xb7, 'rosebloom'), + RgbInt8Color.rgbName(0xe3, 0x86, 0x8f, 'strawberry ice'), + RgbInt8Color.rgbName(0xe9, 0x82, 0xa0, 'morning glory'), + RgbInt8Color.rgbName(0xdd, 0x97, 0x60, 'apricot tan'), + RgbInt8Color.rgbName(0xde, 0x8e, 0x65, 'copper tan'), + RgbInt8Color.rgbName(0xe1, 0x92, 0x7a, 'canyon sunset'), + RgbInt8Color.rgbName(0xe3, 0x8e, 0x84, 'coral haze'), + RgbInt8Color.rgbName(0xdd, 0x92, 0x89, 'lobster bisque'), + RgbInt8Color.rgbName(0xef, 0xa5, 0xc8, 'prism pink'), + RgbInt8Color.rgbName(0xef, 0xad, 0x0, 'old gold'), + RgbInt8Color.rgbName(0xee, 0x96, 0x26, 'cadmium yellow'), + RgbInt8Color.rgbName(0xf0, 0x97, 0x3d, 'apricot'), + RgbInt8Color.rgbName(0xdd, 0x9c, 0x6b, 'gold earth'), + RgbInt8Color.rgbName(0xd9, 0x9b, 0x7c, 'peach bloom'), + RgbInt8Color.rgbName(0xe0, 0x9c, 0x8b, 'shrimp'), + RgbInt8Color.rgbName(0xe3, 0x9a, 0x93, 'coral almond'), + RgbInt8Color.rgbName(0xd9, 0xa6, 0xa1, 'mellow rose'), + RgbInt8Color.rgbName(0xdb, 0xb2, 0xd1, 'pink lavender'), + RgbInt8Color.rgbName(0xe9, 0xa2, 0x3b, 'artisan\'s gold'), + RgbInt8Color.rgbName(0xdb, 0xa9, 0xb8, 'cameo pink'), + RgbInt8Color.rgbName(0xee, 0xa9, 0x4a, 'beeswax'), + RgbInt8Color.rgbName(0xe7, 0xaa, 0x56, 'jurassic gold'), + RgbInt8Color.rgbName(0xde, 0xaa, 0x9b, 'dusty pink'), + RgbInt8Color.rgbName(0xde, 0xad, 0x95, 'pink sand'), + RgbInt8Color.rgbName(0xdb, 0xb0, 0xa2, 'rose cloud'), + RgbInt8Color.rgbName(0xe2, 0xa9, 0xa1, 'coral cloud'), + RgbInt8Color.rgbName(0xdc, 0xb1, 0xaf, 'silver pink'), + RgbInt8Color.rgbName(0xda, 0xb5, 0x8f, 'sheepskin'), + RgbInt8Color.rgbName(0xe0, 0xb5, 0x89, 'desert mist'), + RgbInt8Color.rgbName(0xd8, 0xb9, 0x98, 'mellow buff'), + RgbInt8Color.rgbName(0xdd, 0xb6, 0xab, 'evening sand'), + RgbInt8Color.rgbName(0xdf, 0xba, 0xa9, 'spanish villa'), + RgbInt8Color.rgbName(0xdf, 0xb8, 0xb6, 'peachskin'), + RgbInt8Color.rgbName(0xf0, 0xc6, 0x2d, 'lemon'), + RgbInt8Color.rgbName(0xee, 0xc8, 0x43, 'maize'), + RgbInt8Color.rgbName(0xeb, 0xbf, 0x57, 'mimosa'), + RgbInt8Color.rgbName(0xdf, 0xc0, 0x8a, 'sahara sun'), + RgbInt8Color.rgbName(0xd8, 0xc0, 0x9d, 'marzipan'), + RgbInt8Color.rgbName(0xda, 0xc0, 0xa7, 'ivory cream'), + RgbInt8Color.rgbName(0xdd, 0xbc, 0xa0, 'appleblossom'), + RgbInt8Color.rgbName(0xdc, 0xbd, 0x9e, 'honey peach'), + RgbInt8Color.rgbName(0xdf, 0xc0, 0x9f, 'winter wheat'), + RgbInt8Color.rgbName(0xd8, 0xc0, 0xad, 'shifting sand'), + RgbInt8Color.rgbName(0xe2, 0xbd, 0xb3, 'peachy keen'), + RgbInt8Color.rgbName(0xdb, 0xbe, 0xb7, 'peach whip'), + RgbInt8Color.rgbName(0xda, 0xcb, 0xbe, 'whisper pink'), + RgbInt8Color.rgbName(0xe2, 0xc1, 0xc0, 'lotus'), + RgbInt8Color.rgbName(0xd5, 0xcc, 0xcc, 'lilac ash'), + RgbInt8Color.rgbName(0xf0, 0xcd, 0x5b, 'primrose yellow'), + RgbInt8Color.rgbName(0xe3, 0xcc, 0x81, 'dusky citron'), + RgbInt8Color.rgbName(0xe0, 0xc9, 0x92, 'straw'), + RgbInt8Color.rgbName(0xdc, 0xc9, 0x9e, 'reed yellow'), + RgbInt8Color.rgbName(0xd9, 0xca, 0xa5, 'chino green'), + RgbInt8Color.rgbName(0xda, 0xcb, 0xb2, 'crème brûlée'), + RgbInt8Color.rgbName(0xd8, 0xcf, 0xb2, 'frozen dew'), + RgbInt8Color.rgbName(0xd8, 0xcc, 0xbb, 'sandshell'), + RgbInt8Color.rgbName(0xda, 0xcc, 0xb4, 'bleached sand'), + RgbInt8Color.rgbName(0xda, 0xca, 0xb7, 'brazilian sand'), + RgbInt8Color.rgbName(0xd7, 0xcf, 0xbb, 'pistachio shell'), + RgbInt8Color.rgbName(0xdc, 0xcd, 0xbc, 'tapioca'), + RgbInt8Color.rgbName(0xdb, 0xcb, 0xbd, 'pink tint'), + RgbInt8Color.rgbName(0xde, 0xcd, 0xbe, 'sand dollar'), + RgbInt8Color.rgbName(0xd7, 0xcb, 0xc4, 'crystal gray'), + RgbInt8Color.rgbName(0xde, 0xc6, 0xd3, 'light lilac'), + RgbInt8Color.rgbName(0xe0, 0xc7, 0xd7, 'lilac snow'), + RgbInt8Color.rgbName(0xdc, 0xce, 0xd9, 'orchid ice'), + RgbInt8Color.rgbName(0xdb, 0xd2, 0xdb, 'orchid tint'), + RgbInt8Color.rgbName(0xd5, 0xd5, 0xd8, 'nimbus cloud'), + RgbInt8Color.rgbName(0xff, 0xd1, 0x0, 'dandelion'), + RgbInt8Color.rgbName(0xff, 0xd3, 0x0, 'cyber yellow'), + RgbInt8Color.rgbName(0xdf, 0xd1, 0xbb, 'angora'), + RgbInt8Color.rgbName(0xdf, 0xd1, 0xbe, 'parchment'), + RgbInt8Color.rgbName(0xda, 0xd8, 0xc9, 'light gray'), + RgbInt8Color.rgbName(0xdd, 0xd5, 0xc7, 'birch'), + RgbInt8Color.rgbName(0xdb, 0xd5, 0xd1, 'white sand'), + RgbInt8Color.rgbName(0xd6, 0xdb, 0xd9, 'blue blush'), + RgbInt8Color.rgbName(0xed, 0xdd, 0x59, 'aurora'), + RgbInt8Color.rgbName(0xeb, 0xdf, 0x67, 'celandine'), + RgbInt8Color.rgbName(0xf1, 0xd7, 0x62, 'lemon zest'), + RgbInt8Color.rgbName(0xe1, 0xd7, 0x91, 'chardonnay'), + RgbInt8Color.rgbName(0xe5, 0xd6, 0x8e, 'custard'), + RgbInt8Color.rgbName(0xe1, 0xdb, 0xc8, 'white asparagus'), + RgbInt8Color.rgbName(0xda, 0xdc, 0xd0, 'icicle'), + RgbInt8Color.rgbName(0xde, 0xd7, 0xc8, 'turtledove'), + RgbInt8Color.rgbName(0xdc, 0xe0, 0xdc, 'barely blue'), + RgbInt8Color.rgbName(0xee, 0xe7, 0x8e, 'yellow iris'), + RgbInt8Color.rgbName(0xe6, 0xe7, 0xcb, 'sylvan green'), + RgbInt8Color.rgbName(0xe6, 0xe6, 0xc7, 'green essence'), + RgbInt8Color.rgbName(0xd8, 0xe3, 0xd7, 'fairest jade'), + RgbInt8Color.rgbName(0xdd, 0xe3, 0xd5, 'water lily'), + RgbInt8Color.rgbName(0xe0, 0xe6, 0xd7, 'whisper green'), + RgbInt8Color.rgbName(0xdd, 0xe2, 0xd6, 'frost'), + RgbInt8Color.rgbName(0xdc, 0xe4, 0xd7, 'phantom green'), + RgbInt8Color.rgbName(0xe3, 0xe8, 0xde, 'ice'), + RgbInt8Color.rgbName(0xe0, 0xe6, 0xe0, 'bluewash'), + RgbInt8Color.rgbName(0xf0, 0xe8, 0x7d, 'limelight'), + RgbInt8Color.rgbName(0xee, 0xea, 0x97, 'elfin yellow'), + RgbInt8Color.rgbName(0xec, 0xe9, 0x9b, 'yellow pear'), + RgbInt8Color.rgbName(0xed, 0xe9, 0xad, 'wax yellow'), + RgbInt8Color.rgbName(0xed, 0xed, 0xb7, 'tender yellow'), + RgbInt8Color.rgbName(0xe5, 0xeb, 0xe6, 'summer shower'), + RgbInt8Color.rgbName(0xe2, 0xea, 0xeb, 'bit of blue'), + RgbInt8Color.rgbName(0xed, 0xf1, 0xfe, 'brilliant white'), + RgbInt8Color.rgbName(0xef, 0xdc, 0x75, 'yellow cream'), + RgbInt8Color.rgbName(0xf0, 0xe7, 0x9d, 'lemonade'), + RgbInt8Color.rgbName(0xff, 0x16, 0x59, 'diva pink'), + RgbInt8Color.rgbName(0xf4, 0x55, 0x20, 'scarlet ibis'), + RgbInt8Color.rgbName(0xf2, 0x55, 0x2c, 'flame'), + RgbInt8Color.rgbName(0xf9, 0x67, 0x14, 'orange tiger'), + RgbInt8Color.rgbName(0xed, 0x56, 0x56, 'hot coral'), + RgbInt8Color.rgbName(0xf3, 0x74, 0x1f, 'persimmon orange'), + RgbInt8Color.rgbName(0xee, 0x5c, 0x6c, 'calypso coral'), + RgbInt8Color.rgbName(0xf2, 0x67, 0x2e, 'golden poppy'), + RgbInt8Color.rgbName(0xf9, 0x65, 0x31, 'exotic orange'), + RgbInt8Color.rgbName(0xf9, 0x63, 0x3b, 'vermillion orange'), + RgbInt8Color.rgbName(0xf3, 0x69, 0x44, 'firecracker'), + RgbInt8Color.rgbName(0xee, 0x6d, 0x8a, 'pink lemonade'), + RgbInt8Color.rgbName(0xea, 0x7d, 0xa4, 'pink carnation'), + RgbInt8Color.rgbName(0xf2, 0x72, 0x45, 'coral rose'), + RgbInt8Color.rgbName(0xed, 0x74, 0x64, 'coral'), + RgbInt8Color.rgbName(0xed, 0x73, 0x7b, 'sugar coral'), + RgbInt8Color.rgbName(0xf2, 0x73, 0x77, 'georgia peach'), + RgbInt8Color.rgbName(0xf1, 0x8a, 0xad, 'sachet pink'), + RgbInt8Color.rgbName(0xfe, 0x7e, 0x3, 'tangelo'), + RgbInt8Color.rgbName(0xf5, 0x7a, 0x6e, 'persimmon'), + RgbInt8Color.rgbName(0xff, 0x8d, 0x0, 'bright marigold'), + RgbInt8Color.rgbName(0xff, 0x84, 0x0, 'autumn glory'), + RgbInt8Color.rgbName(0xf4, 0x80, 0x37, 'sun orange'), + RgbInt8Color.rgbName(0xe9, 0x89, 0x7e, 'burnt coral'), + RgbInt8Color.rgbName(0xf4, 0x83, 0x85, 'shell pink'), + RgbInt8Color.rgbName(0xe9, 0x9a, 0xbe, 'begonia pink'), + RgbInt8Color.rgbName(0xf9, 0x8e, 0x30, 'flame orange'), + RgbInt8Color.rgbName(0xf4, 0x88, 0x50, 'autumn sunset'), + RgbInt8Color.rgbName(0xec, 0x93, 0x5e, 'muskmelon'), + RgbInt8Color.rgbName(0xf4, 0x96, 0x3a, 'iceland poppy'), + RgbInt8Color.rgbName(0xea, 0x95, 0x75, 'shell coral'), + RgbInt8Color.rgbName(0xeb, 0x96, 0x87, 'blooming dahlia'), + RgbInt8Color.rgbName(0xf4, 0x96, 0xa1, 'flamingo pink'), + RgbInt8Color.rgbName(0xed, 0x9c, 0xa8, 'peony'), + RgbInt8Color.rgbName(0xf9, 0xa1, 0x2e, 'radiant yellow'), + RgbInt8Color.rgbName(0xe8, 0xa7, 0x98, 'coral pink'), + RgbInt8Color.rgbName(0xec, 0xa1, 0xa6, 'pink icing'), + RgbInt8Color.rgbName(0xe9, 0xad, 0xca, 'lilac sachet'), + RgbInt8Color.rgbName(0xe7, 0xb8, 0xd3, 'sweet lilac'), + RgbInt8Color.rgbName(0xf7, 0xb7, 0x18, 'spectra yellow'), + RgbInt8Color.rgbName(0xf9, 0xac, 0x2f, 'citrus'), + RgbInt8Color.rgbName(0xef, 0xad, 0x55, 'amber'), + RgbInt8Color.rgbName(0xee, 0xa9, 0x75, 'apricot nectar'), + RgbInt8Color.rgbName(0xed, 0xaa, 0x86, 'coral sands'), + RgbInt8Color.rgbName(0xe6, 0xaf, 0x91, 'peach nougat'), + RgbInt8Color.rgbName(0xde, 0xb9, 0x9c, 'amberlight'), + RgbInt8Color.rgbName(0xec, 0xaf, 0xac, 'blossom'), + RgbInt8Color.rgbName(0xe6, 0xb2, 0xb8, 'coral blush'), + RgbInt8Color.rgbName(0xf6, 0xc3, 0x24, 'freesia'), + RgbInt8Color.rgbName(0xf4, 0xbf, 0x3a, 'solar power'), + RgbInt8Color.rgbName(0xe5, 0xbc, 0x8e, 'golden straw'), + RgbInt8Color.rgbName(0xe3, 0xbc, 0x8e, 'desert dust'), + RgbInt8Color.rgbName(0xe5, 0xb3, 0x9b, 'almost apricot'), + RgbInt8Color.rgbName(0xe4, 0xbf, 0xb3, 'pale blush'), + RgbInt8Color.rgbName(0xec, 0xb2, 0xb3, 'powder pink'), + RgbInt8Color.rgbName(0xe6, 0xbc, 0xcd, 'roseate spoonbill'), + RgbInt8Color.rgbName(0xf1, 0xbc, 0x69, 'golden cream'), + RgbInt8Color.rgbName(0xed, 0xc3, 0x73, 'cornsilk'), + RgbInt8Color.rgbName(0xf1, 0xbf, 0x70, 'buff yellow'), + RgbInt8Color.rgbName(0xde, 0xc5, 0xa5, 'wheat'), + RgbInt8Color.rgbName(0xe2, 0xc4, 0xa6, 'apricot illusion'), + RgbInt8Color.rgbName(0xe3, 0xc6, 0xb4, 'cream tan'), + RgbInt8Color.rgbName(0xe6, 0xc5, 0xca, 'chalk pink'), + RgbInt8Color.rgbName(0xe1, 0xc6, 0xcc, 'pale lilac'), + RgbInt8Color.rgbName(0xf0, 0xcb, 0x76, 'yarrow'), + RgbInt8Color.rgbName(0xe7, 0xcf, 0x8f, 'sundress'), + RgbInt8Color.rgbName(0xdf, 0xcd, 0xc6, 'morganite'), + RgbInt8Color.rgbName(0xe1, 0xcf, 0xc6, 'shell'), + RgbInt8Color.rgbName(0xe4, 0xcc, 0xc6, 'peach blush'), + RgbInt8Color.rgbName(0xe7, 0xc9, 0xca, 'potpourri'), + RgbInt8Color.rgbName(0xe7, 0xd3, 0x91, 'pineapple slice'), + RgbInt8Color.rgbName(0xe6, 0xd3, 0xa6, 'banana crepe'), + RgbInt8Color.rgbName(0xe7, 0xd1, 0xa1, 'italian straw'), + RgbInt8Color.rgbName(0xe5, 0xd0, 0xb1, 'lamb\'s wool'), + RgbInt8Color.rgbName(0xe8, 0xd0, 0xa7, 'chamomile'), + RgbInt8Color.rgbName(0xe4, 0xcf, 0xb6, 'macadamia'), + RgbInt8Color.rgbName(0xe0, 0xd5, 0xc6, 'whitecap gray'), + RgbInt8Color.rgbName(0xe7, 0xcf, 0xbd, 'novelle peach'), + RgbInt8Color.rgbName(0xe9, 0xd1, 0xbf, 'pastel rose tan'), + RgbInt8Color.rgbName(0xe2, 0xd7, 0xc6, 'white swan'), + RgbInt8Color.rgbName(0xe7, 0xcf, 0xc7, 'silver peony'), + RgbInt8Color.rgbName(0xe3, 0xd2, 0xcf, 'mauve chalk'), + RgbInt8Color.rgbName(0xf8, 0xdc, 0x6c, 'goldfinch'), + RgbInt8Color.rgbName(0xf5, 0xd7, 0x77, 'lemon drop'), + RgbInt8Color.rgbName(0xed, 0xdf, 0xa3, 'french vanilla'), + RgbInt8Color.rgbName(0xea, 0xe0, 0xb7, 'flan'), + RgbInt8Color.rgbName(0xe6, 0xda, 0xc4, 'seedpearl'), + RgbInt8Color.rgbName(0xe6, 0xdd, 0xc5, 'cloud cream'), + RgbInt8Color.rgbName(0xec, 0xdd, 0xbe, 'rutabaga'), + RgbInt8Color.rgbName(0xe5, 0xd9, 0xd3, 'pastel parchment'), + RgbInt8Color.rgbName(0xdf, 0xdd, 0xd7, 'vaporous gray'), + RgbInt8Color.rgbName(0xe2, 0xe2, 0xda, 'lily white'), + RgbInt8Color.rgbName(0xe1, 0xe3, 0xde, 'mystic blue'), + RgbInt8Color.rgbName(0xe7, 0xdc, 0xd9, 'almost mauve'), + RgbInt8Color.rgbName(0xf3, 0xe7, 0x79, 'lemon verbena'), + RgbInt8Color.rgbName(0xee, 0xe2, 0x9c, 'lemon meringue'), + RgbInt8Color.rgbName(0xf1, 0xe3, 0xad, 'pastel yellow'), + RgbInt8Color.rgbName(0xec, 0xe3, 0xba, 'anise flower'), + RgbInt8Color.rgbName(0xf1, 0xe5, 0xbe, 'almond oil'), + RgbInt8Color.rgbName(0xf1, 0xe5, 0xbe, 'vanilla custard'), + RgbInt8Color.rgbName(0xee, 0xe7, 0xd4, 'antique white'), + RgbInt8Color.rgbName(0xe4, 0xea, 0xdf, 'lightest sky'), + RgbInt8Color.rgbName(0xe7, 0xe9, 0xe7, 'blanc de blanc'), + RgbInt8Color.rgbName(0xf1, 0xec, 0xca, 'ethereal green'), + RgbInt8Color.rgbName(0xee, 0xe9, 0xc7, 'pear sorbet'), + RgbInt8Color.rgbName(0xec, 0xea, 0xd0, 'glass green'), + RgbInt8Color.rgbName(0xec, 0xec, 0xe7, 'star white'), + RgbInt8Color.rgbName(0xee, 0xee, 0xe6, 'marshmallow'), + RgbInt8Color.rgbName(0xf1, 0xf0, 0xed, 'bright white'), + RgbInt8Color.rgbName(0xf0, 0xf0, 0xec, 'snow white'), + RgbInt8Color.rgbName(0xf0, 0xf1, 0xf0, 'cloud dancer'), + RgbInt8Color.rgbName(0xf4, 0xec, 0xc2, 'transparent yellow'), + RgbInt8Color.rgbName(0xff, 0x4f, 0x58, 'fiery coral'), + RgbInt8Color.rgbName(0xff, 0x6f, 0x1d, 'orange clown fish'), + RgbInt8Color.rgbName(0xff, 0x77, 0xd, 'oriole'), + RgbInt8Color.rgbName(0xff, 0x74, 0x20, 'vibrant orange'), + RgbInt8Color.rgbName(0xfc, 0x64, 0x2d, 'dragon fire'), + RgbInt8Color.rgbName(0xfe, 0x63, 0x47, 'nasturtium'), + RgbInt8Color.rgbName(0xff, 0x6d, 0x2b, 'shocking orange'), + RgbInt8Color.rgbName(0xf8, 0x6a, 0x38, 'carrot'), + RgbInt8Color.rgbName(0xfe, 0x8c, 0x18, 'carrot curl'), + RgbInt8Color.rgbName(0xfe, 0x84, 0xe, 'turmeric'), + RgbInt8Color.rgbName(0xfa, 0x7a, 0x35, 'orange peel'), + RgbInt8Color.rgbName(0xf6, 0x74, 0x5f, 'camellia'), + RgbInt8Color.rgbName(0xf7, 0x74, 0x64, 'coral quartz'), + RgbInt8Color.rgbName(0xf7, 0x78, 0x6b, 'peach echo'), + RgbInt8Color.rgbName(0xf5, 0x7f, 0x8e, 'strawberry pink'), + RgbInt8Color.rgbName(0xf6, 0x89, 0x6a, 'melon'), + RgbInt8Color.rgbName(0xf4, 0x92, 0xa2, 'geranium pink'), + RgbInt8Color.rgbName(0xff, 0xa5, 0x0, 'saffron'), + RgbInt8Color.rgbName(0xff, 0xa0, 0x10, 'zinnia'), + RgbInt8Color.rgbName(0xf8, 0x8f, 0x58, 'tangerine'), + RgbInt8Color.rgbName(0xff, 0x8c, 0x55, 'bird of paradise'), + RgbInt8Color.rgbName(0xf3, 0x94, 0x70, 'cadmium orange'), + RgbInt8Color.rgbName(0xf8, 0x8d, 0x97, 'conch shell'), + RgbInt8Color.rgbName(0xff, 0x8d, 0x94, 'salmon rose'), + RgbInt8Color.rgbName(0xff, 0xa9, 0xd6, 'cotton candy'), + RgbInt8Color.rgbName(0xff, 0xb0, 0x0, 'gold fusion'), + RgbInt8Color.rgbName(0xf8, 0x96, 0x85, 'peach pink'), + RgbInt8Color.rgbName(0xf4, 0xa1, 0x9f, 'candlelight peach'), + RgbInt8Color.rgbName(0xef, 0xa6, 0xaa, 'quartz pink'), + RgbInt8Color.rgbName(0xff, 0xa4, 0x4a, 'blazing orange'), + RgbInt8Color.rgbName(0xfe, 0xa1, 0x66, 'papaya'), + RgbInt8Color.rgbName(0xf5, 0xa2, 0x6f, 'pumpkin'), + RgbInt8Color.rgbName(0xfa, 0xa1, 0x81, 'coral reef'), + RgbInt8Color.rgbName(0xfa, 0xa0, 0x94, 'peach amber'), + RgbInt8Color.rgbName(0xf4, 0xa7, 0xa2, 'peaches n\' cream'), + RgbInt8Color.rgbName(0xff, 0xc3, 0x0, 'lemon chrome'), + RgbInt8Color.rgbName(0xfb, 0xaa, 0x4c, 'kumquat'), + RgbInt8Color.rgbName(0xff, 0xad, 0x4a, 'marigold'), + RgbInt8Color.rgbName(0xf6, 0xb0, 0x66, 'chamois'), + RgbInt8Color.rgbName(0xf9, 0xaa, 0x7d, 'orange chiffon'), + RgbInt8Color.rgbName(0xf2, 0xa9, 0x87, 'peach'), + RgbInt8Color.rgbName(0xfb, 0xac, 0x82, 'apricot wash'), + RgbInt8Color.rgbName(0xfa, 0xaa, 0x94, 'salmon'), + RgbInt8Color.rgbName(0xf5, 0xb0, 0xbd, 'candy pink'), + RgbInt8Color.rgbName(0xee, 0xc2, 0xda, 'pink lady'), + RgbInt8Color.rgbName(0xfb, 0xb7, 0x55, 'amber yellow'), + RgbInt8Color.rgbName(0xfc, 0xb9, 0x53, 'banana'), + RgbInt8Color.rgbName(0xeb, 0xc3, 0x96, 'buff'), + RgbInt8Color.rgbName(0xf5, 0xb8, 0x95, 'peach quartz'), + RgbInt8Color.rgbName(0xe9, 0xc3, 0xcf, 'parfait pink'), + RgbInt8Color.rgbName(0xed, 0xd0, 0xdd, 'cradle pink'), + RgbInt8Color.rgbName(0xfd, 0xc0, 0x4e, 'daffodil'), + RgbInt8Color.rgbName(0xff, 0xba, 0x52, 'orange pop'), + RgbInt8Color.rgbName(0xf7, 0xc4, 0x6c, 'sunset gold'), + RgbInt8Color.rgbName(0xf4, 0xbf, 0x86, 'apricot cream'), + RgbInt8Color.rgbName(0xff, 0xbe, 0x79, 'buff orange'), + RgbInt8Color.rgbName(0xf4, 0xba, 0x94, 'caramel cream'), + RgbInt8Color.rgbName(0xeb, 0xc6, 0xb0, 'bisque'), + RgbInt8Color.rgbName(0xee, 0xc4, 0xbe, 'chintz rose'), + RgbInt8Color.rgbName(0xf5, 0xbe, 0xc7, 'almond blossom'), + RgbInt8Color.rgbName(0xf1, 0xbc, 0xca, 'orchid pink'), + RgbInt8Color.rgbName(0xf2, 0xc1, 0xd1, 'fairy tale'), + RgbInt8Color.rgbName(0xfb, 0xc8, 0x5f, 'samoan sun'), + RgbInt8Color.rgbName(0xff, 0xc8, 0x67, 'pale marigold'), + RgbInt8Color.rgbName(0xe5, 0xcc, 0xaf, 'gray sand'), + RgbInt8Color.rgbName(0xf4, 0xca, 0xa8, 'almond cream'), + RgbInt8Color.rgbName(0xf4, 0xc7, 0xab, 'bellini'), + RgbInt8Color.rgbName(0xeb, 0xd1, 0xbb, 'sun kiss'), + RgbInt8Color.rgbName(0xed, 0xcd, 0xc2, 'pale dogwood'), + RgbInt8Color.rgbName(0xeb, 0xce, 0xd5, 'ballet slipper'), + RgbInt8Color.rgbName(0xec, 0xcf, 0xdb, 'ballerina'), + RgbInt8Color.rgbName(0xfe, 0xd4, 0x50, 'habañero gold'), + RgbInt8Color.rgbName(0xfe, 0xd6, 0x5e, 'aspen gold'), + RgbInt8Color.rgbName(0xfe, 0xd5, 0x5d, 'minion yellow'), + RgbInt8Color.rgbName(0xff, 0xd7, 0x63, 'minion yellow™'), + RgbInt8Color.rgbName(0xed, 0xd5, 0x9e, 'sunlight'), + RgbInt8Color.rgbName(0xf0, 0xd4, 0xa3, 'apricot gelato'), + RgbInt8Color.rgbName(0xf2, 0xd1, 0xa0, 'golden fleece'), + RgbInt8Color.rgbName(0xea, 0xd3, 0xae, 'summer melon'), + RgbInt8Color.rgbName(0xeb, 0xd2, 0xb7, 'dawn'), + RgbInt8Color.rgbName(0xee, 0xd0, 0xae, 'autumn blonde'), + RgbInt8Color.rgbName(0xf3, 0xd3, 0xb7, 'nude'), + RgbInt8Color.rgbName(0xf1, 0xce, 0xb3, 'alesan'), + RgbInt8Color.rgbName(0xe9, 0xd4, 0xc3, 'mother of pearl'), + RgbInt8Color.rgbName(0xed, 0xd2, 0xc0, 'linen'), + RgbInt8Color.rgbName(0xf3, 0xd1, 0xc8, 'pearl blush'), + RgbInt8Color.rgbName(0xee, 0xd1, 0xc7, 'cloud pink'), + RgbInt8Color.rgbName(0xed, 0xd0, 0xce, 'crystal pink'), + RgbInt8Color.rgbName(0xec, 0xd6, 0xd6, 'mauve morn'), + RgbInt8Color.rgbName(0xee, 0xd4, 0xd9, 'primrose pink'), + RgbInt8Color.rgbName(0xf1, 0xd7, 0xdd, 'barely pink'), + RgbInt8Color.rgbName(0xff, 0xda, 0x71, 'snapdragon'), + RgbInt8Color.rgbName(0xfa, 0xde, 0x85, 'sunshine'), + RgbInt8Color.rgbName(0xf8, 0xde, 0x8d, 'popcorn'), + RgbInt8Color.rgbName(0xf0, 0xdd, 0x9d, 'mellow yellow'), + RgbInt8Color.rgbName(0xf6, 0xe0, 0x96, 'pale banana'), + RgbInt8Color.rgbName(0xf3, 0xe0, 0xac, 'double cream'), + RgbInt8Color.rgbName(0xf4, 0xdb, 0xb2, 'cornhusk'), + RgbInt8Color.rgbName(0xef, 0xdf, 0xbc, 'alabaster gleam'), + RgbInt8Color.rgbName(0xec, 0xdd, 0xc8, 'white smoke'), + RgbInt8Color.rgbName(0xef, 0xdc, 0xc3, 'shortbread'), + RgbInt8Color.rgbName(0xe8, 0xe3, 0xd9, 'tofu'), + RgbInt8Color.rgbName(0xec, 0xe1, 0xd3, 'eggnog'), + RgbInt8Color.rgbName(0xf1, 0xdd, 0xcf, 'pink champagne'), + RgbInt8Color.rgbName(0xee, 0xde, 0xd1, 'dew'), + RgbInt8Color.rgbName(0xf2, 0xdc, 0xd0, 'soft pink'), + RgbInt8Color.rgbName(0xea, 0xe3, 0xdb, 'jet stream'), + RgbInt8Color.rgbName(0xee, 0xe2, 0xdd, 'bridal blush'), + RgbInt8Color.rgbName(0xf3, 0xdd, 0xdb, 'rosewater'), + RgbInt8Color.rgbName(0xf0, 0xdd, 0xe1, 'shrinking violet'), + RgbInt8Color.rgbName(0xf4, 0xe5, 0xc4, 'vanilla'), + RgbInt8Color.rgbName(0xf0, 0xe3, 0xce, 'buttercream'), + RgbInt8Color.rgbName(0xf3, 0xe6, 0xc9, 'afterglow'), + RgbInt8Color.rgbName(0xf4, 0xeb, 0xc8, 'lemon icing'), + RgbInt8Color.rgbName(0xef, 0xe1, 0xce, 'pearled ivory'), + RgbInt8Color.rgbName(0xf1, 0xea, 0xd4, 'winter white'), + RgbInt8Color.rgbName(0xed, 0xe6, 0xdb, 'whisper white'), + RgbInt8Color.rgbName(0xf2, 0xe4, 0xd1, 'ecru'), + RgbInt8Color.rgbName(0xef, 0xed, 0xdc, 'vanilla ice'), + RgbInt8Color.rgbName(0xee, 0xea, 0xdb, 'pristine'), + RgbInt8Color.rgbName(0xec, 0xe8, 0xe4, 'white alyssum'), + RgbInt8Color.rgbName(0xf1, 0xe6, 0xde, 'sea salt'), + RgbInt8Color.rgbName(0xf4, 0xe5, 0xdc, 'angel wing'), + RgbInt8Color.rgbName(0xf3, 0xe5, 0xdc, 'cream pink'), + RgbInt8Color.rgbName(0xf3, 0xe7, 0xdc, 'powder puff'), + RgbInt8Color.rgbName(0xf2, 0xe7, 0xdc, 'sheer pink'), + RgbInt8Color.rgbName(0xee, 0xea, 0xe3, 'gardenia'), + RgbInt8Color.rgbName(0xef, 0xe6, 0xe5, 'delicacy'), + RgbInt8Color.rgbName(0xf0, 0xea, 0xd6, 'sweet corn'), + RgbInt8Color.rgbName(0xf5, 0xed, 0xd6, 'papyrus'), + RgbInt8Color.rgbName(0xef, 0xec, 0xe1, 'egret'), + RgbInt8Color.rgbName(0xf0, 0xef, 0xe2, 'cannoli cream'), + RgbInt8Color.rgbName(0xf3, 0xee, 0xe7, 'sugar swizzle'), + RgbInt8Color.rgbName(0xf0, 0xed, 0xe5, 'coconut milk'), + RgbInt8Color.rgbName(0xff, 0x6f, 0x61, 'living coral'), + RgbInt8Color.rgbName(0xff, 0x89, 0x5a, 'nectarine'), + RgbInt8Color.rgbName(0xff, 0x7f, 0x6a, 'fresh salmon'), + RgbInt8Color.rgbName(0xff, 0x85, 0x73, 'fusion coral'), + RgbInt8Color.rgbName(0xff, 0x96, 0x87, 'desert flower'), + RgbInt8Color.rgbName(0xff, 0xa1, 0x77, 'cantaloupe'), + RgbInt8Color.rgbName(0xfc, 0xa2, 0x89, 'papaya punch'), + RgbInt8Color.rgbName(0xff, 0xa3, 0x68, 'mock orange'), + RgbInt8Color.rgbName(0xfe, 0xaa, 0x7b, 'salmon buff'), + RgbInt8Color.rgbName(0xfb, 0xb2, 0xa9, 'apricot blush'), + RgbInt8Color.rgbName(0xff, 0xb1, 0x81, 'peach cobbler'), + RgbInt8Color.rgbName(0xfd, 0xb2, 0xa8, 'peach bud'), + RgbInt8Color.rgbName(0xf9, 0xb6, 0xa9, 'peach pearl'), + RgbInt8Color.rgbName(0xff, 0xb7, 0x62, 'warm apricot'), + RgbInt8Color.rgbName(0xf6, 0xc2, 0x89, 'sunburst'), + RgbInt8Color.rgbName(0xfb, 0xb9, 0x95, 'beach sand'), + RgbInt8Color.rgbName(0xff, 0xb5, 0x9b, 'peach nectar'), + RgbInt8Color.rgbName(0xf8, 0xbf, 0xa8, 'peach parfait'), + RgbInt8Color.rgbName(0xf9, 0xbd, 0xb0, 'peach melba'), + RgbInt8Color.rgbName(0xf4, 0xc3, 0xc0, 'english rose'), + RgbInt8Color.rgbName(0xf7, 0xc2, 0xd0, 'rose shadow'), + RgbInt8Color.rgbName(0xf7, 0xce, 0xe0, 'cherry blossom'), + RgbInt8Color.rgbName(0xf8, 0xc1, 0x9a, 'cream blush'), + RgbInt8Color.rgbName(0xfb, 0xbe, 0x99, 'apricot ice'), + RgbInt8Color.rgbName(0xff, 0xbe, 0x98, 'peach fuzz'), + RgbInt8Color.rgbName(0xff, 0xbb, 0x9e, 'prairie sunset'), + RgbInt8Color.rgbName(0xf6, 0xc8, 0xc3, 'seashell pink'), + RgbInt8Color.rgbName(0xfd, 0xc4, 0xbd, 'impatiens pink'), + RgbInt8Color.rgbName(0xf9, 0xc5, 0xc2, 'gossamer pink'), + RgbInt8Color.rgbName(0xf4, 0xc3, 0xc4, 'strawberry cream'), + RgbInt8Color.rgbName(0xf8, 0xc5, 0xc8, 'crystal rose'), + RgbInt8Color.rgbName(0xff, 0xcf, 0x73, 'banana cream'), + RgbInt8Color.rgbName(0xff, 0xc8, 0x7d, 'flax'), + RgbInt8Color.rgbName(0xf8, 0xce, 0x97, 'impala'), + RgbInt8Color.rgbName(0xfa, 0xcd, 0x9e, 'apricot sherbet'), + RgbInt8Color.rgbName(0xfc, 0xca, 0xac, 'bleached apricot'), + RgbInt8Color.rgbName(0xf8, 0xd4, 0xb4, 'tender peach'), + RgbInt8Color.rgbName(0xef, 0xcf, 0xba, 'peach purée'), + RgbInt8Color.rgbName(0xff, 0xc7, 0xb6, 'tropical peach'), + RgbInt8Color.rgbName(0xf8, 0xcd, 0xc9, 'veiled rose'), + RgbInt8Color.rgbName(0xf7, 0xcd, 0xc7, 'pink salt'), + RgbInt8Color.rgbName(0xf7, 0xca, 0xc9, 'rose quartz'), + RgbInt8Color.rgbName(0xf5, 0xd3, 0xd4, 'pink dogwood'), + RgbInt8Color.rgbName(0xf5, 0xd3, 0xdb, 'blushing bride'), + RgbInt8Color.rgbName(0xfb, 0xd8, 0x97, 'golden haze'), + RgbInt8Color.rgbName(0xfe, 0xd1, 0xbd, 'pale peach'), + RgbInt8Color.rgbName(0xf4, 0xd8, 0xc6, 'vanilla cream'), + RgbInt8Color.rgbName(0xfa, 0xd6, 0xc6, 'scallop shell'), + RgbInt8Color.rgbName(0xf2, 0xdb, 0xcc, 'peach dust'), + RgbInt8Color.rgbName(0xf5, 0xd6, 0xc6, 'crème de pêche'), + RgbInt8Color.rgbName(0xf7, 0xd5, 0xcc, 'creole pink'), + RgbInt8Color.rgbName(0xf4, 0xda, 0xd6, 'pearl'), + RgbInt8Color.rgbName(0xf7, 0xd1, 0xd4, 'mary\'s rose'), + RgbInt8Color.rgbName(0xf3, 0xde, 0xdf, 'heavenly pink'), + RgbInt8Color.rgbName(0xf2, 0xe2, 0xe0, 'petal pink'), + RgbInt8Color.rgbName(0xf8, 0xe0, 0xe7, 'rose water'), + RgbInt8Color.rgbName(0xff, 0xcd, 0xa8, 'creampuff'), +]; diff --git a/lib/src/palettes/pantone_graphic_design.dart b/lib/src/palettes/pantone_graphic_design.dart new file mode 100644 index 0000000..ab31e81 --- /dev/null +++ b/lib/src/palettes/pantone_graphic_design.dart @@ -0,0 +1,15876 @@ +part of '../../uni_color_palette.dart'; + +/// Source: https://numerosamente.it/pantone-list +/// Helper sheet: https://docs.google.com/spreadsheets/d/1f8wvrgqfGcXFAiAXx-p9CgLXo3__IoEn8-Us-uRyfok/edit#gid=1790290811 +final pantoneGraphicDesignColors = [ + RgbInt8Color.rgbName(0x2f, 0x24, 0x1d, '2479 cp'), + RgbInt8Color.rgbName(0x22, 0x1c, 0x35, '276 c'), + RgbInt8Color.rgbName(0x20, 0x18, 0x34, '276 xgc'), + RgbInt8Color.rgbName(0x4, 0x1c, 0x2c, '296 c'), + RgbInt8Color.rgbName(0x24, 0x29, 0x35, '296 cp'), + RgbInt8Color.rgbName(0xd, 0x22, 0x34, '296 xgc'), + RgbInt8Color.rgbName(0x0, 0x2a, 0x3a, '303 c'), + RgbInt8Color.rgbName(0x21, 0x23, 0x22, '419 c'), + RgbInt8Color.rgbName(0x24, 0x27, 0x21, '419 cp'), + RgbInt8Color.rgbName(0x24, 0x27, 0x24, '419 xgc'), + RgbInt8Color.rgbName(0x25, 0x28, 0x2a, '426 c'), + RgbInt8Color.rgbName(0x25, 0x28, 0x2b, '426 cp'), + RgbInt8Color.rgbName(0x24, 0x28, 0x2b, '426 xgc'), + RgbInt8Color.rgbName(0x1d, 0x25, 0x2d, '433 c'), + RgbInt8Color.rgbName(0x1d, 0x26, 0x2e, '433 xgc'), + RgbInt8Color.rgbName(0x1e, 0x1a, 0x34, '5255 c'), + RgbInt8Color.rgbName(0x2b, 0x23, 0x38, '5255 cp'), + RgbInt8Color.rgbName(0x20, 0x1d, 0x38, '5255 xgc'), + RgbInt8Color.rgbName(0x1c, 0x1f, 0x2a, '532 c'), + RgbInt8Color.rgbName(0x28, 0x29, 0x32, '532 cp'), + RgbInt8Color.rgbName(0x1c, 0x1d, 0x2e, '532 xgc'), + RgbInt8Color.rgbName(0x0, 0x26, 0x3a, '539 c'), + RgbInt8Color.rgbName(0x8, 0x1f, 0x2c, '5395 c'), + RgbInt8Color.rgbName(0x20, 0x2b, 0x34, '5395 cp'), + RgbInt8Color.rgbName(0xd, 0x20, 0x2e, '5395 xgc'), + RgbInt8Color.rgbName(0x7, 0x2b, 0x31, '546 c'), + RgbInt8Color.rgbName(0x11, 0x2e, 0x3a, '546 cp'), + RgbInt8Color.rgbName(0x0, 0x2a, 0x32, '546 xgc'), + RgbInt8Color.rgbName(0x7, 0x27, 0x2d, '5463 c'), + RgbInt8Color.rgbName(0x1b, 0x2f, 0x34, '5463 cp'), + RgbInt8Color.rgbName(0x0, 0x2a, 0x32, '5463 xgc'), + RgbInt8Color.rgbName(0x18, 0x33, 0x2f, '5467 c'), + RgbInt8Color.rgbName(0x15, 0x31, 0x2d, '5467 xgc'), + RgbInt8Color.rgbName(0x0, 0x31, 0x3c, '547 c'), + RgbInt8Color.rgbName(0x18, 0x30, 0x28, '5535 c'), + RgbInt8Color.rgbName(0x16, 0x2f, 0x27, '5535 xgc'), + RgbInt8Color.rgbName(0x22, 0x37, 0x2b, '5605 c'), + RgbInt8Color.rgbName(0x13, 0x32, 0x2b, '627 c'), + RgbInt8Color.rgbName(0x11, 0x33, 0x2a, '627 xgc'), + RgbInt8Color.rgbName(0x13, 0x1e, 0x29, '7547 c'), + RgbInt8Color.rgbName(0x1d, 0x23, 0x2e, '7547 cp'), + RgbInt8Color.rgbName(0x10, 0x1c, 0x29, '7547 xgc'), + RgbInt8Color.rgbName(0x33, 0x2f, 0x21, 'black 2 c'), + RgbInt8Color.rgbName(0x34, 0x2f, 0x1f, 'black 2 xgc'), + RgbInt8Color.rgbName(0x21, 0x27, 0x21, 'black 3 c'), + RgbInt8Color.rgbName(0x26, 0x2d, 0x26, 'black 3 cp'), + RgbInt8Color.rgbName(0x21, 0x28, 0x22, 'black 3 xgc'), + RgbInt8Color.rgbName(0x31, 0x26, 0x1d, 'black 4 c'), + RgbInt8Color.rgbName(0x2e, 0x24, 0x1b, 'black 4 xgc'), + RgbInt8Color.rgbName(0x10, 0x18, 0x20, 'black 6 c'), + RgbInt8Color.rgbName(0x20, 0x27, 0x2c, 'black 6 cp'), + RgbInt8Color.rgbName(0x13, 0x1d, 0x28, 'black 6 xgc'), + RgbInt8Color.rgbName(0x2d, 0x29, 0x26, 'black c'), + RgbInt8Color.rgbName(0x2f, 0x2c, 0x27, 'black cp'), + RgbInt8Color.rgbName(0x2d, 0x2a, 0x24, 'black xgc'), + RgbInt8Color.rgbName(0x2d, 0x2a, 0x29, 'p 179-16 c'), + RgbInt8Color.rgbName(0x27, 0x25, 0x1f, 'process black c'), + RgbInt8Color.rgbName(0x5, 0x28, 0x3d, '539 xgc'), + RgbInt8Color.rgbName(0x0, 0x26, 0x3e, '2965 c'), + RgbInt8Color.rgbName(0x0, 0x3a, 0x40, '2217 c'), + RgbInt8Color.rgbName(0xc, 0x23, 0x40, '289 c'), + RgbInt8Color.rgbName(0x0, 0x2e, 0x40, '303 xgc'), + RgbInt8Color.rgbName(0x0, 0x3b, 0x42, '2217 xgc'), + RgbInt8Color.rgbName(0x4, 0x1e, 0x42, '282 c'), + RgbInt8Color.rgbName(0x10, 0x1f, 0x43, '282 xgc'), + RgbInt8Color.rgbName(0x0, 0x36, 0x43, '547 xgc'), + RgbInt8Color.rgbName(0xa, 0x26, 0x45, '289 xgc'), + RgbInt8Color.rgbName(0x2, 0x2e, 0x45, '2965 xgc'), + RgbInt8Color.rgbName(0x20, 0x17, 0x47, '275 c'), + RgbInt8Color.rgbName(0x20, 0x15, 0x47, '2765 c'), + RgbInt8Color.rgbName(0x0, 0x33, 0x48, '2189 xgc'), + RgbInt8Color.rgbName(0x1f, 0x14, 0x48, '275 xgc'), + RgbInt8Color.rgbName(0x0, 0x33, 0x49, '2189 c'), + RgbInt8Color.rgbName(0x7, 0x1d, 0x49, '2768 c'), + RgbInt8Color.rgbName(0x0, 0x2b, 0x49, '7463 c'), + RgbInt8Color.rgbName(0x11, 0x21, 0x4a, '2768 xgc'), + RgbInt8Color.rgbName(0x14, 0x1b, 0x4d, '2766 c'), + RgbInt8Color.rgbName(0x4, 0x29, 0x4e, '2767 xgc'), + RgbInt8Color.rgbName(0x0, 0x25, 0x54, '655 c'), + RgbInt8Color.rgbName(0x0, 0x20, 0x5b, '281 c'), + RgbInt8Color.rgbName(0x0, 0x28, 0x55, '295 c'), + RgbInt8Color.rgbName(0x0, 0x1e, 0x60, '2757 c'), + RgbInt8Color.rgbName(0x0, 0x1e, 0x62, '2758 c'), + RgbInt8Color.rgbName(0x5, 0x37, 0x45, '547 cp'), + RgbInt8Color.rgbName(0x0, 0x32, 0x50, '7463 xgc'), + RgbInt8Color.rgbName(0x14, 0x1e, 0x51, '2766 xgc'), + RgbInt8Color.rgbName(0x0, 0x3b, 0x49, '309 c'), + RgbInt8Color.rgbName(0xa, 0x2a, 0x50, '295 xgc'), + RgbInt8Color.rgbName(0x21, 0x13, 0x51, '274 xgc'), + RgbInt8Color.rgbName(0x21, 0x17, 0x4d, '2765 xgc'), + RgbInt8Color.rgbName(0x0, 0x30, 0x55, '540 xgc'), + RgbInt8Color.rgbName(0x28, 0x22, 0x3c, '276 cp'), + RgbInt8Color.rgbName(0x21, 0x15, 0x51, '274 c'), + RgbInt8Color.rgbName(0x13, 0x29, 0x4b, '2767 c'), + RgbInt8Color.rgbName(0x0, 0x30, 0x57, '540 c'), + RgbInt8Color.rgbName(0x0, 0x18, 0x71, '2748 c'), + RgbInt8Color.rgbName(0x0, 0x1a, 0x70, '662 c'), + RgbInt8Color.rgbName(0x1, 0x21, 0x69, '280 c'), + RgbInt8Color.rgbName(0x0, 0x2e, 0x5d, '648 c'), + RgbInt8Color.rgbName(0x10, 0x26, 0x54, '655 xgc'), + RgbInt8Color.rgbName(0x14, 0x21, 0x56, '281 xgc'), + RgbInt8Color.rgbName(0x0, 0x1a, 0x72, '2747 c'), + RgbInt8Color.rgbName(0xe, 0x37, 0x47, '303 cp'), + RgbInt8Color.rgbName(0x1e, 0xd, 0x61, '273 xgc'), + RgbInt8Color.rgbName(0x1f, 0x2a, 0x44, '533 c'), + RgbInt8Color.rgbName(0x0, 0x31, 0x5c, '648 xgc'), + RgbInt8Color.rgbName(0x2e, 0x1a, 0x47, '2695 c'), + RgbInt8Color.rgbName(0x10, 0x24, 0x5a, '2757 xgc'), + RgbInt8Color.rgbName(0xd, 0x39, 0x4e, '2189 cp'), + RgbInt8Color.rgbName(0x14, 0x22, 0x5e, '2758 xgc'), + RgbInt8Color.rgbName(0x25, 0xe, 0x62, '2755 c'), + RgbInt8Color.rgbName(0x24, 0x13, 0x5f, '273 c'), + RgbInt8Color.rgbName(0x21, 0xd, 0x69, '2755 xgc'), + RgbInt8Color.rgbName(0x0, 0x3b, 0x5c, '302 c'), + RgbInt8Color.rgbName(0x28, 0x0, 0x71, '2745 c'), + RgbInt8Color.rgbName(0x9, 0x2f, 0x62, '294 xgc'), + RgbInt8Color.rgbName(0x0, 0x2f, 0x6c, '294 c'), + RgbInt8Color.rgbName(0x6, 0x3, 0x8d, '2738 c'), + RgbInt8Color.rgbName(0x0, 0x3b, 0x60, '2955 xgc'), + RgbInt8Color.rgbName(0x14, 0x23, 0x65, '280 xgc'), + RgbInt8Color.rgbName(0x0, 0x26, 0x77, '2147 c'), + RgbInt8Color.rgbName(0x0, 0x38, 0x65, '2955 c'), + RgbInt8Color.rgbName(0x0, 0x14, 0x89, 'reflex blue c'), + RgbInt8Color.rgbName(0x0, 0x2d, 0x72, '288 c'), + RgbInt8Color.rgbName(0x15, 0x1f, 0x6d, '2756 c'), + RgbInt8Color.rgbName(0x0, 0x38, 0x68, '541 xgc'), + RgbInt8Color.rgbName(0x33, 0x0, 0x72, '2685 c'), + RgbInt8Color.rgbName(0x8, 0x30, 0x6d, '288 xgc'), + RgbInt8Color.rgbName(0x16, 0x22, 0x6f, '2747 xgc'), + RgbInt8Color.rgbName(0x11, 0x36, 0x5f, '534 xgc'), + RgbInt8Color.rgbName(0x1e, 0x1d, 0x7a, '2372 xgc'), + RgbInt8Color.rgbName(0x0, 0x3a, 0x70, '654 c'), + RgbInt8Color.rgbName(0x25, 0x9, 0x7d, '2745 xgc'), + RgbInt8Color.rgbName(0x19, 0x21, 0x72, '2748 xgc'), + RgbInt8Color.rgbName(0x0, 0x3c, 0x71, '541 c'), + RgbInt8Color.rgbName(0x1b, 0x20, 0x71, '662 xgc'), + RgbInt8Color.rgbName(0x16, 0x26, 0x71, '2756 xgc'), + RgbInt8Color.rgbName(0xe, 0x2c, 0x75, '2147 xgc'), + RgbInt8Color.rgbName(0x0, 0x3c, 0x73, '654 xgc'), + RgbInt8Color.rgbName(0x37, 0x1, 0x78, '3535 c'), + RgbInt8Color.rgbName(0x31, 0x1d, 0x64, '2112 xgc'), + RgbInt8Color.rgbName(0x39, 0x0, 0x7a, '2685 xgc'), + RgbInt8Color.rgbName(0x2e, 0x13, 0x73, '3542 c'), + RgbInt8Color.rgbName(0x10, 0x6, 0x9f, 'blue 072 c'), + RgbInt8Color.rgbName(0x0, 0x30, 0x87, '287 c'), + RgbInt8Color.rgbName(0x2e, 0x0, 0x8b, '2735 c'), + RgbInt8Color.rgbName(0x7, 0x35, 0x81, '287 xgc'), + RgbInt8Color.rgbName(0x14, 0x2e, 0x7b, '3591 c'), + RgbInt8Color.rgbName(0x22, 0x16, 0x84, 'reflex blue xgc'), + RgbInt8Color.rgbName(0x28, 0x1e, 0x78, '2372 c'), + RgbInt8Color.rgbName(0x28, 0x9, 0x8d, '2738 xgc'), + RgbInt8Color.rgbName(0x0, 0x23, 0x9c, 'dark blue c'), + RgbInt8Color.rgbName(0x17, 0x1c, 0x8f, '2746 c'), + RgbInt8Color.rgbName(0x0, 0x35, 0x8e, '2146 c'), + RgbInt8Color.rgbName(0x33, 0x5, 0x8d, '2371 c'), + RgbInt8Color.rgbName(0x33, 0x1a, 0x78, '2105 xgc'), + RgbInt8Color.rgbName(0x0, 0x3c, 0x89, '2146 xgc'), + RgbInt8Color.rgbName(0x0, 0x35, 0x94, '661 c'), + RgbInt8Color.rgbName(0x28, 0x9, 0x99, '2371 xgc'), + RgbInt8Color.rgbName(0x38, 0x0, 0x97, '2735 xgc'), + RgbInt8Color.rgbName(0x0, 0x33, 0xa0, '286 c'), + RgbInt8Color.rgbName(0x28, 0x10, 0x9a, 'blue 072 xgc'), + RgbInt8Color.rgbName(0x25, 0x23, 0x92, '2746 xgc'), + RgbInt8Color.rgbName(0x21, 0x2b, 0x97, '2370 xgc'), + RgbInt8Color.rgbName(0x23, 0x24, 0x9e, '2736 xgc'), + RgbInt8Color.rgbName(0x1e, 0x22, 0xaa, '2736 c'), + RgbInt8Color.rgbName(0x2f, 0x2a, 0x95, '2370 c'), + RgbInt8Color.rgbName(0x39, 0x20, 0x7c, '2105 c'), + RgbInt8Color.rgbName(0x27, 0x34, 0x7d, '3591 cp'), + RgbInt8Color.rgbName(0x30, 0x3a, 0xb2, '2126 c'), + RgbInt8Color.rgbName(0x35, 0x3a, 0xa9, '2126 xgc'), + RgbInt8Color.rgbName(0x2a, 0x3b, 0x80, '2147 cp'), + RgbInt8Color.rgbName(0x2d, 0x38, 0x81, '2756 cp'), + RgbInt8Color.rgbName(0x1f, 0x35, 0x6f, '3597 cp'), + RgbInt8Color.rgbName(0x22, 0x3a, 0x76, '280 cp'), + RgbInt8Color.rgbName(0x21, 0x36, 0x6e, '3597 c'), + RgbInt8Color.rgbName(0x1d, 0x36, 0x6d, '8783 c'), + RgbInt8Color.rgbName(0x31, 0x39, 0x7f, '2118 cp'), + RgbInt8Color.rgbName(0x33, 0x36, 0x7c, '2748 cp'), + RgbInt8Color.rgbName(0x23, 0x35, 0x6b, '281 cp'), + RgbInt8Color.rgbName(0x3b, 0x33, 0x80, '2735 cp'), + RgbInt8Color.rgbName(0x3a, 0x30, 0x7c, 'p 99-8 c'), + RgbInt8Color.rgbName(0x28, 0x33, 0x6d, '3581 cp'), + RgbInt8Color.rgbName(0x38, 0x2c, 0x75, '2105 cp'), + RgbInt8Color.rgbName(0x34, 0x35, 0x79, '2118 c'), + RgbInt8Color.rgbName(0x34, 0x31, 0x75, '273 cp'), + RgbInt8Color.rgbName(0x36, 0x2d, 0x72, '2745 cp'), + RgbInt8Color.rgbName(0x32, 0x35, 0x72, '8782 c'), + RgbInt8Color.rgbName(0x35, 0x3c, 0x7c, 'p 102-16 c'), + RgbInt8Color.rgbName(0x38, 0x2e, 0x73, 'p 99-16 c'), + RgbInt8Color.rgbName(0x37, 0x37, 0x78, '2118 xgc'), + RgbInt8Color.rgbName(0x0, 0x49, 0xad, '2728 xgc'), + RgbInt8Color.rgbName(0x3, 0x3e, 0x9e, '286 xgc'), + RgbInt8Color.rgbName(0x0, 0x3d, 0xa5, '293 c'), + RgbInt8Color.rgbName(0x0, 0x4e, 0xa8, '2145 c'), + RgbInt8Color.rgbName(0x0, 0x50, 0xb5, '2388 c'), + RgbInt8Color.rgbName(0x0, 0x47, 0xbb, '2728 c'), + RgbInt8Color.rgbName(0x0, 0x4a, 0xa7, '293 xgc'), + RgbInt8Color.rgbName(0x0, 0x4c, 0x97, '2945 c'), + RgbInt8Color.rgbName(0x0, 0x3d, 0x92, '661 xgc'), + RgbInt8Color.rgbName(0x44, 0x0, 0x99, 'violet c'), + RgbInt8Color.rgbName(0x4d, 0x0, 0x9a, 'violet xgc'), + RgbInt8Color.rgbName(0x4c, 0x12, 0xa1, '2091 c'), + RgbInt8Color.rgbName(0x4d, 0x12, 0x9f, '2091 xgc'), + RgbInt8Color.rgbName(0x0, 0x4f, 0x8f, '2945 xgc'), + RgbInt8Color.rgbName(0x4e, 0x0, 0x8e, 'medium purple c'), + RgbInt8Color.rgbName(0x0, 0x49, 0x86, '2186 c'), + RgbInt8Color.rgbName(0x3b, 0x3f, 0xb6, '2369 c'), + RgbInt8Color.rgbName(0x0, 0x4b, 0x87, '301 c'), + RgbInt8Color.rgbName(0x4a, 0x25, 0xaa, '2098 c'), + RgbInt8Color.rgbName(0x0, 0x46, 0x80, '2154 c'), + RgbInt8Color.rgbName(0x0, 0x48, 0x7f, '2154 xgc'), + RgbInt8Color.rgbName(0x1e, 0x42, 0x94, '10249 c'), + RgbInt8Color.rgbName(0x0, 0x46, 0x7b, '2186 xgc'), + RgbInt8Color.rgbName(0x0, 0x4a, 0x7e, '301 xgc'), + RgbInt8Color.rgbName(0x1, 0x47, 0x79, '2154 cp'), + RgbInt8Color.rgbName(0x0, 0x46, 0x77, '2187 c'), + RgbInt8Color.rgbName(0x18, 0x4b, 0x91, '7687 xgc'), + RgbInt8Color.rgbName(0x0, 0x49, 0x76, '7693 c'), + RgbInt8Color.rgbName(0x3f, 0x43, 0xad, 'blue 072 u'), + RgbInt8Color.rgbName(0x1d, 0x42, 0x8a, '7687 c'), + RgbInt8Color.rgbName(0x7, 0x4a, 0x7b, 'p 107-16 c'), + RgbInt8Color.rgbName(0x4e, 0x2c, 0xa3, '2098 xgc'), + RgbInt8Color.rgbName(0x4d, 0x49, 0xbe, '2368 c'), + RgbInt8Color.rgbName(0x26, 0x3f, 0x8c, 'reflex blue cp'), + RgbInt8Color.rgbName(0x24, 0x50, 0x9a, '286 cp'), + RgbInt8Color.rgbName(0x41, 0x47, 0xad, '2369 xgc'), + RgbInt8Color.rgbName(0x1d, 0x4f, 0x91, '7686 c'), + RgbInt8Color.rgbName(0x21, 0x4e, 0x92, 'p 104-8 c'), + RgbInt8Color.rgbName(0x2f, 0x3f, 0x90, '2746 cp'), + RgbInt8Color.rgbName(0x1a, 0x47, 0x84, '287 cp'), + RgbInt8Color.rgbName(0x2c, 0x4f, 0x99, '10248 c'), + RgbInt8Color.rgbName(0x22, 0x4d, 0x8f, '7686 cp'), + RgbInt8Color.rgbName(0x2f, 0x40, 0x8e, 'blue 072 cp'), + RgbInt8Color.rgbName(0x2b, 0x3e, 0x85, '2747 cp'), + RgbInt8Color.rgbName(0x20, 0x49, 0x86, 'p 104-16 c'), + RgbInt8Color.rgbName(0x48, 0x36, 0x98, '2104 c'), + RgbInt8Color.rgbName(0x49, 0x4c, 0xaf, '2368 xgc'), + RgbInt8Color.rgbName(0x39, 0x49, 0x9c, 'reflex blue u'), + RgbInt8Color.rgbName(0x37, 0x43, 0x93, '2736 cp'), + RgbInt8Color.rgbName(0x35, 0x3d, 0x8a, '2738 cp'), + RgbInt8Color.rgbName(0x49, 0x3f, 0x9c, '2104 xgc'), + RgbInt8Color.rgbName(0x4f, 0x4c, 0xb1, '2367 c'), + RgbInt8Color.rgbName(0x47, 0x4d, 0xa4, '2738 u'), + RgbInt8Color.rgbName(0x44, 0x49, 0x9c, '2117 c'), + RgbInt8Color.rgbName(0x3a, 0x4c, 0x93, '2117 cp'), + RgbInt8Color.rgbName(0x46, 0x45, 0x98, '10243 c'), + RgbInt8Color.rgbName(0x38, 0x50, 0x94, '3590 cp'), + RgbInt8Color.rgbName(0x44, 0x47, 0x95, 'dark blue u'), + RgbInt8Color.rgbName(0x47, 0x50, 0x9e, '2117 xgc'), + RgbInt8Color.rgbName(0x47, 0x41, 0x8d, '2370 cp'), + RgbInt8Color.rgbName(0x42, 0x4f, 0x90, '2747 u'), + RgbInt8Color.rgbName(0x4a, 0x50, 0x93, 'p 102-7 c'), + RgbInt8Color.rgbName(0x22, 0x3d, 0x1e, '2411 cp'), + RgbInt8Color.rgbName(0x0, 0x3d, 0x4c, '548 c'), + RgbInt8Color.rgbName(0x1c, 0x42, 0x20, '2411 c'), + RgbInt8Color.rgbName(0x19, 0x44, 0x22, '2411 xgc'), + RgbInt8Color.rgbName(0x3, 0x46, 0x38, '3308 c'), + RgbInt8Color.rgbName(0x0, 0x46, 0x25, '3537 cp'), + RgbInt8Color.rgbName(0x0, 0x46, 0x31, 'p 138-16 c'), + RgbInt8Color.rgbName(0x0, 0x3e, 0x51, '3035 c'), + RgbInt8Color.rgbName(0x0, 0x42, 0x52, '309 cp'), + RgbInt8Color.rgbName(0x0, 0x40, 0x50, '309 xgc'), + RgbInt8Color.rgbName(0x0, 0x41, 0x53, '548 xgc'), + RgbInt8Color.rgbName(0x0, 0x3f, 0x63, '2188 xgc'), + RgbInt8Color.rgbName(0x0, 0x3e, 0x5d, '302 xgc'), + RgbInt8Color.rgbName(0x0, 0x43, 0x57, '3035 cp'), + RgbInt8Color.rgbName(0x0, 0x45, 0x58, '3035 xgc'), + RgbInt8Color.rgbName(0x0, 0x44, 0x55, '548 cp'), + RgbInt8Color.rgbName(0x0, 0x42, 0x6a, '2188 c'), + RgbInt8Color.rgbName(0x1, 0x42, 0x6a, '7694 c'), + RgbInt8Color.rgbName(0x0, 0x43, 0x66, 'p 111-16 c'), + RgbInt8Color.rgbName(0x0, 0x44, 0x6f, '2187 xgc'), + RgbInt8Color.rgbName(0x1d, 0x44, 0x81, '2146 cp'), + RgbInt8Color.rgbName(0x33, 0x3d, 0x79, '3584 c'), + RgbInt8Color.rgbName(0x30, 0x3f, 0x82, '662 cp'), + RgbInt8Color.rgbName(0x26, 0x45, 0x83, '7687 cp'), + RgbInt8Color.rgbName(0x26, 0x43, 0x7b, '8784 c'), + RgbInt8Color.rgbName(0x38, 0x42, 0x89, 'p 102-8 c'), + RgbInt8Color.rgbName(0x9, 0x57, 0xc3, '2132 c'), + RgbInt8Color.rgbName(0x0, 0x54, 0xa7, '2145 xgc'), + RgbInt8Color.rgbName(0x0, 0x55, 0xb5, '2388 xgc'), + RgbInt8Color.rgbName(0x0, 0x57, 0xb8, '2935 c'), + RgbInt8Color.rgbName(0x0, 0x57, 0xa0, '3506 cp'), + RgbInt8Color.rgbName(0x0, 0x55, 0x8c, '7462 c'), + RgbInt8Color.rgbName(0x1c, 0x57, 0xa5, '2133 c'), + RgbInt8Color.rgbName(0x11, 0x53, 0x91, '2145 cp'), + RgbInt8Color.rgbName(0x0, 0x54, 0x83, '2186 cp'), + RgbInt8Color.rgbName(0x0, 0x55, 0x87, '7692 c'), + RgbInt8Color.rgbName(0x36, 0x5a, 0xbd, '2131 c'), + RgbInt8Color.rgbName(0x17, 0x52, 0x96, '2388 cp'), + RgbInt8Color.rgbName(0x1b, 0x51, 0x96, '293 cp'), + RgbInt8Color.rgbName(0x2d, 0x51, 0x9a, '2126 cp'), + RgbInt8Color.rgbName(0x32, 0x55, 0xa4, '286 u'), + RgbInt8Color.rgbName(0x3c, 0x58, 0x96, '287 u'), + RgbInt8Color.rgbName(0x3c, 0x53, 0x9a, '3590 c'), + RgbInt8Color.rgbName(0x27, 0x51, 0x97, '661 cp'), + RgbInt8Color.rgbName(0x2c, 0x56, 0x97, '7685 c'), + RgbInt8Color.rgbName(0x2e, 0x59, 0xa0, '7685 cp'), + RgbInt8Color.rgbName(0x0, 0x48, 0x2b, '3537 c'), + RgbInt8Color.rgbName(0x0, 0x4d, 0x23, 'p 141-16 c'), + RgbInt8Color.rgbName(0x1d, 0x2e, 0x43, '539 cp'), + RgbInt8Color.rgbName(0x0, 0x47, 0x6c, '2188 cp'), + RgbInt8Color.rgbName(0x0, 0x49, 0x6a, '302 cp'), + RgbInt8Color.rgbName(0x0, 0x4f, 0x6d, '3025 xgc'), + RgbInt8Color.rgbName(0x0, 0x48, 0x70, '7694 xgc'), + RgbInt8Color.rgbName(0x0, 0x4c, 0x6d, 'p 114-16 c'), + RgbInt8Color.rgbName(0x0, 0x4e, 0x77, '7693 xgc'), + RgbInt8Color.rgbName(0x0, 0x4e, 0x77, 'p 111-8 c'), + RgbInt8Color.rgbName(0x27, 0x4e, 0x83, '8185 c'), + RgbInt8Color.rgbName(0x7, 0x62, 0xc8, '2387 c'), + RgbInt8Color.rgbName(0x12, 0x62, 0xbb, '2387 xgc'), + RgbInt8Color.rgbName(0x0, 0x63, 0xbb, '2935 xgc'), + RgbInt8Color.rgbName(0x0, 0x5e, 0xb8, '300 c'), + RgbInt8Color.rgbName(0x0, 0x5f, 0xad, '300 xgc'), + RgbInt8Color.rgbName(0x0, 0x63, 0xa8, 'p 106-8 c'), + RgbInt8Color.rgbName(0x0, 0x61, 0xa0, '2384 c'), + RgbInt8Color.rgbName(0x0, 0x5e, 0x98, '2945 cp'), + RgbInt8Color.rgbName(0x0, 0x5b, 0x99, 'p 106-16 c'), + RgbInt8Color.rgbName(0x13, 0x5e, 0xa8, '2133 xgc'), + RgbInt8Color.rgbName(0x0, 0x5b, 0x95, '301 cp'), + RgbInt8Color.rgbName(0x0, 0x62, 0x9b, '3015 c'), + RgbInt8Color.rgbName(0x0, 0x5c, 0x95, '7462 xgc'), + RgbInt8Color.rgbName(0x0, 0x62, 0x98, '7691 c'), + RgbInt8Color.rgbName(0x31, 0x5c, 0xb6, '2132 xgc'), + RgbInt8Color.rgbName(0x15, 0x5e, 0xa4, '2133 cp'), + RgbInt8Color.rgbName(0x48, 0x5c, 0xc7, '2726 c'), + RgbInt8Color.rgbName(0x23, 0x5b, 0xa8, '293 u'), + RgbInt8Color.rgbName(0x1b, 0x5f, 0xaa, '2935 u'), + RgbInt8Color.rgbName(0x24, 0x60, 0xa7, '3506 c'), + RgbInt8Color.rgbName(0x44, 0x60, 0xa2, '10255 c'), + RgbInt8Color.rgbName(0x27, 0x5e, 0xa3, '10261 c'), + RgbInt8Color.rgbName(0x3f, 0x60, 0xb8, '2131 xgc'), + RgbInt8Color.rgbName(0x30, 0x64, 0xa9, '2132 cp'), + RgbInt8Color.rgbName(0x3f, 0x5e, 0xa9, '2388 u'), + RgbInt8Color.rgbName(0x40, 0x61, 0xa6, '2728 cp'), + RgbInt8Color.rgbName(0x3a, 0x5d, 0xae, '7455 c'), + RgbInt8Color.rgbName(0x39, 0x64, 0xb2, '7455 xgc'), + RgbInt8Color.rgbName(0x3b, 0x61, 0xa6, '7684 cp'), + RgbInt8Color.rgbName(0x3b, 0x64, 0xa1, '8183 c'), + RgbInt8Color.rgbName(0x3d, 0x5f, 0xa0, 'p 104-7 c'), + RgbInt8Color.rgbName(0x7, 0x57, 0x1e, '2427 cp'), + RgbInt8Color.rgbName(0x1d, 0x3c, 0x34, '560 c'), + RgbInt8Color.rgbName(0x11, 0x3b, 0x40, '2217 cp'), + RgbInt8Color.rgbName(0x1b, 0x36, 0x5d, '534 c'), + RgbInt8Color.rgbName(0x1c, 0x3a, 0x56, '7463 cp'), + RgbInt8Color.rgbName(0x18, 0x38, 0x59, 'p 108-16 c'), + RgbInt8Color.rgbName(0x0, 0x52, 0x7f, '2187 cp'), + RgbInt8Color.rgbName(0x0, 0x67, 0xb9, '2144 c'), + RgbInt8Color.rgbName(0x0, 0x6e, 0xbc, '2144 xgc'), + RgbInt8Color.rgbName(0x0, 0x6a, 0xc6, '2175 c'), + RgbInt8Color.rgbName(0x0, 0x6e, 0xc1, '2175 xgc'), + RgbInt8Color.rgbName(0x0, 0x69, 0xb1, '2196 c'), + RgbInt8Color.rgbName(0x0, 0x6e, 0xb6, '300 u'), + RgbInt8Color.rgbName(0x0, 0x6c, 0xaa, '10273 c'), + RgbInt8Color.rgbName(0x0, 0x69, 0xad, '2144 cp'), + RgbInt8Color.rgbName(0x0, 0x6c, 0xb4, '2175 cp'), + RgbInt8Color.rgbName(0x0, 0x6b, 0xad, '2196 cp'), + RgbInt8Color.rgbName(0x0, 0x65, 0xa4, '2384 xgc'), + RgbInt8Color.rgbName(0x0, 0x68, 0xaf, '2935 cp'), + RgbInt8Color.rgbName(0x0, 0x6c, 0xb4, '300 cp'), + RgbInt8Color.rgbName(0x0, 0x6c, 0xb0, '3553 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x9f, '2384 cp'), + RgbInt8Color.rgbName(0x0, 0x6d, 0xa3, '3015 cp'), + RgbInt8Color.rgbName(0x0, 0x6b, 0xa6, '307 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0xa0, '641 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x9e, '7691 cp'), + RgbInt8Color.rgbName(0x0, 0x6b, 0xa8, 'p 109-16 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x9e, 'p 110-8 c'), + RgbInt8Color.rgbName(0x13, 0x66, 0xa0, '2196 u'), + RgbInt8Color.rgbName(0x2d, 0x68, 0xc4, '2386 c'), + RgbInt8Color.rgbName(0x0, 0x6e, 0xa0, '307 xgc'), + RgbInt8Color.rgbName(0x46, 0x6a, 0xad, '2131 cp'), + RgbInt8Color.rgbName(0x43, 0x6c, 0xae, '2145 u'), + RgbInt8Color.rgbName(0x36, 0x69, 0xbd, '2386 xgc'), + RgbInt8Color.rgbName(0x4c, 0x68, 0xbe, '2387 u'), + RgbInt8Color.rgbName(0x49, 0x67, 0xaa, '661 u'), + RgbInt8Color.rgbName(0x49, 0x67, 0xab, '7455 cp'), + RgbInt8Color.rgbName(0x45, 0x6d, 0xb0, '7683 cp'), + RgbInt8Color.rgbName(0x3, 0x5f, 0x1d, '2427 c'), + RgbInt8Color.rgbName(0x0, 0x5a, 0x28, 'p 141-8 c'), + RgbInt8Color.rgbName(0x1a, 0x3e, 0x34, '560 xgc'), + RgbInt8Color.rgbName(0x17, 0x3f, 0x35, '567 c'), + RgbInt8Color.rgbName(0x14, 0x40, 0x35, '567 xgc'), + RgbInt8Color.rgbName(0x0, 0x46, 0x45, 'p 126-16 c'), + RgbInt8Color.rgbName(0x13, 0x41, 0x69, 'p 108-8 c'), + RgbInt8Color.rgbName(0x16, 0x44, 0x69, '2955 cp'), + RgbInt8Color.rgbName(0x1d, 0x3d, 0x66, '648 cp'), + RgbInt8Color.rgbName(0x15, 0x44, 0x68, '8483 c'), + RgbInt8Color.rgbName(0x1b, 0x46, 0x77, '294 cp'), + RgbInt8Color.rgbName(0x16, 0x3d, 0x5c, '540 cp'), + RgbInt8Color.rgbName(0x0, 0x5b, 0x8d, '7692 cp'), + RgbInt8Color.rgbName(0x0, 0x5c, 0x8a, '7692 xgc'), + RgbInt8Color.rgbName(0x0, 0x5b, 0x8b, 'p 110-16 c'), + RgbInt8Color.rgbName(0x0, 0x61, 0x93, '3015 xgc'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x90, '7462 cp'), + RgbInt8Color.rgbName(0x1c, 0x5b, 0x99, '7686 xgc'), + RgbInt8Color.rgbName(0x0, 0x76, 0xce, '2174 c'), + RgbInt8Color.rgbName(0x0, 0x76, 0xcf, '2195 c'), + RgbInt8Color.rgbName(0x0, 0x72, 0xce, '285 c'), + RgbInt8Color.rgbName(0x0, 0x77, 0xc8, '3005 c'), + RgbInt8Color.rgbName(0x0, 0x78, 0xc1, '3005 xgc'), + RgbInt8Color.rgbName(0x0, 0x76, 0xbb, '2174 cp'), + RgbInt8Color.rgbName(0x0, 0x74, 0xbc, '2195 cp'), + RgbInt8Color.rgbName(0x0, 0x72, 0xb2, '2196 xgc'), + RgbInt8Color.rgbName(0x0, 0x78, 0xbf, '3005 u'), + RgbInt8Color.rgbName(0x0, 0x77, 0xb5, '641 cp'), + RgbInt8Color.rgbName(0x0, 0x75, 0xbb, 'p 109-8 c'), + RgbInt8Color.rgbName(0x0, 0x76, 0xae, '307 cp'), + RgbInt8Color.rgbName(0x0, 0x6f, 0xad, '3553 cp'), + RgbInt8Color.rgbName(0x0, 0x75, 0xad, '3553 u'), + RgbInt8Color.rgbName(0x0, 0x74, 0xaf, 'p 109-15 c'), + RgbInt8Color.rgbName(0xe, 0x76, 0xaa, '10272 c'), + RgbInt8Color.rgbName(0x29, 0x73, 0xc3, '2175 u'), + RgbInt8Color.rgbName(0x2b, 0x74, 0xb7, '285 cp'), + RgbInt8Color.rgbName(0x26, 0x74, 0xc2, '285 xgc'), + RgbInt8Color.rgbName(0x16, 0x70, 0xb1, 'p 106-7 c'), + RgbInt8Color.rgbName(0x26, 0x39, 0x2d, '5605 cp'), + RgbInt8Color.rgbName(0x22, 0x38, 0x2c, '5605 xgc'), + RgbInt8Color.rgbName(0x0, 0x4c, 0x3c, 'p 135-16 c'), + RgbInt8Color.rgbName(0x1, 0x5b, 0x30, 'p 147-16 c'), + RgbInt8Color.rgbName(0x17, 0x49, 0x3c, '3308 cp'), + RgbInt8Color.rgbName(0x15, 0x47, 0x34, '3435 c'), + RgbInt8Color.rgbName(0x17, 0x49, 0x34, '3435 xgc'), + RgbInt8Color.rgbName(0x1b, 0x49, 0x46, '2466 cp'), + RgbInt8Color.rgbName(0x0, 0x4c, 0x45, '3302 c'), + RgbInt8Color.rgbName(0x0, 0x4e, 0x42, '3305 c'), + RgbInt8Color.rgbName(0x0, 0x4e, 0x3f, '3305 xgc'), + RgbInt8Color.rgbName(0x0, 0x4d, 0x3f, '3308 xgc'), + RgbInt8Color.rgbName(0x0, 0x48, 0x51, '316 c'), + RgbInt8Color.rgbName(0x0, 0x50, 0x4f, '7722 xgc'), + RgbInt8Color.rgbName(0x13, 0x41, 0x53, '2168 cp'), + RgbInt8Color.rgbName(0x0, 0x4d, 0x58, '316 cp'), + RgbInt8Color.rgbName(0x0, 0x4f, 0x58, '316 xgc'), + RgbInt8Color.rgbName(0x0, 0x4f, 0x59, '3165 c'), + RgbInt8Color.rgbName(0xb, 0x48, 0x59, '2182 xgc'), + RgbInt8Color.rgbName(0x7, 0x4f, 0x71, '2210 c'), + RgbInt8Color.rgbName(0x0, 0x4f, 0x71, '3025 c'), + RgbInt8Color.rgbName(0x12, 0x4a, 0x70, '7694 cp'), + RgbInt8Color.rgbName(0x15, 0x4b, 0x75, '541 cp'), + RgbInt8Color.rgbName(0x16, 0x50, 0x77, '7693 cp'), + RgbInt8Color.rgbName(0x0, 0x68, 0x9e, '7691 xgc'), + RgbInt8Color.rgbName(0x1c, 0x6e, 0xa5, '2151 cp'), + RgbInt8Color.rgbName(0x1e, 0x68, 0xa3, 'p 106-15 c'), + RgbInt8Color.rgbName(0x14, 0x7b, 0xd1, '2172 c'), + RgbInt8Color.rgbName(0x0, 0x7b, 0xc6, '2174 xgc'), + RgbInt8Color.rgbName(0x0, 0x7a, 0xc8, '2195 xgc'), + RgbInt8Color.rgbName(0x0, 0x81, 0xc8, '3005 cp'), + RgbInt8Color.rgbName(0x0, 0x7f, 0xc2, '7461 xgc'), + RgbInt8Color.rgbName(0x0, 0x7d, 0xba, '7461 c'), + RgbInt8Color.rgbName(0x0, 0x7f, 0xc0, 'p 109-7 c'), + RgbInt8Color.rgbName(0x0, 0x7e, 0xbb, 'p 112-16 c'), + RgbInt8Color.rgbName(0x30, 0x7f, 0xe2, '2727 c'), + RgbInt8Color.rgbName(0x0, 0x82, 0xba, '640 c'), + RgbInt8Color.rgbName(0x0, 0x7c, 0xb1, 'p 113-7 c'), + RgbInt8Color.rgbName(0x2, 0x72, 0x23, '2259 c'), + RgbInt8Color.rgbName(0x0, 0x74, 0x28, '2259 xgc'), + RgbInt8Color.rgbName(0x23, 0x3b, 0x37, '5467 cp'), + RgbInt8Color.rgbName(0x22, 0x46, 0x31, '553 xgc'), + RgbInt8Color.rgbName(0x27, 0x3b, 0x33, '5535 cp'), + RgbInt8Color.rgbName(0x20, 0x3e, 0x35, '627 cp'), + RgbInt8Color.rgbName(0xa, 0x5e, 0x2a, 'p 144-16 c'), + RgbInt8Color.rgbName(0x0, 0x64, 0x2e, 'p 144-8 c'), + RgbInt8Color.rgbName(0x0, 0x68, 0x33, 'p 147-8 c'), + RgbInt8Color.rgbName(0x0, 0x56, 0x3e, '343 xgc'), + RgbInt8Color.rgbName(0x0, 0x57, 0x3f, '7484 c'), + RgbInt8Color.rgbName(0x0, 0x58, 0x3e, '7484 xgc'), + RgbInt8Color.rgbName(0x0, 0x58, 0x3f, '7729 cp'), + RgbInt8Color.rgbName(0x0, 0x59, 0x3d, 'p 138-8 c'), + RgbInt8Color.rgbName(0x1c, 0x56, 0x30, '357 cp'), + RgbInt8Color.rgbName(0x17, 0x58, 0x3c, '554 xgc'), + RgbInt8Color.rgbName(0x11, 0x57, 0x40, '343 c'), + RgbInt8Color.rgbName(0x0, 0x58, 0x44, '7729 c'), + RgbInt8Color.rgbName(0x0, 0x5a, 0x44, '7729 xgc'), + RgbInt8Color.rgbName(0x0, 0x53, 0x4c, '330 c'), + RgbInt8Color.rgbName(0x0, 0x51, 0x4b, '3302 xgc'), + RgbInt8Color.rgbName(0x0, 0x55, 0x49, 'p 132-16 c'), + RgbInt8Color.rgbName(0x0, 0x51, 0x51, '7722 c'), + RgbInt8Color.rgbName(0x0, 0x53, 0x4f, '7722 cp'), + RgbInt8Color.rgbName(0x0, 0x59, 0x4f, '3292 c'), + RgbInt8Color.rgbName(0x0, 0x55, 0x4e, '330 xgc'), + RgbInt8Color.rgbName(0x0, 0x59, 0x4c, '561 c'), + RgbInt8Color.rgbName(0x0, 0x52, 0x5e, '3165 xgc'), + RgbInt8Color.rgbName(0x0, 0x58, 0x55, 'p 126-8 c'), + RgbInt8Color.rgbName(0x0, 0x57, 0x60, '3165 cp'), + RgbInt8Color.rgbName(0x0, 0x57, 0x61, 'p 123-16 c'), + RgbInt8Color.rgbName(0x12, 0x4c, 0x64, '2210 cp'), + RgbInt8Color.rgbName(0x0, 0x54, 0x6c, '8763 c'), + RgbInt8Color.rgbName(0x0, 0x55, 0x6c, 'p 120-16 c'), + RgbInt8Color.rgbName(0x1, 0x53, 0x79, '2153 cp'), + RgbInt8Color.rgbName(0x0, 0x55, 0x7a, '2153 xgc'), + RgbInt8Color.rgbName(0x0, 0x58, 0x77, '308 xgc'), + RgbInt8Color.rgbName(0x0, 0x5a, 0x70, '7470 c'), + RgbInt8Color.rgbName(0x0, 0x5a, 0x72, '7470 xgc'), + RgbInt8Color.rgbName(0x0, 0x57, 0x76, '7701 c'), + RgbInt8Color.rgbName(0x0, 0x58, 0x77, '7701 xgc'), + RgbInt8Color.rgbName(0x0, 0x56, 0x70, '7708 c'), + RgbInt8Color.rgbName(0x0, 0x55, 0x75, 'p 117-16 c'), + RgbInt8Color.rgbName(0x0, 0x56, 0x7e, '2153 c'), + RgbInt8Color.rgbName(0x0, 0x59, 0x7a, '3025 cp'), + RgbInt8Color.rgbName(0x0, 0x58, 0x7c, '308 c'), + RgbInt8Color.rgbName(0x0, 0x5a, 0x76, '7708 cp'), + RgbInt8Color.rgbName(0xf, 0x52, 0x78, 'p 111-15 c'), + RgbInt8Color.rgbName(0x13, 0x51, 0x88, 'p 107-8 c'), + RgbInt8Color.rgbName(0x15, 0x53, 0x84, 'p 107-15 c'), + RgbInt8Color.rgbName(0x0, 0x74, 0xa9, 'p 113-8 c'), + RgbInt8Color.rgbName(0x27, 0x74, 0xae, '2383 c'), + RgbInt8Color.rgbName(0x22, 0x77, 0xaa, '3553 up'), + RgbInt8Color.rgbName(0x0, 0x84, 0xd5, '2173 c'), + RgbInt8Color.rgbName(0x0, 0x84, 0xd4, '2184 c'), + RgbInt8Color.rgbName(0x0, 0x84, 0xcd, '2184 xgc'), + RgbInt8Color.rgbName(0x0, 0x86, 0xd6, '2194 c'), + RgbInt8Color.rgbName(0x0, 0x87, 0xc9, '2194 cp'), + RgbInt8Color.rgbName(0x4, 0x8c, 0xd6, '2194 u'), + RgbInt8Color.rgbName(0x0, 0x89, 0xd2, '2194 xgc'), + RgbInt8Color.rgbName(0x0, 0x8a, 0xd8, '2382 c'), + RgbInt8Color.rgbName(0x0, 0x8b, 0xce, '2394 c'), + RgbInt8Color.rgbName(0x39, 0x75, 0xb7, '660 cp'), + RgbInt8Color.rgbName(0x0, 0x8a, 0xcd, 'p 112-8 c'), + RgbInt8Color.rgbName(0x0, 0x85, 0xca, 'process blue c'), + RgbInt8Color.rgbName(0x0, 0x89, 0xc8, '2173 cp'), + RgbInt8Color.rgbName(0x0, 0x8b, 0xcb, '2184 cp'), + RgbInt8Color.rgbName(0x0, 0x8c, 0xcc, '2193 cp'), + RgbInt8Color.rgbName(0x0, 0x8b, 0xcd, '3538 c'), + RgbInt8Color.rgbName(0x0, 0x8a, 0xcc, '3538 cp'), + RgbInt8Color.rgbName(0x0, 0x8b, 0xca, '3538 u'), + RgbInt8Color.rgbName(0x0, 0x89, 0xc7, '7461 cp'), + RgbInt8Color.rgbName(0x0, 0x8b, 0xcc, 'process blue cp'), + RgbInt8Color.rgbName(0x0, 0x83, 0xc3, 'process blue u'), + RgbInt8Color.rgbName(0x0, 0x87, 0xc5, 'process blue xgc'), + RgbInt8Color.rgbName(0x17, 0x65, 0x22, '2427 xgc'), + RgbInt8Color.rgbName(0x3, 0x73, 0x32, '2465 cp'), + RgbInt8Color.rgbName(0x4, 0x6a, 0x38, '349 c'), + RgbInt8Color.rgbName(0x0, 0x68, 0x37, '349 xgc'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x38, '3500 c'), + RgbInt8Color.rgbName(0x0, 0x72, 0x36, '3500 cp'), + RgbInt8Color.rgbName(0x21, 0x57, 0x32, '357 c'), + RgbInt8Color.rgbName(0x28, 0x47, 0x34, '553 c'), + RgbInt8Color.rgbName(0x2a, 0x45, 0x38, '560 cp'), + RgbInt8Color.rgbName(0x6, 0x64, 0x35, 'p 141-7 c'), + RgbInt8Color.rgbName(0x0, 0x78, 0x30, 'p 143-16 c'), + RgbInt8Color.rgbName(0x0, 0x75, 0x33, 'p 146-16 c'), + RgbInt8Color.rgbName(0x20, 0x5b, 0x29, 'p 150-16 c'), + RgbInt8Color.rgbName(0x0, 0x63, 0x41, '3425 c'), + RgbInt8Color.rgbName(0x1a, 0x52, 0x43, '3305 cp'), + RgbInt8Color.rgbName(0x0, 0x64, 0x42, '3425 xgc'), + RgbInt8Color.rgbName(0x13, 0x5b, 0x42, '7484 cp'), + RgbInt8Color.rgbName(0x13, 0x5c, 0x46, 'p 138-15 c'), + RgbInt8Color.rgbName(0x0, 0x5c, 0x4d, '561 xgc'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x4a, 'p 135-8 c'), + RgbInt8Color.rgbName(0x0, 0x5c, 0x53, '3292 xgc'), + RgbInt8Color.rgbName(0xd, 0x52, 0x57, '7476 c'), + RgbInt8Color.rgbName(0xc, 0x52, 0x57, '7476 xgc'), + RgbInt8Color.rgbName(0x0, 0x5b, 0x59, '7721 xgc'), + RgbInt8Color.rgbName(0x0, 0x5e, 0x58, 'p 129-16 c'), + RgbInt8Color.rgbName(0x0, 0x63, 0x54, 'p 132-8 c'), + RgbInt8Color.rgbName(0x17, 0x4a, 0x5b, '2182 c'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x61, '323 c'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x60, '323 xgc'), + RgbInt8Color.rgbName(0x12, 0x52, 0x5b, '7476 cp'), + RgbInt8Color.rgbName(0x0, 0x63, 0x5b, '7720 c'), + RgbInt8Color.rgbName(0x0, 0x60, 0x58, '7720 xgc'), + RgbInt8Color.rgbName(0x0, 0x5e, 0x5d, '7721 c'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x5b, '7721 cp'), + RgbInt8Color.rgbName(0x0, 0x63, 0x58, 'p 132-15 c'), + RgbInt8Color.rgbName(0x0, 0x61, 0x60, '323 cp'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x68, '8761 c'), + RgbInt8Color.rgbName(0x0, 0x60, 0x60, 'p 126-15 c'), + RgbInt8Color.rgbName(0x0, 0x62, 0x72, '3155 c'), + RgbInt8Color.rgbName(0x0, 0x5d, 0x6f, '7470 cp'), + RgbInt8Color.rgbName(0x0, 0x5c, 0x76, '7708 xgc'), + RgbInt8Color.rgbName(0x0, 0x62, 0x75, '2224 cp'), + RgbInt8Color.rgbName(0x0, 0x61, 0x7d, '634 xgc'), + RgbInt8Color.rgbName(0x0, 0x5d, 0x80, 'p 114-15 c'), + RgbInt8Color.rgbName(0x0, 0x62, 0x87, '308 cp'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x83, '634 c'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x86, '7469 c'), + RgbInt8Color.rgbName(0x0, 0x61, 0x87, '7469 cp'), + RgbInt8Color.rgbName(0x0, 0x61, 0x88, '7469 xgc'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x82, '7701 cp'), + RgbInt8Color.rgbName(0x0, 0x61, 0x7f, '7707 c'), + RgbInt8Color.rgbName(0x0, 0x64, 0x81, '7707 cp'), + RgbInt8Color.rgbName(0x0, 0x5c, 0x85, 'p 114-8 c'), + RgbInt8Color.rgbName(0x0, 0x62, 0x8c, 'p 117-8 c'), + RgbInt8Color.rgbName(0xd, 0x5b, 0x90, '647 cp'), + RgbInt8Color.rgbName(0x0, 0x81, 0xb3, '640 xgc'), + RgbInt8Color.rgbName(0x0, 0x7f, 0xaf, '7690 cp'), + RgbInt8Color.rgbName(0x0, 0x7a, 0xab, '7690 xgc'), + RgbInt8Color.rgbName(0x28, 0x80, 0xbf, '2172 cp'), + RgbInt8Color.rgbName(0x2f, 0x7e, 0xce, '2195 u'), + RgbInt8Color.rgbName(0x25, 0x7b, 0xb6, '300 up'), + RgbInt8Color.rgbName(0x27, 0x81, 0xbb, '3005 up'), + RgbInt8Color.rgbName(0x20, 0x81, 0xb9, 'p 109-14 c'), + RgbInt8Color.rgbName(0x3a, 0x7e, 0xb4, 'p 109-8 u'), + RgbInt8Color.rgbName(0x0, 0x91, 0xda, '2192 c'), + RgbInt8Color.rgbName(0x0, 0x94, 0xd7, '2192 xgc'), + RgbInt8Color.rgbName(0x0, 0x90, 0xda, '2193 c'), + RgbInt8Color.rgbName(0x0, 0x93, 0xd5, '2193 xgc'), + RgbInt8Color.rgbName(0x0, 0x8d, 0xce, '2394 cp'), + RgbInt8Color.rgbName(0x0, 0x85, 0x22, '2258 c'), + RgbInt8Color.rgbName(0x0, 0x87, 0x2b, '2258 xgc'), + RgbInt8Color.rgbName(0x18, 0x73, 0x29, '2259 cp'), + RgbInt8Color.rgbName(0x33, 0x55, 0x25, '2266 c'), + RgbInt8Color.rgbName(0x2d, 0x56, 0x28, '2266 cp'), + RgbInt8Color.rgbName(0x35, 0x5a, 0x24, '2266 xgc'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x15, '2426 c'), + RgbInt8Color.rgbName(0x0, 0x86, 0x2b, '2426 cp'), + RgbInt8Color.rgbName(0x2c, 0x52, 0x34, '350 c'), + RgbInt8Color.rgbName(0x0, 0x83, 0x30, '3522 c'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x33, '356 c'), + RgbInt8Color.rgbName(0x0, 0x72, 0x3b, 'p 140-16 c'), + RgbInt8Color.rgbName(0x20, 0x5f, 0x34, 'p 141-15 c'), + RgbInt8Color.rgbName(0x0, 0x7f, 0x30, 'p 143-8 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x46, '342 xgc'), + RgbInt8Color.rgbName(0x0, 0x70, 0x3e, '7727 cp'), + RgbInt8Color.rgbName(0x0, 0x68, 0x45, '7728 c'), + RgbInt8Color.rgbName(0x0, 0x66, 0x43, '7728 xgc'), + RgbInt8Color.rgbName(0x1d, 0x6e, 0x2f, '2465 c'), + RgbInt8Color.rgbName(0x0, 0x6e, 0x41, '7733 xgc'), + RgbInt8Color.rgbName(0x0, 0x66, 0x4f, '336 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x47, '342 c'), + RgbInt8Color.rgbName(0x0, 0x68, 0x48, '7728 cp'), + RgbInt8Color.rgbName(0x9, 0x5d, 0x4d, 'p 135-15 c'), + RgbInt8Color.rgbName(0x0, 0x69, 0x4e, '336 cp'), + RgbInt8Color.rgbName(0x0, 0x6a, 0x52, '3298 c'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x51, 'p 138-7 c'), + RgbInt8Color.rgbName(0x15, 0x4f, 0x5f, '2182 cp'), + RgbInt8Color.rgbName(0x0, 0x68, 0x5e, '329 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x59, '3292 cp'), + RgbInt8Color.rgbName(0x0, 0x6c, 0x5b, '568 c'), + RgbInt8Color.rgbName(0x0, 0x6c, 0x59, 'p 135-7 c'), + RgbInt8Color.rgbName(0x0, 0x62, 0x69, '7715 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x61, '7720 cp'), + RgbInt8Color.rgbName(0x0, 0x65, 0x66, 'p 126-7 c'), + RgbInt8Color.rgbName(0x1a, 0x4f, 0x6e, '2210 xgc'), + RgbInt8Color.rgbName(0x0, 0x66, 0x6c, '2238 cp'), + RgbInt8Color.rgbName(0x0, 0x66, 0x6f, '7715 cp'), + RgbInt8Color.rgbName(0x0, 0x66, 0x71, 'p 123-15 c'), + RgbInt8Color.rgbName(0x0, 0x64, 0x70, 'p 123-8 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x7c, '2224 xgc'), + RgbInt8Color.rgbName(0x0, 0x69, 0x7a, '3155 xgc'), + RgbInt8Color.rgbName(0x6, 0x5f, 0x7c, '8764 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x7f, '315 c'), + RgbInt8Color.rgbName(0x0, 0x66, 0x7e, 'p 120-15 c'), + RgbInt8Color.rgbName(0x0, 0x66, 0x83, 'p 120-8 c'), + RgbInt8Color.rgbName(0x0, 0x6a, 0x8e, '7706 c'), + RgbInt8Color.rgbName(0x0, 0x69, 0x87, '7707 xgc'), + RgbInt8Color.rgbName(0x0, 0x66, 0x88, 'p 117-15 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x97, '641 xgc'), + RgbInt8Color.rgbName(0x2, 0x6c, 0x98, 'p 110-15 c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x97, 'p 113-16 c'), + RgbInt8Color.rgbName(0x0, 0x69, 0x92, 'p 114-7 c'), + RgbInt8Color.rgbName(0x0, 0x8a, 0xc8, '3538 up'), + RgbInt8Color.rgbName(0x0, 0x85, 0xbe, '640 cp'), + RgbInt8Color.rgbName(0x0, 0x86, 0xbf, '7460 c'), + RgbInt8Color.rgbName(0x0, 0x88, 0xc0, 'p 112-15 c'), + RgbInt8Color.rgbName(0x0, 0x8a, 0xc6, 'p 112-8 u'), + RgbInt8Color.rgbName(0x34, 0x83, 0xca, '2172 xgc'), + RgbInt8Color.rgbName(0x25, 0x87, 0xcc, '2173 xgc'), + RgbInt8Color.rgbName(0x36, 0x89, 0xd5, '2184 u'), + RgbInt8Color.rgbName(0x1d, 0x8a, 0xc5, '2193 up'), + RgbInt8Color.rgbName(0x1f, 0x88, 0xc3, '2194 up'), + RgbInt8Color.rgbName(0x37, 0x8b, 0xce, '2382 xgc'), + RgbInt8Color.rgbName(0x0, 0x8b, 0x2f, '2258 cp'), + RgbInt8Color.rgbName(0x25, 0x72, 0x26, '2273 c'), + RgbInt8Color.rgbName(0x2b, 0x76, 0x21, '2273 xgc'), + RgbInt8Color.rgbName(0x0, 0x93, 0x2f, '2426 xgc'), + RgbInt8Color.rgbName(0x2e, 0x55, 0x35, '350 xgc'), + RgbInt8Color.rgbName(0x0, 0x81, 0x39, '356 cp'), + RgbInt8Color.rgbName(0x0, 0x80, 0x36, '356 xgc'), + RgbInt8Color.rgbName(0x26, 0x5d, 0x34, '357 xgc'), + RgbInt8Color.rgbName(0x27, 0x5d, 0x38, '7483 c'), + RgbInt8Color.rgbName(0x26, 0x5d, 0x37, '7483 xgc'), + RgbInt8Color.rgbName(0x27, 0x5d, 0x3a, '7734 cp'), + RgbInt8Color.rgbName(0x26, 0x5c, 0x3c, '7734 xgc'), + RgbInt8Color.rgbName(0x24, 0x68, 0x33, 'p 144-15 c'), + RgbInt8Color.rgbName(0x0, 0x80, 0x36, 'p 146-8 c'), + RgbInt8Color.rgbName(0x26, 0x6c, 0x2d, 'p 150-8 c'), + RgbInt8Color.rgbName(0x2c, 0x5f, 0x2d, 'p 153-16 c'), + RgbInt8Color.rgbName(0x0, 0x6f, 0x44, '7727 c'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x3e, '7732 c'), + RgbInt8Color.rgbName(0x0, 0x70, 0x41, '7733 c'), + RgbInt8Color.rgbName(0x0, 0x75, 0x40, '7733 cp'), + RgbInt8Color.rgbName(0x1e, 0x70, 0x40, '349 cp'), + RgbInt8Color.rgbName(0x0, 0x77, 0x49, '3415 c'), + RgbInt8Color.rgbName(0x0, 0x74, 0x4b, '7727 xgc'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x55, '3298 xgc'), + RgbInt8Color.rgbName(0x0, 0x70, 0x55, '342 cp'), + RgbInt8Color.rgbName(0x0, 0x6e, 0x56, 'p 134-16 c'), + RgbInt8Color.rgbName(0x0, 0x6a, 0x5f, '329 cp'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x60, '329 xgc'), + RgbInt8Color.rgbName(0x0, 0x6c, 0x5c, '336 xgc'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x5b, '568 xgc'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x5f, 'p 132-7 c'), + RgbInt8Color.rgbName(0x11, 0x5e, 0x67, '5473 c'), + RgbInt8Color.rgbName(0x0, 0x6f, 0x62, '562 c'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x68, '7719 c'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x67, '7719 xgc'), + RgbInt8Color.rgbName(0x0, 0x6a, 0x67, '8743 c'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x66, 'p 129-8 c'), + RgbInt8Color.rgbName(0x0, 0x69, 0x75, '2238 c'), + RgbInt8Color.rgbName(0x0, 0x68, 0x71, '7715 xgc'), + RgbInt8Color.rgbName(0x0, 0x69, 0x80, '2224 c'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x77, '2238 xgc'), + RgbInt8Color.rgbName(0x0, 0x6c, 0x7c, '3155 cp'), + RgbInt8Color.rgbName(0x0, 0x6a, 0x85, '315 cp'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x83, '315 xgc'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x7e, '8225 c'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x90, '634 cp'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x8e, '7706 cp'), + RgbInt8Color.rgbName(0x12, 0x5f, 0x89, 'p 111-7 c'), + RgbInt8Color.rgbName(0x0, 0x73, 0x96, '633 c'), + RgbInt8Color.rgbName(0x0, 0x75, 0x95, '633 xgc'), + RgbInt8Color.rgbName(0x0, 0x73, 0x98, '7468 c'), + RgbInt8Color.rgbName(0x0, 0x70, 0x96, '7705 c'), + RgbInt8Color.rgbName(0x0, 0x71, 0x99, '7705 cp'), + RgbInt8Color.rgbName(0x0, 0x71, 0x96, '7706 xgc'), + RgbInt8Color.rgbName(0x0, 0x72, 0x99, 'p 117-7 c'), + RgbInt8Color.rgbName(0x0, 0x71, 0x91, 'p 119-16 c'), + RgbInt8Color.rgbName(0x0, 0x74, 0xa2, '307 u'), + RgbInt8Color.rgbName(0x0, 0x78, 0x9f, '7705 xgc'), + RgbInt8Color.rgbName(0x0, 0x70, 0x9f, 'p 113-15 c'), + RgbInt8Color.rgbName(0x0, 0x76, 0xa5, '2185 c'), + RgbInt8Color.rgbName(0x0, 0x77, 0xa8, '2185 xgc'), + RgbInt8Color.rgbName(0x0, 0x78, 0xa7, '641 u'), + RgbInt8Color.rgbName(0x0, 0x76, 0xa8, '7690 c'), + RgbInt8Color.rgbName(0x0, 0x76, 0xa7, 'p 110-7 c'), + RgbInt8Color.rgbName(0x0, 0x78, 0xa8, 'p 116-16 c'), + RgbInt8Color.rgbName(0x0, 0x8f, 0xcf, '2394 xgc'), + RgbInt8Color.rgbName(0x0, 0x94, 0xd2, '2192 cp'), + RgbInt8Color.rgbName(0x0, 0x92, 0xd1, 'p 112-7 c'), + RgbInt8Color.rgbName(0x0, 0x91, 0xce, '2394 u'), + RgbInt8Color.rgbName(0x0, 0x8e, 0xca, 'p 115-16 c'), + RgbInt8Color.rgbName(0x24, 0x8e, 0xd8, '2193 u'), + RgbInt8Color.rgbName(0x0, 0x92, 0xcb, '2393 c'), + RgbInt8Color.rgbName(0x0, 0x96, 0xcd, '2393 cp'), + RgbInt8Color.rgbName(0x15, 0x96, 0xd1, '2925 cp'), + RgbInt8Color.rgbName(0x12, 0x95, 0xd8, '299 u'), + RgbInt8Color.rgbName(0x0, 0x95, 0xc8, '639 c'), + RgbInt8Color.rgbName(0x0, 0x95, 0xca, '639 xgc'), + RgbInt8Color.rgbName(0x0, 0x92, 0xc9, '7460 cp'), + RgbInt8Color.rgbName(0x0, 0x8e, 0xc0, '7460 u'), + RgbInt8Color.rgbName(0x0, 0x90, 0xca, 'p 112-7 u'), + RgbInt8Color.rgbName(0x0, 0x90, 0xc2, 'p 115-16 u'), + RgbInt8Color.rgbName(0x0, 0x8d, 0xc4, 'process blue up'), + RgbInt8Color.rgbName(0x0, 0x97, 0x39, '2257 cp'), + RgbInt8Color.rgbName(0x0, 0x9a, 0x17, '2272 c'), + RgbInt8Color.rgbName(0x25, 0x73, 0x2d, '2273 cp'), + RgbInt8Color.rgbName(0x27, 0x9f, 0x0, '2424 c'), + RgbInt8Color.rgbName(0x0, 0x96, 0x39, '355 c'), + RgbInt8Color.rgbName(0x10, 0x88, 0x3a, 'p 143-7 c'), + RgbInt8Color.rgbName(0x1f, 0x72, 0x39, 'p 144-7 c'), + RgbInt8Color.rgbName(0x25, 0x6a, 0x3c, 'p 147-15 c'), + RgbInt8Color.rgbName(0x23, 0x79, 0x38, 'p 149-16 c'), + RgbInt8Color.rgbName(0x36, 0x68, 0x2e, 'p 150-15 c'), + RgbInt8Color.rgbName(0x2d, 0x6b, 0x32, 'p 153-8 c'), + RgbInt8Color.rgbName(0x0, 0x84, 0x3d, '348 c'), + RgbInt8Color.rgbName(0x0, 0x7b, 0x3e, '3536 c'), + RgbInt8Color.rgbName(0x0, 0x79, 0x40, '7732 xgc'), + RgbInt8Color.rgbName(0x0, 0x7f, 0x3e, 'p 140-8 c'), + RgbInt8Color.rgbName(0x1e, 0x7f, 0x3d, 'p 143-15 c'), + RgbInt8Color.rgbName(0x0, 0x79, 0x4b, '3415 xgc'), + RgbInt8Color.rgbName(0x0, 0x7b, 0x4b, '7726 c'), + RgbInt8Color.rgbName(0x0, 0x7f, 0x47, '7726 cp'), + RgbInt8Color.rgbName(0x0, 0x79, 0x4b, 'p 137-16 c'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x49, 'p 140-15 c'), + RgbInt8Color.rgbName(0x0, 0x7b, 0x53, '2419 cp'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x53, '341 c'), + RgbInt8Color.rgbName(0x0, 0x75, 0x5f, '3298 cp'), + RgbInt8Color.rgbName(0x6, 0x71, 0x5c, '568 cp'), + RgbInt8Color.rgbName(0x0, 0x73, 0x67, '328 c'), + RgbInt8Color.rgbName(0x0, 0x75, 0x68, '328 cp'), + RgbInt8Color.rgbName(0x0, 0x76, 0x68, '328 xgc'), + RgbInt8Color.rgbName(0x0, 0x78, 0x64, '3295 c'), + RgbInt8Color.rgbName(0x0, 0x77, 0x63, '3295 xgc'), + RgbInt8Color.rgbName(0x0, 0x72, 0x63, '562 xgc'), + RgbInt8Color.rgbName(0x0, 0x72, 0x6b, '7719 cp'), + RgbInt8Color.rgbName(0xb, 0x6e, 0x64, 'p 129-15 c'), + RgbInt8Color.rgbName(0x0, 0x76, 0x72, '7718 c'), + RgbInt8Color.rgbName(0x0, 0x76, 0x72, '7718 xgc'), + RgbInt8Color.rgbName(0x0, 0x72, 0x76, '8744 c'), + RgbInt8Color.rgbName(0x0, 0x74, 0x73, 'p 125-16 c'), + RgbInt8Color.rgbName(0x0, 0x75, 0x6c, 'p 128-16 c'), + RgbInt8Color.rgbName(0x0, 0x70, 0x80, '2223 cp'), + RgbInt8Color.rgbName(0x0, 0x73, 0x77, '322 c'), + RgbInt8Color.rgbName(0x0, 0x74, 0x77, '322 xgc'), + RgbInt8Color.rgbName(0x0, 0x75, 0x77, 'p 126-6 c'), + RgbInt8Color.rgbName(0x0, 0x76, 0x81, '7474 c'), + RgbInt8Color.rgbName(0x0, 0x79, 0x83, '7474 xgc'), + RgbInt8Color.rgbName(0x0, 0x76, 0x80, '7714 c'), + RgbInt8Color.rgbName(0x0, 0x74, 0x81, '7714 cp'), + RgbInt8Color.rgbName(0x0, 0x76, 0x7d, 'p 122-16 c'), + RgbInt8Color.rgbName(0x0, 0x75, 0x81, 'p 123-7 c'), + RgbInt8Color.rgbName(0x13, 0x65, 0x8b, '2152 cp'), + RgbInt8Color.rgbName(0x0, 0x78, 0x8d, '2223 c'), + RgbInt8Color.rgbName(0x0, 0x75, 0x88, '2223 xgc'), + RgbInt8Color.rgbName(0x0, 0x77, 0x8b, '3145 c'), + RgbInt8Color.rgbName(0x0, 0x77, 0x88, '3145 u'), + RgbInt8Color.rgbName(0x0, 0x7b, 0x8c, '7474 cp'), + RgbInt8Color.rgbName(0x0, 0x77, 0x8e, '8224 c'), + RgbInt8Color.rgbName(0x0, 0x73, 0x90, 'p 120-7 c'), + RgbInt8Color.rgbName(0x0, 0x77, 0x9a, '7468 xgc'), + RgbInt8Color.rgbName(0x0, 0x79, 0x99, 'p 119-15 c'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x9b, '2203 up'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x9f, '7468 cp'), + RgbInt8Color.rgbName(0x0, 0x7d, 0xa0, 'p 119-8 c'), + RgbInt8Color.rgbName(0x0, 0x7c, 0xa8, '2185 cp'), + RgbInt8Color.rgbName(0x0, 0x7c, 0xa8, 'p 113-14 c'), + RgbInt8Color.rgbName(0x0, 0x80, 0xaa, 'p 116-8 u'), + RgbInt8Color.rgbName(0x0, 0x97, 0xd7, '2393 xgc'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xde, '2925 c'), + RgbInt8Color.rgbName(0x0, 0x97, 0xdb, 'process cyan u'), + RgbInt8Color.rgbName(0x0, 0x9b, 0xdf, 'p 115-8 c'), + RgbInt8Color.rgbName(0x0, 0x9f, 0xdf, 'process cyan c'), + RgbInt8Color.rgbName(0x0, 0x9e, 0xdc, 'p 115-8 u'), + RgbInt8Color.rgbName(0x5, 0xa0, 0xd9, '2191 cp'), + RgbInt8Color.rgbName(0x0, 0x9f, 0xd5, '2202 cp'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xd5, '2202 up'), + RgbInt8Color.rgbName(0x0, 0xa0, 0xdc, '299 cp'), + RgbInt8Color.rgbName(0x0, 0xa0, 0xdb, '299 xgc'), + RgbInt8Color.rgbName(0x0, 0x98, 0xd0, '639 cp'), + RgbInt8Color.rgbName(0x0, 0x98, 0xcf, 'p 115-15 c'), + RgbInt8Color.rgbName(0x0, 0xa8, 0x2d, '2422 c'), + RgbInt8Color.rgbName(0x0, 0xaa, 0x13, '2423 c'), + RgbInt8Color.rgbName(0x0, 0x9d, 0x3c, '355 xgc'), + RgbInt8Color.rgbName(0x25, 0x7d, 0x3c, 'p 146-15 c'), + RgbInt8Color.rgbName(0x34, 0x77, 0x35, 'p 152-16 c'), + RgbInt8Color.rgbName(0x39, 0x6a, 0x36, 'p 153-15 c'), + RgbInt8Color.rgbName(0x0, 0x87, 0x3e, '2418 c'), + RgbInt8Color.rgbName(0x0, 0x88, 0x45, '2418 cp'), + RgbInt8Color.rgbName(0x0, 0x86, 0x41, '348 xgc'), + RgbInt8Color.rgbName(0x2, 0x83, 0x3f, '7732 cp'), + RgbInt8Color.rgbName(0x0, 0x8b, 0x3e, 'p 145-16 c'), + RgbInt8Color.rgbName(0x0, 0x8b, 0x43, '3522 cp'), + RgbInt8Color.rgbName(0x0, 0x89, 0x45, '3536 cp'), + RgbInt8Color.rgbName(0x13, 0x86, 0x3d, 'p 146-7 c'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x4e, '7726 xgc'), + RgbInt8Color.rgbName(0x0, 0x7e, 0x51, '2245 cp'), + RgbInt8Color.rgbName(0x0, 0x89, 0x48, '2418 xgc'), + RgbInt8Color.rgbName(0x0, 0x7c, 0x53, '341 xgc'), + RgbInt8Color.rgbName(0x0, 0x7c, 0x58, '2419 c'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x58, '2419 xgc'), + RgbInt8Color.rgbName(0x0, 0x7b, 0x5f, '335 c'), + RgbInt8Color.rgbName(0x0, 0x80, 0x5e, '335 cp'), + RgbInt8Color.rgbName(0x0, 0x84, 0x5a, '3415 cp'), + RgbInt8Color.rgbName(0x0, 0x82, 0x64, '3288 c'), + RgbInt8Color.rgbName(0x0, 0x7e, 0x61, '335 xgc'), + RgbInt8Color.rgbName(0x0, 0x81, 0x6d, '569 c'), + RgbInt8Color.rgbName(0x0, 0x7b, 0x75, '7718 cp'), + RgbInt8Color.rgbName(0x0, 0x7e, 0x72, 'p 128-15 c'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x70, 'p 129-7 c'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x70, 'p 131-16 c'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x7b, '322 cp'), + RgbInt8Color.rgbName(0x0, 0x79, 0x7c, '3557 c'), + RgbInt8Color.rgbName(0x0, 0x79, 0x7e, '3557 cp'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x7e, 'p 125-15 c'), + RgbInt8Color.rgbName(0x0, 0x7f, 0x74, 'p 128-8 c'), + RgbInt8Color.rgbName(0x0, 0x79, 0x89, '10285 c'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x87, '7714 xgc'), + RgbInt8Color.rgbName(0x9, 0x78, 0x81, '8745 c'), + RgbInt8Color.rgbName(0x0, 0x80, 0x7f, 'p 125-8 c'), + RgbInt8Color.rgbName(0x0, 0x7c, 0x91, '2231 c'), + RgbInt8Color.rgbName(0x0, 0x7e, 0x8a, '2231 cp'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x91, '3145 cp'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x94, '3145 xgc'), + RgbInt8Color.rgbName(0x0, 0x83, 0x8a, '321 u'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x8a, '7713 c'), + RgbInt8Color.rgbName(0x0, 0x82, 0x8a, 'p 122-8 c'), + RgbInt8Color.rgbName(0x0, 0x80, 0x93, '2222 xgc'), + RgbInt8Color.rgbName(0x0, 0x85, 0x97, '2231 u'), + RgbInt8Color.rgbName(0x0, 0x80, 0x96, '2231 xgc'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x99, '314 u'), + RgbInt8Color.rgbName(0x0, 0x82, 0x93, '7713 cp'), + RgbInt8Color.rgbName(0x5, 0x7f, 0x95, 'p 119-8 u'), + RgbInt8Color.rgbName(0x0, 0x7f, 0xa3, '314 c'), + RgbInt8Color.rgbName(0x0, 0x7f, 0xa3, '633 cp'), + RgbInt8Color.rgbName(0x7, 0x7c, 0xab, '2390 c'), + RgbInt8Color.rgbName(0x0, 0x81, 0xa6, '2391 c'), + RgbInt8Color.rgbName(0x0, 0x83, 0xb1, '10279 c'), + RgbInt8Color.rgbName(0x0, 0x84, 0xb8, 'p 116-8 c'), + RgbInt8Color.rgbName(0x0, 0xa3, 0xe1, '2191 c'), + RgbInt8Color.rgbName(0x0, 0xa3, 0xe0, '299 c'), + RgbInt8Color.rgbName(0x0, 0xa6, 0xe2, 'p 115-7 c'), + RgbInt8Color.rgbName(0x0, 0xa5, 0xdf, '2202 c'), + RgbInt8Color.rgbName(0x0, 0xaa, 0xe3, '2202 u'), + RgbInt8Color.rgbName(0x0, 0xa8, 0xe1, '2995 up'), + RgbInt8Color.rgbName(0x0, 0xa8, 0xe1, 'p 115-7 u'), + RgbInt8Color.rgbName(0x19, 0x99, 0x3b, '2272 cp'), + RgbInt8Color.rgbName(0x26, 0x9f, 0x2a, '2272 xgc'), + RgbInt8Color.rgbName(0x0, 0xad, 0x2f, '2422 xgc'), + RgbInt8Color.rgbName(0x0, 0xb3, 0x32, '2423 xgc'), + RgbInt8Color.rgbName(0x1c, 0xa4, 0x21, '3529 c'), + RgbInt8Color.rgbName(0x24, 0x90, 0x39, 'p 148-16 c'), + RgbInt8Color.rgbName(0x0, 0x96, 0x3d, 'p 142-16 c'), + RgbInt8Color.rgbName(0x0, 0x92, 0x48, 'p 139-16 c'), + RgbInt8Color.rgbName(0x0, 0x89, 0x4f, 'p 140-7 c'), + RgbInt8Color.rgbName(0x0, 0x86, 0x55, '2245 c'), + RgbInt8Color.rgbName(0x0, 0x8f, 0x4c, '348 cp'), + RgbInt8Color.rgbName(0x0, 0x87, 0x53, '3522 u'), + RgbInt8Color.rgbName(0x0, 0x88, 0x52, 'p 137-8 c'), + RgbInt8Color.rgbName(0x0, 0x87, 0x59, '2418 u'), + RgbInt8Color.rgbName(0x0, 0x84, 0x5b, '341 cp'), + RgbInt8Color.rgbName(0x0, 0x87, 0x55, '7725 c'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x55, '7725 cp'), + RgbInt8Color.rgbName(0x0, 0x8b, 0x5d, '2245 xgc'), + RgbInt8Color.rgbName(0x0, 0x87, 0x5f, '3536 u'), + RgbInt8Color.rgbName(0x0, 0x8a, 0x59, '7725 xgc'), + RgbInt8Color.rgbName(0x0, 0x82, 0x67, 'p 134-8 c'), + RgbInt8Color.rgbName(0x0, 0x86, 0x69, '3288 xgc'), + RgbInt8Color.rgbName(0x0, 0x83, 0x6b, '3295 cp'), + RgbInt8Color.rgbName(0x0, 0x8b, 0x63, '3536 up'), + RgbInt8Color.rgbName(0x0, 0x84, 0x6b, '569 xgc'), + RgbInt8Color.rgbName(0x0, 0x80, 0x6a, 'p 130-16 u'), + RgbInt8Color.rgbName(0xd, 0x79, 0x6a, 'p 132-6 c'), + RgbInt8Color.rgbName(0x0, 0x86, 0x75, '327 c'), + RgbInt8Color.rgbName(0x0, 0x86, 0x74, 'p 127-16 u'), + RgbInt8Color.rgbName(0x0, 0x83, 0x73, 'p 131-15 c'), + RgbInt8Color.rgbName(0x0, 0x86, 0x70, 'p 131-8 c'), + RgbInt8Color.rgbName(0x0, 0x8b, 0x71, 'p 134-7 c'), + RgbInt8Color.rgbName(0x0, 0x89, 0x7b, '2403 c'), + RgbInt8Color.rgbName(0x0, 0x85, 0x7a, '2403 cp'), + RgbInt8Color.rgbName(0x0, 0x89, 0x76, '327 xgc'), + RgbInt8Color.rgbName(0x0, 0x85, 0x78, '3282 c'), + RgbInt8Color.rgbName(0x0, 0x89, 0x7b, '3282 xgc'), + RgbInt8Color.rgbName(0x0, 0x85, 0x7d, '7717 c'), + RgbInt8Color.rgbName(0x0, 0x85, 0x7d, '7717 xgc'), + RgbInt8Color.rgbName(0x0, 0x89, 0x7a, 'p 124-16 u'), + RgbInt8Color.rgbName(0x0, 0x88, 0x7c, 'p 128-7 c'), + RgbInt8Color.rgbName(0x0, 0x8a, 0x75, 'p 130-16 c'), + RgbInt8Color.rgbName(0x0, 0x87, 0x80, '3282 u'), + RgbInt8Color.rgbName(0x0, 0x83, 0x88, 'p 122-15 c'), + RgbInt8Color.rgbName(0x5, 0x86, 0x8e, '2237 c'), + RgbInt8Color.rgbName(0x0, 0x83, 0x92, '7713 xgc'), + RgbInt8Color.rgbName(0x0, 0x88, 0x89, 'p 121-16 u'), + RgbInt8Color.rgbName(0x0, 0x8b, 0x8a, 'p 124-16 c'), + RgbInt8Color.rgbName(0x0, 0x88, 0x8a, 'p 125-7 c'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x95, '321 c'), + RgbInt8Color.rgbName(0x0, 0x85, 0x9b, '7712 c'), + RgbInt8Color.rgbName(0x0, 0x88, 0x9b, '7712 cp'), + RgbInt8Color.rgbName(0x0, 0x8d, 0x96, 'p 121-16 c'), + RgbInt8Color.rgbName(0x0, 0x8c, 0xa0, '2230 c'), + RgbInt8Color.rgbName(0x0, 0x88, 0xa0, '314 up'), + RgbInt8Color.rgbName(0x0, 0x82, 0xa3, '314 xgc'), + RgbInt8Color.rgbName(0x0, 0x89, 0xa0, '7712 xgc'), + RgbInt8Color.rgbName(0x0, 0x86, 0xa3, 'p 118-16 u'), + RgbInt8Color.rgbName(0x0, 0x85, 0xa2, 'p 119-14 c'), + RgbInt8Color.rgbName(0x0, 0x87, 0xae, '2203 c'), + RgbInt8Color.rgbName(0x0, 0x86, 0xa9, '2391 xgc'), + RgbInt8Color.rgbName(0x7, 0x80, 0xa7, '307 up'), + RgbInt8Color.rgbName(0x0, 0x84, 0xac, '314 cp'), + RgbInt8Color.rgbName(0x0, 0x85, 0xad, '7704 c'), + RgbInt8Color.rgbName(0x0, 0x84, 0xb0, 'p 116-15 c'), + RgbInt8Color.rgbName(0x0, 0x86, 0xa8, 'p 119-7 c'), + RgbInt8Color.rgbName(0x0, 0x88, 0xaf, '10278 c'), + RgbInt8Color.rgbName(0x0, 0x87, 0xb8, '7460 xgc'), + RgbInt8Color.rgbName(0x0, 0x8a, 0xb3, '7704 xgc'), + RgbInt8Color.rgbName(0x0, 0x86, 0xb7, 'p 113-6 c'), + RgbInt8Color.rgbName(0x0, 0x8d, 0xb4, 'p 118-16 c'), + RgbInt8Color.rgbName(0x0, 0x8a, 0xba, '640 u'), + RgbInt8Color.rgbName(0x0, 0x8c, 0xbd, 'p 116-7 c'), + RgbInt8Color.rgbName(0x16, 0x95, 0xd0, '2192 up'), + RgbInt8Color.rgbName(0x10, 0x95, 0xc8, 'p 112-14 c'), + RgbInt8Color.rgbName(0x0, 0xad, 0xe6, '2995 cp'), + RgbInt8Color.rgbName(0x0, 0xa9, 0xe0, '2995 c'), + RgbInt8Color.rgbName(0x0, 0xbb, 0x31, '2271 c'), + RgbInt8Color.rgbName(0x0, 0xb8, 0x30, '2271 xgc'), + RgbInt8Color.rgbName(0x31, 0xb7, 0x0, '2421 c'), + RgbInt8Color.rgbName(0x2f, 0x9e, 0x31, '2422 cp'), + RgbInt8Color.rgbName(0x36, 0x98, 0x2c, '3539 cp'), + RgbInt8Color.rgbName(0x20, 0x9c, 0x3c, 'p 148-8 c'), + RgbInt8Color.rgbName(0x3c, 0x84, 0x37, 'p 152-8 c'), + RgbInt8Color.rgbName(0x0, 0x9a, 0x44, '347 c'), + RgbInt8Color.rgbName(0x0, 0x9a, 0x44, '347 xgc'), + RgbInt8Color.rgbName(0x0, 0x9a, 0x44, 'p 145-8 c'), + RgbInt8Color.rgbName(0x0, 0x93, 0x49, '2252 cp'), + RgbInt8Color.rgbName(0x0, 0x8e, 0x60, 'p 136-16 c'), + RgbInt8Color.rgbName(0x0, 0x97, 0x5d, '2251 cp'), + RgbInt8Color.rgbName(0x5, 0x89, 0x62, '2418 up'), + RgbInt8Color.rgbName(0x0, 0x96, 0x5e, '340 c'), + RgbInt8Color.rgbName(0x18, 0x83, 0x5a, 'p 137-15 c'), + RgbInt8Color.rgbName(0x0, 0x99, 0x5a, 'p 139-15 c'), + RgbInt8Color.rgbName(0x0, 0x8d, 0x6c, '2245 u'), + RgbInt8Color.rgbName(0x0, 0x90, 0x6d, 'p 133-16 c'), + RgbInt8Color.rgbName(0x0, 0x8e, 0x74, '3288 cp'), + RgbInt8Color.rgbName(0x0, 0x8f, 0x75, '569 cp'), + RgbInt8Color.rgbName(0x0, 0x96, 0x6c, '7724 c'), + RgbInt8Color.rgbName(0xb, 0x85, 0x71, 'p 130-15 u'), + RgbInt8Color.rgbName(0x0, 0x91, 0x73, 'p 130-8 u'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x76, 'p 131-7 c'), + RgbInt8Color.rgbName(0x0, 0x95, 0x7a, '2243 c'), + RgbInt8Color.rgbName(0x0, 0x93, 0x76, '2243 cp'), + RgbInt8Color.rgbName(0x0, 0x8e, 0x7e, '2403 xgc'), + RgbInt8Color.rgbName(0x0, 0x90, 0x7d, '327 cp'), + RgbInt8Color.rgbName(0xf, 0x7f, 0x83, '2237 cp'), + RgbInt8Color.rgbName(0x0, 0x90, 0x84, '2403 u'), + RgbInt8Color.rgbName(0x0, 0x8f, 0x85, '327 u'), + RgbInt8Color.rgbName(0x0, 0x91, 0x85, '3282 cp'), + RgbInt8Color.rgbName(0x0, 0x8f, 0x86, '3282 up'), + RgbInt8Color.rgbName(0x0, 0x90, 0x81, '3285 u'), + RgbInt8Color.rgbName(0x0, 0x8e, 0x85, '7717 cp'), + RgbInt8Color.rgbName(0x0, 0x8e, 0x86, 'p 127-16 c'), + RgbInt8Color.rgbName(0x0, 0x92, 0x7f, 'p 127-8 u'), + RgbInt8Color.rgbName(0x0, 0x91, 0x7f, 'p 130-15 c'), + RgbInt8Color.rgbName(0x0, 0x8a, 0x90, '2230 cp'), + RgbInt8Color.rgbName(0x0, 0x90, 0x8b, '2403 up'), + RgbInt8Color.rgbName(0x0, 0x8e, 0x93, '321 up'), + RgbInt8Color.rgbName(0x0, 0x8d, 0x94, '321 xgc'), + RgbInt8Color.rgbName(0x0, 0x94, 0x8e, '7716 xgc'), + RgbInt8Color.rgbName(0x0, 0x91, 0x96, '10291 c'), + RgbInt8Color.rgbName(0x0, 0x92, 0x96, '321 cp'), + RgbInt8Color.rgbName(0x0, 0x8f, 0x96, 'p 122-7 c'), + RgbInt8Color.rgbName(0x0, 0x8e, 0xa2, '2230 xgc'), + RgbInt8Color.rgbName(0x0, 0x8e, 0xa6, '3135 u'), + RgbInt8Color.rgbName(0x0, 0x91, 0x9d, '3541 c'), + RgbInt8Color.rgbName(0x0, 0x91, 0x9e, '3541 up'), + RgbInt8Color.rgbName(0x0, 0x91, 0x9f, '7712 up'), + RgbInt8Color.rgbName(0x0, 0x93, 0x9f, 'p 121-15 c'), + RgbInt8Color.rgbName(0x0, 0x8a, 0xb0, '2203 cp'), + RgbInt8Color.rgbName(0x0, 0x8d, 0xb1, '313 u'), + RgbInt8Color.rgbName(0x0, 0x8e, 0xaa, '3135 c'), + RgbInt8Color.rgbName(0x0, 0x91, 0xad, '3135 xgc'), + RgbInt8Color.rgbName(0x0, 0x8a, 0xaf, '7704 cp'), + RgbInt8Color.rgbName(0x7, 0x87, 0xb1, 'p 116-7 u'), + RgbInt8Color.rgbName(0x0, 0x8d, 0xb4, '2203 xgc'), + RgbInt8Color.rgbName(0x0, 0x93, 0xb2, '632 c'), + RgbInt8Color.rgbName(0x0, 0x91, 0xb6, '640 up'), + RgbInt8Color.rgbName(0x0, 0x90, 0xb9, 'p 116-14 c'), + RgbInt8Color.rgbName(0x0, 0x91, 0xb0, 'p 119-6 c'), + RgbInt8Color.rgbName(0x0, 0x92, 0xbd, '2183 c'), + RgbInt8Color.rgbName(0x0, 0x94, 0xbc, '2183 xgc'), + RgbInt8Color.rgbName(0x0, 0x92, 0xbc, '313 c'), + RgbInt8Color.rgbName(0x0, 0x94, 0xbb, '313 xgc'), + RgbInt8Color.rgbName(0x0, 0x98, 0xc7, '313 cp'), + RgbInt8Color.rgbName(0x0, 0x99, 0xc9, 'p 115-15 u'), + RgbInt8Color.rgbName(0x0, 0x9a, 0xce, '801 c'), + RgbInt8Color.rgbName(0xd, 0x9d, 0xdb, '2995 u'), + RgbInt8Color.rgbName(0x15, 0x97, 0xdd, '2192 u'), + RgbInt8Color.rgbName(0x5, 0x97, 0xcc, '2393 u'), + RgbInt8Color.rgbName(0x1b, 0x98, 0xcc, '2393 up'), + RgbInt8Color.rgbName(0x0, 0x9e, 0xcc, '639 u'), + RgbInt8Color.rgbName(0x0, 0x9e, 0xcb, '7460 up'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xcd, '801 u'), + RgbInt8Color.rgbName(0xf, 0x9f, 0xd6, 'p 112-6 c'), + RgbInt8Color.rgbName(0x0, 0x9b, 0xc8, 'p 118-8 c'), + RgbInt8Color.rgbName(0x0, 0xa5, 0xdb, '2202 xgc'), + RgbInt8Color.rgbName(0x0, 0xaa, 0xe1, '2995 xgc'), + RgbInt8Color.rgbName(0x32, 0x9e, 0x31, '2423 cp'), + RgbInt8Color.rgbName(0x34, 0x9f, 0x2e, '3529 cp'), + RgbInt8Color.rgbName(0x0, 0xa1, 0x44, '355 cp'), + RgbInt8Color.rgbName(0x0, 0xa6, 0x44, 'p 142-8 c'), + RgbInt8Color.rgbName(0x0, 0xa7, 0x4a, '2252 c'), + RgbInt8Color.rgbName(0x12, 0x94, 0x47, '2426 u'), + RgbInt8Color.rgbName(0x0, 0x9f, 0x4d, '7482 c'), + RgbInt8Color.rgbName(0x0, 0xa2, 0x4d, 'p 139-8 c'), + RgbInt8Color.rgbName(0x0, 0xa0, 0x52, '7482 xgc'), + RgbInt8Color.rgbName(0x0, 0xa3, 0x51, '347 cp'), + RgbInt8Color.rgbName(0x0, 0xa2, 0x5a, '7482 cp'), + RgbInt8Color.rgbName(0x0, 0x98, 0x6a, '340 xgc'), + RgbInt8Color.rgbName(0x1a, 0x89, 0x5a, '3522 up'), + RgbInt8Color.rgbName(0x0, 0x97, 0x6c, 'p 136-15 c'), + RgbInt8Color.rgbName(0x0, 0x9a, 0x6e, '334 cp'), + RgbInt8Color.rgbName(0x0, 0x9e, 0x69, '340 cp'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x71, '2242 cp'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x77, '3278 c'), + RgbInt8Color.rgbName(0x0, 0x97, 0x75, '334 c'), + RgbInt8Color.rgbName(0x0, 0x98, 0x78, 'p 133-15 c'), + RgbInt8Color.rgbName(0x0, 0xa0, 0x6b, 'p 136-8 c'), + RgbInt8Color.rgbName(0x0, 0x98, 0x7c, '2243 xgc'), + RgbInt8Color.rgbName(0x0, 0x95, 0x7e, '2402 cp'), + RgbInt8Color.rgbName(0x0, 0x9a, 0x7a, '3278 xgc'), + RgbInt8Color.rgbName(0x0, 0x96, 0x81, '3285 c'), + RgbInt8Color.rgbName(0x0, 0x99, 0x7c, '3285 xgc'), + RgbInt8Color.rgbName(0x0, 0x95, 0x7e, '334 u'), + RgbInt8Color.rgbName(0x0, 0x9c, 0x7a, '334 xgc'), + RgbInt8Color.rgbName(0x0, 0x9e, 0x77, '340 u'), + RgbInt8Color.rgbName(0x0, 0x97, 0x7b, 'p 130-7 u'), + RgbInt8Color.rgbName(0xe, 0x8b, 0x7b, 'p 131-14 c'), + RgbInt8Color.rgbName(0x2, 0x94, 0x7e, 'p 131-6 c'), + RgbInt8Color.rgbName(0x0, 0x97, 0x8a, '327 up'), + RgbInt8Color.rgbName(0x0, 0x9c, 0x82, '3278 u'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x7e, '334 up'), + RgbInt8Color.rgbName(0x0, 0x97, 0x86, 'p 124-8 u'), + RgbInt8Color.rgbName(0x0, 0x96, 0x8b, 'p 127-15 c'), + RgbInt8Color.rgbName(0x0, 0x99, 0x86, 'p 127-7 u'), + RgbInt8Color.rgbName(0x0, 0x9a, 0x87, 'p 130-14 c'), + RgbInt8Color.rgbName(0x0, 0x98, 0x81, 'p 130-8 c'), + RgbInt8Color.rgbName(0x0, 0xa0, 0x8c, '2402 u'), + RgbInt8Color.rgbName(0x0, 0x9c, 0x8b, '2456 cp'), + RgbInt8Color.rgbName(0x0, 0x96, 0x8f, '2461 cp'), + RgbInt8Color.rgbName(0x0, 0x95, 0x8f, '3534 up'), + RgbInt8Color.rgbName(0x0, 0x96, 0x8f, '7716 c'), + RgbInt8Color.rgbName(0x0, 0x94, 0x9a, '10290 c'), + RgbInt8Color.rgbName(0x0, 0x9c, 0x96, '2399 cp'), + RgbInt8Color.rgbName(0x0, 0x94, 0x9c, '3541 u'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x93, '3560 cp'), + RgbInt8Color.rgbName(0x0, 0x9f, 0x97, '7716 cp'), + RgbInt8Color.rgbName(0x0, 0x95, 0x98, 'p 121-8 u'), + RgbInt8Color.rgbName(0x0, 0x97, 0x97, 'p 124-15 c'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x98, 'p 124-8 c'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x92, 'p 127-8 c'), + RgbInt8Color.rgbName(0xf, 0x92, 0xa0, '2230 up'), + RgbInt8Color.rgbName(0x0, 0x94, 0xa7, '3135 up'), + RgbInt8Color.rgbName(0x0, 0x9a, 0xa2, '320 xgc'), + RgbInt8Color.rgbName(0x0, 0x98, 0xa6, '3541 cp'), + RgbInt8Color.rgbName(0x0, 0x97, 0xa9, '7711 c'), + RgbInt8Color.rgbName(0x2, 0x91, 0xad, 'p 118-15 u'), + RgbInt8Color.rgbName(0x0, 0x9d, 0xa1, 'p 121-7 u'), + RgbInt8Color.rgbName(0x0, 0x9b, 0xa7, '2229 cp'), + RgbInt8Color.rgbName(0x0, 0x9a, 0xad, '2229 up'), + RgbInt8Color.rgbName(0x0, 0x97, 0xb2, '313 up'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xa6, '320 c'), + RgbInt8Color.rgbName(0x0, 0x95, 0xb2, '632 xgc'), + RgbInt8Color.rgbName(0x0, 0x99, 0xa9, '7711 cp'), + RgbInt8Color.rgbName(0x0, 0x9d, 0xa9, 'p 121-14 c'), + RgbInt8Color.rgbName(0x0, 0x9f, 0xab, 'p 121-8 c'), + RgbInt8Color.rgbName(0x0, 0x94, 0xba, '2183 cp'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xb0, '2228 up'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xb6, '2229 c'), + RgbInt8Color.rgbName(0x0, 0x9e, 0xb4, '2229 u'), + RgbInt8Color.rgbName(0x0, 0x98, 0xb5, '2229 xgc'), + RgbInt8Color.rgbName(0x0, 0x99, 0xb2, '2396 c'), + RgbInt8Color.rgbName(0x0, 0x9d, 0xb2, '2396 cp'), + RgbInt8Color.rgbName(0x0, 0x9e, 0xb5, '2396 xgc'), + RgbInt8Color.rgbName(0x0, 0x96, 0xb6, '3551 up'), + RgbInt8Color.rgbName(0x0, 0x9b, 0xbb, '3135 cp'), + RgbInt8Color.rgbName(0x0, 0x9e, 0xbe, '3551 cp'), + RgbInt8Color.rgbName(0x0, 0x9a, 0xbb, '632 cp'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xbd, '7703 c'), + RgbInt8Color.rgbName(0x0, 0x98, 0xc4, 'p 116-6 c'), + RgbInt8Color.rgbName(0x0, 0x99, 0xbd, 'p 118-15 c'), + RgbInt8Color.rgbName(0x0, 0x99, 0xbb, 'p 118-8 u'), + RgbInt8Color.rgbName(0x0, 0xa4, 0xd4, 'p 115-14 c'), + RgbInt8Color.rgbName(0x0, 0xa4, 0xce, 'p 118-7 c'), + RgbInt8Color.rgbName(0x0, 0xaa, 0xda, '901 c'), + RgbInt8Color.rgbName(0x0, 0xa8, 0xd0, '312 cp'), + RgbInt8Color.rgbName(0x1, 0xa9, 0xd4, '3545 up'), + RgbInt8Color.rgbName(0x0, 0xb4, 0xe4, '306 u'), + RgbInt8Color.rgbName(0x0, 0xb1, 0x40, '354 c'), + RgbInt8Color.rgbName(0x0, 0xad, 0x4a, '2423 u'), + RgbInt8Color.rgbName(0x0, 0xad, 0x4f, '2252 xgc'), + RgbInt8Color.rgbName(0x0, 0xad, 0x50, '2257 c'), + RgbInt8Color.rgbName(0x0, 0xb4, 0x4a, '354 xgc'), + RgbInt8Color.rgbName(0x0, 0xae, 0x57, '2257 xgc'), + RgbInt8Color.rgbName(0x0, 0xa9, 0x5c, '354 u'), + RgbInt8Color.rgbName(0x0, 0xa8, 0x5e, 'p 139-7 c'), + RgbInt8Color.rgbName(0x13, 0x95, 0x5e, 'p 145-8 u'), + RgbInt8Color.rgbName(0x0, 0xaa, 0x63, '2252 u'), + RgbInt8Color.rgbName(0x19, 0x97, 0x5d, '355 u'), + RgbInt8Color.rgbName(0x0, 0xaf, 0x66, '3405 c'), + RgbInt8Color.rgbName(0x0, 0xa3, 0x76, '2242 c'), + RgbInt8Color.rgbName(0x0, 0xad, 0x6f, '2251 c'), + RgbInt8Color.rgbName(0x12, 0x97, 0x6f, '7724 xgc'), + RgbInt8Color.rgbName(0x0, 0xa0, 0x79, 'green cp'), + RgbInt8Color.rgbName(0x0, 0xa1, 0x79, 'p 133-8 c'), + RgbInt8Color.rgbName(0x0, 0xa5, 0x79, '2242 xgc'), + RgbInt8Color.rgbName(0x0, 0x9d, 0x85, '2402 c'), + RgbInt8Color.rgbName(0x0, 0xa1, 0x7e, '3278 cp'), + RgbInt8Color.rgbName(0x0, 0xa6, 0x78, 'p 136-7 c'), + RgbInt8Color.rgbName(0x0, 0x9e, 0x87, '10297 c'), + RgbInt8Color.rgbName(0x0, 0xa3, 0x80, '2242 u'), + RgbInt8Color.rgbName(0x0, 0x9e, 0x84, '2402 xgc'), + RgbInt8Color.rgbName(0x0, 0xa3, 0x89, '3285 cp'), + RgbInt8Color.rgbName(0x0, 0xa0, 0x8b, 'p 130-7 c'), + RgbInt8Color.rgbName(0x0, 0xa7, 0x83, 'p 133-7 c'), + RgbInt8Color.rgbName(0x0, 0xa0, 0x8d, '10296 c'), + RgbInt8Color.rgbName(0x0, 0xa4, 0x90, '2400 cp'), + RgbInt8Color.rgbName(0x0, 0x9f, 0x92, '3560 c'), + RgbInt8Color.rgbName(0x0, 0x9d, 0xa5, '320 u'), + RgbInt8Color.rgbName(0x0, 0xa4, 0x99, '3272 c'), + RgbInt8Color.rgbName(0x0, 0xa4, 0x9a, '3272 u'), + RgbInt8Color.rgbName(0x0, 0xa5, 0x96, '3272 xgc'), + RgbInt8Color.rgbName(0x0, 0xa2, 0x98, '3534 cp'), + RgbInt8Color.rgbName(0x0, 0xa6, 0x97, '3534 u'), + RgbInt8Color.rgbName(0x0, 0xa3, 0x99, 'p 127-7 c'), + RgbInt8Color.rgbName(0x0, 0x9f, 0xac, '2228 cp'), + RgbInt8Color.rgbName(0x0, 0xa1, 0xaa, '320 cp'), + RgbInt8Color.rgbName(0x0, 0xa1, 0xa6, '320 up'), + RgbInt8Color.rgbName(0x0, 0xaa, 0xa1, '326 u'), + RgbInt8Color.rgbName(0x0, 0xa7, 0x9f, '3272 cp'), + RgbInt8Color.rgbName(0x0, 0xab, 0xa0, '3560 u'), + RgbInt8Color.rgbName(0x0, 0xa6, 0xa3, 'p 124-7 c'), + RgbInt8Color.rgbName(0x13, 0x96, 0xab, '2396 u'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xba, '3551 u'), + RgbInt8Color.rgbName(0x0, 0xa3, 0xad, '7467 c'), + RgbInt8Color.rgbName(0x0, 0xa2, 0xad, '7467 xgc'), + RgbInt8Color.rgbName(0x0, 0x9d, 0xaf, '7711 xgc'), + RgbInt8Color.rgbName(0x0, 0xa3, 0xb9, '2228 xgc'), + RgbInt8Color.rgbName(0x0, 0xa9, 0xb3, '2397 cp'), + RgbInt8Color.rgbName(0x0, 0x9e, 0xc0, '3551 c'), + RgbInt8Color.rgbName(0x0, 0xa6, 0xb5, '7467 cp'), + RgbInt8Color.rgbName(0x0, 0xa7, 0xb5, '7710 c'), + RgbInt8Color.rgbName(0x0, 0xa4, 0xb4, '7711 up'), + RgbInt8Color.rgbName(0x0, 0xa8, 0xb4, 'p 121-7 c'), + RgbInt8Color.rgbName(0x0, 0xa1, 0xc3, '2201 up'), + RgbInt8Color.rgbName(0x0, 0xa5, 0xbd, '2228 c'), + RgbInt8Color.rgbName(0x0, 0xa8, 0xbd, '2228 u'), + RgbInt8Color.rgbName(0x0, 0x9e, 0xc4, '639 up'), + RgbInt8Color.rgbName(0x4, 0xa1, 0xc2, '7703 xgc'), + RgbInt8Color.rgbName(0x0, 0xa0, 0xc1, 'p 118-7 u'), + RgbInt8Color.rgbName(0x0, 0xa8, 0xc3, '2200 cp'), + RgbInt8Color.rgbName(0x0, 0xa9, 0xc8, '2201 cp'), + RgbInt8Color.rgbName(0x0, 0xa5, 0xc6, '312 xgc'), + RgbInt8Color.rgbName(0x0, 0xab, 0xce, '2201 xgc'), + RgbInt8Color.rgbName(0x0, 0xa9, 0xce, '312 c'), + RgbInt8Color.rgbName(0x0, 0xae, 0xd3, '3545 cp'), + RgbInt8Color.rgbName(0x0, 0xae, 0xd6, '2201 c'), + RgbInt8Color.rgbName(0x0, 0xaf, 0xd7, '2201 u'), + RgbInt8Color.rgbName(0x0, 0xb3, 0xdb, '306 cp'), + RgbInt8Color.rgbName(0x0, 0xb2, 0xdb, '306 xgc'), + RgbInt8Color.rgbName(0x0, 0xaf, 0xd7, '638 c'), + RgbInt8Color.rgbName(0x0, 0xad, 0xd7, '638 cp'), + RgbInt8Color.rgbName(0x0, 0xab, 0xda, '901 u'), + RgbInt8Color.rgbName(0x0, 0xaf, 0xdb, '908 c'), + RgbInt8Color.rgbName(0x0, 0xb4, 0xdf, '3545 u'), + RgbInt8Color.rgbName(0x0, 0xad, 0xd5, '638 xgc'), + RgbInt8Color.rgbName(0x0, 0xb3, 0xdf, '908 u'), + RgbInt8Color.rgbName(0x0, 0xb5, 0xe2, '306 c'), + RgbInt8Color.rgbName(0x0, 0xaf, 0xd4, 'p 118-6 c'), + RgbInt8Color.rgbName(0x44, 0xa7, 0x5, '3501 c'), + RgbInt8Color.rgbName(0x0, 0xb7, 0x4f, '7481 c'), + RgbInt8Color.rgbName(0x0, 0xb6, 0x51, '7481 xgc'), + RgbInt8Color.rgbName(0x16, 0x9b, 0x62, '347 u'), + RgbInt8Color.rgbName(0x0, 0xae, 0x6c, '2251 xgc'), + RgbInt8Color.rgbName(0x0, 0xb4, 0x69, '3405 xgc'), + RgbInt8Color.rgbName(0x0, 0xb3, 0x6e, '2250 xgc'), + RgbInt8Color.rgbName(0x0, 0xb3, 0x73, '2250 c'), + RgbInt8Color.rgbName(0x0, 0xb1, 0x76, '2416 c'), + RgbInt8Color.rgbName(0x0, 0xb2, 0x73, '2416 xgc'), + RgbInt8Color.rgbName(0x0, 0xba, 0x6e, '7481 u'), + RgbInt8Color.rgbName(0xb, 0xaa, 0x78, '2251 u'), + RgbInt8Color.rgbName(0x0, 0xb2, 0x7a, '3405 u'), + RgbInt8Color.rgbName(0x0, 0xab, 0x84, 'green c'), + RgbInt8Color.rgbName(0x0, 0xa8, 0x90, '3275 cp'), + RgbInt8Color.rgbName(0x0, 0xab, 0x84, 'green xgc'), + RgbInt8Color.rgbName(0x0, 0xab, 0x8e, '3268 c'), + RgbInt8Color.rgbName(0x0, 0xac, 0x8c, '3268 xgc'), + RgbInt8Color.rgbName(0x0, 0xaa, 0x93, '3275 u'), + RgbInt8Color.rgbName(0x0, 0xaf, 0x93, '3275 xgc'), + RgbInt8Color.rgbName(0x0, 0xb3, 0x88, '339 c'), + RgbInt8Color.rgbName(0x0, 0xac, 0x8e, '808 u'), + RgbInt8Color.rgbName(0x0, 0xac, 0x8c, 'green u'), + RgbInt8Color.rgbName(0x9, 0x9f, 0x90, 'p 124-7 u'), + RgbInt8Color.rgbName(0x0, 0xac, 0xa0, '2399 c'), + RgbInt8Color.rgbName(0x0, 0xac, 0x9c, '2399 xgc'), + RgbInt8Color.rgbName(0x0, 0xb0, 0x97, '2400 c'), + RgbInt8Color.rgbName(0x0, 0xb1, 0x99, '2400 u'), + RgbInt8Color.rgbName(0x0, 0xb1, 0x94, '2400 xgc'), + RgbInt8Color.rgbName(0x0, 0xb3, 0x98, '3275 c'), + RgbInt8Color.rgbName(0x0, 0xb0, 0xa5, '2399 u'), + RgbInt8Color.rgbName(0x0, 0xad, 0x9f, '3534 c'), + RgbInt8Color.rgbName(0x0, 0xa8, 0xb0, '7467 u'), + RgbInt8Color.rgbName(0x0, 0xb2, 0xa9, '326 c'), + RgbInt8Color.rgbName(0x0, 0xb2, 0xa6, '326 xgc'), + RgbInt8Color.rgbName(0x0, 0xae, 0xb3, '7466 cp'), + RgbInt8Color.rgbName(0x0, 0xb3, 0xb8, '2397 u'), + RgbInt8Color.rgbName(0x0, 0xb0, 0xb9, '7466 c'), + RgbInt8Color.rgbName(0x0, 0xad, 0xb8, '7466 xgc'), + RgbInt8Color.rgbName(0x0, 0xaf, 0xba, '7710 cp'), + RgbInt8Color.rgbName(0x0, 0xad, 0xba, '7710 xgc'), + RgbInt8Color.rgbName(0x4, 0xa9, 0xc7, '2200 c'), + RgbInt8Color.rgbName(0x0, 0xae, 0xc7, '3125 c'), + RgbInt8Color.rgbName(0x0, 0xaa, 0xc3, '3125 cp'), + RgbInt8Color.rgbName(0x0, 0xab, 0xc2, '3125 u'), + RgbInt8Color.rgbName(0x0, 0xac, 0xc1, '3125 xgc'), + RgbInt8Color.rgbName(0x0, 0xb4, 0xbc, '7466 u'), + RgbInt8Color.rgbName(0x0, 0xaf, 0xd0, '312 u'), + RgbInt8Color.rgbName(0x0, 0xb7, 0xd2, '2199 xgc'), + RgbInt8Color.rgbName(0x0, 0xbb, 0xdc, '2199 c'), + RgbInt8Color.rgbName(0x0, 0xbb, 0xde, '2199 u'), + RgbInt8Color.rgbName(0x0, 0xb8, 0xde, '3545 c'), + RgbInt8Color.rgbName(0x0, 0xbc, 0xe3, '915 c'), + RgbInt8Color.rgbName(0x1, 0xbe, 0xdb, '311 u'), + RgbInt8Color.rgbName(0x31, 0x9b, 0x42, '7739 c'), + RgbInt8Color.rgbName(0x2f, 0x9d, 0x46, 'p 142-15 c'), + RgbInt8Color.rgbName(0x0, 0xc6, 0x5e, '2420 c'), + RgbInt8Color.rgbName(0x1b, 0x8f, 0x5f, 'p 137-7 c'), + RgbInt8Color.rgbName(0x0, 0xbc, 0x6d, '7480 xgc'), + RgbInt8Color.rgbName(0x0, 0xbf, 0x6f, '7480 c'), + RgbInt8Color.rgbName(0x0, 0xbc, 0x7b, '2414 xgc'), + RgbInt8Color.rgbName(0x0, 0xb2, 0x86, '339 xgc'), + RgbInt8Color.rgbName(0x0, 0xbb, 0x7e, '2414 c'), + RgbInt8Color.rgbName(0x0, 0xc2, 0x81, '7480 u'), + RgbInt8Color.rgbName(0x0, 0xb7, 0x96, '808 c'), + RgbInt8Color.rgbName(0x0, 0xb8, 0x92, 'xg green c'), + RgbInt8Color.rgbName(0x0, 0xc1, 0x9f, '2240 c'), + RgbInt8Color.rgbName(0x0, 0xbf, 0x9c, '2240 xgc'), + RgbInt8Color.rgbName(0x0, 0xc0, 0xa3, '922 c'), + RgbInt8Color.rgbName(0x0, 0xba, 0xb3, '2398 c'), + RgbInt8Color.rgbName(0x0, 0xba, 0xae, '3262 u'), + RgbInt8Color.rgbName(0x0, 0xb9, 0xab, '3262 xgc'), + RgbInt8Color.rgbName(0x0, 0xc0, 0xaa, '3265 u'), + RgbInt8Color.rgbName(0x0, 0xbf, 0xa6, '3265 xgc'), + RgbInt8Color.rgbName(0x0, 0xb7, 0xbd, '2397 c'), + RgbInt8Color.rgbName(0x0, 0xb8, 0xbd, '2397 xgc'), + RgbInt8Color.rgbName(0x0, 0xbe, 0xb5, '2398 xgc'), + RgbInt8Color.rgbName(0x0, 0xbf, 0xb3, '3262 c'), + RgbInt8Color.rgbName(0x0, 0xc1, 0xd5, '3115 c'), + RgbInt8Color.rgbName(0x0, 0xbf, 0xd3, '3115 u'), + RgbInt8Color.rgbName(0x5, 0xc3, 0xde, '311 c'), + RgbInt8Color.rgbName(0x43, 0xb0, 0x2a, '361 c'), + RgbInt8Color.rgbName(0x3a, 0x91, 0x3f, '7740 c'), + RgbInt8Color.rgbName(0x3b, 0xd2, 0x3d, '802 u'), + RgbInt8Color.rgbName(0x35, 0x8f, 0x46, 'p 143-6 c'), + RgbInt8Color.rgbName(0x3c, 0x8b, 0x44, 'p 149-7 c'), + RgbInt8Color.rgbName(0x26, 0x84, 0x3d, 'p 149-8 c'), + RgbInt8Color.rgbName(0x19, 0x9a, 0x73, '340 up'), + RgbInt8Color.rgbName(0x0, 0xc3, 0x89, '3395 c'), + RgbInt8Color.rgbName(0x0, 0xc1, 0x8a, '3395 xgc'), + RgbInt8Color.rgbName(0x0, 0xc7, 0x95, '3395 u'), + RgbInt8Color.rgbName(0x0, 0xc2, 0xa2, '2240 u'), + RgbInt8Color.rgbName(0x0, 0xc9, 0xad, '2239 xgc'), + RgbInt8Color.rgbName(0x0, 0xc7, 0xb1, '3265 c'), + RgbInt8Color.rgbName(0x0, 0xcf, 0xb4, '2239 c'), + RgbInt8Color.rgbName(0x0, 0xcd, 0xc2, '3252 u'), + RgbInt8Color.rgbName(0x0, 0xcf, 0xbb, '3255 u'), + RgbInt8Color.rgbName(0x19, 0xae, 0xca, '2200 xgc'), + RgbInt8Color.rgbName(0x1f, 0xb3, 0xe5, 'p 115-6 c'), + RgbInt8Color.rgbName(0x4b, 0xbf, 0x2f, '2421 xgc'), + RgbInt8Color.rgbName(0x25, 0x8c, 0x4b, '10303 c'), + RgbInt8Color.rgbName(0x2d, 0xc8, 0x4d, '2270 c'), + RgbInt8Color.rgbName(0x22, 0x88, 0x48, '7731 c'), + RgbInt8Color.rgbName(0x21, 0x91, 0x47, 'p 145-15 c'), + RgbInt8Color.rgbName(0x2d, 0xa1, 0x4e, 'p 145-7 c'), + RgbInt8Color.rgbName(0x25, 0xbd, 0x59, '2271 u'), + RgbInt8Color.rgbName(0x2e, 0xc1, 0x62, '2420 xgc'), + RgbInt8Color.rgbName(0x1d, 0xb1, 0x81, '2416 u'), + RgbInt8Color.rgbName(0x1d, 0xac, 0x8a, '339 cp'), + RgbInt8Color.rgbName(0x0, 0xd2, 0xb3, '333 u'), + RgbInt8Color.rgbName(0x19, 0xc2, 0xa9, '922 u'), + RgbInt8Color.rgbName(0x0, 0xd1, 0xb6, '2239 u'), + RgbInt8Color.rgbName(0x1d, 0xa5, 0xc6, 'p 118-14 c'), + RgbInt8Color.rgbName(0x29, 0xc0, 0xe7, '915 u'), + RgbInt8Color.rgbName(0x44, 0xd6, 0x2c, '802 c'), + RgbInt8Color.rgbName(0x39, 0x90, 0x4a, '7731 cp'), + RgbInt8Color.rgbName(0x36, 0xa8, 0x57, '2422 u'), + RgbInt8Color.rgbName(0x2b, 0x93, 0x59, 'p 139-8 u'), + RgbInt8Color.rgbName(0x34, 0xae, 0x53, 'p 142-7 c'), + RgbInt8Color.rgbName(0x31, 0x97, 0x56, 'p 142-8 u'), + RgbInt8Color.rgbName(0x3c, 0x98, 0x5a, 'p 148-7 u'), + RgbInt8Color.rgbName(0x21, 0x90, 0x59, 'p 148-8 u'), + RgbInt8Color.rgbName(0x2f, 0xc7, 0x74, '2420 u'), + RgbInt8Color.rgbName(0x1c, 0xaf, 0x94, '3268 cp'), + RgbInt8Color.rgbName(0x26, 0xd0, 0x7c, '7479 c'), + RgbInt8Color.rgbName(0x29, 0xcb, 0x7e, '7479 u'), + RgbInt8Color.rgbName(0x19, 0xaa, 0x94, 'p 130-6 c'), + RgbInt8Color.rgbName(0x25, 0xc9, 0xd0, '319 u'), + RgbInt8Color.rgbName(0x2d, 0xcc, 0xd3, '319 c'), + RgbInt8Color.rgbName(0x4d, 0xb9, 0x38, '2421 u'), + RgbInt8Color.rgbName(0x49, 0xa5, 0x2c, '2424 xgc'), + RgbInt8Color.rgbName(0x4c, 0xa4, 0x2b, '3501 cp'), + RgbInt8Color.rgbName(0x3d, 0x95, 0x25, '3539 c'), + RgbInt8Color.rgbName(0x47, 0xb3, 0x34, '361 xgc'), + RgbInt8Color.rgbName(0x30, 0x98, 0x5f, 'p 136-8 u'), + RgbInt8Color.rgbName(0x32, 0x99, 0x5f, 'p 139-7 u'), + RgbInt8Color.rgbName(0x37, 0x9c, 0x62, 'p 145-7 u'), + RgbInt8Color.rgbName(0x3a, 0x96, 0x5d, 'p 151-8 u'), + RgbInt8Color.rgbName(0x2b, 0xc9, 0xaf, '929 c'), + RgbInt8Color.rgbName(0x2a, 0xd2, 0xc9, '3252 c'), + RgbInt8Color.rgbName(0x2c, 0xd5, 0xc4, '3255 c'), + RgbInt8Color.rgbName(0x3c, 0xcb, 0xda, '2226 c'), + RgbInt8Color.rgbName(0x41, 0xa2, 0x48, '2272 u'), + RgbInt8Color.rgbName(0x4b, 0x9a, 0x2b, '2424 cp'), + RgbInt8Color.rgbName(0x4d, 0xa4, 0x3a, '2424 u'), + RgbInt8Color.rgbName(0x3d, 0xaa, 0x4b, '354 cp'), + RgbInt8Color.rgbName(0x50, 0x9e, 0x2f, '362 c'), + RgbInt8Color.rgbName(0x4e, 0xa9, 0x3f, '362 cp'), + RgbInt8Color.rgbName(0x48, 0xa2, 0x3f, '7738 c'), + RgbInt8Color.rgbName(0x3d, 0x9e, 0x3e, '7739 cp'), + RgbInt8Color.rgbName(0x46, 0x97, 0x3a, '7740 cp'), + RgbInt8Color.rgbName(0x48, 0xc3, 0x57, '2270 xgc'), + RgbInt8Color.rgbName(0x21, 0xa1, 0x6d, '2250 cp'), + RgbInt8Color.rgbName(0x37, 0xad, 0x68, '2257 u'), + RgbInt8Color.rgbName(0x33, 0xaa, 0x66, '7481 cp'), + RgbInt8Color.rgbName(0x39, 0xa5, 0x78, '2249 cp'), + RgbInt8Color.rgbName(0x27, 0xa7, 0x70, '7482 u'), + RgbInt8Color.rgbName(0x3c, 0xdb, 0xc0, '333 c'), + RgbInt8Color.rgbName(0x29, 0xbc, 0xcb, '3115 xgc'), + RgbInt8Color.rgbName(0x32, 0xb8, 0xdf, '638 u'), + RgbInt8Color.rgbName(0x4d, 0xaa, 0x50, '361 u'), + RgbInt8Color.rgbName(0x4e, 0xa6, 0x45, '7738 xgc'), + RgbInt8Color.rgbName(0x40, 0xa1, 0x4a, '7739 xgc'), + RgbInt8Color.rgbName(0x43, 0x97, 0x3d, 'p 148-15 c'), + RgbInt8Color.rgbName(0x4e, 0xa5, 0x45, 'p 148-7 c'), + RgbInt8Color.rgbName(0x4c, 0xa5, 0x48, 'p 151-8 c'), + RgbInt8Color.rgbName(0x29, 0xb1, 0x7b, '2250 u'), + RgbInt8Color.rgbName(0x2e, 0xb4, 0x80, '2414 u'), + RgbInt8Color.rgbName(0x3c, 0xab, 0x79, '2416 cp'), + RgbInt8Color.rgbName(0x21, 0xad, 0x7e, '3405 cp'), + RgbInt8Color.rgbName(0x30, 0xb8, 0x8b, '2413 xgc'), + RgbInt8Color.rgbName(0x22, 0xae, 0x8a, '339 u'), + RgbInt8Color.rgbName(0x2a, 0xae, 0x86, 'p 136-6 c'), + RgbInt8Color.rgbName(0x3a, 0xd4, 0xa7, '3385 u'), + RgbInt8Color.rgbName(0x29, 0xb5, 0xcf, '631 cp'), + RgbInt8Color.rgbName(0x28, 0xb1, 0xca, '2199 cp'), + RgbInt8Color.rgbName(0x30, 0xad, 0xcc, '306 up'), + RgbInt8Color.rgbName(0x38, 0xbd, 0xd1, '311 xgc'), + RgbInt8Color.rgbName(0x22, 0xaa, 0xc5, '312 up'), + RgbInt8Color.rgbName(0x30, 0xb3, 0xc8, '631 xgc'), + RgbInt8Color.rgbName(0x30, 0xab, 0xca, 'p 118-6 u'), + RgbInt8Color.rgbName(0x23, 0xb2, 0xbe, 'p 121-6 c'), + RgbInt8Color.rgbName(0x4c, 0xa6, 0x52, '3529 u'), + RgbInt8Color.rgbName(0x4d, 0xa3, 0x58, 'p 142-14 c'), + RgbInt8Color.rgbName(0x4e, 0xa0, 0x68, '2257 up'), + RgbInt8Color.rgbName(0x44, 0xca, 0x67, '2270 u'), + RgbInt8Color.rgbName(0x44, 0xa3, 0x6d, 'p 139-14 c'), + RgbInt8Color.rgbName(0x48, 0xa1, 0x6b, 'p 139-6 u'), + RgbInt8Color.rgbName(0x34, 0xb7, 0x8f, '2413 c'), + RgbInt8Color.rgbName(0x33, 0xbe, 0xb7, '2398 u'), + RgbInt8Color.rgbName(0x47, 0xc6, 0x78, '7479 xgc'), + RgbInt8Color.rgbName(0x46, 0xb1, 0x71, 'p 139-6 c'), + RgbInt8Color.rgbName(0x3f, 0xc9, 0xe6, '2198 u'), + RgbInt8Color.rgbName(0x42, 0xcd, 0xdd, '2226 u'), + RgbInt8Color.rgbName(0x4a, 0xc9, 0xe3, '2198 c'), + RgbInt8Color.rgbName(0x3f, 0x20, 0x21, '4975 c'), + RgbInt8Color.rgbName(0x3e, 0x1e, 0x20, '4975 xgc'), + RgbInt8Color.rgbName(0x25, 0x28, 0x49, '282 cp'), + RgbInt8Color.rgbName(0x25, 0x2b, 0x46, '533 xgc'), + RgbInt8Color.rgbName(0x2d, 0x21, 0x47, 'p 101-16 c'), + RgbInt8Color.rgbName(0x3c, 0x10, 0x53, '2627 c'), + RgbInt8Color.rgbName(0x3d, 0x8, 0x56, '2627 xgc'), + RgbInt8Color.rgbName(0x3e, 0x38, 0x7e, '2372 cp'), + RgbInt8Color.rgbName(0x42, 0x33, 0x7e, '2685 cp'), + RgbInt8Color.rgbName(0x59, 0x49, 0xa7, '2103 c'), + RgbInt8Color.rgbName(0x28, 0x26, 0x4b, '3524 cp'), + RgbInt8Color.rgbName(0x35, 0x1f, 0x65, '2112 c'), + RgbInt8Color.rgbName(0x44, 0x40, 0x89, '2104 cp'), + RgbInt8Color.rgbName(0x51, 0x52, 0x9c, '10242 c'), + RgbInt8Color.rgbName(0x52, 0x53, 0xb2, '2367 xgc'), + RgbInt8Color.rgbName(0x28, 0x2e, 0x36, '433 cp'), + RgbInt8Color.rgbName(0x26, 0x2c, 0x4a, '2767 cp'), + RgbInt8Color.rgbName(0x21, 0x30, 0x4e, '289 cp'), + RgbInt8Color.rgbName(0x26, 0x31, 0x47, '533 cp'), + RgbInt8Color.rgbName(0x28, 0x2a, 0x55, '2766 cp'), + RgbInt8Color.rgbName(0x28, 0x32, 0x66, '3581 c'), + RgbInt8Color.rgbName(0x54, 0x61, 0xc8, '2125 c'), + RgbInt8Color.rgbName(0x57, 0x5b, 0xb8, '2125 xgc'), + RgbInt8Color.rgbName(0x5a, 0x5b, 0xb1, '2126 u'), + RgbInt8Color.rgbName(0x58, 0x63, 0xb8, '2726 xgc'), + RgbInt8Color.rgbName(0x20, 0x34, 0x4b, '2965 cp'), + RgbInt8Color.rgbName(0x1f, 0x3a, 0x60, '295 cp'), + RgbInt8Color.rgbName(0x56, 0x6e, 0xac, '2116 cp'), + RgbInt8Color.rgbName(0x53, 0x6d, 0xc4, '2132 u'), + RgbInt8Color.rgbName(0x51, 0x66, 0xab, '2726 cp'), + RgbInt8Color.rgbName(0x52, 0x68, 0xc2, '2728 u'), + RgbInt8Color.rgbName(0x22, 0x36, 0x46, '7546 xgc'), + RgbInt8Color.rgbName(0x25, 0x35, 0x5a, '655 cp'), + RgbInt8Color.rgbName(0x22, 0x3d, 0x72, '288 cp'), + RgbInt8Color.rgbName(0x20, 0x42, 0x6c, '654 cp'), + RgbInt8Color.rgbName(0x28, 0x33, 0x4a, '2380 c'), + RgbInt8Color.rgbName(0x25, 0x37, 0x46, '7546 c'), + RgbInt8Color.rgbName(0x3d, 0x44, 0x1e, '5747 c'), + RgbInt8Color.rgbName(0x38, 0x36, 0x24, 'black 2 cp'), + RgbInt8Color.rgbName(0x1f, 0x58, 0x8e, 'p 107-7 c'), + RgbInt8Color.rgbName(0x41, 0x48, 0x23, '5747 cp'), + RgbInt8Color.rgbName(0x42, 0x4b, 0x1a, '5747 xgc'), + RgbInt8Color.rgbName(0x21, 0x4c, 0x3d, '567 cp'), + RgbInt8Color.rgbName(0x25, 0x4a, 0x5d, '2168 c'), + RgbInt8Color.rgbName(0x24, 0x4c, 0x5a, '7477 c'), + RgbInt8Color.rgbName(0x22, 0x4f, 0x5c, '7477 xgc'), + RgbInt8Color.rgbName(0x21, 0x4e, 0x5f, '7477 cp'), + RgbInt8Color.rgbName(0x17, 0x59, 0x7e, '2161 cp'), + RgbInt8Color.rgbName(0x23, 0x5e, 0x96, '653 cp'), + RgbInt8Color.rgbName(0x42, 0x82, 0xd0, '2173 u'), + RgbInt8Color.rgbName(0x43, 0x7c, 0xb4, '2173 up'), + RgbInt8Color.rgbName(0x3d, 0x7a, 0xca, '2174 u'), + RgbInt8Color.rgbName(0x40, 0x7e, 0xc9, '660 c'), + RgbInt8Color.rgbName(0x24, 0x54, 0x3d, '3435 cp'), + RgbInt8Color.rgbName(0x20, 0x5c, 0x40, '554 c'), + RgbInt8Color.rgbName(0x1f, 0x58, 0x4b, '3302 cp'), + RgbInt8Color.rgbName(0x1c, 0x56, 0x68, '2181 cp'), + RgbInt8Color.rgbName(0x10, 0x60, 0x69, '5473 xgc'), + RgbInt8Color.rgbName(0x16, 0x5c, 0x7d, '7700 c'), + RgbInt8Color.rgbName(0x1e, 0x53, 0x7d, '8484 c'), + RgbInt8Color.rgbName(0x25, 0x6b, 0xa2, '2151 c'), + RgbInt8Color.rgbName(0x3e, 0x87, 0xcb, '2143 c'), + RgbInt8Color.rgbName(0x43, 0x84, 0xbf, '2143 cp'), + RgbInt8Color.rgbName(0x40, 0x88, 0xc0, '2184 up'), + RgbInt8Color.rgbName(0x43, 0x83, 0xd2, '2382 u'), + RgbInt8Color.rgbName(0x28, 0x5e, 0x48, '343 cp'), + RgbInt8Color.rgbName(0x26, 0x5c, 0x50, '330 cp'), + RgbInt8Color.rgbName(0x23, 0x61, 0x51, '561 cp'), + RgbInt8Color.rgbName(0x21, 0x5a, 0x67, '2215 cp'), + RgbInt8Color.rgbName(0x16, 0x66, 0x6f, '5473 cp'), + RgbInt8Color.rgbName(0x20, 0x5c, 0x7c, '7700 xgc'), + RgbInt8Color.rgbName(0x16, 0x68, 0x86, '2392 c'), + RgbInt8Color.rgbName(0x1a, 0x60, 0x80, '7700 cp'), + RgbInt8Color.rgbName(0x1a, 0x65, 0x8f, '2152 c'), + RgbInt8Color.rgbName(0x28, 0x61, 0x40, '7734 c'), + RgbInt8Color.rgbName(0x1b, 0x6d, 0x4a, '555 xgc'), + RgbInt8Color.rgbName(0x16, 0x75, 0x65, '562 cp'), + RgbInt8Color.rgbName(0x18, 0x6e, 0x64, '8265 c'), + RgbInt8Color.rgbName(0x1b, 0x68, 0x75, '3155 u'), + RgbInt8Color.rgbName(0x20, 0x67, 0x79, '315 u'), + RgbInt8Color.rgbName(0x16, 0x73, 0x78, '322 u'), + RgbInt8Color.rgbName(0x1c, 0x67, 0x87, '8765 c'), + RgbInt8Color.rgbName(0x13, 0x76, 0x82, 'p 123-14 c'), + RgbInt8Color.rgbName(0x20, 0x68, 0x90, '2152 xgc'), + RgbInt8Color.rgbName(0x1e, 0x6c, 0x89, '2392 xgc'), + RgbInt8Color.rgbName(0x21, 0x6a, 0x95, '3015 u'), + RgbInt8Color.rgbName(0x23, 0x61, 0x92, '647 c'), + RgbInt8Color.rgbName(0x22, 0x67, 0x97, '647 xgc'), + RgbInt8Color.rgbName(0x14, 0x75, 0x99, 'p 116-16 u'), + RgbInt8Color.rgbName(0x13, 0x7c, 0xa1, '2454 cp'), + RgbInt8Color.rgbName(0xf, 0x7f, 0xb0, 'p 112-16 u'), + RgbInt8Color.rgbName(0x46, 0x71, 0x2b, '7743 cp'), + RgbInt8Color.rgbName(0x42, 0x6b, 0x30, 'p 156-16 c'), + RgbInt8Color.rgbName(0x26, 0x72, 0x3e, 'p 147-7 c'), + RgbInt8Color.rgbName(0x1c, 0x70, 0x4d, '3425 cp'), + RgbInt8Color.rgbName(0x1a, 0x74, 0x64, 'p 131-8 u'), + RgbInt8Color.rgbName(0x17, 0x71, 0x72, '3557 up'), + RgbInt8Color.rgbName(0x13, 0x7d, 0x79, '328 u'), + RgbInt8Color.rgbName(0x1b, 0x76, 0x79, '3557 u'), + RgbInt8Color.rgbName(0x13, 0x7e, 0x8d, '3145 up'), + RgbInt8Color.rgbName(0x22, 0x6e, 0x8a, '634 u'), + RgbInt8Color.rgbName(0x19, 0x78, 0x90, 'p 120-14 c'), + RgbInt8Color.rgbName(0x23, 0x6f, 0x91, 'p 114-14 c'), + RgbInt8Color.rgbName(0x15, 0x7f, 0xad, '2390 xgc'), + RgbInt8Color.rgbName(0x11, 0x84, 0xa7, '641 up'), + RgbInt8Color.rgbName(0x40, 0x79, 0x33, 'p 150-7 c'), + RgbInt8Color.rgbName(0x28, 0x76, 0x51, '3500 up'), + RgbInt8Color.rgbName(0x20, 0x80, 0x5c, '8723 c'), + RgbInt8Color.rgbName(0x1a, 0x7c, 0x67, 'p 134-15 c'), + RgbInt8Color.rgbName(0x1b, 0x80, 0x6d, '2244 c'), + RgbInt8Color.rgbName(0x16, 0x82, 0x70, '2244 xgc'), + RgbInt8Color.rgbName(0x16, 0x7d, 0x7e, 'p 122-8 u'), + RgbInt8Color.rgbName(0x17, 0x82, 0x90, '2222 cp'), + RgbInt8Color.rgbName(0xf, 0x89, 0x90, '2237 xgc'), + RgbInt8Color.rgbName(0x1d, 0x82, 0x96, '2222 c'), + RgbInt8Color.rgbName(0x15, 0x82, 0x9d, 'p 120-6 c'), + RgbInt8Color.rgbName(0x11, 0x83, 0xa3, '2391 cp'), + RgbInt8Color.rgbName(0x1e, 0x79, 0xa0, 'p 114-6 c'), + RgbInt8Color.rgbName(0x1f, 0x7b, 0x9c, 'p 117-14 c'), + RgbInt8Color.rgbName(0x1a, 0x7f, 0xab, '2390 cp'), + RgbInt8Color.rgbName(0x14, 0x84, 0xa9, 'p 117-6 c'), + RgbInt8Color.rgbName(0x1f, 0x95, 0xcd, '2394 up'), + RgbInt8Color.rgbName(0x28, 0x8d, 0xc8, 'p 109-6 c'), + RgbInt8Color.rgbName(0x22, 0x7e, 0x65, '2244 cp'), + RgbInt8Color.rgbName(0x22, 0x7e, 0x78, '328 up'), + RgbInt8Color.rgbName(0x20, 0x7f, 0x76, 'p 125-8 u'), + RgbInt8Color.rgbName(0x1b, 0x81, 0x8f, '10284 c'), + RgbInt8Color.rgbName(0x1b, 0x86, 0x92, '2231 up'), + RgbInt8Color.rgbName(0x1a, 0x85, 0x8f, '7713 up'), + RgbInt8Color.rgbName(0x15, 0x8f, 0x90, 'p 121-15 u'), + RgbInt8Color.rgbName(0x18, 0x8a, 0x9a, '2221 xgc'), + RgbInt8Color.rgbName(0x1f, 0x82, 0x99, '633 up'), + RgbInt8Color.rgbName(0x23, 0x82, 0xa1, '8223 c'), + RgbInt8Color.rgbName(0x43, 0x8a, 0x34, '7741 cp'), + RgbInt8Color.rgbName(0x28, 0x89, 0x4b, '7731 xgc'), + RgbInt8Color.rgbName(0x1a, 0x90, 0x73, '2245 up'), + RgbInt8Color.rgbName(0x1a, 0x8d, 0x7c, 'p 127-15 u'), + RgbInt8Color.rgbName(0x1b, 0x8b, 0x80, 'p 128-14 c'), + RgbInt8Color.rgbName(0x1e, 0x89, 0x89, 'p 125-14 c'), + RgbInt8Color.rgbName(0x16, 0x94, 0x92, 'p 125-6 c'), + RgbInt8Color.rgbName(0x19, 0x92, 0xa4, '2230 u'), + RgbInt8Color.rgbName(0x22, 0x8b, 0x9d, '7712 u'), + RgbInt8Color.rgbName(0x1f, 0x87, 0x9e, 'p 119-7 u'), + RgbInt8Color.rgbName(0x41, 0x80, 0x3c, '8703 c'), + RgbInt8Color.rgbName(0x1f, 0x9e, 0x69, '2417 xgc'), + RgbInt8Color.rgbName(0x1a, 0x95, 0x86, 'p 128-6 c'), + RgbInt8Color.rgbName(0x16, 0xa0, 0x93, 'p 127-14 c'), + RgbInt8Color.rgbName(0x17, 0x9d, 0xab, '7711 u'), + RgbInt8Color.rgbName(0x1a, 0xa1, 0xbd, '7703 cp'), + RgbInt8Color.rgbName(0x44, 0x76, 0x3c, '2265 cp'), + RgbInt8Color.rgbName(0x46, 0x75, 0x33, 'p 156-8 c'), + RgbInt8Color.rgbName(0x24, 0x9e, 0x6b, '2417 c'), + RgbInt8Color.rgbName(0x23, 0x9a, 0x8b, '2402 up'), + RgbInt8Color.rgbName(0x20, 0xa0, 0xbf, '2200 up'), + RgbInt8Color.rgbName(0x1f, 0xac, 0x9e, 'p 127-6 c'), + RgbInt8Color.rgbName(0x22, 0xac, 0xa6, '2398 cp'), + RgbInt8Color.rgbName(0x28, 0xb2, 0x9a, '3268 u'), + RgbInt8Color.rgbName(0x41, 0xb6, 0xe6, '298 c'), + RgbInt8Color.rgbName(0x3e, 0xb4, 0xe2, '298 xgc'), + RgbInt8Color.rgbName(0x42, 0xb4, 0xe5, 'p 115-6 u'), + RgbInt8Color.rgbName(0x41, 0x90, 0x3f, '10309 c'), + RgbInt8Color.rgbName(0x43, 0x95, 0x46, '7740 xgc'), + RgbInt8Color.rgbName(0x44, 0x88, 0x3e, '7741 c'), + RgbInt8Color.rgbName(0x3e, 0x82, 0x42, 'p 149-15 c'), + RgbInt8Color.rgbName(0x42, 0x93, 0x43, 'p 151-16 c'), + RgbInt8Color.rgbName(0x43, 0x8c, 0x4c, 'p 143-14 c'), + RgbInt8Color.rgbName(0x3e, 0x8f, 0x49, 'p 146-6 c'), + RgbInt8Color.rgbName(0x55, 0x95, 0x1b, '2277 c'), + RgbInt8Color.rgbName(0x51, 0x9f, 0x2c, '362 xgc'), + RgbInt8Color.rgbName(0x41, 0xcc, 0xb8, '3255 xgc'), + RgbInt8Color.rgbName(0x46, 0xd1, 0xb8, '3533 u'), + RgbInt8Color.rgbName(0x55, 0xa9, 0x4c, '2271 cp'), + RgbInt8Color.rgbName(0x5a, 0xa7, 0x49, '3501 u'), + RgbInt8Color.rgbName(0x56, 0xaf, 0x40, '361 cp'), + RgbInt8Color.rgbName(0x53, 0xa6, 0x3a, '7738 cp'), + RgbInt8Color.rgbName(0x57, 0x9a, 0x4c, 'p 151-15 c'), + RgbInt8Color.rgbName(0x2f, 0xb2, 0xab, '326 cp'), + RgbInt8Color.rgbName(0x44, 0xc8, 0xbd, '3252 xgc'), + RgbInt8Color.rgbName(0x3f, 0xb1, 0xe2, '2190 cp'), + RgbInt8Color.rgbName(0x45, 0xc3, 0xc7, '319 xgc'), + RgbInt8Color.rgbName(0x55, 0xa1, 0x5f, '2272 up'), + RgbInt8Color.rgbName(0x56, 0xab, 0x61, 'p 145-6 c'), + RgbInt8Color.rgbName(0x55, 0xa1, 0x61, 'p 148-6 u'), + RgbInt8Color.rgbName(0x55, 0xc2, 0x6c, '2256 xgc'), + RgbInt8Color.rgbName(0x44, 0xb4, 0x98, '2459 cp'), + RgbInt8Color.rgbName(0x43, 0xc4, 0xae, '3258 xgc'), + RgbInt8Color.rgbName(0x40, 0xc1, 0xac, '7465 c'), + RgbInt8Color.rgbName(0x40, 0xc1, 0xbb, '325 u'), + RgbInt8Color.rgbName(0x5a, 0xb5, 0x67, 'p 142-6 c'), + RgbInt8Color.rgbName(0x56, 0xc2, 0x71, '2256 c'), + RgbInt8Color.rgbName(0x51, 0xb1, 0x7c, '7480 cp'), + RgbInt8Color.rgbName(0x4c, 0xce, 0xde, '3105 u'), + RgbInt8Color.rgbName(0x59, 0xcb, 0xe8, '305 c'), + RgbInt8Color.rgbName(0x53, 0xca, 0xec, '305 u'), + RgbInt8Color.rgbName(0x32, 0x1e, 0x4c, '2695 xgc'), + RgbInt8Color.rgbName(0x29, 0x2a, 0x4a, '2768 cp'), + RgbInt8Color.rgbName(0x31, 0x28, 0x52, '2695 cp'), + RgbInt8Color.rgbName(0x2c, 0x28, 0x55, '275 cp'), + RgbInt8Color.rgbName(0x2a, 0x28, 0x53, '2765 cp'), + RgbInt8Color.rgbName(0x30, 0x23, 0x50, 'p 101-8 c'), + RgbInt8Color.rgbName(0x2a, 0x30, 0x65, '2112 cp'), + RgbInt8Color.rgbName(0x2c, 0x2d, 0x65, '2119 c'), + RgbInt8Color.rgbName(0x47, 0xa, 0x68, '2617 c'), + RgbInt8Color.rgbName(0x47, 0x5, 0x6b, '2617 xgc'), + RgbInt8Color.rgbName(0x50, 0x7, 0x78, '2607 c'), + RgbInt8Color.rgbName(0x47, 0x1d, 0x7c, '3583 c'), + RgbInt8Color.rgbName(0x4d, 0x3c, 0x8b, '2371 cp'), + RgbInt8Color.rgbName(0x48, 0x2b, 0x79, '3535 cp'), + RgbInt8Color.rgbName(0x4e, 0x2b, 0x78, '3555 cp'), + RgbInt8Color.rgbName(0x4f, 0x2d, 0x7c, '3583 cp'), + RgbInt8Color.rgbName(0x4f, 0x2f, 0x7c, 'p 96-8 c'), + RgbInt8Color.rgbName(0x4a, 0x36, 0x87, 'violet cp'), + RgbInt8Color.rgbName(0x5e, 0x0, 0x9c, 'xg violet c'), + RgbInt8Color.rgbName(0x5c, 0x6, 0x8c, '2597 c'), + RgbInt8Color.rgbName(0x60, 0xb, 0x92, '2597 xgc'), + RgbInt8Color.rgbName(0x62, 0x44, 0xbb, '2097 c'), + RgbInt8Color.rgbName(0x5f, 0x25, 0x9f, '267 c'), + RgbInt8Color.rgbName(0x63, 0x2a, 0xa7, '267 xgc'), + RgbInt8Color.rgbName(0x63, 0x38, 0xa9, '2090 xgc'), + RgbInt8Color.rgbName(0x48, 0x3e, 0x87, '2098 cp'), + RgbInt8Color.rgbName(0x4c, 0x41, 0x84, '7672 c'), + RgbInt8Color.rgbName(0x4d, 0x46, 0x8c, '7672 cp'), + RgbInt8Color.rgbName(0x4b, 0x42, 0x83, 'p 99-15 c'), + RgbInt8Color.rgbName(0x5d, 0x55, 0xac, '2103 xgc'), + RgbInt8Color.rgbName(0x2f, 0x2b, 0x4e, '3524 c'), + RgbInt8Color.rgbName(0x2e, 0x2b, 0x57, 'p 103-16 c'), + RgbInt8Color.rgbName(0x32, 0x2a, 0x5f, 'p 100-16 c'), + RgbInt8Color.rgbName(0x2f, 0x2f, 0x63, '2119 xgc'), + RgbInt8Color.rgbName(0x30, 0x2d, 0x63, '274 cp'), + RgbInt8Color.rgbName(0x32, 0x2b, 0x6a, '2755 cp'), + RgbInt8Color.rgbName(0x2e, 0x30, 0x66, '2758 cp'), + RgbInt8Color.rgbName(0x32, 0x2c, 0x69, 'p 100-8 c'), + RgbInt8Color.rgbName(0x5e, 0x5c, 0xb0, '2369 u'), + RgbInt8Color.rgbName(0x5e, 0x60, 0xba, '2736 u'), + RgbInt8Color.rgbName(0x32, 0x37, 0x31, '447 xgc'), + RgbInt8Color.rgbName(0x2f, 0x36, 0x6a, '2119 cp'), + RgbInt8Color.rgbName(0x29, 0x36, 0x6c, '2757 cp'), + RgbInt8Color.rgbName(0x2a, 0x38, 0x67, 'p 105-16 c'), + RgbInt8Color.rgbName(0x60, 0x68, 0xb2, '2116 c'), + RgbInt8Color.rgbName(0x5e, 0x6b, 0xb2, '2116 xgc'), + RgbInt8Color.rgbName(0x5c, 0x6c, 0xba, '2131 u'), + RgbInt8Color.rgbName(0x29, 0x3f, 0x76, 'p 105-8 c'), + RgbInt8Color.rgbName(0x38, 0x31, 0x27, 'black 4 cp'), + RgbInt8Color.rgbName(0x2f, 0x30, 0x3a, '8603 c'), + RgbInt8Color.rgbName(0x31, 0x35, 0x46, '2380 cp'), + RgbInt8Color.rgbName(0x2f, 0x3a, 0x4f, '2380 xgc'), + RgbInt8Color.rgbName(0x30, 0x4c, 0x86, '8785 c'), + RgbInt8Color.rgbName(0x2e, 0x3c, 0x35, '8523 c'), + RgbInt8Color.rgbName(0x2b, 0x3d, 0x43, '8503 c'), + RgbInt8Color.rgbName(0x2c, 0x3c, 0x4c, '7546 cp'), + RgbInt8Color.rgbName(0x2c, 0x40, 0x68, '534 cp'), + RgbInt8Color.rgbName(0x29, 0x57, 0x92, '8184 c'), + RgbInt8Color.rgbName(0x29, 0x58, 0x8c, '2945 u'), + RgbInt8Color.rgbName(0x3e, 0x48, 0x27, '5743 c'), + RgbInt8Color.rgbName(0x29, 0x50, 0x4d, '2466 c'), + RgbInt8Color.rgbName(0x29, 0x4c, 0x5d, '2168 xgc'), + RgbInt8Color.rgbName(0x2e, 0x4d, 0x58, '2216 c'), + RgbInt8Color.rgbName(0x29, 0x4f, 0x5a, '2216 cp'), + RgbInt8Color.rgbName(0x27, 0x4c, 0x71, 'p 108-15 c'), + RgbInt8Color.rgbName(0x30, 0x61, 0x9e, '7685 xgc'), + RgbInt8Color.rgbName(0x49, 0x82, 0xcf, '285 u'), + RgbInt8Color.rgbName(0x49, 0x81, 0xc8, '660 xgc'), + RgbInt8Color.rgbName(0x42, 0x4d, 0x28, '5743 xgc'), + RgbInt8Color.rgbName(0x32, 0x55, 0x3b, '350 cp'), + RgbInt8Color.rgbName(0x32, 0x50, 0x40, '553 cp'), + RgbInt8Color.rgbName(0x28, 0x5c, 0x4d, '626 c'), + RgbInt8Color.rgbName(0x2e, 0x50, 0x5b, '2216 xgc'), + RgbInt8Color.rgbName(0x2e, 0x4e, 0x5d, '8504 c'), + RgbInt8Color.rgbName(0x24, 0x59, 0x69, '2181 xgc'), + RgbInt8Color.rgbName(0x2e, 0x56, 0x65, '2215 c'), + RgbInt8Color.rgbName(0x2d, 0x57, 0x65, '2215 xgc'), + RgbInt8Color.rgbName(0x23, 0x62, 0x61, '8760 c'), + RgbInt8Color.rgbName(0x29, 0x5b, 0x65, '8762 c'), + RgbInt8Color.rgbName(0x2f, 0x4e, 0x74, '2140 cp'), + RgbInt8Color.rgbName(0x2a, 0x5b, 0x6c, '2181 c'), + RgbInt8Color.rgbName(0x31, 0x54, 0x70, '2377 c'), + RgbInt8Color.rgbName(0x30, 0x55, 0x6f, '8482 c'), + RgbInt8Color.rgbName(0x28, 0x57, 0x80, '2161 c'), + RgbInt8Color.rgbName(0x2a, 0x59, 0x80, '2161 xgc'), + RgbInt8Color.rgbName(0x2c, 0x55, 0x7e, 'p 108-7 c'), + RgbInt8Color.rgbName(0x25, 0x60, 0x8d, '2186 u'), + RgbInt8Color.rgbName(0x29, 0x5d, 0x8a, '8485 c'), + RgbInt8Color.rgbName(0x29, 0x5f, 0x42, '7483 cp'), + RgbInt8Color.rgbName(0x2a, 0x60, 0x50, '626 xgc'), + RgbInt8Color.rgbName(0x2f, 0x5c, 0x66, '3165 u'), + RgbInt8Color.rgbName(0x26, 0x67, 0x82, '308 u'), + RgbInt8Color.rgbName(0x28, 0x62, 0x8e, '301 u'), + RgbInt8Color.rgbName(0x30, 0x5c, 0x8c, 'p 107-14 c'), + RgbInt8Color.rgbName(0x2e, 0x60, 0x95, 'p 107-6 c'), + RgbInt8Color.rgbName(0x4a, 0x6a, 0x1d, '2280 c'), + RgbInt8Color.rgbName(0x48, 0x6a, 0x24, '2280 cp'), + RgbInt8Color.rgbName(0x48, 0x6a, 0x1c, '2280 xgc'), + RgbInt8Color.rgbName(0x4d, 0x63, 0x24, 'p 159-16 c'), + RgbInt8Color.rgbName(0x28, 0x72, 0x4f, '555 c'), + RgbInt8Color.rgbName(0x2c, 0x68, 0x54, '8741 c'), + RgbInt8Color.rgbName(0x2e, 0x64, 0x60, 'p 126-8 u'), + RgbInt8Color.rgbName(0x2a, 0x6a, 0x5d, 'p 131-16 u'), + RgbInt8Color.rgbName(0x2f, 0x61, 0x65, '323 u'), + RgbInt8Color.rgbName(0x2e, 0x69, 0x6d, 'p 123-8 u'), + RgbInt8Color.rgbName(0x2f, 0x69, 0x79, '2180 cp'), + RgbInt8Color.rgbName(0x29, 0x6b, 0x75, '2214 xgc'), + RgbInt8Color.rgbName(0x29, 0x68, 0x80, '2392 cp'), + RgbInt8Color.rgbName(0x2b, 0x69, 0x84, 'p 117-8 u'), + RgbInt8Color.rgbName(0x20, 0x74, 0x87, 'p 119-16 u'), + RgbInt8Color.rgbName(0x32, 0x62, 0x95, '653 c'), + RgbInt8Color.rgbName(0x25, 0x76, 0x9f, '2185 up'), + RgbInt8Color.rgbName(0x48, 0x76, 0x28, '364 xgc'), + RgbInt8Color.rgbName(0x31, 0x74, 0x46, 'p 141-6 c'), + RgbInt8Color.rgbName(0x28, 0x75, 0x57, '3500 u'), + RgbInt8Color.rgbName(0x2d, 0x6e, 0x5d, 'p 135-14 c'), + RgbInt8Color.rgbName(0x2c, 0x6a, 0x5e, '8742 c'), + RgbInt8Color.rgbName(0x28, 0x71, 0x64, 'p 128-16 u'), + RgbInt8Color.rgbName(0x27, 0x73, 0x65, 'p 132-14 c'), + RgbInt8Color.rgbName(0x32, 0x70, 0x59, 'p 138-14 c'), + RgbInt8Color.rgbName(0x22, 0x7b, 0x6b, 'p 128-8 u'), + RgbInt8Color.rgbName(0x2e, 0x70, 0x63, 'p 131-15 u'), + RgbInt8Color.rgbName(0x29, 0x6e, 0x75, '2213 xgc'), + RgbInt8Color.rgbName(0x24, 0x7e, 0x6f, '335 u'), + RgbInt8Color.rgbName(0x25, 0x73, 0x73, 'p 122-16 u'), + RgbInt8Color.rgbName(0x2c, 0x74, 0x6d, 'p 125-16 u'), + RgbInt8Color.rgbName(0x2f, 0x6f, 0x7a, '2214 c'), + RgbInt8Color.rgbName(0x32, 0x71, 0x79, '2214 cp'), + RgbInt8Color.rgbName(0x29, 0x72, 0x7c, '3155 up'), + RgbInt8Color.rgbName(0x30, 0x6b, 0x79, 'p 120-8 u'), + RgbInt8Color.rgbName(0x2b, 0x77, 0x77, 'p 126-14 c'), + RgbInt8Color.rgbName(0x32, 0x6f, 0x85, '308 up'), + RgbInt8Color.rgbName(0x2a, 0x75, 0x83, '315 up'), + RgbInt8Color.rgbName(0x32, 0x6c, 0x8e, 'p 113-16 u'), + RgbInt8Color.rgbName(0x2c, 0x72, 0xa5, '2151 xgc'), + RgbInt8Color.rgbName(0x27, 0x7d, 0xa1, '2454 c'), + RgbInt8Color.rgbName(0x2b, 0x75, 0x9d, 'p 113-8 u'), + RgbInt8Color.rgbName(0x29, 0x7a, 0xb1, '2383 xgc'), + RgbInt8Color.rgbName(0x4e, 0x80, 0x1f, '2278 c'), + RgbInt8Color.rgbName(0x4a, 0x77, 0x29, '364 c'), + RgbInt8Color.rgbName(0x4c, 0x78, 0x2d, '364 cp'), + RgbInt8Color.rgbName(0x48, 0x78, 0x2d, '7742 cp'), + RgbInt8Color.rgbName(0x2f, 0x7b, 0x65, '341 up'), + RgbInt8Color.rgbName(0x2a, 0x7c, 0x6c, 'p 131-7 u'), + RgbInt8Color.rgbName(0x2c, 0x7b, 0x67, 'p 135-6 c'), + RgbInt8Color.rgbName(0x30, 0x7b, 0x63, 'p 138-6 c'), + RgbInt8Color.rgbName(0x20, 0x87, 0x76, '3288 u'), + RgbInt8Color.rgbName(0x2e, 0x75, 0x72, '329 u'), + RgbInt8Color.rgbName(0x30, 0x74, 0x6f, '329 up'), + RgbInt8Color.rgbName(0x32, 0x76, 0x70, '3292 up'), + RgbInt8Color.rgbName(0x23, 0x7e, 0x74, '3295 u'), + RgbInt8Color.rgbName(0x29, 0x79, 0x74, '8264 c'), + RgbInt8Color.rgbName(0x31, 0x78, 0x7b, '322 up'), + RgbInt8Color.rgbName(0x23, 0x81, 0x89, '7714 up'), + RgbInt8Color.rgbName(0x29, 0x7f, 0x81, 'p 126-5 c'), + RgbInt8Color.rgbName(0x28, 0x7b, 0x8f, 'p 119-15 u'), + RgbInt8Color.rgbName(0x2d, 0x76, 0x9c, '3015 up'), + RgbInt8Color.rgbName(0x2a, 0x7c, 0x98, '7705 up'), + RgbInt8Color.rgbName(0x2b, 0x7c, 0x97, '7706 up'), + RgbInt8Color.rgbName(0x27, 0x82, 0x9e, '633 u'), + RgbInt8Color.rgbName(0x2c, 0x7a, 0xa1, '8203 c'), + RgbInt8Color.rgbName(0x28, 0x7f, 0xa3, 'p 116-15 u'), + RgbInt8Color.rgbName(0x25, 0x86, 0xb6, 'p 112-15 u'), + RgbInt8Color.rgbName(0x2f, 0x83, 0x55, 'p 148-16 u'), + RgbInt8Color.rgbName(0x30, 0x86, 0x5a, 'p 140-14 c'), + RgbInt8Color.rgbName(0x2d, 0x89, 0x5b, 'p 145-16 u'), + RgbInt8Color.rgbName(0x30, 0x81, 0x67, '3415 u'), + RgbInt8Color.rgbName(0x2a, 0x82, 0x73, 'p 128-7 u'), + RgbInt8Color.rgbName(0x25, 0x88, 0x76, '3295 up'), + RgbInt8Color.rgbName(0x2c, 0x84, 0x70, '335 up'), + RgbInt8Color.rgbName(0x2f, 0x86, 0x6d, '7726 up'), + RgbInt8Color.rgbName(0x2b, 0x88, 0x6d, '8724 c'), + RgbInt8Color.rgbName(0x25, 0x8f, 0x76, '3288 up'), + RgbInt8Color.rgbName(0x2a, 0x8c, 0x79, 'p 130-14 u'), + RgbInt8Color.rgbName(0x2f, 0x83, 0x7f, '2461 up'), + RgbInt8Color.rgbName(0x28, 0x87, 0x89, 'p 122-7 u'), + RgbInt8Color.rgbName(0x2e, 0x87, 0x80, 'p 125-7 u'), + RgbInt8Color.rgbName(0x28, 0x86, 0x92, 'p 123-6 c'), + RgbInt8Color.rgbName(0x24, 0x8e, 0x91, '2235 cp'), + RgbInt8Color.rgbName(0x2d, 0x86, 0x92, '7713 u'), + RgbInt8Color.rgbName(0x2b, 0x87, 0x99, '8243 c'), + RgbInt8Color.rgbName(0x32, 0x7f, 0xaa, '10271 c'), + RgbInt8Color.rgbName(0x21, 0x8e, 0xae, '10277 c'), + RgbInt8Color.rgbName(0x25, 0x8d, 0xad, '2203 u'), + RgbInt8Color.rgbName(0x29, 0x8f, 0xc2, '7689 c'), + RgbInt8Color.rgbName(0x4c, 0x8c, 0x2b, '363 c'), + RgbInt8Color.rgbName(0x4f, 0x8e, 0x29, '363 xgc'), + RgbInt8Color.rgbName(0x27, 0x9b, 0x6f, '7724 cp'), + RgbInt8Color.rgbName(0x31, 0x8c, 0x76, '8725 c'), + RgbInt8Color.rgbName(0x24, 0x92, 0x85, 'p 124-15 u'), + RgbInt8Color.rgbName(0x2c, 0x8f, 0x82, '569 u'), + RgbInt8Color.rgbName(0x31, 0x8d, 0x90, '2236 cp'), + RgbInt8Color.rgbName(0x25, 0x94, 0x90, '2461 c'), + RgbInt8Color.rgbName(0x2d, 0x8c, 0x9e, '2221 c'), + RgbInt8Color.rgbName(0x2c, 0x91, 0x99, '2236 c'), + RgbInt8Color.rgbName(0x28, 0x93, 0x9d, '2235 c'), + RgbInt8Color.rgbName(0x28, 0x95, 0x9d, '2235 xgc'), + RgbInt8Color.rgbName(0x2b, 0x8e, 0xab, '7704 up'), + RgbInt8Color.rgbName(0x2a, 0x90, 0xab, 'p 119-13 c'), + RgbInt8Color.rgbName(0x30, 0x90, 0xbd, 'p 113-5 c'), + RgbInt8Color.rgbName(0x2e, 0xa2, 0xdb, '2191 xgc'), + RgbInt8Color.rgbName(0x41, 0x8f, 0xde, '279 c'), + RgbInt8Color.rgbName(0x4f, 0x92, 0x37, '363 cp'), + RgbInt8Color.rgbName(0x2d, 0x97, 0x6b, '2252 up'), + RgbInt8Color.rgbName(0x2f, 0x9e, 0x6d, 'p 133-8 u'), + RgbInt8Color.rgbName(0x27, 0x99, 0x89, '7473 c'), + RgbInt8Color.rgbName(0x30, 0x99, 0x86, '7473 xgc'), + RgbInt8Color.rgbName(0x29, 0x9f, 0x8b, '3285 up'), + RgbInt8Color.rgbName(0x2b, 0x99, 0x9e, '10289 c'), + RgbInt8Color.rgbName(0x2e, 0x93, 0x9b, '2236 xgc'), + RgbInt8Color.rgbName(0x2b, 0x96, 0xa3, '2396 up'), + RgbInt8Color.rgbName(0x26, 0xa4, 0x9c, '3560 up'), + RgbInt8Color.rgbName(0x29, 0xa2, 0xa0, 'p 124-14 c'), + RgbInt8Color.rgbName(0x30, 0x91, 0xb9, 'p 116-6 u'), + RgbInt8Color.rgbName(0x40, 0x97, 0xdb, '2925 u'), + RgbInt8Color.rgbName(0x34, 0x9c, 0xd7, '2925 xgc'), + RgbInt8Color.rgbName(0x31, 0xa0, 0x7b, 'p 136-14 c'), + RgbInt8Color.rgbName(0x2a, 0xa6, 0x94, '2401 cp'), + RgbInt8Color.rgbName(0x30, 0x9b, 0x8a, '2456 c'), + RgbInt8Color.rgbName(0x2e, 0xa1, 0x8e, 'p 127-6 u'), + RgbInt8Color.rgbName(0x42, 0xa4, 0xe4, '2191 u'), + RgbInt8Color.rgbName(0x5b, 0xc5, 0x0, '2287 c'), + RgbInt8Color.rgbName(0x64, 0xa7, 0xb, '369 c'), + RgbInt8Color.rgbName(0x4c, 0xb4, 0xe7, '298 u'), + RgbInt8Color.rgbName(0x48, 0xb8, 0xe7, '2985 u'), + RgbInt8Color.rgbName(0x4e, 0xc3, 0xe0, '637 c'), + RgbInt8Color.rgbName(0x48, 0xd5, 0x97, '2412 c'), + RgbInt8Color.rgbName(0x50, 0xd6, 0x91, '353 u'), + RgbInt8Color.rgbName(0x34, 0xb1, 0x8f, 'p 133-6 c'), + RgbInt8Color.rgbName(0x47, 0xd7, 0xac, '3385 c'), + RgbInt8Color.rgbName(0x49, 0xc5, 0xb1, '3258 c'), + RgbInt8Color.rgbName(0x4c, 0xcf, 0xb8, '333 xgc'), + RgbInt8Color.rgbName(0x5d, 0x99, 0x1e, '2277 xgc'), + RgbInt8Color.rgbName(0x64, 0xc8, 0x47, '2287 u'), + RgbInt8Color.rgbName(0x34, 0xb0, 0xad, 'p 124-6 c'), + RgbInt8Color.rgbName(0x4e, 0xdc, 0xca, '3245 u'), + RgbInt8Color.rgbName(0x5f, 0xa4, 0x30, '10321 c'), + RgbInt8Color.rgbName(0x4e, 0xbf, 0xdb, '637 xgc'), + RgbInt8Color.rgbName(0x62, 0xa0, 0x44, '369 u'), + RgbInt8Color.rgbName(0x62, 0xa9, 0x51, '3529 up'), + RgbInt8Color.rgbName(0x63, 0xd0, 0x5a, '7488 u'), + RgbInt8Color.rgbName(0x5e, 0xa1, 0x51, 'p 148-14 c'), + RgbInt8Color.rgbName(0x5d, 0xb8, 0x60, '360 u'), + RgbInt8Color.rgbName(0x4e, 0xbd, 0x88, '346 u'), + RgbInt8Color.rgbName(0x4c, 0xc1, 0xa1, '338 u'), + RgbInt8Color.rgbName(0x48, 0xc1, 0xac, '3258 u'), + RgbInt8Color.rgbName(0x49, 0xc1, 0xab, '7465 xgc'), + RgbInt8Color.rgbName(0x4f, 0xbb, 0xd1, '311 cp'), + RgbInt8Color.rgbName(0x60, 0xb0, 0x66, '2420 cp'), + RgbInt8Color.rgbName(0x64, 0xad, 0x69, 'p 142-13 c'), + RgbInt8Color.rgbName(0x5b, 0xd0, 0xe6, '310 u'), + RgbInt8Color.rgbName(0x51, 0xba, 0xe8, '298 cp'), + RgbInt8Color.rgbName(0x5d, 0xdb, 0xd3, '3242 u'), + RgbInt8Color.rgbName(0x4c, 0x22, 0x1a, '2449 cp'), + RgbInt8Color.rgbName(0x38, 0x1e, 0x42, 'p 98-16 c'), + RgbInt8Color.rgbName(0x3f, 0x1e, 0x46, 'p 95-16 c'), + RgbInt8Color.rgbName(0x3f, 0x1f, 0x4d, 'p 98-8 c'), + RgbInt8Color.rgbName(0x51, 0xa, 0x7b, '2607 xgc'), + RgbInt8Color.rgbName(0x59, 0x7, 0x76, '3515 c'), + RgbInt8Color.rgbName(0x5a, 0x2d, 0x8a, '10219 c'), + RgbInt8Color.rgbName(0x58, 0x2c, 0x83, '268 c'), + RgbInt8Color.rgbName(0x5a, 0x35, 0x86, '7679 cp'), + RgbInt8Color.rgbName(0x66, 0x38, 0xb6, '2090 c'), + RgbInt8Color.rgbName(0x6e, 0x3f, 0xa3, '2077 c'), + RgbInt8Color.rgbName(0x6e, 0x40, 0xac, '2077 xgc'), + RgbInt8Color.rgbName(0x67, 0x4d, 0xa1, '2091 u'), + RgbInt8Color.rgbName(0x65, 0x4e, 0xa3, '2096 c'), + RgbInt8Color.rgbName(0x51, 0x46, 0x89, '7671 c'), + RgbInt8Color.rgbName(0x54, 0x42, 0x88, '8165 c'), + RgbInt8Color.rgbName(0x51, 0x45, 0x8b, 'p 99-7 c'), + RgbInt8Color.rgbName(0x59, 0x46, 0x8d, '2371 u'), + RgbInt8Color.rgbName(0x69, 0x54, 0xb0, '2097 xgc'), + RgbInt8Color.rgbName(0x67, 0x53, 0xaa, '2098 u'), + RgbInt8Color.rgbName(0x65, 0x58, 0xb1, '2102 c'), + RgbInt8Color.rgbName(0x68, 0x57, 0xb2, '2735 u'), + RgbInt8Color.rgbName(0x38, 0x2f, 0x2d, '412 c'), + RgbInt8Color.rgbName(0x37, 0x30, 0x2d, '412 xgc'), + RgbInt8Color.rgbName(0x38, 0x2e, 0x2c, '440 c'), + RgbInt8Color.rgbName(0x37, 0x32, 0x6e, 'p 103-8 c'), + RgbInt8Color.rgbName(0x6a, 0x64, 0xb9, '2102 xgc'), + RgbInt8Color.rgbName(0x68, 0x64, 0xad, '2367 u'), + RgbInt8Color.rgbName(0x65, 0x5f, 0xb7, '2368 u'), + RgbInt8Color.rgbName(0x68, 0x5b, 0xc7, '2725 c'), + RgbInt8Color.rgbName(0x6d, 0x63, 0xb7, '2725 xgc'), + RgbInt8Color.rgbName(0x6a, 0x6d, 0xcd, '2366 c'), + RgbInt8Color.rgbName(0x48, 0x33, 0x1c, '2322 cp'), + RgbInt8Color.rgbName(0x36, 0x34, 0x32, '10399 c'), + RgbInt8Color.rgbName(0x36, 0x34, 0x32, 'black 7 cp'), + RgbInt8Color.rgbName(0x37, 0x3a, 0x36, '447 c'), + RgbInt8Color.rgbName(0x33, 0x3f, 0x48, '432 c'), + RgbInt8Color.rgbName(0x33, 0x3a, 0x49, '8604 c'), + RgbInt8Color.rgbName(0x36, 0x52, 0x94, '2146 u'), + RgbInt8Color.rgbName(0x55, 0x76, 0xd1, '2130 c'), + RgbInt8Color.rgbName(0x57, 0x70, 0xbe, '2386 u'), + RgbInt8Color.rgbName(0x3a, 0x34, 0x31, '412 cp'), + RgbInt8Color.rgbName(0x37, 0x42, 0x3f, '446 xgc'), + RgbInt8Color.rgbName(0x35, 0x40, 0x41, 'p 176-16 c'), + RgbInt8Color.rgbName(0x33, 0x49, 0x48, '8524 c'), + RgbInt8Color.rgbName(0x3b, 0x45, 0x47, 'p 176-15 c'), + RgbInt8Color.rgbName(0x3c, 0x46, 0x52, '432 cp'), + RgbInt8Color.rgbName(0x39, 0x45, 0x4d, '432 xgc'), + RgbInt8Color.rgbName(0x3b, 0x45, 0x59, '2379 c'), + RgbInt8Color.rgbName(0x38, 0x49, 0x67, '2378 c'), + RgbInt8Color.rgbName(0x3c, 0x49, 0x81, '280 u'), + RgbInt8Color.rgbName(0x3a, 0x5d, 0x9e, '10247 c'), + RgbInt8Color.rgbName(0x38, 0x5e, 0x9d, '7684 c'), + RgbInt8Color.rgbName(0x36, 0x57, 0x3b, '7735 c'), + RgbInt8Color.rgbName(0x36, 0x55, 0x3a, '7735 cp'), + RgbInt8Color.rgbName(0x38, 0x58, 0x3c, '7735 xgc'), + RgbInt8Color.rgbName(0x35, 0x51, 0x3e, '7736 cp'), + RgbInt8Color.rgbName(0x34, 0x54, 0x4c, 'p 132-16 u'), + RgbInt8Color.rgbName(0x36, 0x59, 0x47, 'p 147-16 u'), + RgbInt8Color.rgbName(0x38, 0x51, 0x53, '8525 c'), + RgbInt8Color.rgbName(0x36, 0x56, 0x65, '8505 c'), + RgbInt8Color.rgbName(0x39, 0x56, 0x6e, '2377 xgc'), + RgbInt8Color.rgbName(0x37, 0x51, 0x72, '295 u'), + RgbInt8Color.rgbName(0x3a, 0x53, 0x82, '2140 c'), + RgbInt8Color.rgbName(0x3a, 0x6a, 0xa6, '10260 c'), + RgbInt8Color.rgbName(0x35, 0x69, 0xa7, '2387 cp'), + RgbInt8Color.rgbName(0x54, 0x85, 0xd4, '2172 u'), + RgbInt8Color.rgbName(0x5a, 0x56, 0x1a, '2308 cp'), + RgbInt8Color.rgbName(0x4c, 0x58, 0x28, '574 cp'), + RgbInt8Color.rgbName(0x39, 0x55, 0x42, '7736 c'), + RgbInt8Color.rgbName(0x3a, 0x58, 0x44, '7736 xgc'), + RgbInt8Color.rgbName(0x3a, 0x60, 0x46, '3537 up'), + RgbInt8Color.rgbName(0x33, 0x64, 0x47, '554 cp'), + RgbInt8Color.rgbName(0x3a, 0x5a, 0x55, '5477 xgc'), + RgbInt8Color.rgbName(0x38, 0x58, 0x53, 'p 129-16 u'), + RgbInt8Color.rgbName(0x32, 0x60, 0x55, 'p 132-8 u'), + RgbInt8Color.rgbName(0x38, 0x58, 0x56, 'p 126-16 u'), + RgbInt8Color.rgbName(0x37, 0x60, 0x63, 'p 123-16 u'), + RgbInt8Color.rgbName(0x34, 0x5a, 0x71, '10267 c'), + RgbInt8Color.rgbName(0x36, 0x5d, 0x71, 'p 117-16 u'), + RgbInt8Color.rgbName(0x36, 0x60, 0x6b, 'p 120-16 u'), + RgbInt8Color.rgbName(0x3c, 0x5c, 0x78, '2188 u'), + RgbInt8Color.rgbName(0x39, 0x57, 0x75, '2955 u'), + RgbInt8Color.rgbName(0x37, 0x5e, 0x77, '302 u'), + RgbInt8Color.rgbName(0x37, 0x58, 0x85, '2140 xgc'), + RgbInt8Color.rgbName(0x38, 0x5d, 0x7f, '2187 u'), + RgbInt8Color.rgbName(0x38, 0x59, 0x88, '294 u'), + RgbInt8Color.rgbName(0x39, 0x5a, 0x94, 'p 104-15 c'), + RgbInt8Color.rgbName(0x3c, 0x75, 0xad, '2174 up'), + RgbInt8Color.rgbName(0x34, 0x75, 0xae, '2195 up'), + RgbInt8Color.rgbName(0x54, 0x62, 0x23, '371 c'), + RgbInt8Color.rgbName(0x58, 0x65, 0x20, '371 cp'), + RgbInt8Color.rgbName(0x59, 0x62, 0x1d, '378 c'), + RgbInt8Color.rgbName(0x33, 0x65, 0x4c, 'p 147-8 u'), + RgbInt8Color.rgbName(0x3c, 0x67, 0x4c, 'p 150-8 u'), + RgbInt8Color.rgbName(0x35, 0x65, 0x5d, 'p 129-8 u'), + RgbInt8Color.rgbName(0x38, 0x5f, 0x56, 'p 132-15 u'), + RgbInt8Color.rgbName(0x35, 0x68, 0x5c, 'p 132-7 u'), + RgbInt8Color.rgbName(0x39, 0x70, 0x50, 'p 149-16 u'), + RgbInt8Color.rgbName(0x3b, 0x64, 0x5e, 'p 129-15 u'), + RgbInt8Color.rgbName(0x32, 0x6d, 0x69, 'p 126-7 u'), + RgbInt8Color.rgbName(0x39, 0x67, 0x6c, '3165 up'), + RgbInt8Color.rgbName(0x37, 0x61, 0x7a, '3025 u'), + RgbInt8Color.rgbName(0x34, 0x65, 0x7f, '7699 c'), + RgbInt8Color.rgbName(0x34, 0x65, 0x7d, '7699 xgc'), + RgbInt8Color.rgbName(0x34, 0x64, 0x8a, '2186 up'), + RgbInt8Color.rgbName(0x36, 0x68, 0x84, '7699 cp'), + RgbInt8Color.rgbName(0x36, 0x6e, 0x82, '8205 c'), + RgbInt8Color.rgbName(0x34, 0x64, 0x8b, 'p 111-14 c'), + RgbInt8Color.rgbName(0x39, 0x63, 0x7e, 'p 114-8 u'), + RgbInt8Color.rgbName(0x39, 0x69, 0x81, 'p 117-15 u'), + RgbInt8Color.rgbName(0x33, 0x67, 0x94, '2196 up'), + RgbInt8Color.rgbName(0x36, 0x66, 0x99, '653 xgc'), + RgbInt8Color.rgbName(0x37, 0x70, 0xa9, '2175 up'), + RgbInt8Color.rgbName(0x53, 0x76, 0x22, '3508 cp'), + RgbInt8Color.rgbName(0x3b, 0x75, 0x41, 'p 144-14 c'), + RgbInt8Color.rgbName(0x3a, 0x70, 0x50, '555 cp'), + RgbInt8Color.rgbName(0x3a, 0x6f, 0x51, 'p 152-16 u'), + RgbInt8Color.rgbName(0x3a, 0x6a, 0x58, '626 cp'), + RgbInt8Color.rgbName(0x3a, 0x74, 0x56, '8722 c'), + RgbInt8Color.rgbName(0x37, 0x7a, 0x53, 'p 149-8 u'), + RgbInt8Color.rgbName(0x36, 0x77, 0x53, 'p 152-8 u'), + RgbInt8Color.rgbName(0x34, 0x6e, 0x6a, '3292 u'), + RgbInt8Color.rgbName(0x38, 0x75, 0x65, '336 up'), + RgbInt8Color.rgbName(0x34, 0x79, 0x63, '341 u'), + RgbInt8Color.rgbName(0x37, 0x74, 0x62, '342 up'), + RgbInt8Color.rgbName(0x39, 0x70, 0x66, 'p 129-7 u'), + RgbInt8Color.rgbName(0x3b, 0x70, 0x65, 'p 132-6 u'), + RgbInt8Color.rgbName(0x33, 0x70, 0x79, '2213 c'), + RgbInt8Color.rgbName(0x36, 0x6c, 0x72, '2238 up'), + RgbInt8Color.rgbName(0x39, 0x6b, 0x6f, 'p 123-15 u'), + RgbInt8Color.rgbName(0x3c, 0x71, 0x76, '2213 cp'), + RgbInt8Color.rgbName(0x34, 0x71, 0x78, '7715 up'), + RgbInt8Color.rgbName(0x3b, 0x6c, 0x78, 'p 120-15 u'), + RgbInt8Color.rgbName(0x35, 0x75, 0x7e, '2238 u'), + RgbInt8Color.rgbName(0x31, 0x73, 0x8a, '7707 up'), + RgbInt8Color.rgbName(0x3c, 0x6f, 0x8e, '2160 cp'), + RgbInt8Color.rgbName(0x36, 0x6d, 0x94, '301 up'), + RgbInt8Color.rgbName(0x3c, 0x6e, 0x89, '7469 u'), + RgbInt8Color.rgbName(0x38, 0x70, 0x8a, '7469 up'), + RgbInt8Color.rgbName(0x3c, 0x6c, 0x93, '2160 xgc'), + RgbInt8Color.rgbName(0x37, 0x6e, 0x97, 'p 111-6 c'), + RgbInt8Color.rgbName(0x36, 0x74, 0x9d, '2150 c'), + RgbInt8Color.rgbName(0x51, 0x82, 0x1c, '2278 xgc'), + RgbInt8Color.rgbName(0x3b, 0x7e, 0x48, 'p 144-6 c'), + RgbInt8Color.rgbName(0x39, 0x7e, 0x58, '356 u'), + RgbInt8Color.rgbName(0x36, 0x87, 0x52, 'p 142-16 u'), + RgbInt8Color.rgbName(0x34, 0x7a, 0x68, '3298 up'), + RgbInt8Color.rgbName(0x34, 0x85, 0x5b, '348 u'), + RgbInt8Color.rgbName(0x39, 0x81, 0x5a, 'p 137-8 u'), + RgbInt8Color.rgbName(0x3c, 0x7b, 0x5c, 'p 146-16 u'), + RgbInt8Color.rgbName(0x3a, 0x7d, 0x68, '2419 u'), + RgbInt8Color.rgbName(0x37, 0x7b, 0x67, '2419 up'), + RgbInt8Color.rgbName(0x38, 0x74, 0x69, '3298 u'), + RgbInt8Color.rgbName(0x3a, 0x72, 0x67, '336 u'), + RgbInt8Color.rgbName(0x37, 0x7f, 0x67, '7727 up'), + RgbInt8Color.rgbName(0x34, 0x7a, 0x6c, 'p 128-15 u'), + RgbInt8Color.rgbName(0x37, 0x77, 0x6a, 'p 131-14 u'), + RgbInt8Color.rgbName(0x3a, 0x7d, 0x7a, '7719 up'), + RgbInt8Color.rgbName(0x36, 0x7a, 0x7b, '8245 c'), + RgbInt8Color.rgbName(0x38, 0x75, 0x7b, 'p 123-7 u'), + RgbInt8Color.rgbName(0x3a, 0x7e, 0x77, 'p 125-15 u'), + RgbInt8Color.rgbName(0x35, 0x82, 0x82, '7718 u'), + RgbInt8Color.rgbName(0x37, 0x75, 0x85, 'p 120-7 u'), + RgbInt8Color.rgbName(0x35, 0x7f, 0x7f, 'p 122-15 u'), + RgbInt8Color.rgbName(0x38, 0x74, 0x88, '634 up'), + RgbInt8Color.rgbName(0x35, 0x81, 0x89, '7714 u'), + RgbInt8Color.rgbName(0x3a, 0x76, 0x8e, '8204 c'), + RgbInt8Color.rgbName(0x36, 0x76, 0x92, 'p 117-7 u'), + RgbInt8Color.rgbName(0x3c, 0x79, 0x93, '7468 up'), + RgbInt8Color.rgbName(0x38, 0x7a, 0xa3, 'p 110-14 c'), + RgbInt8Color.rgbName(0x34, 0x7d, 0xa6, 'p 113-7 u'), + RgbInt8Color.rgbName(0x37, 0x7c, 0xb0, '2383 cp'), + RgbInt8Color.rgbName(0x31, 0x86, 0xaf, 'p 113-13 c'), + RgbInt8Color.rgbName(0x35, 0x94, 0xc6, '7689 xgc'), + RgbInt8Color.rgbName(0x3a, 0x8a, 0x55, 'p 139-16 u'), + RgbInt8Color.rgbName(0x38, 0x84, 0x5e, 'p 146-8 u'), + RgbInt8Color.rgbName(0x3c, 0x88, 0x55, 'p 148-15 u'), + RgbInt8Color.rgbName(0x34, 0x85, 0x69, '7726 u'), + RgbInt8Color.rgbName(0x3b, 0x89, 0x5b, 'p 136-16 u'), + RgbInt8Color.rgbName(0x39, 0x80, 0x75, 'p 129-14 c'), + RgbInt8Color.rgbName(0x30, 0x87, 0x7c, 'p 129-6 c'), + RgbInt8Color.rgbName(0x36, 0x84, 0x74, 'p 131-6 u'), + RgbInt8Color.rgbName(0x3a, 0x84, 0x73, 'p 132-5 c'), + RgbInt8Color.rgbName(0x31, 0x84, 0x86, '8263 c'), + RgbInt8Color.rgbName(0x34, 0x88, 0x83, '7718 up'), + RgbInt8Color.rgbName(0x3b, 0x80, 0x84, '8244 c'), + RgbInt8Color.rgbName(0x3a, 0x85, 0x90, 'p 123-13 c'), + RgbInt8Color.rgbName(0x34, 0x87, 0x96, '2221 cp'), + RgbInt8Color.rgbName(0x39, 0x84, 0x98, 'p 119-14 u'), + RgbInt8Color.rgbName(0x3a, 0x84, 0x9b, 'p 120-13 c'), + RgbInt8Color.rgbName(0x3a, 0x7f, 0xa6, '2185 u'), + RgbInt8Color.rgbName(0x34, 0x8b, 0xac, '7704 u'), + RgbInt8Color.rgbName(0x38, 0x89, 0xab, 'p 116-14 u'), + RgbInt8Color.rgbName(0x3c, 0x84, 0xb1, 'p 110-6 c'), + RgbInt8Color.rgbName(0x3c, 0x9c, 0xd1, 'p 112-6 u'), + RgbInt8Color.rgbName(0x3c, 0x8e, 0x5c, 'p 145-15 u'), + RgbInt8Color.rgbName(0x39, 0x94, 0x5f, 'p 140-6 c'), + RgbInt8Color.rgbName(0x32, 0x91, 0x7d, '2243 up'), + RgbInt8Color.rgbName(0x37, 0x92, 0x72, '7725 u'), + RgbInt8Color.rgbName(0x33, 0x95, 0x7b, 'p 134-6 c'), + RgbInt8Color.rgbName(0x35, 0x96, 0x85, 'p 127-14 u'), + RgbInt8Color.rgbName(0x3c, 0x89, 0x95, '10283 c'), + RgbInt8Color.rgbName(0x37, 0x91, 0x97, 'p 122-14 c'), + RgbInt8Color.rgbName(0x39, 0x90, 0xa6, 'p 119-6 u'), + RgbInt8Color.rgbName(0x39, 0x98, 0xb5, '632 u'), + RgbInt8Color.rgbName(0x42, 0x8f, 0xcf, '2143 xgc'), + RgbInt8Color.rgbName(0x3b, 0x9f, 0x6b, '355 up'), + RgbInt8Color.rgbName(0x3a, 0x9e, 0x68, 'p 136-7 u'), + RgbInt8Color.rgbName(0x37, 0x9c, 0x78, '2251 up'), + RgbInt8Color.rgbName(0x3a, 0x94, 0x89, 'p 128-13 c'), + RgbInt8Color.rgbName(0x3b, 0x95, 0x93, '7717 up'), + RgbInt8Color.rgbName(0x39, 0x9c, 0x8f, 'p 128-5 c'), + RgbInt8Color.rgbName(0x38, 0x99, 0x9b, 'p 121-14 u'), + RgbInt8Color.rgbName(0x3c, 0x9a, 0x9f, '2234 cp'), + RgbInt8Color.rgbName(0x39, 0x9c, 0xa1, 'p 122-6 c'), + RgbInt8Color.rgbName(0x38, 0x9c, 0xb8, 'p 119-5 c'), + RgbInt8Color.rgbName(0x38, 0xa4, 0xbd, '632 up'), + RgbInt8Color.rgbName(0x48, 0x9f, 0xdf, '2171 c'), + RgbInt8Color.rgbName(0x3f, 0xa0, 0xd6, '2171 cp'), + RgbInt8Color.rgbName(0x50, 0x96, 0xdc, '2171 u'), + RgbInt8Color.rgbName(0x39, 0xa2, 0x84, '2242 up'), + RgbInt8Color.rgbName(0x3a, 0xa5, 0x87, 'green up'), + RgbInt8Color.rgbName(0x3a, 0xa2, 0x86, 'p 130-6 u'), + RgbInt8Color.rgbName(0x3b, 0xa3, 0x84, 'p 133-14 c'), + RgbInt8Color.rgbName(0x3b, 0xa2, 0x93, '10295 c'), + RgbInt8Color.rgbName(0x34, 0xa7, 0x98, '2401 c'), + RgbInt8Color.rgbName(0x3c, 0xa4, 0x8e, 'p 130-13 c'), + RgbInt8Color.rgbName(0x3b, 0xa2, 0x98, '2399 up'), + RgbInt8Color.rgbName(0x38, 0xa6, 0x9b, '3272 up'), + RgbInt8Color.rgbName(0x36, 0xa8, 0xab, 'p 121-6 u'), + RgbInt8Color.rgbName(0x3c, 0xa4, 0xcb, 'p 116-5 c'), + RgbInt8Color.rgbName(0x45, 0xa0, 0xd5, '2191 up'), + RgbInt8Color.rgbName(0x45, 0x9e, 0xd5, '299 up'), + RgbInt8Color.rgbName(0x59, 0x94, 0x3c, '2277 cp'), + RgbInt8Color.rgbName(0x58, 0x86, 0x31, '2278 cp'), + RgbInt8Color.rgbName(0x51, 0x7f, 0x31, 'p 155-16 c'), + RgbInt8Color.rgbName(0x54, 0xb2, 0xe9, '2190 u'), + RgbInt8Color.rgbName(0x69, 0xc4, 0x24, '2287 xgc'), + RgbInt8Color.rgbName(0x56, 0xb7, 0xe6, '2190 c'), + RgbInt8Color.rgbName(0x6d, 0xaf, 0x23, '369 xgc'), + RgbInt8Color.rgbName(0x3d, 0xa1, 0x70, '2417 cp'), + RgbInt8Color.rgbName(0x54, 0xcb, 0x91, '2412 xgc'), + RgbInt8Color.rgbName(0x52, 0xd2, 0xbc, '3533 c'), + RgbInt8Color.rgbName(0x55, 0xc7, 0xb5, '7465 u'), + RgbInt8Color.rgbName(0x53, 0xcf, 0xba, '929 u'), + RgbInt8Color.rgbName(0x55, 0xca, 0xc4, '325 xgc'), + RgbInt8Color.rgbName(0x3e, 0xb1, 0xc8, '631 c'), + RgbInt8Color.rgbName(0x3d, 0xa3, 0x75, 'p 133-7 u'), + RgbInt8Color.rgbName(0x3e, 0xab, 0xc8, '2199 up'), + RgbInt8Color.rgbName(0x55, 0xb0, 0x7c, '2414 cp'), + RgbInt8Color.rgbName(0x53, 0xac, 0x81, 'p 133-6 u'), + RgbInt8Color.rgbName(0x43, 0xae, 0xbe, '3125 up'), + RgbInt8Color.rgbName(0x52, 0xc2, 0xcd, '2226 xgc'), + RgbInt8Color.rgbName(0x6d, 0xa5, 0x41, '10320 c'), + RgbInt8Color.rgbName(0x65, 0xac, 0x3b, '2421 cp'), + RgbInt8Color.rgbName(0x6d, 0xac, 0x4f, '3501 up'), + RgbInt8Color.rgbName(0x69, 0xa2, 0x4f, '3539 up'), + RgbInt8Color.rgbName(0x6c, 0xc2, 0x4a, '360 c'), + RgbInt8Color.rgbName(0x67, 0xb3, 0x46, '368 u'), + RgbInt8Color.rgbName(0x6b, 0xa5, 0x39, '7737 c'), + RgbInt8Color.rgbName(0x6a, 0xab, 0x3d, 'p 154-8 c'), + RgbInt8Color.rgbName(0x67, 0xae, 0x5a, 'p 151-7 c'), + RgbInt8Color.rgbName(0x55, 0xb5, 0xa0, 'p 130-5 c'), + RgbInt8Color.rgbName(0x4a, 0xb7, 0xae, '3262 cp'), + RgbInt8Color.rgbName(0x59, 0xbe, 0xc9, '2227 c'), + RgbInt8Color.rgbName(0x52, 0xb9, 0xd8, 'p 118-5 c'), + RgbInt8Color.rgbName(0x57, 0xb4, 0xdc, 'p 115-13 c'), + RgbInt8Color.rgbName(0x59, 0xbb, 0xe2, '2985 up'), + RgbInt8Color.rgbName(0x6a, 0xd4, 0xeb, '2197 u'), + RgbInt8Color.rgbName(0x5e, 0xc8, 0xe5, '637 u'), + RgbInt8Color.rgbName(0x6c, 0xd1, 0xef, 'blue 0821 u'), + RgbInt8Color.rgbName(0x57, 0xb5, 0xcf, 'p 118-5 u'), + RgbInt8Color.rgbName(0x6c, 0xb7, 0x5c, '2464 cp'), + RgbInt8Color.rgbName(0x6a, 0xaf, 0x5b, 'p 148-6 c'), + RgbInt8Color.rgbName(0x6d, 0xaa, 0x5c, 'p 154-7 u'), + RgbInt8Color.rgbName(0x6e, 0xae, 0x6e, 'p 148-5 u'), + RgbInt8Color.rgbName(0x5b, 0xc2, 0xe7, '2985 c'), + RgbInt8Color.rgbName(0x6a, 0xd1, 0xe3, '310 c'), + RgbInt8Color.rgbName(0x6b, 0xd9, 0xde, '318 u'), + RgbInt8Color.rgbName(0x3d, 0x26, 0x29, '2478 cp'), + RgbInt8Color.rgbName(0x4a, 0x28, 0x1a, '4625 xgc'), + RgbInt8Color.rgbName(0x46, 0x20, 0x52, 'p 95-8 c'), + RgbInt8Color.rgbName(0x42, 0x20, 0x57, 'p 97-16 c'), + RgbInt8Color.rgbName(0x3d, 0x2b, 0x5a, '669 cp'), + RgbInt8Color.rgbName(0x42, 0x28, 0x63, '3566 cp'), + RgbInt8Color.rgbName(0x46, 0x23, 0x62, 'p 97-8 c'), + RgbInt8Color.rgbName(0x49, 0x1d, 0x70, '3555 c'), + RgbInt8Color.rgbName(0x3e, 0x2b, 0x74, '3542 cp'), + RgbInt8Color.rgbName(0x64, 0x33, 0x85, '2597 cp'), + RgbInt8Color.rgbName(0x61, 0x39, 0x8b, '267 cp'), + RgbInt8Color.rgbName(0x75, 0x3b, 0xbd, '266 c'), + RgbInt8Color.rgbName(0x70, 0x4d, 0x97, '10217 c'), + RgbInt8Color.rgbName(0x72, 0x48, 0xbd, '2089 c'), + RgbInt8Color.rgbName(0x70, 0x4b, 0xb0, '2089 xgc'), + RgbInt8Color.rgbName(0x41, 0x27, 0x3b, '7449 c'), + RgbInt8Color.rgbName(0x3f, 0x25, 0x37, '7449 cp'), + RgbInt8Color.rgbName(0x75, 0x5a, 0xb3, '2090 u'), + RgbInt8Color.rgbName(0x77, 0x58, 0xb3, 'violet u'), + RgbInt8Color.rgbName(0x45, 0x2b, 0x29, '4975 cp'), + RgbInt8Color.rgbName(0x3e, 0x2b, 0x2e, 'black 5 c'), + RgbInt8Color.rgbName(0x3f, 0x2a, 0x56, '669 c'), + RgbInt8Color.rgbName(0x46, 0x2b, 0x63, '8802 c'), + RgbInt8Color.rgbName(0x45, 0x2b, 0x6f, '3566 c'), + RgbInt8Color.rgbName(0x44, 0x2f, 0x59, '669 xgc'), + RgbInt8Color.rgbName(0x3f, 0x31, 0x5d, 'p 101-15 c'), + RgbInt8Color.rgbName(0x46, 0x2b, 0x55, 'p 98-15 c'), + RgbInt8Color.rgbName(0x71, 0x5e, 0xb8, '2097 u'), + RgbInt8Color.rgbName(0x43, 0x35, 0x26, '7533 xgc'), + RgbInt8Color.rgbName(0x42, 0x46, 0x78, '2111 xgc'), + RgbInt8Color.rgbName(0x3d, 0x45, 0x7b, '3584 cp'), + RgbInt8Color.rgbName(0x44, 0x43, 0x7c, 'p 100-7 c'), + RgbInt8Color.rgbName(0x46, 0x3e, 0x79, 'p 103-7 c'), + RgbInt8Color.rgbName(0x36, 0x34, 0x34, 'p 179-15 c'), + RgbInt8Color.rgbName(0x3d, 0x3a, 0x61, '5265 cp'), + RgbInt8Color.rgbName(0x44, 0x35, 0x64, 'p 101-7 c'), + RgbInt8Color.rgbName(0x3d, 0x38, 0x68, 'p 103-15 c'), + RgbInt8Color.rgbName(0x42, 0x4f, 0x84, '2147 u'), + RgbInt8Color.rgbName(0x46, 0x4d, 0x8a, 'p 102-15 c'), + RgbInt8Color.rgbName(0x3e, 0x4f, 0x84, 'p 105-7 c'), + RgbInt8Color.rgbName(0x3a, 0x43, 0x5d, '8781 c'), + RgbInt8Color.rgbName(0x40, 0x3a, 0x60, '5265 c'), + RgbInt8Color.rgbName(0x3f, 0x3a, 0x60, '8780 c'), + RgbInt8Color.rgbName(0x42, 0x53, 0x90, '662 u'), + RgbInt8Color.rgbName(0x60, 0x75, 0xb7, '7456 xgc'), + RgbInt8Color.rgbName(0x3e, 0x49, 0x3e, '8522 c'), + RgbInt8Color.rgbName(0x3f, 0x44, 0x44, '446 c'), + RgbInt8Color.rgbName(0x3c, 0x43, 0x4a, 'p 174-16 c'), + RgbInt8Color.rgbName(0x39, 0x43, 0x54, '8605 c'), + RgbInt8Color.rgbName(0x3f, 0x4a, 0x75, '281 u'), + RgbInt8Color.rgbName(0x3f, 0x4c, 0x7b, 'p 105-15 c'), + RgbInt8Color.rgbName(0x4e, 0x7b, 0xbd, '2144 u'), + RgbInt8Color.rgbName(0x45, 0x52, 0x2e, '5743 cp'), + RgbInt8Color.rgbName(0x55, 0x50, 0x25, '5815 c'), + RgbInt8Color.rgbName(0x57, 0x51, 0x22, '5815 cp'), + RgbInt8Color.rgbName(0x3e, 0x33, 0x2e, '2479 c'), + RgbInt8Color.rgbName(0x43, 0x3a, 0x32, '8623 c'), + RgbInt8Color.rgbName(0x3e, 0x4b, 0x48, 'p 175-16 c'), + RgbInt8Color.rgbName(0x3e, 0x4e, 0x56, '5463 u'), + RgbInt8Color.rgbName(0x3b, 0x4e, 0x5d, '2189 up'), + RgbInt8Color.rgbName(0x3d, 0x52, 0x65, '2965 u'), + RgbInt8Color.rgbName(0x3d, 0x52, 0x65, '7545 cp'), + RgbInt8Color.rgbName(0x3f, 0x51, 0x73, '2111 cp'), + RgbInt8Color.rgbName(0x3f, 0x52, 0x6f, '540 u'), + RgbInt8Color.rgbName(0x3b, 0x57, 0x72, '2188 up'), + RgbInt8Color.rgbName(0x3a, 0x55, 0x7c, '541 u'), + RgbInt8Color.rgbName(0x3d, 0x55, 0x88, '288 u'), + RgbInt8Color.rgbName(0x44, 0x6e, 0xa6, '293 up'), + RgbInt8Color.rgbName(0x41, 0x6e, 0xa6, '2935 up'), + RgbInt8Color.rgbName(0x42, 0x6d, 0xa9, '7683 c'), + RgbInt8Color.rgbName(0x3f, 0x6b, 0xa6, '7684 xgc'), + RgbInt8Color.rgbName(0x5c, 0x88, 0xda, '2718 c'), + RgbInt8Color.rgbName(0x5d, 0x55, 0x1d, '2308 c'), + RgbInt8Color.rgbName(0x60, 0x5b, 0x12, '2308 xgc'), + RgbInt8Color.rgbName(0x42, 0x5a, 0x3c, '2410 cp'), + RgbInt8Color.rgbName(0x4e, 0x5b, 0x31, '574 c'), + RgbInt8Color.rgbName(0x58, 0x5a, 0x28, '7498 cp'), + RgbInt8Color.rgbName(0x44, 0x5a, 0x3e, '2410 c'), + RgbInt8Color.rgbName(0x3d, 0x59, 0x49, 'p 150-16 u'), + RgbInt8Color.rgbName(0x3e, 0x5d, 0x58, '5477 c'), + RgbInt8Color.rgbName(0x40, 0x58, 0x66, '3035 u'), + RgbInt8Color.rgbName(0x3f, 0x58, 0x64, '309 u'), + RgbInt8Color.rgbName(0x3e, 0x5a, 0x62, '316 u'), + RgbInt8Color.rgbName(0x3e, 0x5e, 0x6f, '548 u'), + RgbInt8Color.rgbName(0x3d, 0x59, 0x6d, 'p 114-16 u'), + RgbInt8Color.rgbName(0x39, 0x5d, 0x7e, '2187 up'), + RgbInt8Color.rgbName(0x45, 0x6f, 0xab, '2386 cp'), + RgbInt8Color.rgbName(0x46, 0x78, 0xb0, '7683 xgc'), + RgbInt8Color.rgbName(0x46, 0x70, 0xa0, 'p 107-5 c'), + RgbInt8Color.rgbName(0x42, 0x75, 0xa2, 'p 109-16 u'), + RgbInt8Color.rgbName(0x3f, 0x8d, 0xc4, '2382 cp'), + RgbInt8Color.rgbName(0x64, 0x90, 0xe8, '2727 u'), + RgbInt8Color.rgbName(0x57, 0x68, 0x27, '371 xgc'), + RgbInt8Color.rgbName(0x5d, 0x68, 0x21, '378 cp'), + RgbInt8Color.rgbName(0x5b, 0x69, 0x1d, 'p 162-16 c'), + RgbInt8Color.rgbName(0x5d, 0x65, 0x1e, 'p 165-16 c'), + RgbInt8Color.rgbName(0x46, 0x61, 0x43, '2410 xgc'), + RgbInt8Color.rgbName(0x44, 0x69, 0x3d, '7743 c'), + RgbInt8Color.rgbName(0x44, 0x63, 0x49, 'p 144-16 u'), + RgbInt8Color.rgbName(0x3e, 0x64, 0x4e, 'p 147-15 u'), + RgbInt8Color.rgbName(0x42, 0x63, 0x4b, 'p 150-15 u'), + RgbInt8Color.rgbName(0x41, 0x5f, 0x4b, 'p 153-16 u'), + RgbInt8Color.rgbName(0x3d, 0x6d, 0x51, 'p 147-7 u'), + RgbInt8Color.rgbName(0x40, 0x5f, 0x5b, '330 up'), + RgbInt8Color.rgbName(0x3f, 0x63, 0x5b, '3302 up'), + RgbInt8Color.rgbName(0x44, 0x64, 0x63, '330 u'), + RgbInt8Color.rgbName(0x3c, 0x69, 0x5f, 'p 132-14 u'), + RgbInt8Color.rgbName(0x3b, 0x6a, 0x6c, '323 up'), + RgbInt8Color.rgbName(0x3f, 0x65, 0x78, '2167 cp'), + RgbInt8Color.rgbName(0x3a, 0x69, 0x7e, '3025 up'), + RgbInt8Color.rgbName(0x39, 0x68, 0x7b, '7708 up'), + RgbInt8Color.rgbName(0x41, 0x65, 0x77, '8480 c'), + RgbInt8Color.rgbName(0x3e, 0x63, 0x83, 'p 110-16 u'), + RgbInt8Color.rgbName(0x40, 0x69, 0x97, '2384 u'), + RgbInt8Color.rgbName(0x40, 0x67, 0x9c, 'p 106-8 u'), + RgbInt8Color.rgbName(0x46, 0x79, 0xae, 'p 106-14 c'), + RgbInt8Color.rgbName(0x5f, 0x6b, 0x21, '2307 cp'), + RgbInt8Color.rgbName(0x62, 0x6b, 0x1c, '378 xgc'), + RgbInt8Color.rgbName(0x3f, 0x77, 0x41, 'p 153-7 c'), + RgbInt8Color.rgbName(0x42, 0x6a, 0x4b, 'p 144-8 u'), + RgbInt8Color.rgbName(0x3e, 0x76, 0x4a, 'p 147-14 c'), + RgbInt8Color.rgbName(0x42, 0x76, 0x4b, 'p 141-14 c'), + RgbInt8Color.rgbName(0x46, 0x70, 0x4c, 'p 141-8 u'), + RgbInt8Color.rgbName(0x44, 0x70, 0x4d, 'p 150-7 u'), + RgbInt8Color.rgbName(0x42, 0x6b, 0x4e, 'p 153-8 u'), + RgbInt8Color.rgbName(0x43, 0x72, 0x55, 'p 134-16 u'), + RgbInt8Color.rgbName(0x44, 0x69, 0x53, 'p 135-8 u'), + RgbInt8Color.rgbName(0x45, 0x6d, 0x51, 'p 138-8 u'), + RgbInt8Color.rgbName(0x40, 0x70, 0x60, '342 u'), + RgbInt8Color.rgbName(0x41, 0x6f, 0x60, '7729 up'), + RgbInt8Color.rgbName(0x3e, 0x6b, 0x67, 'p 126-15 u'), + RgbInt8Color.rgbName(0x3d, 0x6b, 0x7a, '2180 xgc'), + RgbInt8Color.rgbName(0x3a, 0x71, 0x7d, '2224 up'), + RgbInt8Color.rgbName(0x41, 0x71, 0x78, '7715 u'), + RgbInt8Color.rgbName(0x3f, 0x6c, 0x7d, '2180 c'), + RgbInt8Color.rgbName(0x43, 0x70, 0x83, '7470 u'), + RgbInt8Color.rgbName(0x3e, 0x6d, 0x8a, 'p 114-7 u'), + RgbInt8Color.rgbName(0x3e, 0x69, 0x91, '2160 c'), + RgbInt8Color.rgbName(0x3b, 0x72, 0x90, '2454 up'), + RgbInt8Color.rgbName(0x41, 0x74, 0x8d, '7698 c'), + RgbInt8Color.rgbName(0x3c, 0x6b, 0x91, 'p 110-8 u'), + RgbInt8Color.rgbName(0x3d, 0x74, 0x97, 'p 113-15 u'), + RgbInt8Color.rgbName(0x42, 0x85, 0xbb, 'p 109-7 u'), + RgbInt8Color.rgbName(0x43, 0x85, 0xad, 'p 113-6 u'), + RgbInt8Color.rgbName(0x58, 0x75, 0x28, '2279 cp'), + RgbInt8Color.rgbName(0x4a, 0x77, 0x3c, '7742 c'), + RgbInt8Color.rgbName(0x5c, 0x76, 0x25, 'p 159-8 c'), + RgbInt8Color.rgbName(0x44, 0x78, 0x4f, 'p 140-16 u'), + RgbInt8Color.rgbName(0x41, 0x7f, 0x50, 'p 140-8 u'), + RgbInt8Color.rgbName(0x42, 0x78, 0x4f, 'p 143-16 u'), + RgbInt8Color.rgbName(0x41, 0x86, 0x48, 'p 146-14 c'), + RgbInt8Color.rgbName(0x41, 0x7f, 0x4b, 'p 147-6 c'), + RgbInt8Color.rgbName(0x3e, 0x78, 0x56, 'p 137-16 u'), + RgbInt8Color.rgbName(0x40, 0x7f, 0x52, 'p 143-8 u'), + RgbInt8Color.rgbName(0x43, 0x77, 0x53, 'p 149-15 u'), + RgbInt8Color.rgbName(0x3d, 0x79, 0x64, '7728 up'), + RgbInt8Color.rgbName(0x42, 0x7c, 0x59, 'p 134-8 u'), + RgbInt8Color.rgbName(0x41, 0x77, 0x64, '3425 u'), + RgbInt8Color.rgbName(0x3e, 0x7c, 0x65, '7727 u'), + RgbInt8Color.rgbName(0x45, 0x78, 0x65, '7728 u'), + RgbInt8Color.rgbName(0x40, 0x77, 0x74, '7720 up'), + RgbInt8Color.rgbName(0x3e, 0x78, 0x74, 'p 126-6 u'), + RgbInt8Color.rgbName(0x41, 0x7b, 0x7b, '7719 u'), + RgbInt8Color.rgbName(0x43, 0x77, 0x7b, 'p 123-14 u'), + RgbInt8Color.rgbName(0x40, 0x76, 0x85, '2179 cp'), + RgbInt8Color.rgbName(0x3d, 0x75, 0x86, '2224 u'), + RgbInt8Color.rgbName(0x3f, 0x77, 0x93, '7468 u'), + RgbInt8Color.rgbName(0x43, 0x75, 0x8d, '7698 xgc'), + RgbInt8Color.rgbName(0x40, 0x77, 0x97, '2150 cp'), + RgbInt8Color.rgbName(0x3c, 0x7d, 0x9a, '7705 u'), + RgbInt8Color.rgbName(0x43, 0x7a, 0x94, '7706 u'), + RgbInt8Color.rgbName(0x3f, 0x7c, 0x9c, 'p 114-13 c'), + RgbInt8Color.rgbName(0x40, 0x7b, 0xa1, '2150 xgc'), + RgbInt8Color.rgbName(0x41, 0x74, 0x9b, '7691 up'), + RgbInt8Color.rgbName(0x3e, 0x83, 0xa7, 'p 114-5 c'), + RgbInt8Color.rgbName(0x3d, 0x91, 0xbf, 'p 112-14 u'), + RgbInt8Color.rgbName(0x44, 0x92, 0xc6, '7461 u'), + RgbInt8Color.rgbName(0x43, 0x92, 0xba, '2183 u'), + RgbInt8Color.rgbName(0x45, 0x93, 0xb4, 'p 117-5 c'), + RgbInt8Color.rgbName(0x5c, 0x7e, 0x28, '2279 xgc'), + RgbInt8Color.rgbName(0x5f, 0x87, 0x24, '8683 c'), + RgbInt8Color.rgbName(0x42, 0x80, 0x55, 'p 149-7 u'), + RgbInt8Color.rgbName(0x3d, 0x8c, 0x56, 'p 142-15 u'), + RgbInt8Color.rgbName(0x42, 0x87, 0x57, 'p 151-16 u'), + RgbInt8Color.rgbName(0x46, 0x82, 0x5f, 'p 134-7 u'), + RgbInt8Color.rgbName(0x44, 0x7e, 0x5d, 'p 137-15 u'), + RgbInt8Color.rgbName(0x40, 0x87, 0x62, 'p 137-7 u'), + RgbInt8Color.rgbName(0x46, 0x81, 0x5f, 'p 146-15 u'), + RgbInt8Color.rgbName(0x42, 0x7c, 0x66, '3425 up'), + RgbInt8Color.rgbName(0x3e, 0x8c, 0x63, '348 up'), + RgbInt8Color.rgbName(0x44, 0x85, 0x62, '356 up'), + RgbInt8Color.rgbName(0x40, 0x87, 0x6d, '3415 up'), + RgbInt8Color.rgbName(0x43, 0x7d, 0x70, '568 up'), + RgbInt8Color.rgbName(0x41, 0x81, 0x73, 'p 128-14 u'), + RgbInt8Color.rgbName(0x43, 0x80, 0x70, 'p 131-13 u'), + RgbInt8Color.rgbName(0x43, 0x80, 0x7a, '562 u'), + RgbInt8Color.rgbName(0x45, 0x80, 0x75, '568 u'), + RgbInt8Color.rgbName(0x3f, 0x89, 0x8b, 'p 126-4 c'), + RgbInt8Color.rgbName(0x43, 0x85, 0x9a, '2209 cp'), + RgbInt8Color.rgbName(0x44, 0x81, 0x91, 'p 120-6 u'), + RgbInt8Color.rgbName(0x43, 0x83, 0xa0, 'p 117-6 u'), + RgbInt8Color.rgbName(0x46, 0x99, 0xc5, '2170 cp'), + RgbInt8Color.rgbName(0x46, 0x98, 0xcb, '7688 c'), + RgbInt8Color.rgbName(0x40, 0x9c, 0xc0, 'p 116-13 c'), + RgbInt8Color.rgbName(0x42, 0x98, 0xb5, '7459 c'), + RgbInt8Color.rgbName(0x46, 0x99, 0xb9, '7459 xgc'), + RgbInt8Color.rgbName(0x44, 0x9e, 0xd1, '7688 xgc'), + RgbInt8Color.rgbName(0x46, 0xa0, 0xbf, '7703 u'), + RgbInt8Color.rgbName(0x3e, 0x9e, 0xb7, 'p 118-14 u'), + RgbInt8Color.rgbName(0x5b, 0x8e, 0xdb, '279 u'), + RgbInt8Color.rgbName(0x5b, 0x8d, 0x2d, 'p 155-8 c'), + RgbInt8Color.rgbName(0x46, 0x92, 0x53, '2258 u'), + RgbInt8Color.rgbName(0x44, 0x91, 0x58, '10302 c'), + RgbInt8Color.rgbName(0x45, 0x90, 0x5b, '2258 up'), + RgbInt8Color.rgbName(0x41, 0x8f, 0x5e, 'p 139-15 u'), + RgbInt8Color.rgbName(0x3f, 0x8e, 0x66, 'p 133-16 u'), + RgbInt8Color.rgbName(0x42, 0x8f, 0x61, 'p 136-15 u'), + RgbInt8Color.rgbName(0x3e, 0x9c, 0x5d, 'p 142-7 u'), + RgbInt8Color.rgbName(0x43, 0x89, 0x62, 'p 146-7 u'), + RgbInt8Color.rgbName(0x44, 0x8f, 0x69, 'p 137-14 c'), + RgbInt8Color.rgbName(0x40, 0x8c, 0x7b, 'p 128-6 u'), + RgbInt8Color.rgbName(0x42, 0x8d, 0x76, 'p 134-14 c'), + RgbInt8Color.rgbName(0x46, 0x8c, 0x79, 'p 131-5 u'), + RgbInt8Color.rgbName(0x41, 0x96, 0x83, '2243 u'), + RgbInt8Color.rgbName(0x43, 0x93, 0x84, '569 up'), + RgbInt8Color.rgbName(0x3e, 0x8e, 0x8b, '7717 u'), + RgbInt8Color.rgbName(0x40, 0x96, 0x81, 'p 130-13 u'), + RgbInt8Color.rgbName(0x40, 0x95, 0x80, 'p 131-13 c'), + RgbInt8Color.rgbName(0x45, 0x8a, 0x94, '7474 u'), + RgbInt8Color.rgbName(0x46, 0x88, 0xa0, '2209 xgc'), + RgbInt8Color.rgbName(0x3d, 0x8e, 0xa6, 'p 120-5 c'), + RgbInt8Color.rgbName(0x40, 0x8d, 0xae, '2183 up'), + RgbInt8Color.rgbName(0x46, 0x8d, 0xab, 'p 117-13 c'), + RgbInt8Color.rgbName(0x3e, 0xa5, 0xd0, 'p 115-14 u'), + RgbInt8Color.rgbName(0x45, 0xa9, 0xc7, '2200 u'), + RgbInt8Color.rgbName(0x40, 0xaa, 0xb8, '7710 u'), + RgbInt8Color.rgbName(0x45, 0x95, 0x79, '7725 up'), + RgbInt8Color.rgbName(0x46, 0x9a, 0x6e, 'p 137-6 c'), + RgbInt8Color.rgbName(0x43, 0x93, 0x86, '2456 up'), + RgbInt8Color.rgbName(0x41, 0x97, 0x8d, '8283 c'), + RgbInt8Color.rgbName(0x44, 0x9d, 0x82, 'p 131-5 c'), + RgbInt8Color.rgbName(0x3d, 0xa5, 0x8c, '3278 up'), + RgbInt8Color.rgbName(0x3f, 0xa2, 0x94, '7473 cp'), + RgbInt8Color.rgbName(0x42, 0x9c, 0x92, 'p 124-14 u'), + RgbInt8Color.rgbName(0x43, 0x95, 0xa2, '2220 cp'), + RgbInt8Color.rgbName(0x40, 0x97, 0xa6, '2220 xgc'), + RgbInt8Color.rgbName(0x46, 0x94, 0xaf, '10276 c'), + RgbInt8Color.rgbName(0x3f, 0xa8, 0xb3, 'p 121-13 c'), + RgbInt8Color.rgbName(0x5f, 0x9b, 0x38, 'p 154-16 c'), + RgbInt8Color.rgbName(0x42, 0xa9, 0x96, '2401 xgc'), + RgbInt8Color.rgbName(0x41, 0xa9, 0x9c, 'p 124-6 u'), + RgbInt8Color.rgbName(0x45, 0xae, 0xb1, '7467 up'), + RgbInt8Color.rgbName(0x55, 0x9f, 0xd8, '2171 xgc'), + RgbInt8Color.rgbName(0x4e, 0xae, 0xdf, '2190 up'), + RgbInt8Color.rgbName(0x51, 0x9f, 0xd4, '2925 up'), + RgbInt8Color.rgbName(0x45, 0xaf, 0x99, '2240 cp'), + RgbInt8Color.rgbName(0x5e, 0x88, 0x32, '8684 c'), + RgbInt8Color.rgbName(0x5b, 0xb5, 0xe3, '2190 xgc'), + RgbInt8Color.rgbName(0x64, 0xb3, 0xe8, '2915 u'), + RgbInt8Color.rgbName(0x62, 0xb5, 0xe5, '2915 c'), + RgbInt8Color.rgbName(0x78, 0xaa, 0x0, '2294 c'), + RgbInt8Color.rgbName(0x4a, 0xaf, 0xbc, '7710 up'), + RgbInt8Color.rgbName(0x78, 0xbe, 0x20, '368 c'), + RgbInt8Color.rgbName(0x77, 0xc0, 0x2c, '368 xgc'), + RgbInt8Color.rgbName(0x73, 0xc9, 0x2d, '375 u'), + RgbInt8Color.rgbName(0x49, 0xa4, 0x71, 'p 136-6 u'), + RgbInt8Color.rgbName(0x61, 0xc6, 0x80, '2256 u'), + RgbInt8Color.rgbName(0x4e, 0xb1, 0x8e, '2413 u'), + RgbInt8Color.rgbName(0x5e, 0xc3, 0xd6, '2198 xgc'), + RgbInt8Color.rgbName(0x60, 0xc2, 0xe0, '2985 cp'), + RgbInt8Color.rgbName(0x64, 0xc2, 0xe4, '2985 xgc'), + RgbInt8Color.rgbName(0x76, 0xad, 0x1f, '2294 xgc'), + RgbInt8Color.rgbName(0x5e, 0xcf, 0xa7, '3385 xgc'), + RgbInt8Color.rgbName(0x62, 0xcb, 0xb2, '3248 xgc'), + RgbInt8Color.rgbName(0x64, 0xcc, 0xc9, '325 c'), + RgbInt8Color.rgbName(0x64, 0xda, 0xa1, '2412 u'), + RgbInt8Color.rgbName(0x5f, 0xe0, 0xb7, '3375 u'), + RgbInt8Color.rgbName(0x72, 0xb4, 0x31, '369 cp'), + RgbInt8Color.rgbName(0x78, 0xd6, 0x4b, '7488 c'), + RgbInt8Color.rgbName(0x51, 0xac, 0x84, '3405 up'), + RgbInt8Color.rgbName(0x62, 0xcc, 0xae, '338 xgc'), + RgbInt8Color.rgbName(0x78, 0xbf, 0x3a, '3561 u'), + RgbInt8Color.rgbName(0x70, 0xab, 0x37, '376 u'), + RgbInt8Color.rgbName(0x74, 0xaa, 0x50, '7489 c'), + RgbInt8Color.rgbName(0x74, 0xaa, 0x35, '7737 cp'), + RgbInt8Color.rgbName(0x73, 0xaa, 0x41, '7737 xgc'), + RgbInt8Color.rgbName(0x72, 0xa4, 0x44, 'p 154-15 c'), + RgbInt8Color.rgbName(0x72, 0xc9, 0x51, '360 xgc'), + RgbInt8Color.rgbName(0x5b, 0xb7, 0x90, 'p 136-5 c'), + RgbInt8Color.rgbName(0x5b, 0xbe, 0xc4, '2227 xgc'), + RgbInt8Color.rgbName(0x5d, 0xb9, 0xd2, '638 up'), + RgbInt8Color.rgbName(0x62, 0xc0, 0xcb, '2227 u'), + RgbInt8Color.rgbName(0x62, 0xc2, 0xb1, '570 u'), + RgbInt8Color.rgbName(0x70, 0xd9, 0xe5, '2225 u'), + RgbInt8Color.rgbName(0x68, 0xd2, 0xdf, '3105 c'), + RgbInt8Color.rgbName(0x74, 0xd1, 0xea, 'blue 0821 c'), + RgbInt8Color.rgbName(0x47, 0x24, 0x26, '2449 c'), + RgbInt8Color.rgbName(0x4f, 0x2c, 0x1d, '4625 c'), + RgbInt8Color.rgbName(0x4e, 0x2b, 0x1f, '7596 cp'), + RgbInt8Color.rgbName(0x48, 0x29, 0x60, '2627 cp'), + RgbInt8Color.rgbName(0x4c, 0x2a, 0x70, 'p 96-16 c'), + RgbInt8Color.rgbName(0x7f, 0x35, 0xb2, '2084 c'), + RgbInt8Color.rgbName(0x79, 0x45, 0xac, '2084 xgc'), + RgbInt8Color.rgbName(0x82, 0x46, 0xaf, '2587 c'), + RgbInt8Color.rgbName(0x7e, 0x4b, 0xb0, '266 xgc'), + RgbInt8Color.rgbName(0x80, 0x31, 0xa7, '527 c'), + RgbInt8Color.rgbName(0x7e, 0x40, 0xa0, '527 xgc'), + RgbInt8Color.rgbName(0x50, 0x23, 0x52, 'p 92-16 c'), + RgbInt8Color.rgbName(0x65, 0x3d, 0x91, '10218 c'), + RgbInt8Color.rgbName(0x6a, 0x45, 0x93, '266 cp'), + RgbInt8Color.rgbName(0x82, 0x5a, 0xa4, '2597 u'), + RgbInt8Color.rgbName(0x7d, 0x55, 0xc7, '2665 c'), + RgbInt8Color.rgbName(0x4d, 0x29, 0x62, 'p 94-16 c'), + RgbInt8Color.rgbName(0x4e, 0x29, 0x60, '8803 c'), + RgbInt8Color.rgbName(0x82, 0x5d, 0xc7, '2088 c'), + RgbInt8Color.rgbName(0x81, 0x5f, 0xb8, '2088 xgc'), + RgbInt8Color.rgbName(0x7b, 0x61, 0xbb, '2089 u'), + RgbInt8Color.rgbName(0x7e, 0x5d, 0xb5, '2665 xgc'), + RgbInt8Color.rgbName(0x7f, 0x5d, 0xae, '267 u'), + RgbInt8Color.rgbName(0x7b, 0x5e, 0xc6, '814 u'), + RgbInt8Color.rgbName(0x4e, 0x35, 0x24, '2322 c'), + RgbInt8Color.rgbName(0x4d, 0x35, 0x26, '2322 xgc'), + RgbInt8Color.rgbName(0x67, 0x6c, 0xc4, '2125 u'), + RgbInt8Color.rgbName(0x4e, 0x43, 0x28, '448 cp'), + RgbInt8Color.rgbName(0x52, 0x33, 0x1b, '2472 cp'), + RgbInt8Color.rgbName(0x3c, 0x35, 0x33, '440 xgc'), + RgbInt8Color.rgbName(0x42, 0x31, 0x34, 'black 5 xgc'), + RgbInt8Color.rgbName(0x3d, 0x3a, 0x3e, '8602 c'), + RgbInt8Color.rgbName(0x42, 0x32, 0x38, 'black 5 cp'), + RgbInt8Color.rgbName(0x44, 0x3f, 0x73, 'p 100-15 c'), + RgbInt8Color.rgbName(0x48, 0x4f, 0x8c, '2748 u'), + RgbInt8Color.rgbName(0x47, 0x37, 0x29, '7533 c'), + RgbInt8Color.rgbName(0x49, 0x3b, 0x29, '7533 cp'), + RgbInt8Color.rgbName(0x47, 0x3b, 0x2d, '7554 cp'), + RgbInt8Color.rgbName(0x3d, 0x39, 0x35, 'black 7 c'), + RgbInt8Color.rgbName(0x4a, 0x41, 0x2a, '448 c'), + RgbInt8Color.rgbName(0x4b, 0x3d, 0x2a, '7554 c'), + RgbInt8Color.rgbName(0x3d, 0x3c, 0x38, 'black 7 xgc'), + RgbInt8Color.rgbName(0x3d, 0x38, 0x36, '440 cp'), + RgbInt8Color.rgbName(0x43, 0x3d, 0x37, '8624 c'), + RgbInt8Color.rgbName(0x4b, 0x42, 0x2a, '448 xgc'), + RgbInt8Color.rgbName(0x52, 0x47, 0x27, '449 c'), + RgbInt8Color.rgbName(0x51, 0x45, 0x26, '449 xgc'), + RgbInt8Color.rgbName(0x50, 0x42, 0x2d, '7554 xgc'), + RgbInt8Color.rgbName(0x43, 0x40, 0x3d, '10398 c'), + RgbInt8Color.rgbName(0x44, 0x46, 0x42, '447 cp'), + RgbInt8Color.rgbName(0x41, 0x47, 0x4b, '10393 c'), + RgbInt8Color.rgbName(0x47, 0x46, 0x46, 'p 172-16 c'), + RgbInt8Color.rgbName(0x46, 0x46, 0x47, 'p 173-16 c'), + RgbInt8Color.rgbName(0x47, 0x46, 0x47, 'p 179-14 c'), + RgbInt8Color.rgbName(0x43, 0x4c, 0x5c, '2379 xgc'), + RgbInt8Color.rgbName(0x41, 0x4e, 0x67, '2378 xgc'), + RgbInt8Color.rgbName(0x43, 0x49, 0x67, '282 u'), + RgbInt8Color.rgbName(0x48, 0x44, 0x65, '5265 xgc'), + RgbInt8Color.rgbName(0x4c, 0x48, 0x77, 'p 103-14 c'), + RgbInt8Color.rgbName(0x46, 0x4e, 0x7e, '2111 c'), + RgbInt8Color.rgbName(0x45, 0x4f, 0x7e, '2757 u'), + RgbInt8Color.rgbName(0x4c, 0x64, 0x97, '2388 up'), + RgbInt8Color.rgbName(0x4d, 0x61, 0x97, '662 up'), + RgbInt8Color.rgbName(0x67, 0x7b, 0xcf, '2130 u'), + RgbInt8Color.rgbName(0x4b, 0x82, 0xbc, 'p 106-6 c'), + RgbInt8Color.rgbName(0x69, 0x80, 0xc5, '2130 xgc'), + RgbInt8Color.rgbName(0x65, 0x82, 0xbe, '2727 cp'), + RgbInt8Color.rgbName(0x52, 0x4b, 0x2b, '7771 cp'), + RgbInt8Color.rgbName(0x4e, 0x36, 0x29, '476 c'), + RgbInt8Color.rgbName(0x4f, 0x39, 0x2d, '476 xgc'), + RgbInt8Color.rgbName(0x4d, 0x4a, 0x32, '7771 xgc'), + RgbInt8Color.rgbName(0x45, 0x4e, 0x42, 'p 177-16 c'), + RgbInt8Color.rgbName(0x3f, 0x4d, 0x54, '2217 up'), + RgbInt8Color.rgbName(0x41, 0x53, 0x52, '2466 up'), + RgbInt8Color.rgbName(0x45, 0x54, 0x4f, 'p 175-15 c'), + RgbInt8Color.rgbName(0x45, 0x4c, 0x4e, 'p 176-14 c'), + RgbInt8Color.rgbName(0x43, 0x50, 0x60, '296 u'), + RgbInt8Color.rgbName(0x46, 0x50, 0x58, '546 u'), + RgbInt8Color.rgbName(0x46, 0x4f, 0x68, '2378 cp'), + RgbInt8Color.rgbName(0x43, 0x4f, 0x69, '289 u'), + RgbInt8Color.rgbName(0x3f, 0x56, 0x66, '303 u'), + RgbInt8Color.rgbName(0x46, 0x50, 0x62, '539 u'), + RgbInt8Color.rgbName(0x41, 0x58, 0x66, '547 u'), + RgbInt8Color.rgbName(0x42, 0x55, 0x63, '7545 c'), + RgbInt8Color.rgbName(0x41, 0x54, 0x63, '7545 xgc'), + RgbInt8Color.rgbName(0x46, 0x4d, 0x62, 'p 108-8 u'), + RgbInt8Color.rgbName(0x43, 0x52, 0x64, 'p 111-16 u'), + RgbInt8Color.rgbName(0x4a, 0x4e, 0x6d, '2768 u'), + RgbInt8Color.rgbName(0x4a, 0x4d, 0x6e, 'p 105-8 u'), + RgbInt8Color.rgbName(0x48, 0x53, 0x6d, 'p 107-16 u'), + RgbInt8Color.rgbName(0x48, 0x4d, 0x7a, '2758 u'), + RgbInt8Color.rgbName(0x4a, 0x6a, 0xa3, '10246 c'), + RgbInt8Color.rgbName(0x4f, 0x6b, 0xa2, '286 up'), + RgbInt8Color.rgbName(0x6a, 0x87, 0xd8, '2718 u'), + RgbInt8Color.rgbName(0x61, 0x88, 0xc9, '2727 xgc'), + RgbInt8Color.rgbName(0x62, 0x57, 0x1d, '3995 cp'), + RgbInt8Color.rgbName(0x62, 0x5d, 0x20, '581 c'), + RgbInt8Color.rgbName(0x65, 0x5f, 0x1c, '581 cp'), + RgbInt8Color.rgbName(0x47, 0x5e, 0x49, 'p 156-16 u'), + RgbInt8Color.rgbName(0x45, 0x5e, 0x4d, 'p 135-16 u'), + RgbInt8Color.rgbName(0x43, 0x57, 0x5e, '2217 u'), + RgbInt8Color.rgbName(0x45, 0x5d, 0x58, '627 u'), + RgbInt8Color.rgbName(0x44, 0x58, 0x68, '2189 u'), + RgbInt8Color.rgbName(0x45, 0x5b, 0x66, '3035 up'), + RgbInt8Color.rgbName(0x42, 0x5c, 0x65, '309 up'), + RgbInt8Color.rgbName(0x42, 0x5e, 0x67, '316 up'), + RgbInt8Color.rgbName(0x45, 0x5d, 0x6b, '303 up'), + RgbInt8Color.rgbName(0x48, 0x5a, 0x6a, '547 up'), + RgbInt8Color.rgbName(0x42, 0x5a, 0x73, 'p 111-8 u'), + RgbInt8Color.rgbName(0x42, 0x61, 0x76, '2377 cp'), + RgbInt8Color.rgbName(0x44, 0x5c, 0x79, '295 up'), + RgbInt8Color.rgbName(0x45, 0x5e, 0x78, '2955 up'), + RgbInt8Color.rgbName(0x42, 0x62, 0x7a, '302 up'), + RgbInt8Color.rgbName(0x43, 0x62, 0x89, '294 up'), + RgbInt8Color.rgbName(0x44, 0x61, 0x8b, 'p 106-16 u'), + RgbInt8Color.rgbName(0x5f, 0x8d, 0xda, '2129 c'), + RgbInt8Color.rgbName(0x5e, 0x93, 0xdb, '2381 c'), + RgbInt8Color.rgbName(0x68, 0x6f, 0x12, '2307 c'), + RgbInt8Color.rgbName(0x68, 0x71, 0x13, '2307 xgc'), + RgbInt8Color.rgbName(0x4e, 0x49, 0x34, '7771 c'), + RgbInt8Color.rgbName(0x4d, 0x62, 0x40, '2409 cp'), + RgbInt8Color.rgbName(0x45, 0x68, 0x4a, 'p 141-16 u'), + RgbInt8Color.rgbName(0x4e, 0x65, 0x48, '2409 c'), + RgbInt8Color.rgbName(0x4b, 0x62, 0x4b, '2411 u'), + RgbInt8Color.rgbName(0x47, 0x66, 0x4d, 'p 138-16 u'), + RgbInt8Color.rgbName(0x49, 0x61, 0x4d, '2411 up'), + RgbInt8Color.rgbName(0x46, 0x63, 0x58, '3308 up'), + RgbInt8Color.rgbName(0x48, 0x67, 0x54, 'p 135-15 u'), + RgbInt8Color.rgbName(0x48, 0x68, 0x4e, 'p 153-15 u'), + RgbInt8Color.rgbName(0x41, 0x61, 0x5f, '3302 u'), + RgbInt8Color.rgbName(0x46, 0x67, 0x5e, '3305 up'), + RgbInt8Color.rgbName(0x48, 0x61, 0x5b, '3308 u'), + RgbInt8Color.rgbName(0x48, 0x65, 0x5b, '343 u'), + RgbInt8Color.rgbName(0x44, 0x68, 0x5a, '343 up'), + RgbInt8Color.rgbName(0x43, 0x62, 0x5c, '5477 cp'), + RgbInt8Color.rgbName(0x43, 0x69, 0x5b, '5545 c'), + RgbInt8Color.rgbName(0x4a, 0x63, 0x5d, '567 u'), + RgbInt8Color.rgbName(0x45, 0x68, 0x5e, '8740 c'), + RgbInt8Color.rgbName(0x46, 0x69, 0x64, '3305 u'), + RgbInt8Color.rgbName(0x41, 0x6a, 0x67, '7722 up'), + RgbInt8Color.rgbName(0x44, 0x61, 0x67, '8502 c'), + RgbInt8Color.rgbName(0x44, 0x61, 0x71, '548 up'), + RgbInt8Color.rgbName(0x43, 0x66, 0x7c, '10266 c'), + RgbInt8Color.rgbName(0x47, 0x65, 0x7b, '2210 u'), + RgbInt8Color.rgbName(0x43, 0x64, 0x7b, 'p 114-15 u'), + RgbInt8Color.rgbName(0x47, 0x64, 0x83, '7693 up'), + RgbInt8Color.rgbName(0x49, 0x65, 0x82, 'p 111-7 u'), + RgbInt8Color.rgbName(0x46, 0x63, 0x8b, '2154 up'), + RgbInt8Color.rgbName(0x44, 0x67, 0x92, '2945 up'), + RgbInt8Color.rgbName(0x45, 0x6a, 0x8d, '7692 up'), + RgbInt8Color.rgbName(0x49, 0x64, 0x88, 'p 108-14 c'), + RgbInt8Color.rgbName(0x4c, 0x68, 0x9f, '287 up'), + RgbInt8Color.rgbName(0x4b, 0x7e, 0xaa, 'p 109-15 u'), + RgbInt8Color.rgbName(0x6b, 0x6a, 0x1a, 'p 168-16 c'), + RgbInt8Color.rgbName(0x49, 0x6e, 0x40, '7743 xgc'), + RgbInt8Color.rgbName(0x48, 0x76, 0x42, 'p 150-14 c'), + RgbInt8Color.rgbName(0x4c, 0x69, 0x49, '2409 xgc'), + RgbInt8Color.rgbName(0x47, 0x72, 0x4b, '2427 u'), + RgbInt8Color.rgbName(0x47, 0x75, 0x4b, '2427 up'), + RgbInt8Color.rgbName(0x47, 0x6b, 0x4d, 'p 144-15 u'), + RgbInt8Color.rgbName(0x4a, 0x76, 0x43, 'p 153-14 c'), + RgbInt8Color.rgbName(0x48, 0x73, 0x51, 'p 144-7 u'), + RgbInt8Color.rgbName(0x48, 0x6d, 0x53, 'p 147-14 u'), + RgbInt8Color.rgbName(0x4c, 0x6e, 0x51, 'p 150-14 u'), + RgbInt8Color.rgbName(0x47, 0x72, 0x58, '349 u'), + RgbInt8Color.rgbName(0x44, 0x6b, 0x5d, '5545 xgc'), + RgbInt8Color.rgbName(0x45, 0x6e, 0x60, '7484 u'), + RgbInt8Color.rgbName(0x47, 0x70, 0x59, 'p 135-7 u'), + RgbInt8Color.rgbName(0x46, 0x6d, 0x69, '561 u'), + RgbInt8Color.rgbName(0x48, 0x6f, 0x67, '7729 u'), + RgbInt8Color.rgbName(0x43, 0x72, 0x6f, '7721 up'), + RgbInt8Color.rgbName(0x45, 0x6b, 0x7d, '7708 u'), + RgbInt8Color.rgbName(0x46, 0x6d, 0x87, '2152 up'), + RgbInt8Color.rgbName(0x43, 0x71, 0x7f, '7470 up'), + RgbInt8Color.rgbName(0x49, 0x6b, 0x80, '7701 u'), + RgbInt8Color.rgbName(0x48, 0x6d, 0x87, '5405 cp'), + RgbInt8Color.rgbName(0x46, 0x74, 0x8a, '7701 up'), + RgbInt8Color.rgbName(0x46, 0x6e, 0x8f, 'p 110-15 u'), + RgbInt8Color.rgbName(0x4d, 0x6e, 0x97, '2139 xgc'), + RgbInt8Color.rgbName(0x46, 0x71, 0x98, '7691 u'), + RgbInt8Color.rgbName(0x46, 0x6d, 0x99, 'p 107-13 c'), + RgbInt8Color.rgbName(0x4c, 0x6f, 0xa4, '2145 up'), + RgbInt8Color.rgbName(0x5e, 0x7e, 0x29, '2279 c'), + RgbInt8Color.rgbName(0x5b, 0x79, 0x2f, '3508 c'), + RgbInt8Color.rgbName(0x6d, 0x7c, 0x1d, 'p 162-8 c'), + RgbInt8Color.rgbName(0x4a, 0x78, 0x4e, '2465 up'), + RgbInt8Color.rgbName(0x4b, 0x78, 0x51, '2408 cp'), + RgbInt8Color.rgbName(0x4a, 0x75, 0x4f, 'p 155-16 u'), + RgbInt8Color.rgbName(0x49, 0x7b, 0x55, '2408 c'), + RgbInt8Color.rgbName(0x4a, 0x73, 0x53, 'p 141-15 u'), + RgbInt8Color.rgbName(0x4b, 0x77, 0x53, 'p 141-7 u'), + RgbInt8Color.rgbName(0x47, 0x75, 0x55, 'p 147-6 u'), + RgbInt8Color.rgbName(0x47, 0x77, 0x5b, '349 up'), + RgbInt8Color.rgbName(0x4a, 0x76, 0x59, 'p 138-7 u'), + RgbInt8Color.rgbName(0x45, 0x79, 0x6c, 'p 132-5 u'), + RgbInt8Color.rgbName(0x48, 0x7a, 0x7b, '7475 c'), + RgbInt8Color.rgbName(0x48, 0x7a, 0x79, '7475 xgc'), + RgbInt8Color.rgbName(0x47, 0x76, 0x75, '7720 u'), + RgbInt8Color.rgbName(0x47, 0x7d, 0x84, '2223 up'), + RgbInt8Color.rgbName(0x46, 0x79, 0x86, 'p 120-14 u'), + RgbInt8Color.rgbName(0x47, 0x76, 0x91, '7698 cp'), + RgbInt8Color.rgbName(0x45, 0x76, 0x9c, 'p 110-7 u'), + RgbInt8Color.rgbName(0x4b, 0x7a, 0x97, 'p 114-6 u'), + RgbInt8Color.rgbName(0x48, 0x7a, 0x92, 'p 117-14 u'), + RgbInt8Color.rgbName(0x49, 0x7c, 0xa0, '2390 up'), + RgbInt8Color.rgbName(0x46, 0x7d, 0xa0, 'p 113-14 u'), + RgbInt8Color.rgbName(0x4b, 0x75, 0xa7, '10259 c'), + RgbInt8Color.rgbName(0x49, 0x8e, 0xc0, 'p 109-13 c'), + RgbInt8Color.rgbName(0x4e, 0x94, 0xc9, '2171 up'), + RgbInt8Color.rgbName(0x4b, 0x93, 0xb4, 'p 116-13 u'), + RgbInt8Color.rgbName(0x65, 0x8d, 0x1b, '370 c'), + RgbInt8Color.rgbName(0x4a, 0x8a, 0x43, '7741 xgc'), + RgbInt8Color.rgbName(0x50, 0x85, 0x41, 'p 152-15 c'), + RgbInt8Color.rgbName(0x48, 0x82, 0x51, '2259 u'), + RgbInt8Color.rgbName(0x47, 0x88, 0x4e, '8704 c'), + RgbInt8Color.rgbName(0x4c, 0x81, 0x52, 'p 144-13 c'), + RgbInt8Color.rgbName(0x4b, 0x83, 0x56, '2259 up'), + RgbInt8Color.rgbName(0x50, 0x7d, 0x4f, '2273 u'), + RgbInt8Color.rgbName(0x4a, 0x7f, 0x55, 'p 140-15 u'), + RgbInt8Color.rgbName(0x47, 0x87, 0x59, 'p 140-7 u'), + RgbInt8Color.rgbName(0x4c, 0x84, 0x57, 'p 141-5 c'), + RgbInt8Color.rgbName(0x4b, 0x7d, 0x56, 'p 143-15 u'), + RgbInt8Color.rgbName(0x48, 0x87, 0x57, 'p 143-7 u'), + RgbInt8Color.rgbName(0x49, 0x80, 0x60, '7733 up'), + RgbInt8Color.rgbName(0x4d, 0x85, 0x59, 'p 149-6 u'), + RgbInt8Color.rgbName(0x4c, 0x85, 0x58, 'p 152-7 u'), + RgbInt8Color.rgbName(0x49, 0x85, 0x64, '7732 u'), + RgbInt8Color.rgbName(0x47, 0x82, 0x72, 'p 132-13 c'), + RgbInt8Color.rgbName(0x4b, 0x81, 0x6e, 'p 135-13 c'), + RgbInt8Color.rgbName(0x4c, 0x85, 0x77, '2244 up'), + RgbInt8Color.rgbName(0x4b, 0x82, 0x7d, 'p 126-5 u'), + RgbInt8Color.rgbName(0x4b, 0x83, 0x88, '7475 cp'), + RgbInt8Color.rgbName(0x48, 0x83, 0x88, 'p 123-6 u'), + RgbInt8Color.rgbName(0x48, 0x87, 0x7f, 'p 125-14 u'), + RgbInt8Color.rgbName(0x47, 0x80, 0x91, '2223 u'), + RgbInt8Color.rgbName(0x48, 0x8b, 0x8c, 'p 122-14 u'), + RgbInt8Color.rgbName(0x48, 0x80, 0x9a, '2391 up'), + RgbInt8Color.rgbName(0x49, 0x86, 0xa0, '2209 c'), + RgbInt8Color.rgbName(0x4b, 0x84, 0xa1, '2391 u'), + RgbInt8Color.rgbName(0x48, 0x89, 0xa1, '8222 c'), + RgbInt8Color.rgbName(0x4b, 0x88, 0xac, '10270 c'), + RgbInt8Color.rgbName(0x4b, 0x82, 0xa8, '2149 c'), + RgbInt8Color.rgbName(0x4c, 0x7f, 0xa7, '7690 u'), + RgbInt8Color.rgbName(0x4c, 0x83, 0xac, '7690 up'), + RgbInt8Color.rgbName(0x50, 0x84, 0xab, 'p 110-13 c'), + RgbInt8Color.rgbName(0x48, 0x9a, 0xc5, '7689 cp'), + RgbInt8Color.rgbName(0x4c, 0x9f, 0xc8, '2389 c'), + RgbInt8Color.rgbName(0x4a, 0x9c, 0xc1, 'p 116-5 u'), + RgbInt8Color.rgbName(0x6a, 0x94, 0x1e, '370 xgc'), + RgbInt8Color.rgbName(0x4b, 0x8b, 0x55, 'p 154-16 u'), + RgbInt8Color.rgbName(0x4b, 0x8d, 0x59, '8705 c'), + RgbInt8Color.rgbName(0x48, 0x92, 0x5e, 'p 142-14 u'), + RgbInt8Color.rgbName(0x4e, 0x91, 0x5c, 'p 148-14 u'), + RgbInt8Color.rgbName(0x4f, 0x8e, 0x5a, 'p 151-15 u'), + RgbInt8Color.rgbName(0x4d, 0x92, 0x67, 'p 140-13 c'), + RgbInt8Color.rgbName(0x4c, 0x8b, 0x72, '8285 c'), + RgbInt8Color.rgbName(0x4d, 0x90, 0x6c, 'p 137-6 u'), + RgbInt8Color.rgbName(0x4a, 0x88, 0x70, 'p 138-5 c'), + RgbInt8Color.rgbName(0x4d, 0x8b, 0x7e, '562 up'), + RgbInt8Color.rgbName(0x4b, 0x8a, 0x76, 'p 135-5 c'), + RgbInt8Color.rgbName(0x47, 0x8b, 0x89, '2461 u'), + RgbInt8Color.rgbName(0x47, 0x90, 0x87, 'p 125-6 u'), + RgbInt8Color.rgbName(0x4e, 0x8e, 0x7f, 'p 132-4 c'), + RgbInt8Color.rgbName(0x4f, 0x8a, 0x8c, 'p 126-13 c'), + RgbInt8Color.rgbName(0x50, 0x8e, 0x96, '5483 cp'), + RgbInt8Color.rgbName(0x4a, 0x90, 0x95, '7474 up'), + RgbInt8Color.rgbName(0x4e, 0x8c, 0x9a, '8242 c'), + RgbInt8Color.rgbName(0x48, 0x94, 0x95, 'p 122-6 u'), + RgbInt8Color.rgbName(0x4e, 0x87, 0xa0, '7697 c'), + RgbInt8Color.rgbName(0x4a, 0x8e, 0xa1, 'p 119-13 u'), + RgbInt8Color.rgbName(0x4b, 0x95, 0xab, '2207 cp'), + RgbInt8Color.rgbName(0x47, 0x97, 0xa8, '2220 c'), + RgbInt8Color.rgbName(0x4a, 0x92, 0xae, '7459 up'), + RgbInt8Color.rgbName(0x4d, 0xa1, 0xce, 'p 112-13 c'), + RgbInt8Color.rgbName(0x48, 0xa9, 0xc5, '7702 c'), + RgbInt8Color.rgbName(0x50, 0xa4, 0xbf, '7703 up'), + RgbInt8Color.rgbName(0x6a, 0x95, 0x29, '370 cp'), + RgbInt8Color.rgbName(0x4a, 0x9b, 0x57, '2426 up'), + RgbInt8Color.rgbName(0x48, 0x9b, 0x56, 'p 145-14 c'), + RgbInt8Color.rgbName(0x50, 0x98, 0x56, 'p 143-5 c'), + RgbInt8Color.rgbName(0x4b, 0x95, 0x60, '7730 c'), + RgbInt8Color.rgbName(0x4d, 0x96, 0x62, '7730 xgc'), + RgbInt8Color.rgbName(0x4a, 0x95, 0x6d, 'p 133-15 u'), + RgbInt8Color.rgbName(0x4c, 0x97, 0x6c, 'p 136-14 u'), + RgbInt8Color.rgbName(0x4f, 0x98, 0x68, 'p 139-14 u'), + RgbInt8Color.rgbName(0x4e, 0x9b, 0x80, '7724 u'), + RgbInt8Color.rgbName(0x50, 0x9a, 0x7f, '7724 up'), + RgbInt8Color.rgbName(0x4d, 0x93, 0x89, 'p 129-5 c'), + RgbInt8Color.rgbName(0x4f, 0x97, 0x89, '2456 u'), + RgbInt8Color.rgbName(0x49, 0x99, 0x96, '7716 u'), + RgbInt8Color.rgbName(0x4e, 0x98, 0x96, 'p 125-13 c'), + RgbInt8Color.rgbName(0x4c, 0x9c, 0xa2, '10288 c'), + RgbInt8Color.rgbName(0x4f, 0x9a, 0xaf, 'p 119-5 u'), + RgbInt8Color.rgbName(0x49, 0x9f, 0xbc, '7459 cp'), + RgbInt8Color.rgbName(0x4f, 0xae, 0xca, '7702 xgc'), + RgbInt8Color.rgbName(0x4f, 0x9f, 0x60, 'p 151-7 u'), + RgbInt8Color.rgbName(0x4d, 0xa4, 0x7f, '2250 up'), + RgbInt8Color.rgbName(0x50, 0xa6, 0x84, '7723 c'), + RgbInt8Color.rgbName(0x4f, 0xa0, 0x8d, '2241 cp'), + RgbInt8Color.rgbName(0x4b, 0xa2, 0xa6, '2233 cp'), + RgbInt8Color.rgbName(0x4f, 0x9f, 0xa6, '2234 c'), + RgbInt8Color.rgbName(0x4e, 0xa1, 0xa6, '2234 xgc'), + RgbInt8Color.rgbName(0x50, 0xa1, 0x9f, 'p 125-5 c'), + RgbInt8Color.rgbName(0x4e, 0xad, 0xc7, '7702 cp'), + RgbInt8Color.rgbName(0x62, 0xa8, 0xe5, '292 u'), + RgbInt8Color.rgbName(0x4e, 0xaa, 0x99, '3275 up'), + RgbInt8Color.rgbName(0x50, 0xab, 0x9f, 'p 127-13 c'), + RgbInt8Color.rgbName(0x4e, 0xad, 0xa6, '326 up'), + RgbInt8Color.rgbName(0x58, 0xac, 0xdb, 'p 112-5 c'), + RgbInt8Color.rgbName(0x69, 0xb3, 0xe7, '292 c'), + RgbInt8Color.rgbName(0x79, 0xc0, 0x0, '3561 c'), + RgbInt8Color.rgbName(0x67, 0x82, 0x3a, '575 c'), + RgbInt8Color.rgbName(0x65, 0x82, 0x37, '575 cp'), + RgbInt8Color.rgbName(0x66, 0x92, 0x37, 'p 155-7 c'), + RgbInt8Color.rgbName(0x54, 0xa5, 0x66, 'p 142-6 u'), + RgbInt8Color.rgbName(0x53, 0xa5, 0x67, 'p 145-6 u'), + RgbInt8Color.rgbName(0x65, 0xc1, 0xde, '637 cp'), + RgbInt8Color.rgbName(0x7a, 0xcc, 0x0, '2286 c'), + RgbInt8Color.rgbName(0x7a, 0x9a, 0x1, '377 c'), + RgbInt8Color.rgbName(0x6d, 0xcf, 0x98, '346 xgc'), + RgbInt8Color.rgbName(0x6a, 0xa6, 0x54, '2424 up'), + RgbInt8Color.rgbName(0x52, 0xa5, 0x73, '347 up'), + RgbInt8Color.rgbName(0x59, 0xa9, 0x71, '354 up'), + RgbInt8Color.rgbName(0x67, 0xca, 0xb5, '570 xgc'), + RgbInt8Color.rgbName(0x6d, 0xd5, 0xc3, '936 c'), + RgbInt8Color.rgbName(0x7c, 0xb8, 0x2f, '368 cp'), + RgbInt8Color.rgbName(0x66, 0xaf, 0x74, 'p 142-5 u'), + RgbInt8Color.rgbName(0x5e, 0xac, 0x7b, '2249 xgc'), + RgbInt8Color.rgbName(0x5d, 0xac, 0x7d, 'p 136-5 u'), + RgbInt8Color.rgbName(0x60, 0xad, 0x7b, 'p 139-5 u'), + RgbInt8Color.rgbName(0x5e, 0xb0, 0x83, '7482 up'), + RgbInt8Color.rgbName(0x58, 0xaa, 0x83, '7723 cp'), + RgbInt8Color.rgbName(0x56, 0xaa, 0x85, 'p 136-13 c'), + RgbInt8Color.rgbName(0x66, 0xb9, 0x8d, '2248 xgc'), + RgbInt8Color.rgbName(0x55, 0xaf, 0x92, '2459 c'), + RgbInt8Color.rgbName(0x58, 0xb3, 0x9a, '2413 cp'), + RgbInt8Color.rgbName(0x6e, 0xcd, 0x9c, '345 u'), + RgbInt8Color.rgbName(0x51, 0xb2, 0xb5, '7466 up'), + RgbInt8Color.rgbName(0x6a, 0xce, 0xb9, '3248 u'), + RgbInt8Color.rgbName(0x79, 0xb3, 0x3f, '2287 cp'), + RgbInt8Color.rgbName(0x6c, 0xb4, 0x82, '7481 up'), + RgbInt8Color.rgbName(0x6d, 0xbb, 0x87, 'p 139-5 c'), + RgbInt8Color.rgbName(0x69, 0xb4, 0x8d, '2248 cp'), + RgbInt8Color.rgbName(0x5d, 0xba, 0xa9, '3265 cp'), + RgbInt8Color.rgbName(0x5b, 0xb6, 0xaa, 'p 127-5 c'), + RgbInt8Color.rgbName(0x6e, 0xce, 0xb2, '338 c'), + RgbInt8Color.rgbName(0x6b, 0xca, 0xba, '570 c'), + RgbInt8Color.rgbName(0x6c, 0xc5, 0xdd, '305 xgc'), + RgbInt8Color.rgbName(0x6c, 0xbb, 0xe3, '298 up'), + RgbInt8Color.rgbName(0x7c, 0xbb, 0x5a, '360 cp'), + RgbInt8Color.rgbName(0x82, 0xcc, 0x55, '7488 xgc'), + RgbInt8Color.rgbName(0x7c, 0xaf, 0x54, '7489 xgc'), + RgbInt8Color.rgbName(0x79, 0xd9, 0x7c, '2268 c'), + RgbInt8Color.rgbName(0x7c, 0xcc, 0x6c, '2269 c'), + RgbInt8Color.rgbName(0x71, 0xc9, 0x73, '2269 u'), + RgbInt8Color.rgbName(0x6d, 0xcd, 0xb8, '3248 c'), + RgbInt8Color.rgbName(0x66, 0xc0, 0xcc, 'p 121-5 c'), + RgbInt8Color.rgbName(0x6b, 0xc1, 0xcf, '3115 cp'), + RgbInt8Color.rgbName(0x74, 0xd2, 0xe7, '2197 c'), + RgbInt8Color.rgbName(0x58, 0x1b, 0x42, 'p 85-16 c'), + RgbInt8Color.rgbName(0x62, 0x12, 0x44, '2357 c'), + RgbInt8Color.rgbName(0x63, 0xe, 0x41, '2357 xgc'), + RgbInt8Color.rgbName(0x50, 0x2b, 0x3a, '7645 c'), + RgbInt8Color.rgbName(0x51, 0x2a, 0x44, '5115 c'), + RgbInt8Color.rgbName(0x4b, 0x30, 0x48, '518 c'), + RgbInt8Color.rgbName(0x48, 0x30, 0x41, '7449 xgc'), + RgbInt8Color.rgbName(0x54, 0x1f, 0x49, 'p 90-16 c'), + RgbInt8Color.rgbName(0x51, 0x28, 0x4f, '262 c'), + RgbInt8Color.rgbName(0x72, 0x0, 0x62, '2356 c'), + RgbInt8Color.rgbName(0x75, 0x0, 0x61, '2356 xgc'), + RgbInt8Color.rgbName(0x56, 0x25, 0x5c, '525 xgc'), + RgbInt8Color.rgbName(0x51, 0x2d, 0x6d, '269 c'), + RgbInt8Color.rgbName(0x54, 0x29, 0x6d, '269 xgc'), + RgbInt8Color.rgbName(0x53, 0x2c, 0x6c, 'p 94-8 c'), + RgbInt8Color.rgbName(0x55, 0x2b, 0x75, '2617 cp'), + RgbInt8Color.rgbName(0x52, 0x31, 0x78, '7680 c'), + RgbInt8Color.rgbName(0x53, 0x2e, 0x79, '7680 cp'), + RgbInt8Color.rgbName(0x52, 0x2d, 0x74, '7680 xgc'), + RgbInt8Color.rgbName(0x5b, 0x28, 0x7f, '268 xgc'), + RgbInt8Color.rgbName(0x51, 0x38, 0x81, '2091 cp'), + RgbInt8Color.rgbName(0x70, 0x20, 0x82, '2603 c'), + RgbInt8Color.rgbName(0x74, 0x31, 0x82, '2603 cp'), + RgbInt8Color.rgbName(0x73, 0x27, 0x83, '2603 xgc'), + RgbInt8Color.rgbName(0x77, 0x25, 0x83, '2612 c'), + RgbInt8Color.rgbName(0x70, 0x2f, 0x8a, '526 c'), + RgbInt8Color.rgbName(0x74, 0x3a, 0x8d, '526 cp'), + RgbInt8Color.rgbName(0x74, 0x30, 0x8c, '526 xgc'), + RgbInt8Color.rgbName(0x72, 0x3b, 0x86, 'p 93-7 c'), + RgbInt8Color.rgbName(0x87, 0x18, 0x9d, '2602 c'), + RgbInt8Color.rgbName(0x84, 0x32, 0x9b, '2593 c'), + RgbInt8Color.rgbName(0x85, 0x45, 0x9f, '3559 c'), + RgbInt8Color.rgbName(0x86, 0x59, 0xb5, '2076 c'), + RgbInt8Color.rgbName(0x85, 0x58, 0xb4, '2587 xgc'), + RgbInt8Color.rgbName(0x51, 0x2f, 0x2e, '497 c'), + RgbInt8Color.rgbName(0x57, 0x29, 0x32, '504 c'), + RgbInt8Color.rgbName(0x57, 0x2d, 0x2d, '7631 c'), + RgbInt8Color.rgbName(0x54, 0x30, 0x32, '7631 xgc'), + RgbInt8Color.rgbName(0x4a, 0x30, 0x41, '5185 c'), + RgbInt8Color.rgbName(0x49, 0x31, 0x40, '5185 cp'), + RgbInt8Color.rgbName(0x4f, 0x2f, 0x44, '518 cp'), + RgbInt8Color.rgbName(0x53, 0x2d, 0x4f, '262 xgc'), + RgbInt8Color.rgbName(0x57, 0x2a, 0x5d, '525 cp'), + RgbInt8Color.rgbName(0x52, 0x2f, 0x5b, 'p 95-15 c'), + RgbInt8Color.rgbName(0x51, 0x2e, 0x5f, 'p 98-7 c'), + RgbInt8Color.rgbName(0x52, 0x2d, 0x6a, '269 cp'), + RgbInt8Color.rgbName(0x51, 0x31, 0x66, 'p 97-15 c'), + RgbInt8Color.rgbName(0x59, 0x31, 0x7c, '268 cp'), + RgbInt8Color.rgbName(0x59, 0x30, 0x68, 'p 94-15 c'), + RgbInt8Color.rgbName(0x5a, 0x32, 0x65, 'p 95-7 c'), + RgbInt8Color.rgbName(0x87, 0x5b, 0xb6, '2076 xgc'), + RgbInt8Color.rgbName(0x8a, 0x5d, 0xb5, '2084 u'), + RgbInt8Color.rgbName(0x5a, 0x36, 0x24, '4695 cp'), + RgbInt8Color.rgbName(0x52, 0x34, 0x6e, '8804 c'), + RgbInt8Color.rgbName(0x55, 0x3a, 0x7f, '7679 xgc'), + RgbInt8Color.rgbName(0x53, 0x59, 0x9c, '2369 cp'), + RgbInt8Color.rgbName(0x5a, 0x45, 0x22, '7553 c'), + RgbInt8Color.rgbName(0x57, 0x2c, 0x5f, '525 c'), + RgbInt8Color.rgbName(0x56, 0x3d, 0x82, '7679 c'), + RgbInt8Color.rgbName(0x62, 0x34, 0x12, '732 c'), + RgbInt8Color.rgbName(0x65, 0x33, 0x12, '732 xgc'), + RgbInt8Color.rgbName(0x59, 0x4a, 0x25, '450 c'), + RgbInt8Color.rgbName(0x57, 0x48, 0x25, '450 xgc'), + RgbInt8Color.rgbName(0x45, 0x35, 0x36, '439 c'), + RgbInt8Color.rgbName(0x4f, 0x33, 0x32, '497 xgc'), + RgbInt8Color.rgbName(0x4a, 0x36, 0x44, '5185 xgc'), + RgbInt8Color.rgbName(0x51, 0x48, 0x87, '10236 c'), + RgbInt8Color.rgbName(0x56, 0x4c, 0x93, '2103 cp'), + RgbInt8Color.rgbName(0x53, 0x4b, 0x90, '7671 cp'), + RgbInt8Color.rgbName(0x52, 0x49, 0x89, '7672 xgc'), + RgbInt8Color.rgbName(0x56, 0x4e, 0x8e, '7671 xgc'), + RgbInt8Color.rgbName(0x5a, 0x4b, 0x91, '8164 c'), + RgbInt8Color.rgbName(0x60, 0x6e, 0xb2, '7456 c'), + RgbInt8Color.rgbName(0x59, 0x55, 0x28, '5815 xgc'), + RgbInt8Color.rgbName(0x51, 0x39, 0x2c, '7589 cp'), + RgbInt8Color.rgbName(0x45, 0x40, 0x3b, '8625 c'), + RgbInt8Color.rgbName(0x50, 0x41, 0x74, '3574 cp'), + RgbInt8Color.rgbName(0x57, 0x3e, 0x7a, '8805 c'), + RgbInt8Color.rgbName(0x58, 0x5a, 0x8c, '2110 xgc'), + RgbInt8Color.rgbName(0x56, 0x52, 0x94, '7670 c'), + RgbInt8Color.rgbName(0x59, 0x59, 0x9e, '7670 cp'), + RgbInt8Color.rgbName(0x6f, 0x77, 0xcc, '2124 u'), + RgbInt8Color.rgbName(0x6f, 0x70, 0xc1, '2124 xgc'), + RgbInt8Color.rgbName(0x72, 0x71, 0xc8, '2366 u'), + RgbInt8Color.rgbName(0x74, 0x72, 0xbe, '2366 xgc'), + RgbInt8Color.rgbName(0x74, 0x74, 0xc1, '272 c'), + RgbInt8Color.rgbName(0x73, 0x72, 0xc1, '272 xgc'), + RgbInt8Color.rgbName(0x4c, 0x44, 0x3d, '8405 c'), + RgbInt8Color.rgbName(0x46, 0x43, 0x3e, 'p 170-16 c'), + RgbInt8Color.rgbName(0x49, 0x48, 0x42, '2336 cp'), + RgbInt8Color.rgbName(0x46, 0x4d, 0x53, 'p 174-15 c'), + RgbInt8Color.rgbName(0x48, 0x4b, 0x58, '2379 cp'), + RgbInt8Color.rgbName(0x46, 0x4c, 0x59, '5395 u'), + RgbInt8Color.rgbName(0x4f, 0x46, 0x5c, 'p 100-16 u'), + RgbInt8Color.rgbName(0x48, 0x4a, 0x59, 'p 108-16 u'), + RgbInt8Color.rgbName(0x52, 0x49, 0x64, '2112 up'), + RgbInt8Color.rgbName(0x4a, 0x4c, 0x64, '2767 u'), + RgbInt8Color.rgbName(0x51, 0x48, 0x64, 'p 100-8 u'), + RgbInt8Color.rgbName(0x4a, 0x4b, 0x64, 'p 105-16 u'), + RgbInt8Color.rgbName(0x52, 0x4a, 0x6e, 'p 99-16 u'), + RgbInt8Color.rgbName(0x59, 0x5c, 0xa5, '2746 u'), + RgbInt8Color.rgbName(0x6f, 0x7b, 0xd4, '2124 c'), + RgbInt8Color.rgbName(0x5a, 0x7f, 0xbc, '2130 cp'), + RgbInt8Color.rgbName(0x71, 0x7a, 0xcf, '2726 u'), + RgbInt8Color.rgbName(0x61, 0x4f, 0x25, '4485 c'), + RgbInt8Color.rgbName(0x5c, 0x4e, 0x28, '450 cp'), + RgbInt8Color.rgbName(0x5f, 0x4b, 0x24, '7553 xgc'), + RgbInt8Color.rgbName(0x59, 0x4d, 0x30, '449 cp'), + RgbInt8Color.rgbName(0x5a, 0x4a, 0x2e, '7553 cp'), + RgbInt8Color.rgbName(0x53, 0x54, 0x35, '7764 c'), + RgbInt8Color.rgbName(0x4b, 0x4f, 0x43, 'p 178-16 c'), + RgbInt8Color.rgbName(0x48, 0x54, 0x53, '445 xgc'), + RgbInt8Color.rgbName(0x4c, 0x53, 0x51, '446 cp'), + RgbInt8Color.rgbName(0x4b, 0x4f, 0x54, '7540 c'), + RgbInt8Color.rgbName(0x4d, 0x4e, 0x4f, 'p 173-15 c'), + RgbInt8Color.rgbName(0x50, 0x51, 0x4f, 'p 175-16 u'), + RgbInt8Color.rgbName(0x4a, 0x52, 0x54, 'p 176-13 c'), + RgbInt8Color.rgbName(0x4f, 0x51, 0x51, 'p 176-15 u'), + RgbInt8Color.rgbName(0x4c, 0x53, 0x61, '2380 up'), + RgbInt8Color.rgbName(0x48, 0x53, 0x61, '296 up'), + RgbInt8Color.rgbName(0x4d, 0x52, 0x61, '5395 up'), + RgbInt8Color.rgbName(0x4a, 0x53, 0x69, 'p 108-15 u'), + RgbInt8Color.rgbName(0x4d, 0x55, 0x6c, '289 up'), + RgbInt8Color.rgbName(0x48, 0x57, 0x69, '2965 up'), + RgbInt8Color.rgbName(0x4d, 0x51, 0x73, '3581 up'), + RgbInt8Color.rgbName(0x4d, 0x54, 0x7a, 'p 104-16 u'), + RgbInt8Color.rgbName(0x49, 0x59, 0x7b, 'p 107-8 u'), + RgbInt8Color.rgbName(0x55, 0x4e, 0x80, '2372 u'), + RgbInt8Color.rgbName(0x4a, 0x5c, 0x85, '288 up'), + RgbInt8Color.rgbName(0x45, 0x60, 0x7e, '7694 up'), + RgbInt8Color.rgbName(0x55, 0x4d, 0x8a, '10237 c'), + RgbInt8Color.rgbName(0x46, 0x60, 0x88, '2154 u'), + RgbInt8Color.rgbName(0x53, 0x6c, 0xa4, '10254 c'), + RgbInt8Color.rgbName(0x77, 0x8b, 0xd9, '2123 u'), + RgbInt8Color.rgbName(0x59, 0x8b, 0xc0, '285 up'), + RgbInt8Color.rgbName(0x65, 0x8b, 0xcc, '660 u'), + RgbInt8Color.rgbName(0x6c, 0x57, 0x1b, '133 c'), + RgbInt8Color.rgbName(0x68, 0x5c, 0x20, '3995 c'), + RgbInt8Color.rgbName(0x6a, 0x5f, 0x1e, '3995 xgc'), + RgbInt8Color.rgbName(0x66, 0x58, 0x1e, '455 xgc'), + RgbInt8Color.rgbName(0x54, 0x3c, 0x2e, '476 cp'), + RgbInt8Color.rgbName(0x52, 0x42, 0x32, '8622 c'), + RgbInt8Color.rgbName(0x53, 0x61, 0x35, '574 xgc'), + RgbInt8Color.rgbName(0x58, 0x58, 0x34, '7764 cp'), + RgbInt8Color.rgbName(0x55, 0x56, 0x36, '7764 xgc'), + RgbInt8Color.rgbName(0x5a, 0x5c, 0x36, '7763 cp'), + RgbInt8Color.rgbName(0x4c, 0x56, 0x47, 'p 177-15 c'), + RgbInt8Color.rgbName(0x48, 0x59, 0x56, '5535 u'), + RgbInt8Color.rgbName(0x4b, 0x5d, 0x52, '5535 up'), + RgbInt8Color.rgbName(0x4c, 0x5c, 0x57, 'p 175-14 c'), + RgbInt8Color.rgbName(0x49, 0x58, 0x5e, '2216 up'), + RgbInt8Color.rgbName(0x49, 0x59, 0x5c, '5463 up'), + RgbInt8Color.rgbName(0x4b, 0x5e, 0x5b, '560 u'), + RgbInt8Color.rgbName(0x4d, 0x57, 0x59, 'p 176-12 c'), + RgbInt8Color.rgbName(0x46, 0x5f, 0x73, '2210 up'), + RgbInt8Color.rgbName(0x4d, 0x57, 0x70, 'p 108-7 u'), + RgbInt8Color.rgbName(0x4e, 0x5b, 0x73, '2376 c'), + RgbInt8Color.rgbName(0x4d, 0x5c, 0x73, '540 up'), + RgbInt8Color.rgbName(0x4c, 0x58, 0x75, 'p 107-15 u'), + RgbInt8Color.rgbName(0x4a, 0x5f, 0x75, 'p 111-15 u'), + RgbInt8Color.rgbName(0x51, 0x5d, 0x82, '2110 cp'), + RgbInt8Color.rgbName(0x4d, 0x5f, 0x80, '2374 c'), + RgbInt8Color.rgbName(0x4e, 0x5d, 0x7f, '655 u'), + RgbInt8Color.rgbName(0x4b, 0x5d, 0x7f, 'p 107-7 u'), + RgbInt8Color.rgbName(0x50, 0x5c, 0x87, '2747 up'), + RgbInt8Color.rgbName(0x51, 0x5b, 0x89, 'p 104-8 u'), + RgbInt8Color.rgbName(0x56, 0x70, 0xaf, '2125 cp'), + RgbInt8Color.rgbName(0x58, 0x70, 0xaa, '2133 u'), + RgbInt8Color.rgbName(0x67, 0x8e, 0xd9, '2381 u'), + RgbInt8Color.rgbName(0x71, 0x5e, 0x19, '133 xgc'), + RgbInt8Color.rgbName(0x6b, 0x66, 0x23, '581 xgc'), + RgbInt8Color.rgbName(0x4a, 0x69, 0x4d, 'p 156-8 u'), + RgbInt8Color.rgbName(0x54, 0x62, 0x48, 'p 159-16 u'), + RgbInt8Color.rgbName(0x47, 0x68, 0x57, '3537 u'), + RgbInt8Color.rgbName(0x4b, 0x67, 0x5b, '3435 u'), + RgbInt8Color.rgbName(0x4f, 0x63, 0x58, '560 up'), + RgbInt8Color.rgbName(0x4c, 0x68, 0x5f, '567 up'), + RgbInt8Color.rgbName(0x4e, 0x65, 0x5f, '627 up'), + RgbInt8Color.rgbName(0x4b, 0x5f, 0x67, '2215 up'), + RgbInt8Color.rgbName(0x4a, 0x64, 0x71, '2168 up'), + RgbInt8Color.rgbName(0x51, 0x65, 0x6f, '2182 up'), + RgbInt8Color.rgbName(0x4a, 0x6b, 0x6e, '7722 u'), + RgbInt8Color.rgbName(0x4d, 0x61, 0x79, '7694 u'), + RgbInt8Color.rgbName(0x4b, 0x62, 0x80, '541 up'), + RgbInt8Color.rgbName(0x4e, 0x62, 0x82, '648 u'), + RgbInt8Color.rgbName(0x50, 0x63, 0x84, '648 up'), + RgbInt8Color.rgbName(0x4d, 0x64, 0x80, '7693 u'), + RgbInt8Color.rgbName(0x46, 0x68, 0x90, '2384 up'), + RgbInt8Color.rgbName(0x4c, 0x6b, 0x8b, '7692 u'), + RgbInt8Color.rgbName(0x4d, 0x69, 0x95, '2139 c'), + RgbInt8Color.rgbName(0x53, 0x63, 0x95, 'p 105-6 c'), + RgbInt8Color.rgbName(0x4d, 0x69, 0x95, 'p 106-15 u'), + RgbInt8Color.rgbName(0x4e, 0x6a, 0x9d, '7686 up'), + RgbInt8Color.rgbName(0x53, 0x7b, 0xaf, '2144 up'), + RgbInt8Color.rgbName(0x66, 0x6d, 0x2a, 'p 165-15 c'), + RgbInt8Color.rgbName(0x52, 0x76, 0x3c, 'p 156-15 c'), + RgbInt8Color.rgbName(0x4f, 0x69, 0x4c, 'p 156-15 u'), + RgbInt8Color.rgbName(0x53, 0x6f, 0x4e, '10315 c'), + RgbInt8Color.rgbName(0x4e, 0x6e, 0x56, '8720 c'), + RgbInt8Color.rgbName(0x4b, 0x70, 0x57, 'p 138-15 u'), + RgbInt8Color.rgbName(0x4d, 0x72, 0x54, 'p 144-14 u'), + RgbInt8Color.rgbName(0x4b, 0x6c, 0x5d, '3435 up'), + RgbInt8Color.rgbName(0x51, 0x6e, 0x5a, '357 u'), + RgbInt8Color.rgbName(0x50, 0x6e, 0x58, '357 up'), + RgbInt8Color.rgbName(0x4e, 0x6e, 0x60, '5545 cp'), + RgbInt8Color.rgbName(0x4d, 0x70, 0x5c, 'p 135-14 u'), + RgbInt8Color.rgbName(0x4b, 0x74, 0x61, '7484 up'), + RgbInt8Color.rgbName(0x47, 0x72, 0x6b, 'p 129-14 u'), + RgbInt8Color.rgbName(0x48, 0x74, 0x68, 'p 132-13 u'), + RgbInt8Color.rgbName(0x49, 0x73, 0x75, '7721 u'), + RgbInt8Color.rgbName(0x49, 0x6b, 0x7e, '2166 cp'), + RgbInt8Color.rgbName(0x50, 0x6d, 0x85, '2167 c'), + RgbInt8Color.rgbName(0x4e, 0x70, 0x87, '5405 xgc'), + RgbInt8Color.rgbName(0x47, 0x73, 0x88, '7707 u'), + RgbInt8Color.rgbName(0x4e, 0x6c, 0x88, '2153 u'), + RgbInt8Color.rgbName(0x50, 0x6e, 0x89, '2153 up'), + RgbInt8Color.rgbName(0x4c, 0x6b, 0x91, 'p 108-6 c'), + RgbInt8Color.rgbName(0x4d, 0x72, 0x8b, 'p 114-14 u'), + RgbInt8Color.rgbName(0x4e, 0x75, 0x99, 'p 111-13 c'), + RgbInt8Color.rgbName(0x50, 0x74, 0xa2, '2383 u'), + RgbInt8Color.rgbName(0x4e, 0x71, 0x9e, '2383 up'), + RgbInt8Color.rgbName(0x53, 0x72, 0x9f, '8182 c'), + RgbInt8Color.rgbName(0x4e, 0x70, 0xa3, 'p 106-7 u'), + RgbInt8Color.rgbName(0x53, 0x71, 0xa7, '661 up'), + RgbInt8Color.rgbName(0x51, 0x83, 0xb8, '2172 up'), + RgbInt8Color.rgbName(0x58, 0x83, 0xb6, '2382 up'), + RgbInt8Color.rgbName(0x55, 0x88, 0xb5, '646 cp'), + RgbInt8Color.rgbName(0x59, 0x87, 0xb8, 'p 106-13 c'), + RgbInt8Color.rgbName(0x72, 0x7a, 0x21, 'p 165-8 c'), + RgbInt8Color.rgbName(0x58, 0x5c, 0x3b, '7763 c'), + RgbInt8Color.rgbName(0x5a, 0x5e, 0x3c, '7763 xgc'), + RgbInt8Color.rgbName(0x51, 0x7b, 0x41, '7742 xgc'), + RgbInt8Color.rgbName(0x58, 0x7d, 0x3f, '8702 c'), + RgbInt8Color.rgbName(0x57, 0x7e, 0x3e, 'p 156-7 c'), + RgbInt8Color.rgbName(0x4d, 0x7b, 0x54, '2273 up'), + RgbInt8Color.rgbName(0x4e, 0x77, 0x54, '2465 u'), + RgbInt8Color.rgbName(0x4d, 0x7a, 0x57, 'p 144-6 u'), + RgbInt8Color.rgbName(0x4b, 0x7b, 0x56, 'p 152-15 u'), + RgbInt8Color.rgbName(0x4f, 0x76, 0x54, 'p 153-7 u'), + RgbInt8Color.rgbName(0x4d, 0x7e, 0x58, '2408 xgc'), + RgbInt8Color.rgbName(0x4c, 0x74, 0x5e, '7734 up'), + RgbInt8Color.rgbName(0x49, 0x7b, 0x5f, 'p 134-15 u'), + RgbInt8Color.rgbName(0x53, 0x79, 0x5b, 'p 144-13 u'), + RgbInt8Color.rgbName(0x4d, 0x79, 0x6c, '561 up'), + RgbInt8Color.rgbName(0x4b, 0x7c, 0x63, '7733 u'), + RgbInt8Color.rgbName(0x4f, 0x7b, 0x63, 'p 135-6 u'), + RgbInt8Color.rgbName(0x4a, 0x79, 0x75, 'p 126-14 u'), + RgbInt8Color.rgbName(0x48, 0x7b, 0x71, 'p 129-6 u'), + RgbInt8Color.rgbName(0x52, 0x7a, 0x8a, '2179 c'), + RgbInt8Color.rgbName(0x52, 0x7a, 0x89, '2179 xgc'), + RgbInt8Color.rgbName(0x4f, 0x75, 0x8b, '5405 c'), + RgbInt8Color.rgbName(0x52, 0x77, 0x8e, '7700 up'), + RgbInt8Color.rgbName(0x4e, 0x76, 0x9c, '2159 c'), + RgbInt8Color.rgbName(0x4e, 0x7a, 0x99, '2159 cp'), + RgbInt8Color.rgbName(0x4f, 0x7a, 0x9e, '2159 xgc'), + RgbInt8Color.rgbName(0x4e, 0x7b, 0x98, '2454 u'), + RgbInt8Color.rgbName(0x53, 0x75, 0xa0, '2151 u'), + RgbInt8Color.rgbName(0x4f, 0x7c, 0xa3, 'p 111-5 c'), + RgbInt8Color.rgbName(0x54, 0x7a, 0xa8, 'p 107-4 c'), + RgbInt8Color.rgbName(0x56, 0x93, 0xc1, '7689 u'), + RgbInt8Color.rgbName(0x59, 0x90, 0xb9, 'p 110-5 c'), + RgbInt8Color.rgbName(0x51, 0x94, 0xbb, 'p 113-12 c'), + RgbInt8Color.rgbName(0x56, 0x90, 0xb5, 'p 113-5 u'), + RgbInt8Color.rgbName(0x5a, 0x92, 0xb4, 'p 114-4 c'), + RgbInt8Color.rgbName(0x76, 0x8c, 0x13, '7496 xgc'), + RgbInt8Color.rgbName(0x70, 0x8a, 0x1b, 'p 158-16 c'), + RgbInt8Color.rgbName(0x53, 0x85, 0x49, 'p 150-6 c'), + RgbInt8Color.rgbName(0x51, 0x81, 0x52, 'p 155-8 u'), + RgbInt8Color.rgbName(0x4e, 0x7e, 0x57, 'p 149-14 u'), + RgbInt8Color.rgbName(0x4e, 0x86, 0x67, 'p 137-14 u'), + RgbInt8Color.rgbName(0x4b, 0x81, 0x6a, 'p 138-13 c'), + RgbInt8Color.rgbName(0x54, 0x82, 0x65, 'p 138-6 u'), + RgbInt8Color.rgbName(0x50, 0x7f, 0x70, '625 c'), + RgbInt8Color.rgbName(0x50, 0x83, 0x72, '625 xgc'), + RgbInt8Color.rgbName(0x50, 0x81, 0x73, 'p 132-4 u'), + RgbInt8Color.rgbName(0x4d, 0x88, 0x6a, 'p 134-6 u'), + RgbInt8Color.rgbName(0x50, 0x87, 0x7b, '2244 u'), + RgbInt8Color.rgbName(0x50, 0x85, 0x90, '2212 c'), + RgbInt8Color.rgbName(0x51, 0x84, 0x8a, '2212 cp'), + RgbInt8Color.rgbName(0x4f, 0x82, 0x8e, '2212 xgc'), + RgbInt8Color.rgbName(0x4d, 0x86, 0x90, '2222 up'), + RgbInt8Color.rgbName(0x4f, 0x86, 0x8e, '5483 c'), + RgbInt8Color.rgbName(0x50, 0x87, 0x8e, '5483 xgc'), + RgbInt8Color.rgbName(0x50, 0x86, 0x97, '2178 cp'), + RgbInt8Color.rgbName(0x51, 0x82, 0x9e, '8202 c'), + RgbInt8Color.rgbName(0x50, 0x85, 0xa4, '2149 cp'), + RgbInt8Color.rgbName(0x59, 0x83, 0xa0, 'p 114-5 u'), + RgbInt8Color.rgbName(0x52, 0x84, 0xaa, '2390 u'), + RgbInt8Color.rgbName(0x55, 0x82, 0xa7, 'p 110-6 u'), + RgbInt8Color.rgbName(0x55, 0x88, 0xaa, 'p 113-13 u'), + RgbInt8Color.rgbName(0x51, 0x9e, 0xc5, '2389 cp'), + RgbInt8Color.rgbName(0x5a, 0x9d, 0xd0, 'p 109-5 c'), + RgbInt8Color.rgbName(0x58, 0x9c, 0xc6, 'p 112-13 u'), + RgbInt8Color.rgbName(0x5a, 0x9f, 0xc8, 'p 113-4 c'), + RgbInt8Color.rgbName(0x76, 0x88, 0x1d, '7496 c'), + RgbInt8Color.rgbName(0x78, 0x89, 0x20, '7496 cp'), + RgbInt8Color.rgbName(0x58, 0x8d, 0x4f, 'p 149-14 c'), + RgbInt8Color.rgbName(0x51, 0x8a, 0x59, 'p 144-5 c'), + RgbInt8Color.rgbName(0x55, 0x93, 0x4f, 'p 149-6 c'), + RgbInt8Color.rgbName(0x52, 0x86, 0x5e, 'p 140-14 u'), + RgbInt8Color.rgbName(0x52, 0x8e, 0x5f, 'p 143-6 u'), + RgbInt8Color.rgbName(0x56, 0x8f, 0x58, 'p 146-13 c'), + RgbInt8Color.rgbName(0x57, 0x8c, 0x5d, 'p 147-5 c'), + RgbInt8Color.rgbName(0x52, 0x8c, 0x68, '7732 up'), + RgbInt8Color.rgbName(0x53, 0x90, 0x62, 'p 140-6 u'), + RgbInt8Color.rgbName(0x52, 0x88, 0x62, 'p 146-14 u'), + RgbInt8Color.rgbName(0x53, 0x90, 0x65, 'p 146-6 u'), + RgbInt8Color.rgbName(0x52, 0x86, 0x6c, 'p 134-14 u'), + RgbInt8Color.rgbName(0x52, 0x8c, 0x81, '2462 cp'), + RgbInt8Color.rgbName(0x53, 0x8e, 0x7d, '8284 c'), + RgbInt8Color.rgbName(0x4f, 0x8b, 0x7d, 'p 128-13 u'), + RgbInt8Color.rgbName(0x53, 0x8b, 0x7a, 'p 131-12 u'), + RgbInt8Color.rgbName(0x50, 0x8b, 0x91, '2237 u'), + RgbInt8Color.rgbName(0x51, 0x89, 0x8d, '2237 up'), + RgbInt8Color.rgbName(0x52, 0x89, 0x8c, '8262 c'), + RgbInt8Color.rgbName(0x51, 0x8c, 0x97, '2221 up'), + RgbInt8Color.rgbName(0x51, 0x89, 0x9a, '2222 u'), + RgbInt8Color.rgbName(0x54, 0x90, 0x97, '2236 u'), + RgbInt8Color.rgbName(0x51, 0x8a, 0x99, 'p 120-5 u'), + RgbInt8Color.rgbName(0x54, 0x89, 0xa3, '2208 c'), + RgbInt8Color.rgbName(0x58, 0x89, 0xa1, '2208 cp'), + RgbInt8Color.rgbName(0x54, 0x89, 0xa2, '2208 xgc'), + RgbInt8Color.rgbName(0x56, 0x91, 0xa1, '2221 u'), + RgbInt8Color.rgbName(0x52, 0x8d, 0xa4, '7697 xgc'), + RgbInt8Color.rgbName(0x55, 0x8a, 0xae, '2149 xgc'), + RgbInt8Color.rgbName(0x51, 0x8e, 0xaa, '7459 u'), + RgbInt8Color.rgbName(0x52, 0x92, 0xa7, 'p 120-12 c'), + RgbInt8Color.rgbName(0x51, 0xa2, 0xca, '2389 xgc'), + RgbInt8Color.rgbName(0x6d, 0x8f, 0xdb, '2129 u'), + RgbInt8Color.rgbName(0x60, 0x8e, 0xcd, '2143 u'), + RgbInt8Color.rgbName(0x5c, 0x8d, 0xc6, '279 cp'), + RgbInt8Color.rgbName(0x56, 0x95, 0x4d, '10308 c'), + RgbInt8Color.rgbName(0x56, 0x94, 0x4f, '362 u'), + RgbInt8Color.rgbName(0x56, 0x98, 0x56, 'p 146-5 c'), + RgbInt8Color.rgbName(0x55, 0x95, 0x63, '10301 c'), + RgbInt8Color.rgbName(0x53, 0x99, 0x62, 'p 145-14 u'), + RgbInt8Color.rgbName(0x54, 0x9e, 0x58, 'p 154-8 u'), + RgbInt8Color.rgbName(0x58, 0x9c, 0x63, '7730 cp'), + RgbInt8Color.rgbName(0x55, 0x9a, 0x67, 'p 142-13 u'), + RgbInt8Color.rgbName(0x58, 0x92, 0x6b, '7731 u'), + RgbInt8Color.rgbName(0x55, 0x96, 0x70, '8303 c'), + RgbInt8Color.rgbName(0x54, 0x9c, 0x6e, 'p 140-5 c'), + RgbInt8Color.rgbName(0x52, 0x9e, 0x7a, '2417 u'), + RgbInt8Color.rgbName(0x53, 0x95, 0x84, 'p 128-5 u'), + RgbInt8Color.rgbName(0x5a, 0x96, 0x83, 'p 131-4 u'), + RgbInt8Color.rgbName(0x53, 0x9e, 0x84, 'p 134-5 c'), + RgbInt8Color.rgbName(0x5a, 0x93, 0x8b, 'p 125-13 u'), + RgbInt8Color.rgbName(0x5a, 0x97, 0x98, '2234 up'), + RgbInt8Color.rgbName(0x52, 0x95, 0x9d, '2235 u'), + RgbInt8Color.rgbName(0x50, 0x94, 0x9a, '2235 up'), + RgbInt8Color.rgbName(0x53, 0x9d, 0x95, 'p 128-12 c'), + RgbInt8Color.rgbName(0x5a, 0x95, 0x9f, 'p 123-12 c'), + RgbInt8Color.rgbName(0x53, 0x97, 0xa2, 'p 123-5 c'), + RgbInt8Color.rgbName(0x59, 0x91, 0xac, 'p 117-5 u'), + RgbInt8Color.rgbName(0x54, 0x98, 0xae, 'p 120-4 c'), + RgbInt8Color.rgbName(0x56, 0x9f, 0xb6, 'p 119-12 c'), + RgbInt8Color.rgbName(0x56, 0xb2, 0xcb, '631 u'), + RgbInt8Color.rgbName(0x57, 0x85, 0x4e, '363 u'), + RgbInt8Color.rgbName(0x57, 0xa1, 0x77, '2417 up'), + RgbInt8Color.rgbName(0x5a, 0x9f, 0x76, 'p 136-13 u'), + RgbInt8Color.rgbName(0x58, 0x9e, 0x79, 'p 133-14 u'), + RgbInt8Color.rgbName(0x52, 0xa7, 0x86, '2416 up'), + RgbInt8Color.rgbName(0x55, 0xa7, 0x86, '7723 xgc'), + RgbInt8Color.rgbName(0x58, 0xa2, 0x91, '2241 c'), + RgbInt8Color.rgbName(0x52, 0xa1, 0x91, 'p 127-13 u'), + RgbInt8Color.rgbName(0x57, 0xa4, 0x99, '10294 c'), + RgbInt8Color.rgbName(0x56, 0xa4, 0x94, '2241 xgc'), + RgbInt8Color.rgbName(0x58, 0xa5, 0x97, '2401 up'), + RgbInt8Color.rgbName(0x54, 0xa2, 0x9e, '7716 up'), + RgbInt8Color.rgbName(0x52, 0xa3, 0xa5, 'p 121-13 u'), + RgbInt8Color.rgbName(0x5a, 0x9e, 0xa3, 'p 122-13 c'), + RgbInt8Color.rgbName(0x51, 0xae, 0xaa, '2397 up'), + RgbInt8Color.rgbName(0x56, 0xa5, 0xb2, '2219 xgc'), + RgbInt8Color.rgbName(0x58, 0xa7, 0xaf, '2233 c'), + RgbInt8Color.rgbName(0x5e, 0xa8, 0xd7, 'p 112-5 u'), + RgbInt8Color.rgbName(0x59, 0x92, 0x57, 'p 154-15 u'), + RgbInt8Color.rgbName(0x5a, 0xa9, 0x85, '2414 up'), + RgbInt8Color.rgbName(0x58, 0xa5, 0x8a, '2459 up'), + RgbInt8Color.rgbName(0x52, 0xab, 0x99, 'p 127-5 u'), + RgbInt8Color.rgbName(0x58, 0xac, 0x8f, 'p 130-5 u'), + RgbInt8Color.rgbName(0x57, 0xa8, 0x9b, '2401 u'), + RgbInt8Color.rgbName(0x59, 0xa8, 0x9d, 'p 128-4 c'), + RgbInt8Color.rgbName(0x59, 0xae, 0x9c, 'p 130-12 c'), + RgbInt8Color.rgbName(0x5a, 0xa8, 0xaf, '2233 xgc'), + RgbInt8Color.rgbName(0x59, 0xb1, 0xa6, '3262 up'), + RgbInt8Color.rgbName(0x6c, 0xac, 0xe4, '284 c'), + RgbInt8Color.rgbName(0x6a, 0xb4, 0xe0, '2915 xgc'), + RgbInt8Color.rgbName(0x66, 0xb4, 0xd9, 'p 115-13 u'), + RgbInt8Color.rgbName(0x71, 0xc5, 0xe8, '297 c'), + RgbInt8Color.rgbName(0x71, 0xc5, 0xea, 'p 115-5 c'), + RgbInt8Color.rgbName(0x6b, 0xb8, 0xe1, '2915 up'), + RgbInt8Color.rgbName(0x8b, 0xc4, 0x0, '2293 c'), + RgbInt8Color.rgbName(0x84, 0xbd, 0x0, '376 c'), + RgbInt8Color.rgbName(0x78, 0xc6, 0xe7, '297 xgc'), + RgbInt8Color.rgbName(0x87, 0xc9, 0x16, '2286 xgc'), + RgbInt8Color.rgbName(0x8c, 0xcb, 0x15, '2292 xgc'), + RgbInt8Color.rgbName(0x83, 0xc9, 0x1f, '2293 xgc'), + RgbInt8Color.rgbName(0x88, 0xb6, 0x13, '3561 cp'), + RgbInt8Color.rgbName(0x77, 0x9b, 0x3d, '576 cp'), + RgbInt8Color.rgbName(0x76, 0x9b, 0x3d, '7490 cp'), + RgbInt8Color.rgbName(0x71, 0xcc, 0x98, '346 c'), + RgbInt8Color.rgbName(0x78, 0xd5, 0xe1, '2225 c'), + RgbInt8Color.rgbName(0x5f, 0xa5, 0x5f, '2423 up'), + RgbInt8Color.rgbName(0x76, 0xdd, 0x84, '2268 u'), + RgbInt8Color.rgbName(0x5e, 0xa5, 0x63, '2422 up'), + RgbInt8Color.rgbName(0x70, 0xe0, 0xa3, '352 u'), + RgbInt8Color.rgbName(0x70, 0xe2, 0xcb, '332 u'), + RgbInt8Color.rgbName(0x77, 0xda, 0xc9, '936 u'), + RgbInt8Color.rgbName(0x71, 0xdb, 0xd4, '3242 c'), + RgbInt8Color.rgbName(0x83, 0xa4, 0x13, '377 xgc'), + RgbInt8Color.rgbName(0x75, 0xb6, 0x6d, '2270 cp'), + RgbInt8Color.rgbName(0x73, 0xae, 0x66, '361 up'), + RgbInt8Color.rgbName(0x78, 0xbd, 0x70, '2464 c'), + RgbInt8Color.rgbName(0x72, 0xb3, 0x70, '2256 cp'), + RgbInt8Color.rgbName(0x5c, 0xaa, 0x7f, '2249 c'), + RgbInt8Color.rgbName(0x78, 0xe6, 0xd0, 'green 0921 u'), + RgbInt8Color.rgbName(0x6f, 0xd0, 0xc6, '3242 xgc'), + RgbInt8Color.rgbName(0x8c, 0xab, 0x19, '10327 c'), + RgbInt8Color.rgbName(0x83, 0xd3, 0x46, '2286 u'), + RgbInt8Color.rgbName(0x8c, 0xa7, 0x1d, '2301 cp'), + RgbInt8Color.rgbName(0x88, 0xa6, 0x20, '377 cp'), + RgbInt8Color.rgbName(0x77, 0xbb, 0x77, '2464 u'), + RgbInt8Color.rgbName(0x77, 0xb5, 0x74, '7738 up'), + RgbInt8Color.rgbName(0x78, 0xb4, 0x82, '2256 up'), + RgbInt8Color.rgbName(0x77, 0xbe, 0x7f, 'p 142-5 c'), + RgbInt8Color.rgbName(0x75, 0xb6, 0x79, 'p 145-5 c'), + RgbInt8Color.rgbName(0x5b, 0xb9, 0xb1, '7472 xgc'), + RgbInt8Color.rgbName(0x5c, 0xb8, 0xb2, '7472 c'), + RgbInt8Color.rgbName(0x73, 0xcb, 0xd3, '3105 xgc'), + RgbInt8Color.rgbName(0x73, 0xc6, 0xdc, '305 cp'), + RgbInt8Color.rgbName(0x8a, 0xab, 0x4f, '2276 xgc'), + RgbInt8Color.rgbName(0x8c, 0xc9, 0x47, '2292 u'), + RgbInt8Color.rgbName(0x83, 0xb1, 0x3b, '2294 u'), + RgbInt8Color.rgbName(0x89, 0xb7, 0x4b, '3561 up'), + RgbInt8Color.rgbName(0x84, 0xb7, 0x53, 'p 154-7 c'), + RgbInt8Color.rgbName(0x87, 0xe8, 0x78, '902 u'), + RgbInt8Color.rgbName(0x77, 0xc1, 0x9a, '2247 c'), + RgbInt8Color.rgbName(0x76, 0xc2, 0x97, '2247 xgc'), + RgbInt8Color.rgbName(0x72, 0xbf, 0x9d, '3395 cp'), + RgbInt8Color.rgbName(0x72, 0xca, 0xd6, '310 xgc'), + RgbInt8Color.rgbName(0x74, 0xc4, 0xd7, '630 u'), + RgbInt8Color.rgbName(0x77, 0xc5, 0xd5, '630 c'), + RgbInt8Color.rgbName(0x71, 0xbf, 0xd2, '305 up'), + RgbInt8Color.rgbName(0x6f, 0xc1, 0xc2, '319 cp'), + RgbInt8Color.rgbName(0x78, 0xc5, 0xcf, '630 xgc'), + RgbInt8Color.rgbName(0x78, 0xc2, 0xd5, '637 up'), + RgbInt8Color.rgbName(0x64, 0x1c, 0x43, '229 xgc'), + RgbInt8Color.rgbName(0x5d, 0x2a, 0x2c, '490 c'), + RgbInt8Color.rgbName(0x56, 0x2c, 0x36, '504 xgc'), + RgbInt8Color.rgbName(0x65, 0x1d, 0x32, '7421 c'), + RgbInt8Color.rgbName(0x4c, 0x37, 0x35, 'p 44-16 c'), + RgbInt8Color.rgbName(0x65, 0x16, 0x41, '2357 cp'), + RgbInt8Color.rgbName(0x4b, 0x35, 0x3a, '2478 c'), + RgbInt8Color.rgbName(0x55, 0x2d, 0x41, '5115 cp'), + RgbInt8Color.rgbName(0x61, 0x21, 0x41, '690 c'), + RgbInt8Color.rgbName(0x58, 0x2d, 0x40, '7644 c'), + RgbInt8Color.rgbName(0x54, 0x2b, 0x3f, '7645 cp'), + RgbInt8Color.rgbName(0x74, 0x12, 0x47, '222 xgc'), + RgbInt8Color.rgbName(0x54, 0x30, 0x46, '5115 xgc'), + RgbInt8Color.rgbName(0x5e, 0x27, 0x51, '7652 c'), + RgbInt8Color.rgbName(0x60, 0x20, 0x52, 'p 90-8 c'), + RgbInt8Color.rgbName(0x5f, 0x21, 0x67, '2623 c'), + RgbInt8Color.rgbName(0x5d, 0x27, 0x73, '3515 cp'), + RgbInt8Color.rgbName(0x5d, 0x29, 0x72, 'p 93-16 c'), + RgbInt8Color.rgbName(0x67, 0x1e, 0x75, '2613 c'), + RgbInt8Color.rgbName(0x6d, 0x1b, 0x78, '2613 xgc'), + RgbInt8Color.rgbName(0x5b, 0x2e, 0x7e, '2607 cp'), + RgbInt8Color.rgbName(0x61, 0x2c, 0x7d, 'p 93-8 c'), + RgbInt8Color.rgbName(0x80, 0x2d, 0x82, '2602 cp'), + RgbInt8Color.rgbName(0x7c, 0x29, 0x85, '2612 xgc'), + RgbInt8Color.rgbName(0x96, 0x3c, 0xbd, '7442 c'), + RgbInt8Color.rgbName(0x64, 0x25, 0x41, '690 cp'), + RgbInt8Color.rgbName(0x5d, 0x28, 0x5f, '261 c'), + RgbInt8Color.rgbName(0x63, 0x28, 0x62, '2622 cp'), + RgbInt8Color.rgbName(0x64, 0x26, 0x67, '260 c'), + RgbInt8Color.rgbName(0x62, 0x26, 0x66, '8823 c'), + RgbInt8Color.rgbName(0x62, 0x26, 0x66, 'p 92-8 c'), + RgbInt8Color.rgbName(0x81, 0x3f, 0x8e, '2593 cp'), + RgbInt8Color.rgbName(0x7b, 0x3f, 0x92, '527 cp'), + RgbInt8Color.rgbName(0x8f, 0x57, 0xaa, '7442 xgc'), + RgbInt8Color.rgbName(0x60, 0x32, 0x28, '490 cp'), + RgbInt8Color.rgbName(0x63, 0x32, 0x31, '7630 c'), + RgbInt8Color.rgbName(0x5b, 0x2e, 0x33, '490 xgc'), + RgbInt8Color.rgbName(0x5b, 0x2b, 0x42, '7644 cp'), + RgbInt8Color.rgbName(0x62, 0x29, 0x5c, '261 cp'), + RgbInt8Color.rgbName(0x5d, 0x2b, 0x5e, '261 xgc'), + RgbInt8Color.rgbName(0x5e, 0x2d, 0x5d, '519 cp'), + RgbInt8Color.rgbName(0x59, 0x31, 0x5f, '519 c'), + RgbInt8Color.rgbName(0x61, 0x2c, 0x69, '2623 cp'), + RgbInt8Color.rgbName(0x63, 0x2e, 0x79, '7664 cp'), + RgbInt8Color.rgbName(0x64, 0x2f, 0x6c, '520 c'), + RgbInt8Color.rgbName(0x96, 0x5e, 0xc8, '2083 c'), + RgbInt8Color.rgbName(0x90, 0x63, 0xcd, '265 c'), + RgbInt8Color.rgbName(0x64, 0x3b, 0x1e, '1545 cp'), + RgbInt8Color.rgbName(0x5b, 0x34, 0x27, '4695 c'), + RgbInt8Color.rgbName(0x54, 0x34, 0x2c, '497 cp'), + RgbInt8Color.rgbName(0x4b, 0x38, 0x4c, '7448 c'), + RgbInt8Color.rgbName(0x58, 0x36, 0x71, 'p 97-7 c'), + RgbInt8Color.rgbName(0x60, 0x39, 0x7c, 'p 96-15 c'), + RgbInt8Color.rgbName(0x5e, 0x54, 0x9b, '8163 c'), + RgbInt8Color.rgbName(0x60, 0x3d, 0x20, '161 c'), + RgbInt8Color.rgbName(0x63, 0x40, 0x23, '161 xgc'), + RgbInt8Color.rgbName(0x5f, 0x40, 0x28, '2472 c'), + RgbInt8Color.rgbName(0x64, 0x3f, 0x28, '7603 cp'), + RgbInt8Color.rgbName(0x50, 0x3a, 0x4f, '518 xgc'), + RgbInt8Color.rgbName(0x52, 0x37, 0x5f, '8801 c'), + RgbInt8Color.rgbName(0x61, 0x46, 0x8b, '2090 cp'), + RgbInt8Color.rgbName(0x65, 0x38, 0x19, '1545 c'), + RgbInt8Color.rgbName(0x47, 0x40, 0x41, '439 cp'), + RgbInt8Color.rgbName(0x48, 0x3f, 0x40, '439 xgc'), + RgbInt8Color.rgbName(0x4e, 0x3e, 0x48, 'p 87-16 c'), + RgbInt8Color.rgbName(0x4e, 0x40, 0x51, '7448 xgc'), + RgbInt8Color.rgbName(0x58, 0x36, 0x59, '8800 c'), + RgbInt8Color.rgbName(0x5e, 0x36, 0x6e, '7665 c'), + RgbInt8Color.rgbName(0x5d, 0x39, 0x6f, '7665 cp'), + RgbInt8Color.rgbName(0x55, 0x3b, 0x30, '4625 cp'), + RgbInt8Color.rgbName(0x64, 0x54, 0x26, '4485 cp'), + RgbInt8Color.rgbName(0x63, 0x52, 0x28, '4485 xgc'), + RgbInt8Color.rgbName(0x53, 0x3b, 0x3a, '7617 xgc'), + RgbInt8Color.rgbName(0x55, 0x3e, 0x3b, 'p 44-15 c'), + RgbInt8Color.rgbName(0x53, 0x39, 0x3b, 'p 51-16 c'), + RgbInt8Color.rgbName(0x4d, 0x43, 0x45, '10387 c'), + RgbInt8Color.rgbName(0x51, 0x3f, 0x45, 'p 86-16 c'), + RgbInt8Color.rgbName(0x4e, 0x41, 0x4b, 'p 98-16 u'), + RgbInt8Color.rgbName(0x50, 0x3e, 0x55, '7448 cp'), + RgbInt8Color.rgbName(0x4d, 0x42, 0x4c, 'p 101-16 u'), + RgbInt8Color.rgbName(0x4f, 0x44, 0x53, 'p 101-8 u'), + RgbInt8Color.rgbName(0x4f, 0x42, 0x51, 'p 98-8 u'), + RgbInt8Color.rgbName(0x5b, 0x3a, 0x61, '519 xgc'), + RgbInt8Color.rgbName(0x58, 0x3e, 0x67, 'p 98-14 c'), + RgbInt8Color.rgbName(0x56, 0x47, 0x70, '2112 u'), + RgbInt8Color.rgbName(0x5f, 0x3a, 0x6e, '7665 xgc'), + RgbInt8Color.rgbName(0x57, 0x46, 0x76, '3574 c'), + RgbInt8Color.rgbName(0x54, 0x47, 0x74, 'p 101-14 c'), + RgbInt8Color.rgbName(0x5e, 0x51, 0x94, '2096 cp'), + RgbInt8Color.rgbName(0x5e, 0x51, 0x95, '2097 cp'), + RgbInt8Color.rgbName(0x5f, 0x59, 0x9b, '2367 cp'), + RgbInt8Color.rgbName(0x5e, 0x59, 0x9b, '2370 u'), + RgbInt8Color.rgbName(0x63, 0x59, 0x9e, '2725 cp'), + RgbInt8Color.rgbName(0x61, 0x55, 0x9a, '2745 u'), + RgbInt8Color.rgbName(0x5c, 0x5a, 0x9a, '7670 xgc'), + RgbInt8Color.rgbName(0x80, 0x73, 0xb6, '2095 xgc'), + RgbInt8Color.rgbName(0x66, 0x40, 0x1d, '161 cp'), + RgbInt8Color.rgbName(0x5c, 0x46, 0x2b, '462 c'), + RgbInt8Color.rgbName(0x6b, 0x43, 0x1c, '732 cp'), + RgbInt8Color.rgbName(0x5e, 0x48, 0x2d, '462 xgc'), + RgbInt8Color.rgbName(0x4c, 0x44, 0x41, '8601 c'), + RgbInt8Color.rgbName(0x4e, 0x4b, 0x48, '2336 c'), + RgbInt8Color.rgbName(0x4f, 0x4b, 0x45, 'p 170-15 c'), + RgbInt8Color.rgbName(0x4f, 0x4a, 0x47, 'p 170-16 u'), + RgbInt8Color.rgbName(0x51, 0x4a, 0x45, 'p 171-16 c'), + RgbInt8Color.rgbName(0x4b, 0x4b, 0x4a, 'p 176-16 u'), + RgbInt8Color.rgbName(0x4e, 0x4a, 0x47, 'process black u'), + RgbInt8Color.rgbName(0x51, 0x47, 0x56, 'p 103-16 u'), + RgbInt8Color.rgbName(0x4d, 0x4d, 0x4d, 'p 172-15 c'), + RgbInt8Color.rgbName(0x4e, 0x4c, 0x4e, 'p 174-16 u'), + RgbInt8Color.rgbName(0x57, 0x46, 0x51, 'p 87-15 c'), + RgbInt8Color.rgbName(0x52, 0x45, 0x53, 'p 95-16 u'), + RgbInt8Color.rgbName(0x4c, 0x4e, 0x56, 'black 6 u'), + RgbInt8Color.rgbName(0x55, 0x48, 0x59, 'p 101-15 u'), + RgbInt8Color.rgbName(0x56, 0x48, 0x5c, 'p 95-8 u'), + RgbInt8Color.rgbName(0x55, 0x47, 0x5b, 'p 97-16 u'), + RgbInt8Color.rgbName(0x56, 0x47, 0x57, 'p 98-15 u'), + RgbInt8Color.rgbName(0x52, 0x4b, 0x68, 'p 103-8 u'), + RgbInt8Color.rgbName(0x57, 0x4a, 0x63, 'p 94-16 u'), + RgbInt8Color.rgbName(0x57, 0x48, 0x63, 'p 97-8 u'), + RgbInt8Color.rgbName(0x4f, 0x54, 0x6c, '2767 up'), + RgbInt8Color.rgbName(0x57, 0x4f, 0x77, '2765 u'), + RgbInt8Color.rgbName(0x51, 0x52, 0x7b, '5275 cp'), + RgbInt8Color.rgbName(0x5c, 0x48, 0x7a, '668 cp'), + RgbInt8Color.rgbName(0x5d, 0x47, 0x77, '7447 c'), + RgbInt8Color.rgbName(0x4e, 0x54, 0x73, 'p 105-15 u'), + RgbInt8Color.rgbName(0x55, 0x4c, 0x75, 'p 99-8 u'), + RgbInt8Color.rgbName(0x5d, 0x46, 0x7d, '3535 u'), + RgbInt8Color.rgbName(0x54, 0x4d, 0x86, 'p 103-6 c'), + RgbInt8Color.rgbName(0x5e, 0x5c, 0x9f, '2102 cp'), + RgbInt8Color.rgbName(0x5b, 0x60, 0xa0, '2368 cp'), + RgbInt8Color.rgbName(0x5e, 0x60, 0xa0, '10241 c'), + RgbInt8Color.rgbName(0x62, 0x62, 0xa2, '7669 cp'), + RgbInt8Color.rgbName(0x5f, 0x62, 0xa1, 'p 102-6 c'), + RgbInt8Color.rgbName(0x63, 0x7d, 0xb7, '2124 cp'), + RgbInt8Color.rgbName(0x5e, 0x55, 0x32, '7770 xgc'), + RgbInt8Color.rgbName(0x55, 0x51, 0x42, '2335 cp'), + RgbInt8Color.rgbName(0x50, 0x54, 0x43, '8521 c'), + RgbInt8Color.rgbName(0x50, 0x4d, 0x4a, '10397 c'), + RgbInt8Color.rgbName(0x51, 0x50, 0x4d, '2336 xgc'), + RgbInt8Color.rgbName(0x51, 0x53, 0x4a, '418 c'), + RgbInt8Color.rgbName(0x51, 0x54, 0x4a, '418 xgc'), + RgbInt8Color.rgbName(0x53, 0x4e, 0x48, '8404 c'), + RgbInt8Color.rgbName(0x53, 0x55, 0x47, 'p 169-16 c'), + RgbInt8Color.rgbName(0x4e, 0x4f, 0x4c, 'p 177-16 u'), + RgbInt8Color.rgbName(0x58, 0x50, 0x50, 'p 171-15 u'), + RgbInt8Color.rgbName(0x53, 0x50, 0x50, 'p 173-16 u'), + RgbInt8Color.rgbName(0x51, 0x53, 0x50, 'p 177-15 u'), + RgbInt8Color.rgbName(0x54, 0x51, 0x4d, 'p 178-16 u'), + RgbInt8Color.rgbName(0x4e, 0x54, 0x58, '10392 c'), + RgbInt8Color.rgbName(0x4f, 0x57, 0x5c, '425 cp'), + RgbInt8Color.rgbName(0x50, 0x57, 0x59, '445 c'), + RgbInt8Color.rgbName(0x4f, 0x53, 0x57, '7540 xgc'), + RgbInt8Color.rgbName(0x51, 0x54, 0x5d, '7547 u'), + RgbInt8Color.rgbName(0x52, 0x54, 0x5d, 'black 6 up'), + RgbInt8Color.rgbName(0x53, 0x56, 0x5a, 'cool gray 11 c'), + RgbInt8Color.rgbName(0x4c, 0x54, 0x5c, 'p 174-14 c'), + RgbInt8Color.rgbName(0x4f, 0x56, 0x65, '2379 up'), + RgbInt8Color.rgbName(0x57, 0x51, 0x66, '276 up'), + RgbInt8Color.rgbName(0x52, 0x52, 0x66, '3524 up'), + RgbInt8Color.rgbName(0x4e, 0x56, 0x61, '546 up'), + RgbInt8Color.rgbName(0x5a, 0x4f, 0x64, '7666 xgc'), + RgbInt8Color.rgbName(0x53, 0x55, 0x6c, '2768 up'), + RgbInt8Color.rgbName(0x5b, 0x4e, 0x6e, 'p 100-7 u'), + RgbInt8Color.rgbName(0x54, 0x4f, 0x72, 'p 102-16 u'), + RgbInt8Color.rgbName(0x55, 0x55, 0x77, '2119 u'), + RgbInt8Color.rgbName(0x51, 0x57, 0x7b, '2757 up'), + RgbInt8Color.rgbName(0x58, 0x53, 0x75, '2765 up'), + RgbInt8Color.rgbName(0x55, 0x58, 0x77, '3581 u'), + RgbInt8Color.rgbName(0x59, 0x54, 0x78, '5275 c'), + RgbInt8Color.rgbName(0x56, 0x52, 0x7e, 'p 102-8 u'), + RgbInt8Color.rgbName(0x50, 0x57, 0x7b, 'p 105-7 u'), + RgbInt8Color.rgbName(0x58, 0x50, 0x77, 'p 96-16 u'), + RgbInt8Color.rgbName(0x5b, 0x4f, 0x76, 'p 99-15 u'), + RgbInt8Color.rgbName(0x53, 0x58, 0x85, '2147 up'), + RgbInt8Color.rgbName(0x56, 0x54, 0x82, '2372 up'), + RgbInt8Color.rgbName(0x52, 0x5a, 0x7f, '2748 up'), + RgbInt8Color.rgbName(0x52, 0x58, 0x7d, '2758 up'), + RgbInt8Color.rgbName(0x50, 0x57, 0x84, '3591 u'), + RgbInt8Color.rgbName(0x55, 0x55, 0x83, '3591 up'), + RgbInt8Color.rgbName(0x53, 0x54, 0x86, '7673 c'), + RgbInt8Color.rgbName(0x5d, 0x53, 0x8b, '2755 u'), + RgbInt8Color.rgbName(0x55, 0x58, 0x87, '7673 cp'), + RgbInt8Color.rgbName(0x52, 0x5f, 0x8d, '7687 u'), + RgbInt8Color.rgbName(0x52, 0x5f, 0x8b, 'p 105-14 c'), + RgbInt8Color.rgbName(0x52, 0x5f, 0x90, '2146 up'), + RgbInt8Color.rgbName(0x6f, 0x8c, 0xc2, '2123 cp'), + RgbInt8Color.rgbName(0x75, 0x8c, 0xc0, '2135 c'), + RgbInt8Color.rgbName(0x67, 0x88, 0xbe, '2135 cp'), + RgbInt8Color.rgbName(0x74, 0x89, 0xc1, '2718 cp'), + RgbInt8Color.rgbName(0x80, 0x89, 0xc0, '7456 u'), + RgbInt8Color.rgbName(0x69, 0x5b, 0x24, '455 c'), + RgbInt8Color.rgbName(0x60, 0x63, 0x32, '7750 xgc'), + RgbInt8Color.rgbName(0x5b, 0x62, 0x36, '7498 c'), + RgbInt8Color.rgbName(0x55, 0x57, 0x4c, '418 cp'), + RgbInt8Color.rgbName(0x55, 0x58, 0x4b, 'p 178-15 c'), + RgbInt8Color.rgbName(0x54, 0x56, 0x4e, '419 up'), + RgbInt8Color.rgbName(0x54, 0x56, 0x54, 'p 175-15 u'), + RgbInt8Color.rgbName(0x54, 0x5f, 0x51, 'p 177-14 c'), + RgbInt8Color.rgbName(0x55, 0x59, 0x56, 'p 177-14 u'), + RgbInt8Color.rgbName(0x4f, 0x5f, 0x5f, '2466 u'), + RgbInt8Color.rgbName(0x54, 0x58, 0x5a, '425 c'), + RgbInt8Color.rgbName(0x56, 0x5b, 0x5a, '425 xgc'), + RgbInt8Color.rgbName(0x52, 0x56, 0x57, '7540 cp'), + RgbInt8Color.rgbName(0x55, 0x59, 0x5d, 'cool gray 11 xgc'), + RgbInt8Color.rgbName(0x50, 0x5d, 0x5e, 'p 176-11 c'), + RgbInt8Color.rgbName(0x53, 0x57, 0x66, '2380 u'), + RgbInt8Color.rgbName(0x54, 0x5c, 0x63, 'p 174-13 c'), + RgbInt8Color.rgbName(0x56, 0x5a, 0x73, '282 up'), + RgbInt8Color.rgbName(0x56, 0x5d, 0x6e, '539 up'), + RgbInt8Color.rgbName(0x57, 0x5a, 0x7c, '2766 u'), + RgbInt8Color.rgbName(0x54, 0x5b, 0x7c, '281 up'), + RgbInt8Color.rgbName(0x54, 0x5b, 0x7b, '3597 u'), + RgbInt8Color.rgbName(0x55, 0x59, 0x7c, '3597 up'), + RgbInt8Color.rgbName(0x50, 0x60, 0x77, '8481 c'), + RgbInt8Color.rgbName(0x50, 0x5d, 0x7b, 'p 107-14 u'), + RgbInt8Color.rgbName(0x53, 0x5e, 0x77, 'p 108-14 u'), + RgbInt8Color.rgbName(0x54, 0x5d, 0x86, 'p 104-15 u'), + RgbInt8Color.rgbName(0x50, 0x61, 0x84, 'p 107-6 u'), + RgbInt8Color.rgbName(0x5d, 0x5b, 0x8d, '2370 up'), + RgbInt8Color.rgbName(0x58, 0x5c, 0x8c, '2756 u'), + RgbInt8Color.rgbName(0x59, 0x5c, 0x88, '2756 up'), + RgbInt8Color.rgbName(0x54, 0x5e, 0x89, '280 up'), + RgbInt8Color.rgbName(0x5b, 0x5d, 0x8c, '7673 xgc'), + RgbInt8Color.rgbName(0x51, 0x61, 0x8f, '7687 up'), + RgbInt8Color.rgbName(0x5a, 0x5e, 0x97, 'p 102-14 c'), + RgbInt8Color.rgbName(0x62, 0x77, 0xaa, '7685 up'), + RgbInt8Color.rgbName(0x5c, 0x75, 0xb0, 'p 104-6 c'), + RgbInt8Color.rgbName(0x63, 0x8f, 0xce, '279 xgc'), + RgbInt8Color.rgbName(0x68, 0x66, 0x29, '7750 cp'), + RgbInt8Color.rgbName(0x5d, 0x64, 0x39, '7762 c'), + RgbInt8Color.rgbName(0x5c, 0x64, 0x38, '7762 xgc'), + RgbInt8Color.rgbName(0x5e, 0x67, 0x38, '5753 c'), + RgbInt8Color.rgbName(0x5e, 0x66, 0x38, '7498 xgc'), + RgbInt8Color.rgbName(0x5e, 0x68, 0x38, '5753 xgc'), + RgbInt8Color.rgbName(0x5d, 0x65, 0x45, 'p 162-16 u'), + RgbInt8Color.rgbName(0x54, 0x67, 0x58, '350 u'), + RgbInt8Color.rgbName(0x54, 0x64, 0x5f, '5467 up'), + RgbInt8Color.rgbName(0x54, 0x64, 0x60, 'p 175-13 c'), + RgbInt8Color.rgbName(0x51, 0x62, 0x6a, '2216 u'), + RgbInt8Color.rgbName(0x53, 0x69, 0x74, '2215 u'), + RgbInt8Color.rgbName(0x51, 0x65, 0x7d, '7463 u'), + RgbInt8Color.rgbName(0x51, 0x6a, 0x87, '2161 u'), + RgbInt8Color.rgbName(0x51, 0x6a, 0x81, '2167 xgc'), + RgbInt8Color.rgbName(0x56, 0x64, 0x82, '2374 xgc'), + RgbInt8Color.rgbName(0x55, 0x62, 0x7e, 'p 108-6 u'), + RgbInt8Color.rgbName(0x55, 0x68, 0x8b, '654 u'), + RgbInt8Color.rgbName(0x56, 0x68, 0x8d, 'p 107-5 u'), + RgbInt8Color.rgbName(0x55, 0x69, 0x95, '7686 u'), + RgbInt8Color.rgbName(0x5b, 0x65, 0x95, 'p 104-7 u'), + RgbInt8Color.rgbName(0x56, 0x66, 0x98, 'reflex blue up'), + RgbInt8Color.rgbName(0x56, 0x71, 0xa8, '3506 u'), + RgbInt8Color.rgbName(0x56, 0x6f, 0xa5, 'p 104-14 c'), + RgbInt8Color.rgbName(0x82, 0x7a, 0x4, '392 c'), + RgbInt8Color.rgbName(0x60, 0x75, 0x33, 'p 159-15 c'), + RgbInt8Color.rgbName(0x53, 0x72, 0x50, 'p 156-7 u'), + RgbInt8Color.rgbName(0x52, 0x72, 0x54, 'p 153-14 u'), + RgbInt8Color.rgbName(0x54, 0x69, 0x73, '2181 up'), + RgbInt8Color.rgbName(0x51, 0x6d, 0x75, '5473 u'), + RgbInt8Color.rgbName(0x55, 0x6a, 0x76, '2182 u'), + RgbInt8Color.rgbName(0x53, 0x73, 0x86, '10265 c'), + RgbInt8Color.rgbName(0x5b, 0x6f, 0x80, '5405 u'), + RgbInt8Color.rgbName(0x54, 0x6b, 0x84, 'p 111-14 u'), + RgbInt8Color.rgbName(0x55, 0x71, 0x8f, '2139 cp'), + RgbInt8Color.rgbName(0x54, 0x70, 0x8a, '2161 up'), + RgbInt8Color.rgbName(0x57, 0x72, 0x8b, '2166 c'), + RgbInt8Color.rgbName(0x55, 0x72, 0x88, '7700 u'), + RgbInt8Color.rgbName(0x55, 0x72, 0x8f, 'p 111-6 u'), + RgbInt8Color.rgbName(0x53, 0x73, 0x92, '2152 u'), + RgbInt8Color.rgbName(0x5c, 0x6f, 0x95, 'p 107-4 u'), + RgbInt8Color.rgbName(0x55, 0x71, 0xa4, '2387 up'), + RgbInt8Color.rgbName(0x5c, 0x72, 0xa6, '2133 up'), + RgbInt8Color.rgbName(0x58, 0x73, 0xa6, '2386 up'), + RgbInt8Color.rgbName(0x5e, 0x8a, 0xb4, '646 c'), + RgbInt8Color.rgbName(0x5d, 0x8c, 0xb5, 'p 109-14 u'), + RgbInt8Color.rgbName(0x62, 0x76, 0x35, '10333 c'), + RgbInt8Color.rgbName(0x7f, 0x85, 0xa, '8663 c'), + RgbInt8Color.rgbName(0x6b, 0x77, 0x2a, 'p 162-15 c'), + RgbInt8Color.rgbName(0x51, 0x7a, 0x55, 'p 150-6 u'), + RgbInt8Color.rgbName(0x5b, 0x79, 0x4e, '364 u'), + RgbInt8Color.rgbName(0x55, 0x75, 0x55, '8721 c'), + RgbInt8Color.rgbName(0x52, 0x77, 0x60, '2408 up'), + RgbInt8Color.rgbName(0x53, 0x7a, 0x60, 'p 138-14 u'), + RgbInt8Color.rgbName(0x54, 0x79, 0x5c, 'p 147-13 u'), + RgbInt8Color.rgbName(0x57, 0x75, 0x65, '554 u'), + RgbInt8Color.rgbName(0x59, 0x79, 0x65, '554 up'), + RgbInt8Color.rgbName(0x58, 0x77, 0x62, '7483 u'), + RgbInt8Color.rgbName(0x59, 0x77, 0x65, '7734 u'), + RgbInt8Color.rgbName(0x57, 0x78, 0x69, '8501 c'), + RgbInt8Color.rgbName(0x58, 0x74, 0x6f, '5487 xgc'), + RgbInt8Color.rgbName(0x56, 0x7e, 0x6a, '555 u'), + RgbInt8Color.rgbName(0x59, 0x75, 0x6f, '626 u'), + RgbInt8Color.rgbName(0x53, 0x7f, 0x72, 'p 132-12 u'), + RgbInt8Color.rgbName(0x57, 0x76, 0x79, '2213 up'), + RgbInt8Color.rgbName(0x58, 0x78, 0x7d, '2214 up'), + RgbInt8Color.rgbName(0x54, 0x7c, 0x76, '2462 up'), + RgbInt8Color.rgbName(0x5a, 0x77, 0x7b, '7476 u'), + RgbInt8Color.rgbName(0x59, 0x7a, 0x8b, '2165 cp'), + RgbInt8Color.rgbName(0x57, 0x77, 0x8b, '2392 up'), + RgbInt8Color.rgbName(0x55, 0x79, 0x8e, '7699 up'), + RgbInt8Color.rgbName(0x5e, 0x78, 0x95, '2160 u'), + RgbInt8Color.rgbName(0x55, 0x7b, 0x9b, 'p 110-14 u'), + RgbInt8Color.rgbName(0x5a, 0x7e, 0x97, 'p 114-13 u'), + RgbInt8Color.rgbName(0x5a, 0x77, 0x9d, '2151 up'), + RgbInt8Color.rgbName(0x54, 0x7a, 0xa3, '7462 u'), + RgbInt8Color.rgbName(0x57, 0x7a, 0xa3, 'p 107-12 c'), + RgbInt8Color.rgbName(0x5c, 0x78, 0xa7, '10245 c'), + RgbInt8Color.rgbName(0x5c, 0x93, 0xc4, 'p 109-6 u'), + RgbInt8Color.rgbName(0x5f, 0x96, 0xc0, '2170 up'), + RgbInt8Color.rgbName(0x5c, 0x94, 0xbf, '7461 up'), + RgbInt8Color.rgbName(0x6b, 0x7f, 0x2a, '8682 c'), + RgbInt8Color.rgbName(0x5f, 0x88, 0x3d, 'p 155-15 c'), + RgbInt8Color.rgbName(0x5c, 0x7e, 0x51, '2265 c'), + RgbInt8Color.rgbName(0x5c, 0x80, 0x50, '2265 xgc'), + RgbInt8Color.rgbName(0x58, 0x7f, 0x54, 'p 155-15 u'), + RgbInt8Color.rgbName(0x5a, 0x86, 0x59, '8305 c'), + RgbInt8Color.rgbName(0x57, 0x80, 0x5f, 'p 141-14 u'), + RgbInt8Color.rgbName(0x54, 0x80, 0x5d, 'p 141-6 u'), + RgbInt8Color.rgbName(0x56, 0x87, 0x5e, 'p 143-14 u'), + RgbInt8Color.rgbName(0x57, 0x86, 0x5c, 'p 147-13 c'), + RgbInt8Color.rgbName(0x54, 0x80, 0x5e, 'p 147-5 u'), + RgbInt8Color.rgbName(0x58, 0x84, 0x61, 'p 144-5 u'), + RgbInt8Color.rgbName(0x5c, 0x7f, 0x71, '5555 c'), + RgbInt8Color.rgbName(0x5a, 0x80, 0x70, '5555 xgc'), + RgbInt8Color.rgbName(0x58, 0x84, 0x6c, 'p 135-5 u'), + RgbInt8Color.rgbName(0x5c, 0x85, 0x7b, 'p 129-13 u'), + RgbInt8Color.rgbName(0x56, 0x87, 0x7b, 'p 129-5 u'), + RgbInt8Color.rgbName(0x53, 0x83, 0x88, 'p 123-13 u'), + RgbInt8Color.rgbName(0x53, 0x84, 0x91, 'p 120-13 u'), + RgbInt8Color.rgbName(0x5b, 0x7f, 0x95, '5415 c'), + RgbInt8Color.rgbName(0x5d, 0x80, 0x9f, '2150 u'), + RgbInt8Color.rgbName(0x5c, 0x82, 0xa5, '2158 c'), + RgbInt8Color.rgbName(0x57, 0x84, 0xa2, '2158 cp'), + RgbInt8Color.rgbName(0x5b, 0x7e, 0xa0, '7462 up'), + RgbInt8Color.rgbName(0x59, 0x89, 0xa1, 'p 117-13 u'), + RgbInt8Color.rgbName(0x5c, 0x80, 0xa9, '10258 c'), + RgbInt8Color.rgbName(0x61, 0x82, 0xaa, 'p 107-11 c'), + RgbInt8Color.rgbName(0x5a, 0x7f, 0xac, 'p 107-3 c'), + RgbInt8Color.rgbName(0x5f, 0x9b, 0xc6, '2170 c'), + RgbInt8Color.rgbName(0x5e, 0x9a, 0xca, '7688 u'), + RgbInt8Color.rgbName(0x63, 0x9f, 0xc8, '2170 xgc'), + RgbInt8Color.rgbName(0x7f, 0x8f, 0x11, '2306 xgc'), + RgbInt8Color.rgbName(0x62, 0x8d, 0x41, '8685 c'), + RgbInt8Color.rgbName(0x5e, 0x93, 0x46, 'p 152-7 c'), + RgbInt8Color.rgbName(0x5e, 0x8a, 0x57, 'p 153-6 c'), + RgbInt8Color.rgbName(0x5f, 0x8e, 0x64, 'p 144-12 c'), + RgbInt8Color.rgbName(0x5c, 0x8a, 0x60, 'p 149-13 u'), + RgbInt8Color.rgbName(0x5a, 0x90, 0x61, 'p 149-5 u'), + RgbInt8Color.rgbName(0x59, 0x90, 0x72, 'p 134-5 u'), + RgbInt8Color.rgbName(0x59, 0x91, 0x72, 'p 137-13 u'), + RgbInt8Color.rgbName(0x5f, 0x8c, 0x6e, 'p 138-5 u'), + RgbInt8Color.rgbName(0x5a, 0x8d, 0x84, '2462 c'), + RgbInt8Color.rgbName(0x58, 0x92, 0x86, 'p 129-13 c'), + RgbInt8Color.rgbName(0x5b, 0x8f, 0x82, 'p 132-12 c'), + RgbInt8Color.rgbName(0x57, 0x90, 0x92, '2236 up'), + RgbInt8Color.rgbName(0x53, 0x90, 0x9a, '10282 c'), + RgbInt8Color.rgbName(0x5b, 0x8a, 0x9e, '7697 cp'), + RgbInt8Color.rgbName(0x5d, 0x8c, 0xaa, 'p 114-12 c'), + RgbInt8Color.rgbName(0x61, 0x91, 0xb4, '2148 c'), + RgbInt8Color.rgbName(0x5f, 0x8f, 0xb4, '7454 c'), + RgbInt8Color.rgbName(0x61, 0x90, 0xbb, '646 xgc'), + RgbInt8Color.rgbName(0x5d, 0xa6, 0xd0, '7688 cp'), + RgbInt8Color.rgbName(0x63, 0xaa, 0xca, 'p 116-12 c'), + RgbInt8Color.rgbName(0x7d, 0x99, 0x17, 'p 158-8 c'), + RgbInt8Color.rgbName(0x5e, 0x98, 0x65, '7740 u'), + RgbInt8Color.rgbName(0x60, 0x9a, 0x63, 'p 143-13 c'), + RgbInt8Color.rgbName(0x5c, 0x94, 0x67, 'p 143-5 u'), + RgbInt8Color.rgbName(0x5e, 0x98, 0x6a, 'p 146-5 u'), + RgbInt8Color.rgbName(0x61, 0x99, 0x6e, 'p 140-5 u'), + RgbInt8Color.rgbName(0x60, 0x95, 0x75, '7731 up'), + RgbInt8Color.rgbName(0x5d, 0x9c, 0x77, 'p 137-13 c'), + RgbInt8Color.rgbName(0x5c, 0x9b, 0x79, 'p 137-5 u'), + RgbInt8Color.rgbName(0x62, 0x97, 0x7e, 'p 138-4 c'), + RgbInt8Color.rgbName(0x5e, 0x95, 0x8f, '8282 c'), + RgbInt8Color.rgbName(0x5b, 0x97, 0x9a, 'p 122-13 u'), + RgbInt8Color.rgbName(0x5b, 0x9b, 0x92, 'p 125-5 u'), + RgbInt8Color.rgbName(0x61, 0x96, 0xa4, 'p 120-4 u'), + RgbInt8Color.rgbName(0x5d, 0x99, 0xae, '10275 c'), + RgbInt8Color.rgbName(0x63, 0x98, 0xac, '2207 up'), + RgbInt8Color.rgbName(0x5e, 0x9b, 0xad, 'p 119-12 u'), + RgbInt8Color.rgbName(0x5f, 0x99, 0xc0, '2389 up'), + RgbInt8Color.rgbName(0x61, 0x99, 0xc1, '7689 up'), + RgbInt8Color.rgbName(0x60, 0x9e, 0x57, '3539 u'), + RgbInt8Color.rgbName(0x5c, 0xa3, 0x69, '7739 u'), + RgbInt8Color.rgbName(0x5c, 0xa5, 0x6a, '7739 up'), + RgbInt8Color.rgbName(0x63, 0xa2, 0x68, 'p 143-4 c'), + RgbInt8Color.rgbName(0x61, 0x9d, 0x65, 'p 148-13 u'), + RgbInt8Color.rgbName(0x64, 0xa0, 0x78, 'p 140-12 c'), + RgbInt8Color.rgbName(0x5d, 0xa8, 0x82, '2249 up'), + RgbInt8Color.rgbName(0x5b, 0x9f, 0x89, 'p 131-12 c'), + RgbInt8Color.rgbName(0x5c, 0xa2, 0x8e, 'p 130-12 u'), + RgbInt8Color.rgbName(0x5c, 0x9b, 0x9a, '2460 up'), + RgbInt8Color.rgbName(0x5e, 0xa5, 0x9a, '7473 u'), + RgbInt8Color.rgbName(0x60, 0x9c, 0xa2, '2234 u'), + RgbInt8Color.rgbName(0x61, 0xa2, 0x9e, '2460 u'), + RgbInt8Color.rgbName(0x5f, 0xa1, 0xa3, 'p 122-5 u'), + RgbInt8Color.rgbName(0x5c, 0xa8, 0x9f, 'p 124-13 u'), + RgbInt8Color.rgbName(0x5c, 0xa3, 0xb3, '2219 c'), + RgbInt8Color.rgbName(0x5b, 0xa6, 0xb1, '2219 cp'), + RgbInt8Color.rgbName(0x62, 0x9b, 0xab, '2220 u'), + RgbInt8Color.rgbName(0x61, 0xa5, 0xaa, '2233 up'), + RgbInt8Color.rgbName(0x61, 0x9e, 0xb7, '549 cp'), + RgbInt8Color.rgbName(0x61, 0x9e, 0xc6, '2389 u'), + RgbInt8Color.rgbName(0x60, 0xa9, 0xbf, '7702 up'), + RgbInt8Color.rgbName(0x61, 0xa1, 0xc0, 'p 116-12 u'), + RgbInt8Color.rgbName(0x5d, 0xab, 0xc6, '7702 u'), + RgbInt8Color.rgbName(0x60, 0xa7, 0x69, '2271 up'), + RgbInt8Color.rgbName(0x61, 0xa6, 0x7e, 'p 137-5 c'), + RgbInt8Color.rgbName(0x64, 0xa5, 0x74, 'p 139-13 u'), + RgbInt8Color.rgbName(0x5c, 0xaa, 0x90, '2459 u'), + RgbInt8Color.rgbName(0x5e, 0xaf, 0x90, '339 up'), + RgbInt8Color.rgbName(0x62, 0xa7, 0x8c, 'p 131-4 c'), + RgbInt8Color.rgbName(0x5e, 0xad, 0x9b, '2400 up'), + RgbInt8Color.rgbName(0x5f, 0xb0, 0x9e, '2240 up'), + RgbInt8Color.rgbName(0x5d, 0xb1, 0xac, '2460 cp'), + RgbInt8Color.rgbName(0x62, 0xaa, 0xae, 'p 122-5 c'), + RgbInt8Color.rgbName(0x5d, 0xaf, 0xae, 'p 124-13 c'), + RgbInt8Color.rgbName(0x5b, 0xab, 0xc3, 'p 118-13 u'), + RgbInt8Color.rgbName(0x62, 0xa8, 0xc1, '7458 up'), + RgbInt8Color.rgbName(0x63, 0xb1, 0xbc, '7709 c'), + RgbInt8Color.rgbName(0x63, 0xab, 0xc3, 'p 119-4 c'), + RgbInt8Color.rgbName(0x5e, 0xb4, 0xcf, 'p 118-13 c'), + RgbInt8Color.rgbName(0x64, 0x97, 0x5e, '362 up'), + RgbInt8Color.rgbName(0x64, 0xb0, 0x91, 'p 133-13 c'), + RgbInt8Color.rgbName(0x62, 0xb3, 0x9b, '3268 up'), + RgbInt8Color.rgbName(0x63, 0xb2, 0xa7, '2398 up'), + RgbInt8Color.rgbName(0x62, 0xb5, 0xbb, '7709 cp'), + RgbInt8Color.rgbName(0x5f, 0xb7, 0xca, '631 up'), + RgbInt8Color.rgbName(0x62, 0xb6, 0xcb, '2198 up'), + RgbInt8Color.rgbName(0x60, 0xb9, 0xcd, '311 up'), + RgbInt8Color.rgbName(0x80, 0x8c, 0x24, '2306 c'), + RgbInt8Color.rgbName(0x7f, 0x8f, 0x25, 'p 161-16 c'), + RgbInt8Color.rgbName(0x7f, 0xbe, 0xeb, '291 u'), + RgbInt8Color.rgbName(0x72, 0xb7, 0xe2, '2915 cp'), + RgbInt8Color.rgbName(0x93, 0xc9, 0xe, '2292 c'), + RgbInt8Color.rgbName(0x7d, 0x8d, 0x2a, '2306 cp'), + RgbInt8Color.rgbName(0x8f, 0xc4, 0x8, '376 xgc'), + RgbInt8Color.rgbName(0x81, 0x97, 0x36, 'p 158-15 c'), + RgbInt8Color.rgbName(0x80, 0x8d, 0x34, 'p 162-7 c'), + RgbInt8Color.rgbName(0x7d, 0xcd, 0x6d, '2269 xgc'), + RgbInt8Color.rgbName(0x7c, 0xcb, 0xea, '297 cp'), + RgbInt8Color.rgbName(0x7e, 0xcc, 0xee, '297 u'), + RgbInt8Color.rgbName(0x7b, 0xc6, 0xeb, 'p 115-5 u'), + RgbInt8Color.rgbName(0x8f, 0xcb, 0x24, '2293 u'), + RgbInt8Color.rgbName(0x7a, 0xce, 0x7a, '2268 xgc'), + RgbInt8Color.rgbName(0x7d, 0xcc, 0x77, '359 u'), + RgbInt8Color.rgbName(0x79, 0xa5, 0x50, '10319 c'), + RgbInt8Color.rgbName(0x80, 0xa4, 0x50, '576 xgc'), + RgbInt8Color.rgbName(0x65, 0xa9, 0x69, '7738 u'), + RgbInt8Color.rgbName(0x80, 0xe0, 0xa7, '353 c'), + RgbInt8Color.rgbName(0x7a, 0xe1, 0xbf, '3375 c'), + RgbInt8Color.rgbName(0x7c, 0xe0, 0xd3, '3245 c'), + RgbInt8Color.rgbName(0x7e, 0xdd, 0xd3, '7471 c'), + RgbInt8Color.rgbName(0x8f, 0xb3, 0x17, '2301 xgc'), + RgbInt8Color.rgbName(0x79, 0xab, 0x60, '369 up'), + RgbInt8Color.rgbName(0x7f, 0xaf, 0x5c, '7489 cp'), + RgbInt8Color.rgbName(0x67, 0xb0, 0x80, 'p 139-13 c'), + RgbInt8Color.rgbName(0x6f, 0xb2, 0x76, 'p 145-5 u'), + RgbInt8Color.rgbName(0x7f, 0xe2, 0xd8, '7471 u'), + RgbInt8Color.rgbName(0x93, 0xda, 0x49, '2285 c'), + RgbInt8Color.rgbName(0x8f, 0xad, 0x15, '2301 c'), + RgbInt8Color.rgbName(0x81, 0xb5, 0x69, '2421 up'), + RgbInt8Color.rgbName(0x7c, 0xba, 0x75, '2464 up'), + RgbInt8Color.rgbName(0x82, 0xba, 0x74, 'p 148-5 c'), + RgbInt8Color.rgbName(0x79, 0xb5, 0x7c, 'p 142-12 c'), + RgbInt8Color.rgbName(0x80, 0xd2, 0x91, '2255 xgc'), + RgbInt8Color.rgbName(0x7e, 0xd5, 0xb5, '3375 xgc'), + RgbInt8Color.rgbName(0x92, 0xae, 0x4f, '2301 u'), + RgbInt8Color.rgbName(0x94, 0xb0, 0x41, 'p 157-15 c'), + RgbInt8Color.rgbName(0x95, 0xd0, 0x56, '2285 xgc'), + RgbInt8Color.rgbName(0x8d, 0xe9, 0x71, '902 c'), + RgbInt8Color.rgbName(0x8e, 0xdd, 0x65, '7487 c'), + RgbInt8Color.rgbName(0x82, 0xbf, 0x8c, '7479 cp'), + RgbInt8Color.rgbName(0x92, 0xde, 0x63, '2285 u'), + RgbInt8Color.rgbName(0x82, 0xbf, 0x90, '7479 up'), + RgbInt8Color.rgbName(0x7d, 0xc6, 0xa0, '2247 u'), + RgbInt8Color.rgbName(0x7f, 0xc2, 0x9d, 'p 136-4 c'), + RgbInt8Color.rgbName(0x7e, 0xbe, 0xa4, '338 up'), + RgbInt8Color.rgbName(0x81, 0xd6, 0xc7, '3245 xgc'), + RgbInt8Color.rgbName(0x7e, 0xd4, 0xc9, '7471 xgc'), + RgbInt8Color.rgbName(0x82, 0xd8, 0xd5, '324 u'), + RgbInt8Color.rgbName(0x7f, 0xcc, 0xda, '2197 xgc'), + RgbInt8Color.rgbName(0x7b, 0xcc, 0xd4, '2225 xgc'), + RgbInt8Color.rgbName(0x67, 0x38, 0x1b, '1545 xgc'), + RgbInt8Color.rgbName(0x65, 0x30, 0x24, '483 c'), + RgbInt8Color.rgbName(0x68, 0x2f, 0x26, '483 xgc'), + RgbInt8Color.rgbName(0x6b, 0x1a, 0x35, '7421 xgc'), + RgbInt8Color.rgbName(0x6f, 0x2f, 0x1e, 'p 42-16 c'), + RgbInt8Color.rgbName(0x70, 0x2b, 0x21, 'p 47-16 c'), + RgbInt8Color.rgbName(0x6c, 0x1d, 0x45, '222 c'), + RgbInt8Color.rgbName(0x60, 0x30, 0x34, '1817 xgc'), + RgbInt8Color.rgbName(0x56, 0x36, 0x40, 'p 78-16 c'), + RgbInt8Color.rgbName(0x69, 0x1d, 0x51, 'p 85-8 c'), + RgbInt8Color.rgbName(0x67, 0x21, 0x46, '229 c'), + RgbInt8Color.rgbName(0x66, 0x25, 0x45, '690 xgc'), + RgbInt8Color.rgbName(0x5b, 0x30, 0x43, '8543 c'), + RgbInt8Color.rgbName(0x70, 0x1b, 0x45, 'p 77-16 c'), + RgbInt8Color.rgbName(0x5c, 0x2d, 0x54, '262 cp'), + RgbInt8Color.rgbName(0x61, 0x2c, 0x51, '511 c'), + RgbInt8Color.rgbName(0x62, 0x2a, 0x52, '511 cp'), + RgbInt8Color.rgbName(0x5d, 0x2e, 0x4e, '511 xgc'), + RgbInt8Color.rgbName(0x61, 0x2c, 0x51, '7652 xgc'), + RgbInt8Color.rgbName(0x83, 0x0, 0x65, '2425 c'), + RgbInt8Color.rgbName(0x87, 0x0, 0x66, '2425 xgc'), + RgbInt8Color.rgbName(0x87, 0x2, 0x7b, '2355 c'), + RgbInt8Color.rgbName(0x6d, 0x20, 0x77, '259 c'), + RgbInt8Color.rgbName(0x70, 0x25, 0x78, '259 xgc'), + RgbInt8Color.rgbName(0x8b, 0x3a, 0x83, '2070 cp'), + RgbInt8Color.rgbName(0x83, 0x32, 0x90, '2602 xgc'), + RgbInt8Color.rgbName(0x84, 0x38, 0x85, 'p 91-7 c'), + RgbInt8Color.rgbName(0x9b, 0x26, 0xb6, '2592 c'), + RgbInt8Color.rgbName(0x8f, 0x1a, 0x95, '2070 c'), + RgbInt8Color.rgbName(0x98, 0x1d, 0x97, '254 c'), + RgbInt8Color.rgbName(0x8d, 0x47, 0x9d, '2592 xgc'), + RgbInt8Color.rgbName(0x85, 0x44, 0x99, '2593 xgc'), + RgbInt8Color.rgbName(0x6d, 0x24, 0x39, '7421 cp'), + RgbInt8Color.rgbName(0x6d, 0x27, 0x3c, '7428 cp'), + RgbInt8Color.rgbName(0x6d, 0x22, 0x44, '229 cp'), + RgbInt8Color.rgbName(0x6c, 0x20, 0x5d, 'p 89-16 c'), + RgbInt8Color.rgbName(0x6d, 0x27, 0x72, 'p 91-16 c'), + RgbInt8Color.rgbName(0x8a, 0x44, 0x90, '10213 c'), + RgbInt8Color.rgbName(0x8b, 0x43, 0x8f, '2592 cp'), + RgbInt8Color.rgbName(0x97, 0x57, 0xa6, '2602 u'), + RgbInt8Color.rgbName(0x68, 0x32, 0x2d, '7610 cp'), + RgbInt8Color.rgbName(0x62, 0x2e, 0x37, '8542 c'), + RgbInt8Color.rgbName(0x5b, 0x30, 0x42, '7645 xgc'), + RgbInt8Color.rgbName(0x62, 0x31, 0x46, '7644 xgc'), + RgbInt8Color.rgbName(0x69, 0x29, 0x5a, '7652 cp'), + RgbInt8Color.rgbName(0x67, 0x2a, 0x68, '260 xgc'), + RgbInt8Color.rgbName(0x68, 0x2e, 0x64, '2622 xgc'), + RgbInt8Color.rgbName(0x66, 0x2f, 0x6f, '2623 xgc'), + RgbInt8Color.rgbName(0x6b, 0x2f, 0x75, '2613 cp'), + RgbInt8Color.rgbName(0x6b, 0x30, 0x77, '7663 c'), + RgbInt8Color.rgbName(0x65, 0x32, 0x79, '7664 c'), + RgbInt8Color.rgbName(0x6a, 0x32, 0x74, '520 cp'), + RgbInt8Color.rgbName(0x6c, 0x2f, 0x7d, '7663 cp'), + RgbInt8Color.rgbName(0x8c, 0x47, 0x99, '258 c'), + RgbInt8Color.rgbName(0x9f, 0x5c, 0xc0, '7441 c'), + RgbInt8Color.rgbName(0x65, 0x3b, 0x22, '469 xgc'), + RgbInt8Color.rgbName(0x63, 0x34, 0x2a, '7630 cp'), + RgbInt8Color.rgbName(0x65, 0x36, 0x7e, '8825 c'), + RgbInt8Color.rgbName(0x66, 0x37, 0x79, '7664 xgc'), + RgbInt8Color.rgbName(0x6e, 0x36, 0x7a, '7663 xgc'), + RgbInt8Color.rgbName(0x6d, 0x38, 0x7c, 'p 93-15 c'), + RgbInt8Color.rgbName(0x6d, 0x43, 0x1e, '8583 c'), + RgbInt8Color.rgbName(0x6a, 0x44, 0x24, '2320 xgc'), + RgbInt8Color.rgbName(0x69, 0x3f, 0x23, '469 c'), + RgbInt8Color.rgbName(0x65, 0x3e, 0x25, '469 cp'), + RgbInt8Color.rgbName(0x5d, 0x35, 0x3b, '504 cp'), + RgbInt8Color.rgbName(0x6a, 0x2a, 0x5b, '7651 c'), + RgbInt8Color.rgbName(0x65, 0x31, 0x65, '2622 c'), + RgbInt8Color.rgbName(0x65, 0x34, 0x74, '8824 c'), + RgbInt8Color.rgbName(0x65, 0x42, 0x8a, 'medium purple u'), + RgbInt8Color.rgbName(0x65, 0x3d, 0x85, 'p 96-7 c'), + RgbInt8Color.rgbName(0x68, 0x45, 0x8b, '7678 xgc'), + RgbInt8Color.rgbName(0x6d, 0x41, 0x89, '2082 cp'), + RgbInt8Color.rgbName(0x6e, 0x4c, 0x1e, '1405 c'), + RgbInt8Color.rgbName(0x73, 0x32, 0x1c, 'p 39-16 c'), + RgbInt8Color.rgbName(0x6c, 0x47, 0x27, '8584 c'), + RgbInt8Color.rgbName(0x5f, 0x39, 0x2e, '4695 xgc'), + RgbInt8Color.rgbName(0x5d, 0x36, 0x37, '7630 xgc'), + RgbInt8Color.rgbName(0x5a, 0x3d, 0x33, 'p 43-16 c'), + RgbInt8Color.rgbName(0x58, 0x3d, 0x3e, '7617 c'), + RgbInt8Color.rgbName(0x55, 0x40, 0x3d, 'p 33-16 c'), + RgbInt8Color.rgbName(0x5d, 0x37, 0x54, '7659 c'), + RgbInt8Color.rgbName(0x60, 0x38, 0x57, '7659 cp'), + RgbInt8Color.rgbName(0x60, 0x3d, 0x71, 'p 94-14 c'), + RgbInt8Color.rgbName(0x69, 0x49, 0x91, '2077 cp'), + RgbInt8Color.rgbName(0x68, 0x47, 0x8d, '7678 c'), + RgbInt8Color.rgbName(0x6c, 0x4b, 0x94, '7678 cp'), + RgbInt8Color.rgbName(0x8a, 0x69, 0xd4, '814 c'), + RgbInt8Color.rgbName(0x88, 0x66, 0xbc, '2075 c'), + RgbInt8Color.rgbName(0x86, 0x66, 0xba, '2075 xgc'), + RgbInt8Color.rgbName(0x8c, 0x6d, 0xb4, '2076 u'), + RgbInt8Color.rgbName(0x88, 0x6c, 0xc6, '2088 u'), + RgbInt8Color.rgbName(0x8a, 0x65, 0xc4, '266 u'), + RgbInt8Color.rgbName(0x62, 0x3b, 0x2a, '477 c'), + RgbInt8Color.rgbName(0x5c, 0x3d, 0x31, '7596 c'), + RgbInt8Color.rgbName(0x6a, 0x56, 0x25, '7561 cp'), + RgbInt8Color.rgbName(0x60, 0x3b, 0x2e, '477 xgc'), + RgbInt8Color.rgbName(0x5c, 0x3f, 0x35, '7596 xgc'), + RgbInt8Color.rgbName(0x5b, 0x3f, 0x3c, '7617 cp'), + RgbInt8Color.rgbName(0x58, 0x44, 0x46, '438 c'), + RgbInt8Color.rgbName(0x55, 0x48, 0x48, '438 cp'), + RgbInt8Color.rgbName(0x5b, 0x3f, 0x43, 'p 67-16 c'), + RgbInt8Color.rgbName(0x59, 0x42, 0x46, 'p 79-16 c'), + RgbInt8Color.rgbName(0x61, 0x39, 0x51, '8544 c'), + RgbInt8Color.rgbName(0x51, 0x4c, 0x4c, 'p 172-16 u'), + RgbInt8Color.rgbName(0x61, 0x3c, 0x56, '8545 c'), + RgbInt8Color.rgbName(0x59, 0x48, 0x5c, 'p 98-7 u'), + RgbInt8Color.rgbName(0x56, 0x4c, 0x60, 'p 103-15 u'), + RgbInt8Color.rgbName(0x58, 0x4b, 0x73, '3542 up'), + RgbInt8Color.rgbName(0x67, 0x3b, 0x6f, '520 xgc'), + RgbInt8Color.rgbName(0x5e, 0x42, 0x74, 'p 97-14 c'), + RgbInt8Color.rgbName(0x59, 0x4c, 0x7b, 'p 101-6 c'), + RgbInt8Color.rgbName(0x67, 0x40, 0x79, 'p 94-7 c'), + RgbInt8Color.rgbName(0x5e, 0x4b, 0x84, '7447 cp'), + RgbInt8Color.rgbName(0x65, 0x5a, 0x9a, '10231 c'), + RgbInt8Color.rgbName(0x8a, 0x75, 0xd1, '2101 c'), + RgbInt8Color.rgbName(0x8c, 0x6f, 0xca, '2665 u'), + RgbInt8Color.rgbName(0x77, 0x42, 0x12, '731 c'), + RgbInt8Color.rgbName(0x76, 0x41, 0x13, '731 xgc'), + RgbInt8Color.rgbName(0x5a, 0x4a, 0x36, '7532 xgc'), + RgbInt8Color.rgbName(0x5c, 0x47, 0x38, '7589 c'), + RgbInt8Color.rgbName(0x62, 0x45, 0x34, '7582 xgc'), + RgbInt8Color.rgbName(0x5e, 0x4b, 0x3c, '7519 c'), + RgbInt8Color.rgbName(0x5a, 0x49, 0x3e, 'p 23-16 c'), + RgbInt8Color.rgbName(0x57, 0x4a, 0x4a, '438 xgc'), + RgbInt8Color.rgbName(0x53, 0x4d, 0x4b, 'p 171-16 u'), + RgbInt8Color.rgbName(0x53, 0x4c, 0x49, 'p 44-16 u'), + RgbInt8Color.rgbName(0x54, 0x4f, 0x4c, 'p 170-15 u'), + RgbInt8Color.rgbName(0x5d, 0x4a, 0x50, 'p 86-15 c'), + RgbInt8Color.rgbName(0x5d, 0x46, 0x50, 'p 90-16 u'), + RgbInt8Color.rgbName(0x59, 0x4b, 0x60, 'p 101-7 u'), + RgbInt8Color.rgbName(0x53, 0x53, 0x56, 'p 174-15 u'), + RgbInt8Color.rgbName(0x5c, 0x49, 0x5c, 'p 92-16 u'), + RgbInt8Color.rgbName(0x5c, 0x4e, 0x63, '7666 c'), + RgbInt8Color.rgbName(0x59, 0x4d, 0x67, 'p 100-15 u'), + RgbInt8Color.rgbName(0x5e, 0x4b, 0x67, 'p 94-15 u'), + RgbInt8Color.rgbName(0x5c, 0x4b, 0x60, 'p 95-15 u'), + RgbInt8Color.rgbName(0x5e, 0x4b, 0x64, 'p 97-15 u'), + RgbInt8Color.rgbName(0x5a, 0x51, 0x71, 'p 103-7 u'), + RgbInt8Color.rgbName(0x5e, 0x4c, 0x6c, 'p 94-8 u'), + RgbInt8Color.rgbName(0x62, 0x46, 0x73, 'p 98-6 c'), + RgbInt8Color.rgbName(0x5a, 0x4b, 0x7c, '3542 u'), + RgbInt8Color.rgbName(0x61, 0x4b, 0x79, '668 c'), + RgbInt8Color.rgbName(0x66, 0x47, 0x7f, 'p 97-6 c'), + RgbInt8Color.rgbName(0x6d, 0x60, 0xa9, '2096 xgc'), + RgbInt8Color.rgbName(0x6c, 0x63, 0xa5, '2103 u'), + RgbInt8Color.rgbName(0x6e, 0x5c, 0xa1, '2665 cp'), + RgbInt8Color.rgbName(0x6f, 0x79, 0xbd, '2115 c'), + RgbInt8Color.rgbName(0x89, 0x80, 0xd4, '2725 u'), + RgbInt8Color.rgbName(0x72, 0x51, 0x1e, '1405 xgc'), + RgbInt8Color.rgbName(0x6b, 0x4f, 0x2d, '2321 cp'), + RgbInt8Color.rgbName(0x64, 0x4f, 0x33, '462 cp'), + RgbInt8Color.rgbName(0x61, 0x4c, 0x37, '8621 c'), + RgbInt8Color.rgbName(0x5d, 0x51, 0x3e, 'p 13-16 c'), + RgbInt8Color.rgbName(0x63, 0x51, 0x3d, '7532 c'), + RgbInt8Color.rgbName(0x54, 0x4f, 0x4b, 'p 179-16 u'), + RgbInt8Color.rgbName(0x5e, 0x4f, 0x47, '2335 c'), + RgbInt8Color.rgbName(0x5a, 0x4f, 0x4b, '411 xgc'), + RgbInt8Color.rgbName(0x5e, 0x51, 0x45, '7519 cp'), + RgbInt8Color.rgbName(0x5d, 0x4c, 0x46, '8425 c'), + RgbInt8Color.rgbName(0x58, 0x53, 0x4b, 'p 170-14 c'), + RgbInt8Color.rgbName(0x58, 0x51, 0x4b, 'p 171-15 c'), + RgbInt8Color.rgbName(0x56, 0x52, 0x4e, 'p 179-15 u'), + RgbInt8Color.rgbName(0x5b, 0x4c, 0x48, 'p 43-16 u'), + RgbInt8Color.rgbName(0x5a, 0x50, 0x52, '10386 c'), + RgbInt8Color.rgbName(0x5a, 0x52, 0x4d, '2479 up'), + RgbInt8Color.rgbName(0x5a, 0x54, 0x51, 'p 170-14 u'), + RgbInt8Color.rgbName(0x56, 0x55, 0x55, 'p 172-14 c'), + RgbInt8Color.rgbName(0x57, 0x52, 0x52, 'p 172-15 u'), + RgbInt8Color.rgbName(0x56, 0x54, 0x55, 'p 173-15 u'), + RgbInt8Color.rgbName(0x52, 0x55, 0x56, 'p 176-14 u'), + RgbInt8Color.rgbName(0x5c, 0x51, 0x4e, 'p 44-15 u'), + RgbInt8Color.rgbName(0x5f, 0x50, 0x4f, 'p 79-16 u'), + RgbInt8Color.rgbName(0x5b, 0x4d, 0x51, 'p 86-16 u'), + RgbInt8Color.rgbName(0x59, 0x4e, 0x52, 'p 87-16 u'), + RgbInt8Color.rgbName(0x55, 0x56, 0x5b, 'cool gray 11 cp'), + RgbInt8Color.rgbName(0x58, 0x58, 0x59, 'p 173-14 c'), + RgbInt8Color.rgbName(0x57, 0x58, 0x5c, 'p 174-14 u'), + RgbInt8Color.rgbName(0x56, 0x56, 0x57, 'p 179-13 c'), + RgbInt8Color.rgbName(0x5d, 0x52, 0x58, 'p 87-15 u'), + RgbInt8Color.rgbName(0x59, 0x54, 0x67, '3524 u'), + RgbInt8Color.rgbName(0x60, 0x50, 0x62, '7666 cp'), + RgbInt8Color.rgbName(0x5f, 0x4e, 0x63, 'p 98-14 u'), + RgbInt8Color.rgbName(0x5c, 0x55, 0x6f, '276 u'), + RgbInt8Color.rgbName(0x5d, 0x56, 0x6c, '5255 u'), + RgbInt8Color.rgbName(0x5e, 0x53, 0x69, 'p 101-14 u'), + RgbInt8Color.rgbName(0x5e, 0x55, 0x6d, 'p 103-14 u'), + RgbInt8Color.rgbName(0x63, 0x4f, 0x6e, 'p 97-14 u'), + RgbInt8Color.rgbName(0x57, 0x58, 0x76, '2766 up'), + RgbInt8Color.rgbName(0x61, 0x4e, 0x79, '3535 up'), + RgbInt8Color.rgbName(0x60, 0x53, 0x76, '3566 u'), + RgbInt8Color.rgbName(0x64, 0x50, 0x79, '7447 xgc'), + RgbInt8Color.rgbName(0x61, 0x51, 0x7b, 'p 99-7 u'), + RgbInt8Color.rgbName(0x60, 0x50, 0x87, '2105 u'), + RgbInt8Color.rgbName(0x5d, 0x56, 0x83, '275 u'), + RgbInt8Color.rgbName(0x63, 0x4e, 0x82, '3583 u'), + RgbInt8Color.rgbName(0x5d, 0x53, 0x80, 'p 96-8 u'), + RgbInt8Color.rgbName(0x5d, 0x56, 0x8e, '10235 c'), + RgbInt8Color.rgbName(0x5f, 0x57, 0x8b, '274 u'), + RgbInt8Color.rgbName(0x5e, 0x58, 0x88, 'p 100-14 c'), + RgbInt8Color.rgbName(0x67, 0x52, 0x93, '2089 cp'), + RgbInt8Color.rgbName(0x8b, 0x84, 0xd7, '2715 c'), + RgbInt8Color.rgbName(0x85, 0x86, 0xc6, '272 u'), + RgbInt8Color.rgbName(0x89, 0x86, 0xca, '7446 c'), + RgbInt8Color.rgbName(0x6d, 0x5d, 0x2b, '455 cp'), + RgbInt8Color.rgbName(0x68, 0x59, 0x2e, '7561 xgc'), + RgbInt8Color.rgbName(0x6a, 0x5c, 0x2e, '7769 xgc'), + RgbInt8Color.rgbName(0x67, 0x5a, 0x39, '2329 cp'), + RgbInt8Color.rgbName(0x67, 0x5e, 0x33, '7757 c'), + RgbInt8Color.rgbName(0x63, 0x59, 0x39, '7770 c'), + RgbInt8Color.rgbName(0x63, 0x58, 0x3a, '7770 cp'), + RgbInt8Color.rgbName(0x68, 0x59, 0x3c, '2329 c'), + RgbInt8Color.rgbName(0x59, 0x59, 0x55, '419 u'), + RgbInt8Color.rgbName(0x5b, 0x56, 0x52, '8600 c'), + RgbInt8Color.rgbName(0x5f, 0x5a, 0x52, 'p 169-16 u'), + RgbInt8Color.rgbName(0x60, 0x5a, 0x51, 'p 170-13 c'), + RgbInt8Color.rgbName(0x5a, 0x57, 0x52, 'p 178-15 u'), + RgbInt8Color.rgbName(0x5b, 0x57, 0x54, 'p 179-14 u'), + RgbInt8Color.rgbName(0x55, 0x5f, 0x60, '445 cp'), + RgbInt8Color.rgbName(0x54, 0x5f, 0x5f, '5467 u'), + RgbInt8Color.rgbName(0x59, 0x5d, 0x59, 'black 3 u'), + RgbInt8Color.rgbName(0x5c, 0x57, 0x58, 'p 172-14 u'), + RgbInt8Color.rgbName(0x5d, 0x5a, 0x5c, 'p 173-14 u'), + RgbInt8Color.rgbName(0x59, 0x5c, 0x5b, 'p 175-14 u'), + RgbInt8Color.rgbName(0x58, 0x5e, 0x5f, 'p 176-12 u'), + RgbInt8Color.rgbName(0x57, 0x5b, 0x5c, 'p 176-13 u'), + RgbInt8Color.rgbName(0x5b, 0x5f, 0x5b, 'p 177-13 u'), + RgbInt8Color.rgbName(0x57, 0x5c, 0x68, '2379 u'), + RgbInt8Color.rgbName(0x5b, 0x5d, 0x62, '433 u'), + RgbInt8Color.rgbName(0x5b, 0x5c, 0x64, '532 u'), + RgbInt8Color.rgbName(0x5c, 0x5e, 0x64, 'p 174-13 u'), + RgbInt8Color.rgbName(0x55, 0x5e, 0x72, '2376 xgc'), + RgbInt8Color.rgbName(0x57, 0x5f, 0x72, '2378 u'), + RgbInt8Color.rgbName(0x55, 0x60, 0x74, '2378 up'), + RgbInt8Color.rgbName(0x56, 0x60, 0x7d, '655 up'), + RgbInt8Color.rgbName(0x5c, 0x57, 0x7d, 'p 102-15 u'), + RgbInt8Color.rgbName(0x5a, 0x5b, 0x85, '2118 u'), + RgbInt8Color.rgbName(0x59, 0x5d, 0x86, '2119 up'), + RgbInt8Color.rgbName(0x5d, 0x59, 0x86, '275 up'), + RgbInt8Color.rgbName(0x5f, 0x5a, 0x88, '2755 up'), + RgbInt8Color.rgbName(0x5a, 0x5d, 0x82, '3584 u'), + RgbInt8Color.rgbName(0x5e, 0x59, 0x86, 'p 102-7 u'), + RgbInt8Color.rgbName(0x5a, 0x5f, 0x80, 'p 105-14 u'), + RgbInt8Color.rgbName(0x63, 0x59, 0x8b, '2091 up'), + RgbInt8Color.rgbName(0x5b, 0x61, 0x8f, '2110 c'), + RgbInt8Color.rgbName(0x5d, 0x5d, 0x89, 'p 103-13 c'), + RgbInt8Color.rgbName(0x5f, 0x63, 0x93, '2118 up'), + RgbInt8Color.rgbName(0x61, 0x5e, 0x9b, '7669 c'), + RgbInt8Color.rgbName(0x60, 0x5e, 0x92, 'p 100-6 c'), + RgbInt8Color.rgbName(0x63, 0x62, 0x96, 'p 103-5 c'), + RgbInt8Color.rgbName(0x64, 0x5a, 0x95, 'p 99-14 c'), + RgbInt8Color.rgbName(0x67, 0x5d, 0x9d, '2104 u'), + RgbInt8Color.rgbName(0x64, 0x5d, 0x9b, '273 u'), + RgbInt8Color.rgbName(0x6c, 0x78, 0xaa, '2131 up'), + RgbInt8Color.rgbName(0x81, 0x65, 0x16, 'p 12-16 c'), + RgbInt8Color.rgbName(0x65, 0x66, 0x35, '7750 c'), + RgbInt8Color.rgbName(0x60, 0x60, 0x43, 'p 168-16 u'), + RgbInt8Color.rgbName(0x66, 0x66, 0x44, '2308 up'), + RgbInt8Color.rgbName(0x62, 0x68, 0x45, 'p 165-16 u'), + RgbInt8Color.rgbName(0x55, 0x69, 0x57, '350 up'), + RgbInt8Color.rgbName(0x5d, 0x5f, 0x4f, 'p 169-15 c'), + RgbInt8Color.rgbName(0x5f, 0x62, 0x52, 'p 178-14 c'), + RgbInt8Color.rgbName(0x63, 0x65, 0x5a, '417 cp'), + RgbInt8Color.rgbName(0x62, 0x65, 0x5a, '417 xgc'), + RgbInt8Color.rgbName(0x5a, 0x68, 0x5d, '553 u'), + RgbInt8Color.rgbName(0x59, 0x6b, 0x5c, '553 up'), + RgbInt8Color.rgbName(0x5d, 0x62, 0x5b, 'black 3 up'), + RgbInt8Color.rgbName(0x5e, 0x67, 0x57, 'p 177-13 c'), + RgbInt8Color.rgbName(0x5b, 0x61, 0x66, '10391 c'), + RgbInt8Color.rgbName(0x60, 0x65, 0x66, '426 up'), + RgbInt8Color.rgbName(0x60, 0x62, 0x64, '433 up'), + RgbInt8Color.rgbName(0x5f, 0x62, 0x5f, '447 u'), + RgbInt8Color.rgbName(0x60, 0x63, 0x68, '7547 up'), + RgbInt8Color.rgbName(0x5c, 0x6b, 0x62, '7736 u'), + RgbInt8Color.rgbName(0x61, 0x65, 0x68, 'cool gray 10 xgc'), + RgbInt8Color.rgbName(0x62, 0x64, 0x66, 'p 173-12 c'), + RgbInt8Color.rgbName(0x5b, 0x64, 0x6a, 'p 174-12 c'), + RgbInt8Color.rgbName(0x5a, 0x6b, 0x67, 'p 175-12 c'), + RgbInt8Color.rgbName(0x5d, 0x63, 0x62, 'p 175-13 u'), + RgbInt8Color.rgbName(0x59, 0x66, 0x66, 'p 176-10 c'), + RgbInt8Color.rgbName(0x5e, 0x64, 0x65, 'p 176-11 u'), + RgbInt8Color.rgbName(0x61, 0x67, 0x63, 'p 177-11 u'), + RgbInt8Color.rgbName(0x58, 0x69, 0x75, '2168 u'), + RgbInt8Color.rgbName(0x59, 0x66, 0x76, '2376 cp'), + RgbInt8Color.rgbName(0x5b, 0x67, 0x70, '431 c'), + RgbInt8Color.rgbName(0x5c, 0x67, 0x6f, '431 xgc'), + RgbInt8Color.rgbName(0x63, 0x67, 0x6e, '532 up'), + RgbInt8Color.rgbName(0x5b, 0x65, 0x70, '533 up'), + RgbInt8Color.rgbName(0x61, 0x64, 0x6a, 'p 174-12 u'), + RgbInt8Color.rgbName(0x58, 0x69, 0x7e, '2374 up'), + RgbInt8Color.rgbName(0x57, 0x69, 0x7b, '2377 u'), + RgbInt8Color.rgbName(0x5e, 0x65, 0x78, '533 u'), + RgbInt8Color.rgbName(0x54, 0x68, 0x7e, '7463 up'), + RgbInt8Color.rgbName(0x5f, 0x68, 0x82, '2111 up'), + RgbInt8Color.rgbName(0x59, 0x67, 0x89, '2140 u'), + RgbInt8Color.rgbName(0x60, 0x66, 0x84, '2140 up'), + RgbInt8Color.rgbName(0x59, 0x6a, 0x85, '2374 cp'), + RgbInt8Color.rgbName(0x5b, 0x69, 0x83, '534 u'), + RgbInt8Color.rgbName(0x59, 0x68, 0x86, '654 up'), + RgbInt8Color.rgbName(0x5b, 0x62, 0x88, 'p 105-6 u'), + RgbInt8Color.rgbName(0x58, 0x66, 0x86, 'p 107-13 u'), + RgbInt8Color.rgbName(0x69, 0x64, 0x96, '10234 c'), + RgbInt8Color.rgbName(0x64, 0x65, 0x96, '2109 xgc'), + RgbInt8Color.rgbName(0x5d, 0x69, 0x9b, '2738 up'), + RgbInt8Color.rgbName(0x69, 0x64, 0x95, '274 up'), + RgbInt8Color.rgbName(0x61, 0x66, 0x98, '2746 up'), + RgbInt8Color.rgbName(0x68, 0x65, 0x96, '7672 up'), + RgbInt8Color.rgbName(0x60, 0x6a, 0x94, 'p 104-14 u'), + RgbInt8Color.rgbName(0x65, 0x69, 0xa2, '2117 u'), + RgbInt8Color.rgbName(0x60, 0x6a, 0x9c, '3590 u'), + RgbInt8Color.rgbName(0x65, 0x7f, 0xb8, '2115 cp'), + RgbInt8Color.rgbName(0x6b, 0x7d, 0xb9, '7455 u'), + RgbInt8Color.rgbName(0x6d, 0x79, 0xb6, '7456 cp'), + RgbInt8Color.rgbName(0x78, 0x71, 0x21, '385 c'), + RgbInt8Color.rgbName(0x7f, 0x69, 0x17, 'p 9-16 c'), + RgbInt8Color.rgbName(0x6d, 0x71, 0x2e, '5757 c'), + RgbInt8Color.rgbName(0x6e, 0x74, 0x2f, '5757 cp'), + RgbInt8Color.rgbName(0x6e, 0x70, 0x34, '7749 xgc'), + RgbInt8Color.rgbName(0x67, 0x70, 0x3f, '5753 cp'), + RgbInt8Color.rgbName(0x67, 0x6a, 0x3e, '7762 cp'), + RgbInt8Color.rgbName(0x60, 0x6f, 0x4c, 'p 159-15 u'), + RgbInt8Color.rgbName(0x60, 0x72, 0x4b, 'p 159-8 u'), + RgbInt8Color.rgbName(0x59, 0x6d, 0x5d, '7735 up'), + RgbInt8Color.rgbName(0x5b, 0x6d, 0x60, '7736 up'), + RgbInt8Color.rgbName(0x5f, 0x6a, 0x59, 'p 177-12 c'), + RgbInt8Color.rgbName(0x61, 0x70, 0x60, '2410 u'), + RgbInt8Color.rgbName(0x60, 0x74, 0x64, '2410 up'), + RgbInt8Color.rgbName(0x63, 0x6e, 0x63, '5605 up'), + RgbInt8Color.rgbName(0x5e, 0x74, 0x61, '5615 c'), + RgbInt8Color.rgbName(0x5f, 0x71, 0x63, '7735 u'), + RgbInt8Color.rgbName(0x5d, 0x6e, 0x6a, 'p 175-11 c'), + RgbInt8Color.rgbName(0x5b, 0x75, 0x70, '2463 c'), + RgbInt8Color.rgbName(0x58, 0x72, 0x70, '2463 cp'), + RgbInt8Color.rgbName(0x5f, 0x70, 0x70, '5477 u'), + RgbInt8Color.rgbName(0x61, 0x6a, 0x70, 'p 174-11 c'), + RgbInt8Color.rgbName(0x60, 0x6f, 0x6d, 'p 176-8 c'), + RgbInt8Color.rgbName(0x64, 0x70, 0x6f, 'p 176-8 u'), + RgbInt8Color.rgbName(0x5f, 0x6b, 0x6c, 'p 176-9 c'), + RgbInt8Color.rgbName(0x66, 0x6e, 0x6e, 'p 176-9 u'), + RgbInt8Color.rgbName(0x59, 0x70, 0x7c, '2181 u'), + RgbInt8Color.rgbName(0x5d, 0x6d, 0x7e, '2377 up'), + RgbInt8Color.rgbName(0x5d, 0x6a, 0x76, '431 cp'), + RgbInt8Color.rgbName(0x5d, 0x70, 0x79, '7477 u'), + RgbInt8Color.rgbName(0x59, 0x71, 0x87, '2166 xgc'), + RgbInt8Color.rgbName(0x5f, 0x6c, 0x80, '534 up'), + RgbInt8Color.rgbName(0x5d, 0x6a, 0x85, 'p 108-13 u'), + RgbInt8Color.rgbName(0x5c, 0x6d, 0x8b, '2109 cp'), + RgbInt8Color.rgbName(0x5e, 0x6f, 0x90, 'p 107-12 u'), + RgbInt8Color.rgbName(0x5e, 0x6e, 0x8b, 'p 108-5 u'), + RgbInt8Color.rgbName(0x5e, 0x71, 0x9d, '7685 u'), + RgbInt8Color.rgbName(0x5d, 0x74, 0x97, 'p 108-13 c'), + RgbInt8Color.rgbName(0x60, 0x71, 0xa5, '2132 up'), + RgbInt8Color.rgbName(0x5d, 0x73, 0xa5, '3506 up'), + RgbInt8Color.rgbName(0x68, 0x6e, 0x9f, '7668 c'), + RgbInt8Color.rgbName(0x63, 0x6e, 0xa0, 'blue 072 up'), + RgbInt8Color.rgbName(0x5e, 0x74, 0x9e, 'p 106-14 u'), + RgbInt8Color.rgbName(0x60, 0x76, 0xa9, '2728 up'), + RgbInt8Color.rgbName(0x83, 0x7a, 0x16, 'p 3-16 c'), + RgbInt8Color.rgbName(0x68, 0x79, 0x42, '8701 c'), + RgbInt8Color.rgbName(0x5b, 0x78, 0x55, '2266 u'), + RgbInt8Color.rgbName(0x60, 0x79, 0x50, '2280 up'), + RgbInt8Color.rgbName(0x65, 0x7c, 0x47, 'p 158-16 u'), + RgbInt8Color.rgbName(0x5a, 0x7c, 0x57, '2266 up'), + RgbInt8Color.rgbName(0x5f, 0x76, 0x51, 'p 156-14 u'), + RgbInt8Color.rgbName(0x60, 0x79, 0x5a, '10314 c'), + RgbInt8Color.rgbName(0x5c, 0x79, 0x60, '7483 up'), + RgbInt8Color.rgbName(0x5e, 0x74, 0x5d, '7743 u'), + RgbInt8Color.rgbName(0x5f, 0x79, 0x5a, '7743 up'), + RgbInt8Color.rgbName(0x5e, 0x7d, 0x5a, 'p 150-13 u'), + RgbInt8Color.rgbName(0x5b, 0x7a, 0x66, '2408 u'), + RgbInt8Color.rgbName(0x62, 0x78, 0x67, '2409 up'), + RgbInt8Color.rgbName(0x5f, 0x77, 0x63, '5615 cp'), + RgbInt8Color.rgbName(0x5e, 0x74, 0x61, '5615 xgc'), + RgbInt8Color.rgbName(0x57, 0x7d, 0x68, 'p 135-13 u'), + RgbInt8Color.rgbName(0x5d, 0x79, 0x75, '5487 c'), + RgbInt8Color.rgbName(0x60, 0x76, 0x6f, '5545 u'), + RgbInt8Color.rgbName(0x5e, 0x79, 0x72, '626 up'), + RgbInt8Color.rgbName(0x5c, 0x7b, 0x7e, '5473 up'), + RgbInt8Color.rgbName(0x60, 0x7d, 0x77, '5487 cp'), + RgbInt8Color.rgbName(0x5d, 0x7b, 0x7b, '7476 up'), + RgbInt8Color.rgbName(0x62, 0x75, 0x7b, '7477 up'), + RgbInt8Color.rgbName(0x64, 0x79, 0x76, 'p 175-9 c'), + RgbInt8Color.rgbName(0x63, 0x76, 0x82, '2138 cp'), + RgbInt8Color.rgbName(0x5f, 0x79, 0x83, '2180 up'), + RgbInt8Color.rgbName(0x5d, 0x7d, 0x84, '2213 u'), + RgbInt8Color.rgbName(0x5c, 0x7e, 0x87, '2214 u'), + RgbInt8Color.rgbName(0x5e, 0x76, 0x88, '7699 u'), + RgbInt8Color.rgbName(0x59, 0x7c, 0x91, '2392 u'), + RgbInt8Color.rgbName(0x64, 0x76, 0x96, '2139 u'), + RgbInt8Color.rgbName(0x5b, 0x7d, 0x95, '5415 xgc'), + RgbInt8Color.rgbName(0x60, 0x79, 0x97, '647 up'), + RgbInt8Color.rgbName(0x62, 0x78, 0x91, 'p 111-13 u'), + RgbInt8Color.rgbName(0x5f, 0x7a, 0x9d, '647 u'), + RgbInt8Color.rgbName(0x62, 0x76, 0xa3, '7684 u'), + RgbInt8Color.rgbName(0x5f, 0x7a, 0x9e, 'p 108-5 c'), + RgbInt8Color.rgbName(0x62, 0x79, 0xa7, '10253 c'), + RgbInt8Color.rgbName(0x63, 0x79, 0xac, '7684 up'), + RgbInt8Color.rgbName(0x61, 0x7d, 0xae, 'p 106-6 u'), + RgbInt8Color.rgbName(0x65, 0x93, 0xc8, '2129 cp'), + RgbInt8Color.rgbName(0x65, 0x96, 0xc0, '2170 u'), + RgbInt8Color.rgbName(0x66, 0x90, 0xc1, '279 up'), + RgbInt8Color.rgbName(0x6e, 0x8e, 0xc0, '7682 cp'), + RgbInt8Color.rgbName(0x65, 0x92, 0xc6, 'p 106-5 c'), + RgbInt8Color.rgbName(0x8b, 0x84, 0xa, '392 xgc'), + RgbInt8Color.rgbName(0x85, 0x82, 0x17, 'p 168-8 c'), + RgbInt8Color.rgbName(0x6e, 0x80, 0x40, '10332 c'), + RgbInt8Color.rgbName(0x67, 0x83, 0x4b, 'p 156-14 c'), + RgbInt8Color.rgbName(0x60, 0x86, 0x56, 'p 150-13 c'), + RgbInt8Color.rgbName(0x60, 0x85, 0x54, 'p 153-13 c'), + RgbInt8Color.rgbName(0x5b, 0x87, 0x56, 'p 155-7 u'), + RgbInt8Color.rgbName(0x64, 0x80, 0x5c, 'p 153-13 u'), + RgbInt8Color.rgbName(0x5e, 0x84, 0x6a, 'p 138-13 u'), + RgbInt8Color.rgbName(0x5e, 0x85, 0x64, 'p 144-12 u'), + RgbInt8Color.rgbName(0x5f, 0x85, 0x6f, '555 up'), + RgbInt8Color.rgbName(0x60, 0x83, 0x7d, '2462 u'), + RgbInt8Color.rgbName(0x5f, 0x82, 0x89, '5483 u'), + RgbInt8Color.rgbName(0x64, 0x83, 0x89, '2212 up'), + RgbInt8Color.rgbName(0x5f, 0x84, 0x9c, '5415 cp'), + RgbInt8Color.rgbName(0x5f, 0x82, 0x98, '7698 up'), + RgbInt8Color.rgbName(0x5f, 0x85, 0xa6, '2158 xgc'), + RgbInt8Color.rgbName(0x68, 0x80, 0xaa, 'p 106-13 u'), + RgbInt8Color.rgbName(0x69, 0x82, 0xb0, '7683 u'), + RgbInt8Color.rgbName(0x66, 0x8c, 0x4a, '2278 u'), + RgbInt8Color.rgbName(0x69, 0x8a, 0x48, '370 u'), + RgbInt8Color.rgbName(0x6d, 0x89, 0x3f, '575 xgc'), + RgbInt8Color.rgbName(0x68, 0x8a, 0x4c, 'p 156-6 c'), + RgbInt8Color.rgbName(0x66, 0x8b, 0x57, '2278 up'), + RgbInt8Color.rgbName(0x62, 0x89, 0x58, '363 up'), + RgbInt8Color.rgbName(0x61, 0x8c, 0x62, 'p 141-13 c'), + RgbInt8Color.rgbName(0x63, 0x8b, 0x5e, 'p 152-14 u'), + RgbInt8Color.rgbName(0x5f, 0x8d, 0x66, '8304 c'), + RgbInt8Color.rgbName(0x5f, 0x91, 0x69, 'p 140-13 u'), + RgbInt8Color.rgbName(0x61, 0x91, 0x67, 'p 141-4 c'), + RgbInt8Color.rgbName(0x5f, 0x8b, 0x67, 'p 141-5 u'), + RgbInt8Color.rgbName(0x65, 0x8b, 0x67, 'p 147-4 u'), + RgbInt8Color.rgbName(0x61, 0x90, 0x6a, 'p 146-13 u'), + RgbInt8Color.rgbName(0x67, 0x8b, 0x7a, '625 cp'), + RgbInt8Color.rgbName(0x60, 0x8d, 0x7d, 'p 132-3 u'), + RgbInt8Color.rgbName(0x68, 0x8c, 0x77, 'p 135-12 u'), + RgbInt8Color.rgbName(0x64, 0x91, 0x79, 'p 138-12 c'), + RgbInt8Color.rgbName(0x64, 0x91, 0x81, 'p 135-12 c'), + RgbInt8Color.rgbName(0x66, 0x8a, 0x8d, '5483 up'), + RgbInt8Color.rgbName(0x60, 0x91, 0x8b, 'p 126-4 u'), + RgbInt8Color.rgbName(0x69, 0x8d, 0x97, '2212 u'), + RgbInt8Color.rgbName(0x63, 0x8c, 0x9d, '8221 c'), + RgbInt8Color.rgbName(0x66, 0x8e, 0x98, '8241 c'), + RgbInt8Color.rgbName(0x65, 0x8f, 0xa0, '2209 up'), + RgbInt8Color.rgbName(0x62, 0x91, 0x9e, 'p 120-12 u'), + RgbInt8Color.rgbName(0x5f, 0x90, 0xad, '10269 c'), + RgbInt8Color.rgbName(0x66, 0x90, 0xab, '2148 cp'), + RgbInt8Color.rgbName(0x66, 0x8a, 0xaa, '2149 u'), + RgbInt8Color.rgbName(0x66, 0x90, 0xb2, 'p 110-5 u'), + RgbInt8Color.rgbName(0x6b, 0x8c, 0xbc, '2143 up'), + RgbInt8Color.rgbName(0x65, 0xa1, 0xcb, '7688 up'), + RgbInt8Color.rgbName(0x67, 0x9a, 0x47, '2277 u'), + RgbInt8Color.rgbName(0x65, 0x99, 0x59, '10307 c'), + RgbInt8Color.rgbName(0x65, 0x92, 0x56, '2263 cp'), + RgbInt8Color.rgbName(0x69, 0x99, 0x5a, '2277 up'), + RgbInt8Color.rgbName(0x67, 0x91, 0x5d, 'p 150-5 c'), + RgbInt8Color.rgbName(0x6c, 0x95, 0x59, 'p 152-14 c'), + RgbInt8Color.rgbName(0x65, 0x92, 0x67, '7741 u'), + RgbInt8Color.rgbName(0x66, 0x97, 0x67, '7741 up'), + RgbInt8Color.rgbName(0x66, 0x9b, 0x62, 'p 151-14 u'), + RgbInt8Color.rgbName(0x67, 0x9a, 0x6f, '10300 c'), + RgbInt8Color.rgbName(0x65, 0x94, 0x6b, 'p 143-13 u'), + RgbInt8Color.rgbName(0x67, 0x97, 0x6b, 'p 144-4 c'), + RgbInt8Color.rgbName(0x68, 0x97, 0x7c, '8302 c'), + RgbInt8Color.rgbName(0x66, 0x96, 0x7c, 'p 134-13 u'), + RgbInt8Color.rgbName(0x6a, 0x94, 0x7b, 'p 135-4 u'), + RgbInt8Color.rgbName(0x68, 0x98, 0x81, '2458 c'), + RgbInt8Color.rgbName(0x64, 0x9a, 0x82, '2458 cp'), + RgbInt8Color.rgbName(0x67, 0x98, 0x86, 'p 131-11 u'), + RgbInt8Color.rgbName(0x65, 0x99, 0x87, 'p 135-4 c'), + RgbInt8Color.rgbName(0x60, 0x9c, 0x91, '2241 up'), + RgbInt8Color.rgbName(0x63, 0x99, 0x8a, 'p 128-12 u'), + RgbInt8Color.rgbName(0x65, 0x9a, 0x8c, 'p 132-3 c'), + RgbInt8Color.rgbName(0x67, 0x93, 0x97, 'p 123-12 u'), + RgbInt8Color.rgbName(0x60, 0x94, 0x99, 'p 123-5 u'), + RgbInt8Color.rgbName(0x69, 0x98, 0xa0, '10281 c'), + RgbInt8Color.rgbName(0x62, 0x98, 0xa3, '2220 up'), + RgbInt8Color.rgbName(0x64, 0x9b, 0x9e, 'p 126-3 c'), + RgbInt8Color.rgbName(0x63, 0x92, 0xa8, '2208 up'), + RgbInt8Color.rgbName(0x63, 0x99, 0xae, '7696 c'), + RgbInt8Color.rgbName(0x65, 0x9a, 0xb1, '2207 c'), + RgbInt8Color.rgbName(0x65, 0x99, 0xaf, '2207 xgc'), + RgbInt8Color.rgbName(0x6c, 0x95, 0xb5, '7454 cp'), + RgbInt8Color.rgbName(0x66, 0x95, 0xbc, '7454 xgc'), + RgbInt8Color.rgbName(0x69, 0x9c, 0xc6, '542 u'), + RgbInt8Color.rgbName(0x6e, 0xb1, 0xde, '292 cp'), + RgbInt8Color.rgbName(0x6b, 0xb4, 0xd5, 'p 116-4 c'), + RgbInt8Color.rgbName(0x6c, 0x99, 0x5a, '8323 c'), + RgbInt8Color.rgbName(0x66, 0x9d, 0x60, 'p 149-5 c'), + RgbInt8Color.rgbName(0x68, 0x9e, 0x6b, '7740 up'), + RgbInt8Color.rgbName(0x6c, 0xa2, 0x66, 'p 146-4 c'), + RgbInt8Color.rgbName(0x66, 0xa5, 0x72, 'p 142-12 u'), + RgbInt8Color.rgbName(0x67, 0xa7, 0x6b, 'p 145-13 c'), + RgbInt8Color.rgbName(0x68, 0xa3, 0x6d, 'p 145-13 u'), + RgbInt8Color.rgbName(0x6b, 0x9e, 0x71, 'p 146-4 u'), + RgbInt8Color.rgbName(0x65, 0x9e, 0x80, '556 xgc'), + RgbInt8Color.rgbName(0x68, 0x9c, 0x7a, '7730 u'), + RgbInt8Color.rgbName(0x6e, 0x9e, 0x78, 'p 140-12 u'), + RgbInt8Color.rgbName(0x68, 0xa0, 0x88, 'p 134-13 c'), + RgbInt8Color.rgbName(0x69, 0xa1, 0x94, '2241 u'), + RgbInt8Color.rgbName(0x65, 0xa0, 0xa5, '10287 c'), + RgbInt8Color.rgbName(0x6b, 0x9e, 0xb5, '549 up'), + RgbInt8Color.rgbName(0x6a, 0x9d, 0xb2, '7696 xgc'), + RgbInt8Color.rgbName(0x67, 0xa5, 0xbf, '7458 u'), + RgbInt8Color.rgbName(0x6c, 0xa0, 0xb9, 'p 117-12 c'), + RgbInt8Color.rgbName(0x87, 0xa8, 0x28, 'p 157-16 c'), + RgbInt8Color.rgbName(0x6d, 0xac, 0x88, '2249 u'), + RgbInt8Color.rgbName(0x6b, 0xa8, 0x86, 'p 133-13 u'), + RgbInt8Color.rgbName(0x6d, 0xaa, 0x82, 'p 136-12 u'), + RgbInt8Color.rgbName(0x6a, 0xac, 0x9b, '7473 up'), + RgbInt8Color.rgbName(0x6b, 0xac, 0x92, '7723 u'), + RgbInt8Color.rgbName(0x66, 0xa6, 0xae, '2233 u'), + RgbInt8Color.rgbName(0x6a, 0xae, 0xaa, '2460 c'), + RgbInt8Color.rgbName(0x6b, 0xad, 0xb6, '2218 cp'), + RgbInt8Color.rgbName(0x6b, 0xa5, 0xb4, '2219 u'), + RgbInt8Color.rgbName(0x69, 0xa8, 0xbb, 'p 119-4 u'), + RgbInt8Color.rgbName(0x65, 0xb7, 0xbf, '7709 xgc'), + RgbInt8Color.rgbName(0x67, 0xac, 0xcd, 'p 116-4 u'), + RgbInt8Color.rgbName(0x69, 0xb5, 0xa4, '3265 up'), + RgbInt8Color.rgbName(0x66, 0xb6, 0xaa, 'p 124-5 u'), + RgbInt8Color.rgbName(0x6b, 0xbb, 0xae, '563 c'), + RgbInt8Color.rgbName(0x66, 0xb7, 0xbf, '2227 up'), + RgbInt8Color.rgbName(0x6c, 0xb1, 0xb3, '2232 cp'), + RgbInt8Color.rgbName(0x66, 0xb8, 0xbd, 'p 121-5 u'), + RgbInt8Color.rgbName(0x69, 0xba, 0xbe, '2226 cp'), + RgbInt8Color.rgbName(0x65, 0xb7, 0xc4, '2226 up'), + RgbInt8Color.rgbName(0x69, 0xbb, 0xbc, '2227 cp'), + RgbInt8Color.rgbName(0x6e, 0xb2, 0xbd, '7709 u'), + RgbInt8Color.rgbName(0x65, 0xbc, 0xcd, '2198 cp'), + RgbInt8Color.rgbName(0x7a, 0xb1, 0xe8, '284 u'), + RgbInt8Color.rgbName(0x6c, 0xbd, 0x9b, 'p 133-5 c'), + RgbInt8Color.rgbName(0x6b, 0xbb, 0xae, '563 xgc'), + RgbInt8Color.rgbName(0x6b, 0xbd, 0xb9, '7472 u'), + RgbInt8Color.rgbName(0x6d, 0xbc, 0xc6, '3115 up'), + RgbInt8Color.rgbName(0x84, 0xa8, 0x37, '2294 cp'), + RgbInt8Color.rgbName(0x83, 0x8e, 0x25, '8345 c'), + RgbInt8Color.rgbName(0x86, 0x8d, 0x1f, 'p 164-16 c'), + RgbInt8Color.rgbName(0x8a, 0xc9, 0xed, '2905 u'), + RgbInt8Color.rgbName(0x97, 0xd7, 0x0, '375 c'), + RgbInt8Color.rgbName(0x98, 0xcc, 0x3, '375 xgc'), + RgbInt8Color.rgbName(0x8b, 0xa2, 0x32, 'p 158-7 c'), + RgbInt8Color.rgbName(0x8a, 0x99, 0x3c, 'p 161-15 c'), + RgbInt8Color.rgbName(0x8b, 0xd5, 0xee, '2975 u'), + RgbInt8Color.rgbName(0x8a, 0xd8, 0xed, '636 u'), + RgbInt8Color.rgbName(0x8b, 0xd3, 0xe6, '636 c'), + RgbInt8Color.rgbName(0x98, 0xc1, 0x1d, '376 cp'), + RgbInt8Color.rgbName(0x8b, 0xe0, 0x76, '7487 u'), + RgbInt8Color.rgbName(0x88, 0xdb, 0xdf, '318 c'), + RgbInt8Color.rgbName(0x9e, 0xa7, 0x0, '2305 c'), + RgbInt8Color.rgbName(0x9f, 0xa9, 0x0, '2305 xgc'), + RgbInt8Color.rgbName(0x99, 0xc2, 0x21, '382 u'), + RgbInt8Color.rgbName(0x8a, 0xae, 0x56, '2294 up'), + RgbInt8Color.rgbName(0x84, 0xae, 0x59, 'p 154-14 c'), + RgbInt8Color.rgbName(0x86, 0xd2, 0x95, '2255 c'), + RgbInt8Color.rgbName(0x8c, 0xe2, 0xd0, '332 c'), + RgbInt8Color.rgbName(0x9a, 0xbe, 0x26, 'p 157-8 c'), + RgbInt8Color.rgbName(0x8a, 0xb5, 0x5d, '2287 up'), + RgbInt8Color.rgbName(0x85, 0xb8, 0x67, '368 up'), + RgbInt8Color.rgbName(0x86, 0xb4, 0x6e, '7737 up'), + RgbInt8Color.rgbName(0x86, 0xb8, 0x72, '360 up'), + RgbInt8Color.rgbName(0x8c, 0xb7, 0x77, 'p 148-12 c'), + RgbInt8Color.rgbName(0x87, 0xbc, 0x72, 'p 151-6 c'), + RgbInt8Color.rgbName(0x70, 0xb8, 0x90, 'p 133-5 u'), + RgbInt8Color.rgbName(0x89, 0xd7, 0x9b, '2255 u'), + RgbInt8Color.rgbName(0x88, 0xd4, 0xa0, '353 xgc'), + RgbInt8Color.rgbName(0x85, 0xd8, 0xc8, '571 u'), + RgbInt8Color.rgbName(0x99, 0xbe, 0x48, '2293 cp'), + RgbInt8Color.rgbName(0x9f, 0xd2, 0x46, '2299 xgc'), + RgbInt8Color.rgbName(0x89, 0xc0, 0x84, 'p 142-4 u'), + RgbInt8Color.rgbName(0x8b, 0xc0, 0x83, 'p 145-4 u'), + RgbInt8Color.rgbName(0x8b, 0xbe, 0x94, 'p 139-12 c'), + RgbInt8Color.rgbName(0x87, 0xc5, 0x97, '346 cp'), + RgbInt8Color.rgbName(0x8c, 0xd7, 0xac, '345 xgc'), + RgbInt8Color.rgbName(0x70, 0xc2, 0xb7, '3533 cp'), + RgbInt8Color.rgbName(0x84, 0xd2, 0xd2, '318 xgc'), + RgbInt8Color.rgbName(0x86, 0xce, 0xdf, '636 xgc'), + RgbInt8Color.rgbName(0x74, 0x24, 0x29, 'p 50-16 c'), + RgbInt8Color.rgbName(0x72, 0x24, 0x2b, 'p 56-16 c'), + RgbInt8Color.rgbName(0x64, 0x33, 0x35, '1817 c'), + RgbInt8Color.rgbName(0x5e, 0x36, 0x38, '7631 cp'), + RgbInt8Color.rgbName(0x70, 0x27, 0x3d, '2042 c'), + RgbInt8Color.rgbName(0x6f, 0x26, 0x3d, '209 c'), + RgbInt8Color.rgbName(0x70, 0x25, 0x3f, '209 xgc'), + RgbInt8Color.rgbName(0x6a, 0x2c, 0x3e, '7428 c'), + RgbInt8Color.rgbName(0x6b, 0x29, 0x3d, '7428 xgc'), + RgbInt8Color.rgbName(0x82, 0x16, 0x46, '216 xgc'), + RgbInt8Color.rgbName(0x91, 0x0, 0x48, '221 c'), + RgbInt8Color.rgbName(0x73, 0x24, 0x44, '222 cp'), + RgbInt8Color.rgbName(0x67, 0x2e, 0x45, '7643 c'), + RgbInt8Color.rgbName(0x79, 0x1d, 0x45, 'p 74-16 c'), + RgbInt8Color.rgbName(0x73, 0x20, 0x4b, 'p 82-16 c'), + RgbInt8Color.rgbName(0x88, 0x9, 0x56, '228 xgc'), + RgbInt8Color.rgbName(0x84, 0xb, 0x55, '235 c'), + RgbInt8Color.rgbName(0x96, 0x0, 0x51, '676 c'), + RgbInt8Color.rgbName(0x89, 0xc, 0x58, '228 c'), + RgbInt8Color.rgbName(0x72, 0x22, 0x57, '7650 c'), + RgbInt8Color.rgbName(0x76, 0x21, 0x62, '2356 cp'), + RgbInt8Color.rgbName(0x72, 0x24, 0x6c, '255 c'), + RgbInt8Color.rgbName(0x8d, 0x33, 0x8b, '2070 xgc'), + RgbInt8Color.rgbName(0x94, 0x2d, 0x83, '254 cp'), + RgbInt8Color.rgbName(0x94, 0x3a, 0x8b, '254 xgc'), + RgbInt8Color.rgbName(0x93, 0x32, 0x8e, '513 c'), + RgbInt8Color.rgbName(0x8f, 0x35, 0x8a, '513 xgc'), + RgbInt8Color.rgbName(0x94, 0x3c, 0x84, '7656 cp'), + RgbInt8Color.rgbName(0xa4, 0x38, 0xa8, '2069 c'), + RgbInt8Color.rgbName(0x94, 0x4b, 0x96, '2070 u'), + RgbInt8Color.rgbName(0x92, 0x4f, 0x9d, '258 xgc'), + RgbInt8Color.rgbName(0x76, 0x23, 0x2f, '188 c'), + RgbInt8Color.rgbName(0x76, 0x27, 0x38, '188 xgc'), + RgbInt8Color.rgbName(0x77, 0x25, 0x3c, '209 cp'), + RgbInt8Color.rgbName(0x70, 0x27, 0x3f, '2042 xgc'), + RgbInt8Color.rgbName(0x74, 0x21, 0x56, '7650 xgc'), + RgbInt8Color.rgbName(0x77, 0x20, 0x66, 'p 89-8 c'), + RgbInt8Color.rgbName(0x76, 0x30, 0x2e, '3523 cp'), + RgbInt8Color.rgbName(0x6d, 0x2b, 0x5f, '7651 cp'), + RgbInt8Color.rgbName(0x6c, 0x2d, 0x5b, '7651 xgc'), + RgbInt8Color.rgbName(0x6e, 0x2b, 0x62, '7657 c'), + RgbInt8Color.rgbName(0x6b, 0x2f, 0x6b, '260 cp'), + RgbInt8Color.rgbName(0x6b, 0x2e, 0x6b, 'p 92-7 c'), + RgbInt8Color.rgbName(0x76, 0x2c, 0x7c, '2612 cp'), + RgbInt8Color.rgbName(0x78, 0x2b, 0x70, '255 xgc'), + RgbInt8Color.rgbName(0xa0, 0x5e, 0xb5, '2583 c'), + RgbInt8Color.rgbName(0xaa, 0x60, 0xbf, '2592 u'), + RgbInt8Color.rgbName(0x90, 0x63, 0xad, '3593 c'), + RgbInt8Color.rgbName(0x93, 0x61, 0xb0, '527 u'), + RgbInt8Color.rgbName(0x9e, 0x62, 0xbe, '7442 u'), + RgbInt8Color.rgbName(0x73, 0x38, 0x1d, '168 c'), + RgbInt8Color.rgbName(0x6f, 0x3b, 0x20, '168 cp'), + RgbInt8Color.rgbName(0x72, 0x39, 0x23, 'p 36-16 c'), + RgbInt8Color.rgbName(0x6b, 0x35, 0x29, '175 c'), + RgbInt8Color.rgbName(0x73, 0x3e, 0x27, '168 xgc'), + RgbInt8Color.rgbName(0x71, 0x46, 0x23, '2320 c'), + RgbInt8Color.rgbName(0x72, 0x43, 0x22, 'p 29-16 c'), + RgbInt8Color.rgbName(0x75, 0x40, 0x23, 'p 32-16 c'), + RgbInt8Color.rgbName(0x68, 0x34, 0x31, '7610 c'), + RgbInt8Color.rgbName(0x6a, 0x30, 0x56, 'p 85-15 c'), + RgbInt8Color.rgbName(0x74, 0x29, 0x66, '7657 cp'), + RgbInt8Color.rgbName(0x71, 0x40, 0x88, '2084 cp'), + RgbInt8Color.rgbName(0x72, 0x4b, 0x25, '2320 cp'), + RgbInt8Color.rgbName(0x74, 0x4f, 0x28, '463 c'), + RgbInt8Color.rgbName(0x74, 0x47, 0x24, '7568 cp'), + RgbInt8Color.rgbName(0x78, 0x4b, 0x21, 'p 26-16 c'), + RgbInt8Color.rgbName(0x65, 0x3b, 0x2e, '483 cp'), + RgbInt8Color.rgbName(0x6d, 0x33, 0x32, '7629 c'), + RgbInt8Color.rgbName(0x66, 0x37, 0x39, '7629 xgc'), + RgbInt8Color.rgbName(0x5d, 0x3e, 0x41, 'p 51-15 c'), + RgbInt8Color.rgbName(0x6c, 0x30, 0x43, '505 xgc'), + RgbInt8Color.rgbName(0x60, 0x3d, 0x49, 'p 78-15 c'), + RgbInt8Color.rgbName(0x6a, 0x34, 0x60, '7658 c'), + RgbInt8Color.rgbName(0x61, 0x42, 0x58, '7659 xgc'), + RgbInt8Color.rgbName(0x6a, 0x38, 0x5e, 'p 90-15 c'), + RgbInt8Color.rgbName(0x6f, 0x34, 0x63, '7658 cp'), + RgbInt8Color.rgbName(0x6d, 0x35, 0x66, '8822 c'), + RgbInt8Color.rgbName(0x67, 0x3b, 0x67, 'p 92-15 c'), + RgbInt8Color.rgbName(0x78, 0x4e, 0x90, '2082 c'), + RgbInt8Color.rgbName(0x6f, 0x50, 0x91, '7677 c'), + RgbInt8Color.rgbName(0x70, 0x4e, 0x94, '8143 c'), + RgbInt8Color.rgbName(0x95, 0x69, 0xbe, '2074 c'), + RgbInt8Color.rgbName(0x90, 0x69, 0xbb, '2074 xgc'), + RgbInt8Color.rgbName(0x91, 0x6c, 0xbb, '2083 xgc'), + RgbInt8Color.rgbName(0x93, 0x6d, 0xb7, '2587 u'), + RgbInt8Color.rgbName(0x92, 0x6e, 0xbf, '3575 c'), + RgbInt8Color.rgbName(0x74, 0x53, 0x1c, '140 c'), + RgbInt8Color.rgbName(0x73, 0x53, 0x1d, '7552 c'), + RgbInt8Color.rgbName(0x6b, 0x3d, 0x2e, '7595 c'), + RgbInt8Color.rgbName(0x6a, 0x39, 0x32, '498 cp'), + RgbInt8Color.rgbName(0x67, 0x42, 0x30, '7603 c'), + RgbInt8Color.rgbName(0x62, 0x43, 0x37, 'p 43-15 c'), + RgbInt8Color.rgbName(0x60, 0x43, 0x3f, '2449 up'), + RgbInt8Color.rgbName(0x65, 0x3f, 0x3d, '498 xgc'), + RgbInt8Color.rgbName(0x68, 0x3c, 0x3d, '7610 xgc'), + RgbInt8Color.rgbName(0x60, 0x48, 0x45, 'p 33-15 c'), + RgbInt8Color.rgbName(0x5b, 0x49, 0x4a, 'p 78-16 u'), + RgbInt8Color.rgbName(0x63, 0x47, 0x4e, 'p 79-15 c'), + RgbInt8Color.rgbName(0x69, 0x3c, 0x5e, '5125 c'), + RgbInt8Color.rgbName(0x69, 0x40, 0x5d, '5125 xgc'), + RgbInt8Color.rgbName(0x66, 0x43, 0x5a, '5195 c'), + RgbInt8Color.rgbName(0x66, 0x45, 0x59, '5195 cp'), + RgbInt8Color.rgbName(0x65, 0x48, 0x5a, 'p 90-8 u'), + RgbInt8Color.rgbName(0x60, 0x4c, 0x6a, 'p 97-7 u'), + RgbInt8Color.rgbName(0x67, 0x45, 0x77, 'p 94-13 c'), + RgbInt8Color.rgbName(0x72, 0x58, 0x99, '10225 c'), + RgbInt8Color.rgbName(0x76, 0x57, 0x9d, '2077 u'), + RgbInt8Color.rgbName(0x72, 0x56, 0x9b, '7677 cp'), + RgbInt8Color.rgbName(0x8d, 0x75, 0xbd, '2075 u'), + RgbInt8Color.rgbName(0x95, 0x71, 0xbd, '265 xgc'), + RgbInt8Color.rgbName(0x96, 0x78, 0xd3, '2655 c'), + RgbInt8Color.rgbName(0x8e, 0x71, 0xb9, '3575 u'), + RgbInt8Color.rgbName(0x66, 0x46, 0x30, '7582 cp'), + RgbInt8Color.rgbName(0x69, 0x44, 0x34, '477 cp'), + RgbInt8Color.rgbName(0x67, 0x47, 0x36, '7582 c'), + RgbInt8Color.rgbName(0x60, 0x4b, 0x3e, '10381 c'), + RgbInt8Color.rgbName(0x60, 0x4b, 0x3f, '7589 xgc'), + RgbInt8Color.rgbName(0x6a, 0x47, 0x3c, 'p 43-14 c'), + RgbInt8Color.rgbName(0x61, 0x47, 0x43, 'p 44-14 c'), + RgbInt8Color.rgbName(0x68, 0x45, 0x47, 'p 51-14 c'), + RgbInt8Color.rgbName(0x5b, 0x4e, 0x4b, 'p 51-16 u'), + RgbInt8Color.rgbName(0x65, 0x45, 0x4a, 'p 67-15 c'), + RgbInt8Color.rgbName(0x5d, 0x4c, 0x4b, 'p 67-16 u'), + RgbInt8Color.rgbName(0x5e, 0x4f, 0x51, '2478 up'), + RgbInt8Color.rgbName(0x5e, 0x51, 0x4d, '411 c'), + RgbInt8Color.rgbName(0x5e, 0x53, 0x4e, '411 cp'), + RgbInt8Color.rgbName(0x5d, 0x51, 0x4d, 'p 33-16 u'), + RgbInt8Color.rgbName(0x63, 0x4d, 0x4f, 'p 78-15 u'), + RgbInt8Color.rgbName(0x65, 0x46, 0x52, 'p 85-16 u'), + RgbInt8Color.rgbName(0x6d, 0x44, 0x5a, '2357 u'), + RgbInt8Color.rgbName(0x64, 0x49, 0x5b, '5195 xgc'), + RgbInt8Color.rgbName(0x63, 0x51, 0x5c, '7449 u'), + RgbInt8Color.rgbName(0x61, 0x4e, 0x5b, 'p 87-14 c'), + RgbInt8Color.rgbName(0x62, 0x4d, 0x67, 'p 95-7 u'), + RgbInt8Color.rgbName(0x67, 0x4e, 0x6e, 'p 92-8 u'), + RgbInt8Color.rgbName(0x64, 0x4f, 0x6c, 'p 94-14 u'), + RgbInt8Color.rgbName(0x69, 0x46, 0x71, 'p 95-14 c'), + RgbInt8Color.rgbName(0x6d, 0x45, 0x7c, '3515 u'), + RgbInt8Color.rgbName(0x67, 0x4f, 0x78, '3555 up'), + RgbInt8Color.rgbName(0x65, 0x51, 0x7a, '668 xgc'), + RgbInt8Color.rgbName(0x6e, 0x46, 0x75, '8145 c'), + RgbInt8Color.rgbName(0x76, 0x5b, 0xa7, '2685 u'), + RgbInt8Color.rgbName(0x8e, 0x7d, 0xd2, '2101 u'), + RgbInt8Color.rgbName(0x74, 0x51, 0x25, '1405 cp'), + RgbInt8Color.rgbName(0x6a, 0x50, 0x39, '2321 xgc'), + RgbInt8Color.rgbName(0x61, 0x4e, 0x40, '7519 xgc'), + RgbInt8Color.rgbName(0x63, 0x52, 0x42, '2322 u'), + RgbInt8Color.rgbName(0x61, 0x52, 0x43, '2322 up'), + RgbInt8Color.rgbName(0x5d, 0x51, 0x4a, '2335 xgc'), + RgbInt8Color.rgbName(0x65, 0x52, 0x46, 'p 23-15 c'), + RgbInt8Color.rgbName(0x61, 0x4f, 0x4a, 'p 43-15 u'), + RgbInt8Color.rgbName(0x65, 0x4f, 0x4c, '2449 u'), + RgbInt8Color.rgbName(0x62, 0x53, 0x4f, '8424 c'), + RgbInt8Color.rgbName(0x5f, 0x56, 0x55, 'p 171-14 u'), + RgbInt8Color.rgbName(0x66, 0x52, 0x4d, 'p 43-14 u'), + RgbInt8Color.rgbName(0x61, 0x52, 0x4f, 'p 51-15 u'), + RgbInt8Color.rgbName(0x64, 0x4e, 0x4f, 'p 67-15 u'), + RgbInt8Color.rgbName(0x65, 0x53, 0x53, 'p 79-15 u'), + RgbInt8Color.rgbName(0x67, 0x51, 0x59, 'p 86-14 c'), + RgbInt8Color.rgbName(0x63, 0x53, 0x58, 'p 86-15 u'), + RgbInt8Color.rgbName(0x69, 0x56, 0x64, 'p 87-13 c'), + RgbInt8Color.rgbName(0x63, 0x57, 0x5f, 'p 87-14 u'), + RgbInt8Color.rgbName(0x64, 0x52, 0x6a, 'p 98-6 u'), + RgbInt8Color.rgbName(0x63, 0x57, 0x72, 'p 101-6 u'), + RgbInt8Color.rgbName(0x69, 0x53, 0x71, 'p 94-13 u'), + RgbInt8Color.rgbName(0x60, 0x5d, 0x75, '2363 c'), + RgbInt8Color.rgbName(0x67, 0x51, 0x7c, '3555 u'), + RgbInt8Color.rgbName(0x66, 0x58, 0x77, '3566 up'), + RgbInt8Color.rgbName(0x66, 0x52, 0x79, 'p 93-16 u'), + RgbInt8Color.rgbName(0x63, 0x56, 0x7f, 'p 96-15 u'), + RgbInt8Color.rgbName(0x6a, 0x52, 0x74, 'p 97-6 u'), + RgbInt8Color.rgbName(0x67, 0x52, 0x7a, 'p 98-13 c'), + RgbInt8Color.rgbName(0x62, 0x55, 0x84, '2105 up'), + RgbInt8Color.rgbName(0x69, 0x51, 0x81, '3583 up'), + RgbInt8Color.rgbName(0x63, 0x58, 0x89, '2371 up'), + RgbInt8Color.rgbName(0x70, 0x4f, 0x8a, 'p 96-14 c'), + RgbInt8Color.rgbName(0x6a, 0x5d, 0x9d, 'p 99-6 c'), + RgbInt8Color.rgbName(0x74, 0x6c, 0xaf, '2102 u'), + RgbInt8Color.rgbName(0x77, 0x5f, 0x1f, '133 cp'), + RgbInt8Color.rgbName(0x79, 0x5a, 0x21, '140 xgc'), + RgbInt8Color.rgbName(0x75, 0x5c, 0x21, '7552 cp'), + RgbInt8Color.rgbName(0x78, 0x5a, 0x20, '7552 xgc'), + RgbInt8Color.rgbName(0x71, 0x5c, 0x2a, '147 c'), + RgbInt8Color.rgbName(0x6c, 0x5d, 0x34, '7561 c'), + RgbInt8Color.rgbName(0x68, 0x5b, 0x40, '2329 xgc'), + RgbInt8Color.rgbName(0x6a, 0x60, 0x3d, '7757 cp'), + RgbInt8Color.rgbName(0x66, 0x59, 0x43, 'p 13-15 c'), + RgbInt8Color.rgbName(0x60, 0x59, 0x4d, 'p 13-16 u'), + RgbInt8Color.rgbName(0x63, 0x5a, 0x4f, 'p 23-16 u'), + RgbInt8Color.rgbName(0x5f, 0x5c, 0x58, '10396 c'), + RgbInt8Color.rgbName(0x60, 0x5a, 0x57, '2479 u'), + RgbInt8Color.rgbName(0x62, 0x5b, 0x54, '405 cp'), + RgbInt8Color.rgbName(0x66, 0x5e, 0x4f, 'p 13-15 u'), + RgbInt8Color.rgbName(0x60, 0x5a, 0x57, 'p 170-13 u'), + RgbInt8Color.rgbName(0x61, 0x58, 0x54, 'p 171-14 c'), + RgbInt8Color.rgbName(0x5f, 0x5e, 0x57, 'p 178-14 u'), + RgbInt8Color.rgbName(0x65, 0x57, 0x51, 'p 33-15 u'), + RgbInt8Color.rgbName(0x62, 0x57, 0x53, 'p 44-14 u'), + RgbInt8Color.rgbName(0x65, 0x59, 0x5b, '2478 u'), + RgbInt8Color.rgbName(0x64, 0x5c, 0x59, '412 u'), + RgbInt8Color.rgbName(0x60, 0x5e, 0x5c, '8403 c'), + RgbInt8Color.rgbName(0x68, 0x5a, 0x5c, 'black 5 u'), + RgbInt8Color.rgbName(0x61, 0x5d, 0x59, 'black u'), + RgbInt8Color.rgbName(0x65, 0x5b, 0x5c, 'p 171-13 u'), + RgbInt8Color.rgbName(0x5f, 0x5c, 0x5c, 'p 172-13 c'), + RgbInt8Color.rgbName(0x60, 0x5b, 0x5d, 'p 172-13 u'), + RgbInt8Color.rgbName(0x5f, 0x5f, 0x60, 'p 173-13 c'), + RgbInt8Color.rgbName(0x5e, 0x5e, 0x5f, 'p 179-12 c'), + RgbInt8Color.rgbName(0x6c, 0x5a, 0x63, '518 up'), + RgbInt8Color.rgbName(0x61, 0x5e, 0x61, 'p 173-13 u'), + RgbInt8Color.rgbName(0x68, 0x5b, 0x65, 'p 87-13 u'), + RgbInt8Color.rgbName(0x66, 0x59, 0x6c, '2364 c'), + RgbInt8Color.rgbName(0x66, 0x5c, 0x70, '2364 xgc'), + RgbInt8Color.rgbName(0x64, 0x5e, 0x73, '5255 up'), + RgbInt8Color.rgbName(0x64, 0x61, 0x76, '2363 xgc'), + RgbInt8Color.rgbName(0x67, 0x5a, 0x7a, '2695 up'), + RgbInt8Color.rgbName(0x6c, 0x5b, 0x79, '3574 up'), + RgbInt8Color.rgbName(0x67, 0x5a, 0x78, 'p 100-14 u'), + RgbInt8Color.rgbName(0x63, 0x5b, 0x7e, 'p 103-6 u'), + RgbInt8Color.rgbName(0x62, 0x62, 0x85, '3584 up'), + RgbInt8Color.rgbName(0x63, 0x60, 0x7f, '5275 xgc'), + RgbInt8Color.rgbName(0x69, 0x59, 0x81, '7680 u'), + RgbInt8Color.rgbName(0x6a, 0x5e, 0x82, 'p 100-6 u'), + RgbInt8Color.rgbName(0x69, 0x5c, 0x86, 'p 99-14 u'), + RgbInt8Color.rgbName(0x6c, 0x59, 0x8b, '7680 up'), + RgbInt8Color.rgbName(0x67, 0x61, 0x89, 'p 102-14 u'), + RgbInt8Color.rgbName(0x6a, 0x59, 0x88, 'p 96-7 u'), + RgbInt8Color.rgbName(0x6b, 0x62, 0x96, '2745 up'), + RgbInt8Color.rgbName(0x70, 0x73, 0xad, 'p 102-5 c'), + RgbInt8Color.rgbName(0x7a, 0x93, 0xdc, '2123 c'), + RgbInt8Color.rgbName(0x78, 0x64, 0x28, '147 cp'), + RgbInt8Color.rgbName(0x73, 0x66, 0x35, '7756 c'), + RgbInt8Color.rgbName(0x6a, 0x61, 0x37, '7757 xgc'), + RgbInt8Color.rgbName(0x71, 0x61, 0x35, '7769 c'), + RgbInt8Color.rgbName(0x66, 0x61, 0x4e, '448 u'), + RgbInt8Color.rgbName(0x6b, 0x65, 0x4f, '448 up'), + RgbInt8Color.rgbName(0x63, 0x6a, 0x51, '5743 u'), + RgbInt8Color.rgbName(0x64, 0x60, 0x52, 'black 2 u'), + RgbInt8Color.rgbName(0x65, 0x63, 0x53, 'black 2 up'), + RgbInt8Color.rgbName(0x6d, 0x63, 0x51, 'p 13-14 u'), + RgbInt8Color.rgbName(0x5f, 0x62, 0x5e, 'p 177-12 u'), + RgbInt8Color.rgbName(0x69, 0x62, 0x59, '405 xgc'), + RgbInt8Color.rgbName(0x65, 0x66, 0x5c, '417 c'), + RgbInt8Color.rgbName(0x64, 0x66, 0x60, '447 up'), + RgbInt8Color.rgbName(0x5e, 0x69, 0x5e, '5605 u'), + RgbInt8Color.rgbName(0x67, 0x65, 0x5a, '7771 u'), + RgbInt8Color.rgbName(0x66, 0x61, 0x57, 'p 170-12 c'), + RgbInt8Color.rgbName(0x65, 0x64, 0x5b, 'p 178-13 u'), + RgbInt8Color.rgbName(0x63, 0x60, 0x5c, 'p 179-13 u'), + RgbInt8Color.rgbName(0x68, 0x66, 0x66, '2336 u'), + RgbInt8Color.rgbName(0x63, 0x69, 0x68, '446 u'), + RgbInt8Color.rgbName(0x63, 0x66, 0x6a, 'cool gray 10 c'), + RgbInt8Color.rgbName(0x65, 0x62, 0x61, 'p 172-12 c'), + RgbInt8Color.rgbName(0x65, 0x60, 0x62, 'p 172-12 u'), + RgbInt8Color.rgbName(0x66, 0x64, 0x67, 'p 173-12 u'), + RgbInt8Color.rgbName(0x61, 0x68, 0x66, 'p 175-12 u'), + RgbInt8Color.rgbName(0x65, 0x66, 0x67, 'p 179-11 c'), + RgbInt8Color.rgbName(0x69, 0x66, 0x63, 'p 179-12 u'), + RgbInt8Color.rgbName(0x66, 0x67, 0x6c, 'cool gray 10 cp'), + RgbInt8Color.rgbName(0x65, 0x69, 0x70, 'p 174-11 u'), + RgbInt8Color.rgbName(0x62, 0x69, 0x6a, 'p 176-10 u'), + RgbInt8Color.rgbName(0x60, 0x69, 0x7f, '2374 u'), + RgbInt8Color.rgbName(0x68, 0x61, 0x7b, 'p 103-13 u'), + RgbInt8Color.rgbName(0x64, 0x6a, 0x89, '2111 u'), + RgbInt8Color.rgbName(0x6b, 0x66, 0x8e, '7672 u'), + RgbInt8Color.rgbName(0x69, 0x69, 0x8c, '7673 up'), + RgbInt8Color.rgbName(0x69, 0x65, 0x8c, 'p 101-13 c'), + RgbInt8Color.rgbName(0x6f, 0x64, 0x95, '2098 up'), + RgbInt8Color.rgbName(0x69, 0x67, 0x99, '2367 up'), + RgbInt8Color.rgbName(0x66, 0x67, 0x9a, '2369 up'), + RgbInt8Color.rgbName(0x69, 0x63, 0x99, '8162 c'), + RgbInt8Color.rgbName(0x6a, 0x65, 0x93, 'p 102-6 u'), + RgbInt8Color.rgbName(0x70, 0x65, 0xa3, '2095 cp'), + RgbInt8Color.rgbName(0x6c, 0x66, 0x9a, '273 up'), + RgbInt8Color.rgbName(0x66, 0x6d, 0x9c, '3590 up'), + RgbInt8Color.rgbName(0x68, 0x68, 0xa2, '7669 xgc'), + RgbInt8Color.rgbName(0x66, 0x72, 0xa6, '2126 up'), + RgbInt8Color.rgbName(0x70, 0x7b, 0xbd, '2115 xgc'), + RgbInt8Color.rgbName(0x74, 0x7d, 0xb4, '2366 cp'), + RgbInt8Color.rgbName(0x73, 0x82, 0xb8, 'p 104-5 c'), + RgbInt8Color.rgbName(0x74, 0x74, 0x29, '7749 cp'), + RgbInt8Color.rgbName(0x70, 0x77, 0x32, '5757 xgc'), + RgbInt8Color.rgbName(0x74, 0x71, 0x36, '7761 c'), + RgbInt8Color.rgbName(0x70, 0x6a, 0x3a, '10339 c'), + RgbInt8Color.rgbName(0x6d, 0x69, 0x42, '2308 u'), + RgbInt8Color.rgbName(0x68, 0x72, 0x4d, '371 u'), + RgbInt8Color.rgbName(0x6b, 0x73, 0x4a, 'p 162-15 u'), + RgbInt8Color.rgbName(0x6b, 0x76, 0x46, 'p 162-8 u'), + RgbInt8Color.rgbName(0x70, 0x70, 0x46, 'p 168-15 u'), + RgbInt8Color.rgbName(0x6f, 0x70, 0x44, 'p 168-8 u'), + RgbInt8Color.rgbName(0x6b, 0x71, 0x59, '5743 up'), + RgbInt8Color.rgbName(0x66, 0x69, 0x58, 'p 169-14 c'), + RgbInt8Color.rgbName(0x65, 0x70, 0x5f, 'p 177-11 c'), + RgbInt8Color.rgbName(0x67, 0x69, 0x58, 'p 178-13 c'), + RgbInt8Color.rgbName(0x68, 0x6e, 0x68, '2333 cp'), + RgbInt8Color.rgbName(0x65, 0x74, 0x65, '2409 u'), + RgbInt8Color.rgbName(0x64, 0x6c, 0x6b, 'p 175-11 u'), + RgbInt8Color.rgbName(0x65, 0x6c, 0x68, 'p 177-10 u'), + RgbInt8Color.rgbName(0x67, 0x6c, 0x73, '432 u'), + RgbInt8Color.rgbName(0x68, 0x6e, 0x71, '432 up'), + RgbInt8Color.rgbName(0x68, 0x6d, 0x6a, '446 up'), + RgbInt8Color.rgbName(0x6b, 0x6e, 0x6d, 'cool gray 9 xgc'), + RgbInt8Color.rgbName(0x62, 0x74, 0x70, 'p 175-10 c'), + RgbInt8Color.rgbName(0x69, 0x71, 0x6c, 'p 177-9 u'), + RgbInt8Color.rgbName(0x69, 0x6c, 0x79, '2363 up'), + RgbInt8Color.rgbName(0x65, 0x6d, 0x7d, '2376 u'), + RgbInt8Color.rgbName(0x67, 0x70, 0x7a, '7546 u'), + RgbInt8Color.rgbName(0x6a, 0x71, 0x79, '7546 up'), + RgbInt8Color.rgbName(0x66, 0x71, 0x77, 'p 174-10 c'), + RgbInt8Color.rgbName(0x68, 0x6e, 0x75, 'p 174-10 u'), + RgbInt8Color.rgbName(0x64, 0x6c, 0x87, '2110 up'), + RgbInt8Color.rgbName(0x6c, 0x6d, 0x8d, '7673 u'), + RgbInt8Color.rgbName(0x68, 0x6d, 0x8f, 'p 105-13 u'), + RgbInt8Color.rgbName(0x67, 0x6d, 0x99, '2109 c'), + RgbInt8Color.rgbName(0x64, 0x76, 0x92, '2138 c'), + RgbInt8Color.rgbName(0x68, 0x71, 0x99, 'p 105-13 c'), + RgbInt8Color.rgbName(0x69, 0x6f, 0x95, 'p 105-5 u'), + RgbInt8Color.rgbName(0x62, 0x76, 0x9b, 'p 107-3 u'), + RgbInt8Color.rgbName(0x6c, 0x6e, 0xa4, '10240 c'), + RgbInt8Color.rgbName(0x6f, 0x6f, 0xa0, '7670 up'), + RgbInt8Color.rgbName(0x6b, 0x6d, 0xa3, 'p 102-13 c'), + RgbInt8Color.rgbName(0x68, 0x74, 0xa5, 'p 104-6 u'), + RgbInt8Color.rgbName(0x7e, 0x77, 0x21, '385 cp'), + RgbInt8Color.rgbName(0x7f, 0x79, 0x22, '385 xgc'), + RgbInt8Color.rgbName(0x78, 0x7c, 0x32, '8681 c'), + RgbInt8Color.rgbName(0x78, 0x7f, 0x2e, 'p 165-7 c'), + RgbInt8Color.rgbName(0x72, 0x73, 0x37, '7749 c'), + RgbInt8Color.rgbName(0x64, 0x7b, 0x4c, '2280 u'), + RgbInt8Color.rgbName(0x70, 0x77, 0x47, '2307 up'), + RgbInt8Color.rgbName(0x61, 0x7d, 0x57, '364 up'), + RgbInt8Color.rgbName(0x62, 0x7d, 0x55, 'p 156-6 u'), + RgbInt8Color.rgbName(0x6f, 0x74, 0x4a, 'p 165-15 u'), + RgbInt8Color.rgbName(0x6c, 0x7e, 0x51, 'p 159-7 u'), + RgbInt8Color.rgbName(0x6e, 0x78, 0x59, '574 up'), + RgbInt8Color.rgbName(0x6c, 0x77, 0x66, 'p 177-10 c'), + RgbInt8Color.rgbName(0x66, 0x78, 0x73, '2463 up'), + RgbInt8Color.rgbName(0x6a, 0x79, 0x70, '5615 u'), + RgbInt8Color.rgbName(0x6b, 0x76, 0x72, 'p 176-7 c'), + RgbInt8Color.rgbName(0x6a, 0x7b, 0x6c, 'p 177-8 c'), + RgbInt8Color.rgbName(0x6c, 0x7c, 0x79, '2463 u'), + RgbInt8Color.rgbName(0x68, 0x76, 0x75, '444 xgc'), + RgbInt8Color.rgbName(0x6b, 0x77, 0x7d, 'p 174-9 c'), + RgbInt8Color.rgbName(0x64, 0x7a, 0x7b, 'p 175-8 c'), + RgbInt8Color.rgbName(0x6d, 0x79, 0x79, 'p 175-8 u'), + RgbInt8Color.rgbName(0x6c, 0x77, 0x75, 'p 175-9 u'), + RgbInt8Color.rgbName(0x66, 0x77, 0x89, '2167 u'), + RgbInt8Color.rgbName(0x62, 0x7b, 0x88, '2180 u'), + RgbInt8Color.rgbName(0x69, 0x7a, 0x86, '5405 up'), + RgbInt8Color.rgbName(0x6d, 0x7b, 0x81, 'p 174-8 c'), + RgbInt8Color.rgbName(0x6e, 0x77, 0x80, 'p 174-8 u'), + RgbInt8Color.rgbName(0x64, 0x7e, 0x90, '10264 c'), + RgbInt8Color.rgbName(0x65, 0x79, 0x93, '2138 xgc'), + RgbInt8Color.rgbName(0x62, 0x7c, 0x94, '2160 up'), + RgbInt8Color.rgbName(0x66, 0x7b, 0x8b, '2167 up'), + RgbInt8Color.rgbName(0x63, 0x7f, 0x92, '7698 u'), + RgbInt8Color.rgbName(0x63, 0x7d, 0x9c, '2137 cp'), + RgbInt8Color.rgbName(0x6d, 0x76, 0x94, '2139 up'), + RgbInt8Color.rgbName(0x67, 0x7e, 0x94, '2165 xgc'), + RgbInt8Color.rgbName(0x69, 0x79, 0x9a, 'p 107-11 u'), + RgbInt8Color.rgbName(0x62, 0x7d, 0x9a, 'p 111-5 u'), + RgbInt8Color.rgbName(0x6b, 0x75, 0xa2, 'p 105-5 c'), + RgbInt8Color.rgbName(0x70, 0x79, 0xab, '2117 up'), + RgbInt8Color.rgbName(0x73, 0x91, 0xcc, '2718 xgc'), + RgbInt8Color.rgbName(0x94, 0x93, 0x0, '384 c'), + RgbInt8Color.rgbName(0x86, 0x81, 0x18, '392 cp'), + RgbInt8Color.rgbName(0x8d, 0x7f, 0x18, '620 xgc'), + RgbInt8Color.rgbName(0x87, 0x81, 0x1b, '8662 c'), + RgbInt8Color.rgbName(0x70, 0x86, 0x3a, 'p 159-7 c'), + RgbInt8Color.rgbName(0x78, 0x84, 0x3e, 'p 162-14 c'), + RgbInt8Color.rgbName(0x71, 0x80, 0x4a, '3508 up'), + RgbInt8Color.rgbName(0x75, 0x84, 0x48, '7496 u'), + RgbInt8Color.rgbName(0x6f, 0x83, 0x59, '3508 u'), + RgbInt8Color.rgbName(0x64, 0x88, 0x60, '7742 up'), + RgbInt8Color.rgbName(0x64, 0x88, 0x5e, 'p 150-5 u'), + RgbInt8Color.rgbName(0x66, 0x87, 0x5e, 'p 153-6 u'), + RgbInt8Color.rgbName(0x6c, 0x82, 0x5a, 'p 156-13 u'), + RgbInt8Color.rgbName(0x6d, 0x83, 0x67, '10313 c'), + RgbInt8Color.rgbName(0x68, 0x85, 0x64, '7742 u'), + RgbInt8Color.rgbName(0x6b, 0x7d, 0x7b, '5477 up'), + RgbInt8Color.rgbName(0x69, 0x7c, 0x7d, '5487 u'), + RgbInt8Color.rgbName(0x6c, 0x81, 0x77, '5545 up'), + RgbInt8Color.rgbName(0x6c, 0x8a, 0x78, '5555 cp'), + RgbInt8Color.rgbName(0x6c, 0x8a, 0x82, '625 u'), + RgbInt8Color.rgbName(0x6f, 0x82, 0x80, 'p 175-7 c'), + RgbInt8Color.rgbName(0x6a, 0x7f, 0x8e, '2166 up'), + RgbInt8Color.rgbName(0x67, 0x7f, 0x91, '5415 u'), + RgbInt8Color.rgbName(0x67, 0x86, 0x9d, '2149 up'), + RgbInt8Color.rgbName(0x68, 0x82, 0x97, '2150 up'), + RgbInt8Color.rgbName(0x67, 0x82, 0x9f, '2159 u'), + RgbInt8Color.rgbName(0x68, 0x81, 0x97, '2165 c'), + RgbInt8Color.rgbName(0x67, 0x80, 0xa4, '653 u'), + RgbInt8Color.rgbName(0x6b, 0x80, 0xa2, '7667 cp'), + RgbInt8Color.rgbName(0x6a, 0x7f, 0x9d, '8181 c'), + RgbInt8Color.rgbName(0x6f, 0x82, 0xa0, 'p 108-12 c'), + RgbInt8Color.rgbName(0x62, 0x86, 0xa5, 'p 110-13 u'), + RgbInt8Color.rgbName(0x6e, 0x80, 0xa9, '2137 c'), + RgbInt8Color.rgbName(0x69, 0x87, 0xa7, 'p 111-12 c'), + RgbInt8Color.rgbName(0x70, 0x7f, 0xb2, '2125 up'), + RgbInt8Color.rgbName(0x67, 0x87, 0xb7, '7682 c'), + RgbInt8Color.rgbName(0x67, 0x87, 0xb1, 'p 107-2 c'), + RgbInt8Color.rgbName(0x78, 0x98, 0xd0, '2129 xgc'), + RgbInt8Color.rgbName(0x71, 0x9b, 0xc9, '2381 cp'), + RgbInt8Color.rgbName(0x74, 0x99, 0xd1, '2381 xgc'), + RgbInt8Color.rgbName(0x8e, 0x8c, 0x13, '582 c'), + RgbInt8Color.rgbName(0x94, 0x92, 0xe, '582 xgc'), + RgbInt8Color.rgbName(0x72, 0x8f, 0x41, '377 u'), + RgbInt8Color.rgbName(0x70, 0x8b, 0x49, 'p 158-8 u'), + RgbInt8Color.rgbName(0x72, 0x8c, 0x49, '8325 c'), + RgbInt8Color.rgbName(0x6f, 0x92, 0x4c, 'p 155-14 c'), + RgbInt8Color.rgbName(0x72, 0x87, 0x4b, 'p 158-15 u'), + RgbInt8Color.rgbName(0x76, 0x88, 0x48, 'p 159-14 c'), + RgbInt8Color.rgbName(0x6f, 0x86, 0x53, '2279 u'), + RgbInt8Color.rgbName(0x6a, 0x8a, 0x58, 'p 155-14 u'), + RgbInt8Color.rgbName(0x6f, 0x88, 0x5b, 'p 156-5 u'), + RgbInt8Color.rgbName(0x68, 0x90, 0x6b, 'p 144-4 u'), + RgbInt8Color.rgbName(0x69, 0x89, 0x68, 'p 147-12 u'), + RgbInt8Color.rgbName(0x6b, 0x8d, 0x73, '2407 c'), + RgbInt8Color.rgbName(0x6e, 0x8b, 0x73, '2407 cp'), + RgbInt8Color.rgbName(0x6a, 0x90, 0x73, '2407 xgc'), + RgbInt8Color.rgbName(0x6b, 0x91, 0x6f, 'p 141-13 u'), + RgbInt8Color.rgbName(0x6f, 0x90, 0x6d, 'p 144-11 u'), + RgbInt8Color.rgbName(0x66, 0x8e, 0x87, 'p 126-13 u'), + RgbInt8Color.rgbName(0x6c, 0x8f, 0x7f, 'p 132-11 u'), + RgbInt8Color.rgbName(0x70, 0x8a, 0x80, '625 up'), + RgbInt8Color.rgbName(0x6b, 0x8b, 0x8d, '7475 u'), + RgbInt8Color.rgbName(0x6a, 0x8e, 0x91, '8261 c'), + RgbInt8Color.rgbName(0x70, 0x8a, 0x96, '2179 u'), + RgbInt8Color.rgbName(0x67, 0x89, 0x9c, '8201 c'), + RgbInt8Color.rgbName(0x6b, 0x8f, 0x9c, '2178 c'), + RgbInt8Color.rgbName(0x68, 0x8f, 0xa4, '2208 u'), + RgbInt8Color.rgbName(0x66, 0x8e, 0xa4, '2209 u'), + RgbInt8Color.rgbName(0x69, 0x8f, 0xa4, '7697 u'), + RgbInt8Color.rgbName(0x6d, 0x8a, 0xab, '10257 c'), + RgbInt8Color.rgbName(0x6c, 0x8d, 0xa6, '2148 up'), + RgbInt8Color.rgbName(0x70, 0x8b, 0xa8, '2158 u'), + RgbInt8Color.rgbName(0x6c, 0x8d, 0xaf, 'p 111-4 c'), + RgbInt8Color.rgbName(0x68, 0x90, 0xac, 'p 114-4 u'), + RgbInt8Color.rgbName(0x6e, 0x8d, 0xb0, '646 u'), + RgbInt8Color.rgbName(0x70, 0x8e, 0xbe, '2727 up'), + RgbInt8Color.rgbName(0x72, 0x91, 0xbe, '660 up'), + RgbInt8Color.rgbName(0x70, 0x91, 0xbe, '7682 xgc'), + RgbInt8Color.rgbName(0x72, 0x8c, 0xba, 'p 106-5 u'), + RgbInt8Color.rgbName(0x70, 0xa7, 0xd0, '542 cp'), + RgbInt8Color.rgbName(0x78, 0xa4, 0xcc, 'p 109-12 c'), + RgbInt8Color.rgbName(0x73, 0xa1, 0xcd, 'p 109-5 u'), + RgbInt8Color.rgbName(0x80, 0x94, 0xdd, '7452 c'), + RgbInt8Color.rgbName(0x71, 0x99, 0x49, '7490 c'), + RgbInt8Color.rgbName(0x75, 0x9c, 0x4b, 'p 155-6 c'), + RgbInt8Color.rgbName(0x6b, 0x97, 0x5d, '2264 xgc'), + RgbInt8Color.rgbName(0x6b, 0x95, 0x60, '2264 c'), + RgbInt8Color.rgbName(0x6a, 0x98, 0x60, '2264 cp'), + RgbInt8Color.rgbName(0x6a, 0x98, 0x60, 'p 149-13 c'), + RgbInt8Color.rgbName(0x6f, 0x94, 0x5c, 'p 155-6 u'), + RgbInt8Color.rgbName(0x6b, 0x97, 0x6b, 'p 147-4 c'), + RgbInt8Color.rgbName(0x6f, 0x99, 0x65, 'p 152-6 u'), + RgbInt8Color.rgbName(0x74, 0x95, 0x6c, '2263 c'), + RgbInt8Color.rgbName(0x6e, 0x96, 0x72, 'p 141-4 u'), + RgbInt8Color.rgbName(0x6b, 0x9e, 0x72, 'p 143-4 u'), + RgbInt8Color.rgbName(0x6e, 0x95, 0x6d, 'p 147-12 c'), + RgbInt8Color.rgbName(0x70, 0x94, 0x78, 'p 138-12 u'), + RgbInt8Color.rgbName(0x6f, 0x99, 0x7a, 'p 138-4 u'), + RgbInt8Color.rgbName(0x71, 0x96, 0x85, '2458 u'), + RgbInt8Color.rgbName(0x70, 0x95, 0x92, '8281 c'), + RgbInt8Color.rgbName(0x6c, 0x9a, 0x9b, 'p 126-12 c'), + RgbInt8Color.rgbName(0x6d, 0x9a, 0xa1, '2211 xgc'), + RgbInt8Color.rgbName(0x6a, 0x91, 0xa3, '7697 up'), + RgbInt8Color.rgbName(0x68, 0x99, 0xae, '549 u'), + RgbInt8Color.rgbName(0x71, 0x95, 0xb5, '2148 u'), + RgbInt8Color.rgbName(0x71, 0x96, 0xb1, '2157 cp'), + RgbInt8Color.rgbName(0x6f, 0x96, 0xb2, '7454 up'), + RgbInt8Color.rgbName(0x6e, 0x97, 0xb9, 'p 110-12 c'), + RgbInt8Color.rgbName(0x6a, 0x97, 0xb7, 'p 113-12 u'), + RgbInt8Color.rgbName(0x6e, 0x99, 0xba, '2148 xgc'), + RgbInt8Color.rgbName(0x6f, 0x97, 0xbd, 'p 109-13 u'), + RgbInt8Color.rgbName(0x70, 0xae, 0xdd, '292 xgc'), + RgbInt8Color.rgbName(0x76, 0xac, 0xd2, '2169 up'), + RgbInt8Color.rgbName(0x75, 0xac, 0xda, '284 cp'), + RgbInt8Color.rgbName(0x73, 0xad, 0xda, '292 up'), + RgbInt8Color.rgbName(0x73, 0xb0, 0xd9, '542 xgc'), + RgbInt8Color.rgbName(0x75, 0xb0, 0xd6, 'p 112-12 c'), + RgbInt8Color.rgbName(0x8d, 0x9b, 0x20, '7495 cp'), + RgbInt8Color.rgbName(0x78, 0x9d, 0x4a, '576 c'), + RgbInt8Color.rgbName(0x78, 0x9c, 0x4d, '7490 xgc'), + RgbInt8Color.rgbName(0x70, 0x9f, 0x5d, 'p 154-14 u'), + RgbInt8Color.rgbName(0x73, 0x9d, 0x66, '10306 c'), + RgbInt8Color.rgbName(0x70, 0x9e, 0x69, 'p 146-12 c'), + RgbInt8Color.rgbName(0x6e, 0xa1, 0x7c, '7730 up'), + RgbInt8Color.rgbName(0x6d, 0x9e, 0x80, 'p 134-4 u'), + RgbInt8Color.rgbName(0x6f, 0xa2, 0x87, '556 c'), + RgbInt8Color.rgbName(0x72, 0xa2, 0x83, 'p 137-12 u'), + RgbInt8Color.rgbName(0x71, 0x9e, 0x8b, '556 u'), + RgbInt8Color.rgbName(0x68, 0xa3, 0x93, 'p 128-4 u'), + RgbInt8Color.rgbName(0x71, 0xa4, 0x96, 'p 129-4 c'), + RgbInt8Color.rgbName(0x6d, 0xa7, 0x9f, '10293 c'), + RgbInt8Color.rgbName(0x6c, 0xa3, 0xad, '2219 up'), + RgbInt8Color.rgbName(0x6f, 0x9f, 0xb6, '2206 cp'), + RgbInt8Color.rgbName(0x71, 0x9f, 0xb1, '2206 up'), + RgbInt8Color.rgbName(0x6b, 0xa4, 0xb8, '549 c'), + RgbInt8Color.rgbName(0x6e, 0x9e, 0xb0, '7696 cp'), + RgbInt8Color.rgbName(0x70, 0xa0, 0xb1, 'p 120-11 c'), + RgbInt8Color.rgbName(0x71, 0xa6, 0xbd, '549 xgc'), + RgbInt8Color.rgbName(0x6e, 0x9f, 0xc1, 'p 113-4 u'), + RgbInt8Color.rgbName(0x73, 0xa7, 0x60, 'p 151-14 c'), + RgbInt8Color.rgbName(0x75, 0xab, 0x66, 'p 148-13 c'), + RgbInt8Color.rgbName(0x71, 0xab, 0x7f, 'p 140-4 c'), + RgbInt8Color.rgbName(0x71, 0xac, 0x92, 'p 134-4 c'), + RgbInt8Color.rgbName(0x75, 0xab, 0x95, 'p 131-11 c'), + RgbInt8Color.rgbName(0x6d, 0xa7, 0xa6, 'p 125-12 c'), + RgbInt8Color.rgbName(0x71, 0xb0, 0xb4, '2232 c'), + RgbInt8Color.rgbName(0x6d, 0xb0, 0xbb, '2218 xgc'), + RgbInt8Color.rgbName(0x6e, 0xa7, 0xc2, 'p 117-4 c'), + RgbInt8Color.rgbName(0x71, 0xb2, 0xc9, '7458 c'), + RgbInt8Color.rgbName(0x76, 0xac, 0xd1, 'p 112-12 u'), + RgbInt8Color.rgbName(0x77, 0xb1, 0x6a, 'p 151-6 u'), + RgbInt8Color.rgbName(0x76, 0xb2, 0x75, '2270 up'), + RgbInt8Color.rgbName(0x71, 0xb7, 0x90, '2248 c'), + RgbInt8Color.rgbName(0x72, 0xb4, 0x93, 'p 136-12 c'), + RgbInt8Color.rgbName(0x74, 0xb6, 0x9b, '2413 up'), + RgbInt8Color.rgbName(0x74, 0xba, 0x95, '3395 up'), + RgbInt8Color.rgbName(0x77, 0xb3, 0x9e, '7723 up'), + RgbInt8Color.rgbName(0x71, 0xb0, 0x9f, 'p 127-12 u'), + RgbInt8Color.rgbName(0x72, 0xb0, 0xb3, '2232 xgc'), + RgbInt8Color.rgbName(0x70, 0xb4, 0xbd, '7709 up'), + RgbInt8Color.rgbName(0x74, 0xb4, 0xb5, 'p 121-12 u'), + RgbInt8Color.rgbName(0x72, 0xb0, 0xbd, '2218 c'), + RgbInt8Color.rgbName(0x73, 0xb9, 0xc1, 'p 121-12 c'), + RgbInt8Color.rgbName(0x77, 0xb6, 0xc9, '7458 cp'), + RgbInt8Color.rgbName(0x77, 0xa0, 0x6b, 'p 149-4 u'), + RgbInt8Color.rgbName(0x78, 0xbc, 0xa4, '333 up'), + RgbInt8Color.rgbName(0x73, 0xbc, 0xac, '2239 cp'), + RgbInt8Color.rgbName(0x78, 0xbc, 0xaa, '2239 up'), + RgbInt8Color.rgbName(0x76, 0xc2, 0xb1, '7465 cp'), + RgbInt8Color.rgbName(0x70, 0xbf, 0xbb, 'p 124-5 c'), + RgbInt8Color.rgbName(0x78, 0xac, 0x8a, 'p 137-4 u'), + RgbInt8Color.rgbName(0x90, 0xa8, 0x2e, '10326 c'), + RgbInt8Color.rgbName(0xa7, 0xd5, 0x0, '2291 c'), + RgbInt8Color.rgbName(0xa3, 0xd0, 0xd, '2291 xgc'), + RgbInt8Color.rgbName(0xa8, 0xc7, 0x0, '3570 c'), + RgbInt8Color.rgbName(0x8e, 0x9a, 0x36, '383 u'), + RgbInt8Color.rgbName(0x8d, 0x9e, 0x28, 'p 161-8 c'), + RgbInt8Color.rgbName(0x95, 0x9a, 0x31, 'p 164-15 c'), + RgbInt8Color.rgbName(0x8f, 0xd1, 0x6a, '367 u'), + RgbInt8Color.rgbName(0x94, 0xd1, 0x69, '7487 xgc'), + RgbInt8Color.rgbName(0x8f, 0xdc, 0xf1, '9464 u'), + RgbInt8Color.rgbName(0xaa, 0xdb, 0x1e, '2290 c'), + RgbInt8Color.rgbName(0x95, 0xa8, 0x41, '10325 c'), + RgbInt8Color.rgbName(0x93, 0xa9, 0x46, 'p 160-16 u'), + RgbInt8Color.rgbName(0x8e, 0xdd, 0xed, '304 u'), + RgbInt8Color.rgbName(0xa8, 0xad, 0x0, '383 c'), + RgbInt8Color.rgbName(0x92, 0xbf, 0x55, '7488 cp'), + RgbInt8Color.rgbName(0x91, 0xbc, 0x52, 'p 157-8 u'), + RgbInt8Color.rgbName(0x8f, 0xe2, 0xb0, '352 c'), + RgbInt8Color.rgbName(0x93, 0xe6, 0xb4, '351 u'), + RgbInt8Color.rgbName(0x82, 0xd5, 0xba, '337 u'), + RgbInt8Color.rgbName(0xa7, 0xcc, 0x23, '3570 u'), + RgbInt8Color.rgbName(0xa7, 0xda, 0x36, '2291 u'), + RgbInt8Color.rgbName(0x95, 0xb6, 0x6b, 'p 154-13 c'), + RgbInt8Color.rgbName(0x8e, 0xba, 0x69, 'p 154-6 u'), + RgbInt8Color.rgbName(0x79, 0xb8, 0x8d, '346 up'), + RgbInt8Color.rgbName(0x7a, 0xba, 0x8d, 'p 136-4 u'), + RgbInt8Color.rgbName(0x93, 0xe8, 0xd3, '331 u'), + RgbInt8Color.rgbName(0xa5, 0xd2, 0x39, '2290 xgc'), + RgbInt8Color.rgbName(0xa4, 0xd2, 0x33, '2299 c'), + RgbInt8Color.rgbName(0xa9, 0xcd, 0x34, '3507 u'), + RgbInt8Color.rgbName(0xa9, 0xc8, 0x33, '375 cp'), + RgbInt8Color.rgbName(0xa7, 0xb0, 0x19, '383 cp'), + RgbInt8Color.rgbName(0xa1, 0xb1, 0x16, 'p 160-16 c'), + RgbInt8Color.rgbName(0x90, 0xbf, 0x73, '2269 cp'), + RgbInt8Color.rgbName(0x92, 0xbe, 0x7a, 'p 151-5 u'), + RgbInt8Color.rgbName(0x8d, 0xbf, 0x88, 'p 142-11 c'), + RgbInt8Color.rgbName(0x94, 0xc4, 0x8c, 'p 145-4 c'), + RgbInt8Color.rgbName(0x92, 0xd5, 0x92, '2267 xgc'), + RgbInt8Color.rgbName(0x8e, 0xc2, 0x8f, 'p 139-4 u'), + RgbInt8Color.rgbName(0x94, 0xc9, 0x93, 'p 142-4 c'), + RgbInt8Color.rgbName(0x8e, 0xd8, 0xac, '344 u'), + RgbInt8Color.rgbName(0x8d, 0xd9, 0xc6, '332 xgc'), + RgbInt8Color.rgbName(0x7c, 0x25, 0x29, '1815 c'), + RgbInt8Color.rgbName(0x79, 0x27, 0x2c, '1815 xgc'), + RgbInt8Color.rgbName(0x89, 0x15, 0x3f, '1955 xgc'), + RgbInt8Color.rgbName(0x6f, 0x2c, 0x3f, '505 c'), + RgbInt8Color.rgbName(0x88, 0x14, 0x43, '208 xgc'), + RgbInt8Color.rgbName(0x7d, 0x22, 0x48, '216 c'), + RgbInt8Color.rgbName(0x6c, 0x2e, 0x4a, '7643 cp'), + RgbInt8Color.rgbName(0x82, 0x1b, 0x60, '8843 c'), + RgbInt8Color.rgbName(0x85, 0x12, 0x58, '235 xgc'), + RgbInt8Color.rgbName(0x84, 0x1a, 0x51, 'p 77-8 c'), + RgbInt8Color.rgbName(0x79, 0x21, 0x5e, '7650 cp'), + RgbInt8Color.rgbName(0x9b, 0x0, 0x71, '2415 xgc'), + RgbInt8Color.rgbName(0x8a, 0x13, 0x77, '2355 xgc'), + RgbInt8Color.rgbName(0x9e, 0x0, 0x7e, '2415 c'), + RgbInt8Color.rgbName(0x79, 0x29, 0x7d, 'p 91-8 c'), + RgbInt8Color.rgbName(0x9e, 0x3a, 0x8a, '253 cp'), + RgbInt8Color.rgbName(0x98, 0x3b, 0x90, '513 cp'), + RgbInt8Color.rgbName(0xad, 0x1a, 0xac, '253 c'), + RgbInt8Color.rgbName(0xb0, 0x0, 0x8e, '2405 c'), + RgbInt8Color.rgbName(0xb1, 0x4e, 0xb5, '2068 c'), + RgbInt8Color.rgbName(0xac, 0x4f, 0xc6, '2582 c'), + RgbInt8Color.rgbName(0x81, 0x24, 0x2d, 'p 54-16 c'), + RgbInt8Color.rgbName(0x7c, 0x24, 0x3a, 'p 66-16 c'), + RgbInt8Color.rgbName(0x80, 0x24, 0x47, '216 cp'), + RgbInt8Color.rgbName(0x7c, 0x28, 0x55, '683 c'), + RgbInt8Color.rgbName(0x7d, 0x27, 0x57, '683 xgc'), + RgbInt8Color.rgbName(0x80, 0x22, 0x5f, '242 c'), + RgbInt8Color.rgbName(0x81, 0x25, 0x5c, '242 cp'), + RgbInt8Color.rgbName(0x80, 0x21, 0x61, 'p 84-16 c'), + RgbInt8Color.rgbName(0x80, 0x27, 0x6c, '249 c'), + RgbInt8Color.rgbName(0x81, 0x25, 0x70, '249 xgc'), + RgbInt8Color.rgbName(0x81, 0x28, 0x6d, '8844 c'), + RgbInt8Color.rgbName(0x9c, 0x44, 0x90, '253 xgc'), + RgbInt8Color.rgbName(0xb4, 0x56, 0xae, '253 u'), + RgbInt8Color.rgbName(0x81, 0x2e, 0x27, 'p 47-8 c'), + RgbInt8Color.rgbName(0x81, 0x31, 0x2f, '181 c'), + RgbInt8Color.rgbName(0x7f, 0x2f, 0x2d, '1815 cp'), + RgbInt8Color.rgbName(0x80, 0x2f, 0x2d, '7624 c'), + RgbInt8Color.rgbName(0x7a, 0x2c, 0x2c, '7624 xgc'), + RgbInt8Color.rgbName(0x7d, 0x29, 0x35, '188 cp'), + RgbInt8Color.rgbName(0x73, 0x2e, 0x4a, '7642 c'), + RgbInt8Color.rgbName(0x72, 0x2f, 0x4b, '7642 cp'), + RgbInt8Color.rgbName(0x76, 0x2f, 0x4e, '7642 xgc'), + RgbInt8Color.rgbName(0x76, 0x2d, 0x6a, '255 cp'), + RgbInt8Color.rgbName(0x7a, 0x32, 0x7e, '259 cp'), + RgbInt8Color.rgbName(0x9b, 0x4a, 0x97, '2069 xgc'), + RgbInt8Color.rgbName(0x6f, 0x36, 0x31, '7629 cp'), + RgbInt8Color.rgbName(0x6a, 0x37, 0x35, '498 c'), + RgbInt8Color.rgbName(0x6e, 0x33, 0x4d, '7643 xgc'), + RgbInt8Color.rgbName(0x7c, 0x3c, 0x7e, 'p 91-15 c'), + RgbInt8Color.rgbName(0x79, 0x65, 0xb2, '2095 c'), + RgbInt8Color.rgbName(0x7d, 0x3f, 0x16, '725 c'), + RgbInt8Color.rgbName(0x81, 0x46, 0x1d, '725 cp'), + RgbInt8Color.rgbName(0x7d, 0x3f, 0x16, '725 xgc'), + RgbInt8Color.rgbName(0x68, 0x37, 0x37, '1817 cp'), + RgbInt8Color.rgbName(0x73, 0x33, 0x45, '195 xgc'), + RgbInt8Color.rgbName(0x7a, 0x41, 0x83, '7662 c'), + RgbInt8Color.rgbName(0x79, 0x49, 0x1d, '731 cp'), + RgbInt8Color.rgbName(0x70, 0x3f, 0x2a, '478 c'), + RgbInt8Color.rgbName(0x6f, 0x36, 0x39, '2042 cp'), + RgbInt8Color.rgbName(0x6c, 0x3e, 0x31, '7595 xgc'), + RgbInt8Color.rgbName(0x73, 0x34, 0x38, '3523 c'), + RgbInt8Color.rgbName(0x6f, 0x3b, 0x42, '505 cp'), + RgbInt8Color.rgbName(0x74, 0x39, 0x66, '7657 xgc'), + RgbInt8Color.rgbName(0x6f, 0x40, 0x63, '7658 xgc'), + RgbInt8Color.rgbName(0x78, 0x35, 0x6c, 'p 89-15 c'), + RgbInt8Color.rgbName(0x7e, 0x49, 0x90, '3559 cp'), + RgbInt8Color.rgbName(0x7d, 0x48, 0x8d, '7662 cp'), + RgbInt8Color.rgbName(0x80, 0x50, 0x92, 'p 93-6 c'), + RgbInt8Color.rgbName(0x71, 0x40, 0x2a, '7595 cp'), + RgbInt8Color.rgbName(0x80, 0x55, 0x1e, 'p 22-16 c'), + RgbInt8Color.rgbName(0x6f, 0x3e, 0x2e, '478 xgc'), + RgbInt8Color.rgbName(0x79, 0x3b, 0x2b, '7594 cp'), + RgbInt8Color.rgbName(0x6f, 0x41, 0x37, '175 xgc'), + RgbInt8Color.rgbName(0x6a, 0x45, 0x40, 'p 50-16 u'), + RgbInt8Color.rgbName(0x65, 0x4b, 0x49, '7616 xgc'), + RgbInt8Color.rgbName(0x6d, 0x41, 0x46, '8541 c'), + RgbInt8Color.rgbName(0x71, 0x3a, 0x42, '8562 c'), + RgbInt8Color.rgbName(0x69, 0x46, 0x42, 'p 47-16 u'), + RgbInt8Color.rgbName(0x6a, 0x45, 0x41, 'p 56-16 u'), + RgbInt8Color.rgbName(0x6e, 0x44, 0x45, 'p 64-16 u'), + RgbInt8Color.rgbName(0x6c, 0x44, 0x52, 'p 78-14 c'), + RgbInt8Color.rgbName(0x6d, 0x45, 0x4f, 'p 82-16 u'), + RgbInt8Color.rgbName(0x6f, 0x47, 0x57, '2357 up'), + RgbInt8Color.rgbName(0x74, 0x43, 0x64, '5125 cp'), + RgbInt8Color.rgbName(0x79, 0x38, 0x65, 'p 85-7 c'), + RgbInt8Color.rgbName(0x70, 0x4a, 0x64, 'p 89-16 u'), + RgbInt8Color.rgbName(0x77, 0x3e, 0x69, 'p 90-7 c'), + RgbInt8Color.rgbName(0x77, 0x3e, 0x75, 'p 92-6 c'), + RgbInt8Color.rgbName(0x70, 0x51, 0x91, '7677 xgc'), + RgbInt8Color.rgbName(0x7f, 0x59, 0x9a, '2081 cp'), + RgbInt8Color.rgbName(0x7a, 0x58, 0x96, '2607 u'), + RgbInt8Color.rgbName(0x9c, 0x71, 0xc9, '2083 u'), + RgbInt8Color.rgbName(0x98, 0x77, 0xbe, '2074 u'), + RgbInt8Color.rgbName(0x77, 0x47, 0x2b, '7602 cp'), + RgbInt8Color.rgbName(0x6a, 0x48, 0x39, '7603 xgc'), + RgbInt8Color.rgbName(0x77, 0x47, 0x33, '478 cp'), + RgbInt8Color.rgbName(0x68, 0x49, 0x41, 'p 39-16 u'), + RgbInt8Color.rgbName(0x6a, 0x4a, 0x42, 'p 36-16 u'), + RgbInt8Color.rgbName(0x6c, 0x49, 0x42, 'p 42-16 u'), + RgbInt8Color.rgbName(0x6b, 0x4c, 0x4c, '7616 c'), + RgbInt8Color.rgbName(0x70, 0x48, 0x53, '8465 c'), + RgbInt8Color.rgbName(0x6a, 0x4e, 0x4a, 'p 44-13 c'), + RgbInt8Color.rgbName(0x72, 0x4c, 0x50, 'p 51-13 c'), + RgbInt8Color.rgbName(0x6f, 0x4c, 0x51, 'p 67-14 c'), + RgbInt8Color.rgbName(0x6c, 0x4d, 0x56, 'p 79-14 c'), + RgbInt8Color.rgbName(0x69, 0x52, 0x5e, '7449 up'), + RgbInt8Color.rgbName(0x73, 0x4d, 0x5b, '8464 c'), + RgbInt8Color.rgbName(0x74, 0x4a, 0x57, 'p 78-13 c'), + RgbInt8Color.rgbName(0x70, 0x49, 0x5b, 'p 85-8 u'), + RgbInt8Color.rgbName(0x6b, 0x4d, 0x5e, 'p 90-15 u'), + RgbInt8Color.rgbName(0x6e, 0x4e, 0x60, '10195 c'), + RgbInt8Color.rgbName(0x71, 0x4d, 0x76, '3515 up'), + RgbInt8Color.rgbName(0x6f, 0x4f, 0x75, 'p 91-16 u'), + RgbInt8Color.rgbName(0x72, 0x4c, 0x7b, 'p 95-6 c'), + RgbInt8Color.rgbName(0x6c, 0x54, 0x83, 'p 93-8 u'), + RgbInt8Color.rgbName(0x6f, 0x4f, 0x7e, 'p 94-12 c'), + RgbInt8Color.rgbName(0x75, 0x52, 0x92, 'p 96-6 c'), + RgbInt8Color.rgbName(0x82, 0x63, 0xa1, '2076 cp'), + RgbInt8Color.rgbName(0x9b, 0x7d, 0xd4, '2087 c'), + RgbInt8Color.rgbName(0x9b, 0x7d, 0xc4, '2087 xgc'), + RgbInt8Color.rgbName(0x9d, 0x7a, 0xd2, '265 u'), + RgbInt8Color.rgbName(0x99, 0x80, 0xc4, '2655 xgc'), + RgbInt8Color.rgbName(0x99, 0x7a, 0xdb, '928 c'), + RgbInt8Color.rgbName(0x79, 0x56, 0x20, 'p 19-16 c'), + RgbInt8Color.rgbName(0x75, 0x4f, 0x2b, '463 xgc'), + RgbInt8Color.rgbName(0x6f, 0x51, 0x37, '2321 c'), + RgbInt8Color.rgbName(0x71, 0x4e, 0x30, '8585 c'), + RgbInt8Color.rgbName(0x77, 0x51, 0x35, '7568 c'), + RgbInt8Color.rgbName(0x6c, 0x52, 0x42, 'p 26-16 u'), + RgbInt8Color.rgbName(0x6c, 0x4e, 0x42, 'p 29-16 u'), + RgbInt8Color.rgbName(0x6d, 0x4f, 0x47, '7518 c'), + RgbInt8Color.rgbName(0x6e, 0x50, 0x49, '7518 cp'), + RgbInt8Color.rgbName(0x6c, 0x52, 0x4a, '7518 xgc'), + RgbInt8Color.rgbName(0x6f, 0x4e, 0x43, 'p 32-16 u'), + RgbInt8Color.rgbName(0x6e, 0x53, 0x4c, 'p 33-14 c'), + RgbInt8Color.rgbName(0x68, 0x55, 0x52, 'p 51-14 u'), + RgbInt8Color.rgbName(0x6b, 0x53, 0x54, 'p 67-14 u'), + RgbInt8Color.rgbName(0x6b, 0x52, 0x55, 'p 78-14 u'), + RgbInt8Color.rgbName(0x6f, 0x4f, 0x5e, '2056 cp'), + RgbInt8Color.rgbName(0x68, 0x5d, 0x5a, 'p 171-13 c'), + RgbInt8Color.rgbName(0x6b, 0x56, 0x57, 'p 79-14 u'), + RgbInt8Color.rgbName(0x67, 0x5e, 0x60, '10385 c'), + RgbInt8Color.rgbName(0x76, 0x52, 0x64, '511 up'), + RgbInt8Color.rgbName(0x6f, 0x55, 0x64, '5115 u'), + RgbInt8Color.rgbName(0x6c, 0x59, 0x69, '518 u'), + RgbInt8Color.rgbName(0x6c, 0x57, 0x60, '7645 u'), + RgbInt8Color.rgbName(0x72, 0x4e, 0x60, 'p 85-15 u'), + RgbInt8Color.rgbName(0x6c, 0x59, 0x60, 'p 86-14 u'), + RgbInt8Color.rgbName(0x74, 0x51, 0x68, 'p 90-7 u'), + RgbInt8Color.rgbName(0x6e, 0x54, 0x6b, 'p 92-15 u'), + RgbInt8Color.rgbName(0x73, 0x55, 0x6c, '7652 u'), + RgbInt8Color.rgbName(0x6e, 0x5a, 0x6b, '7659 u'), + RgbInt8Color.rgbName(0x6e, 0x51, 0x72, 'p 92-7 u'), + RgbInt8Color.rgbName(0x6c, 0x53, 0x75, 'p 94-7 u'), + RgbInt8Color.rgbName(0x6f, 0x58, 0x71, 'p 95-14 u'), + RgbInt8Color.rgbName(0x6e, 0x52, 0x7c, '2627 u'), + RgbInt8Color.rgbName(0x6e, 0x57, 0x76, 'p 94-12 u'), + RgbInt8Color.rgbName(0x70, 0x58, 0x80, '2627 up'), + RgbInt8Color.rgbName(0x6e, 0x58, 0x7f, '269 u'), + RgbInt8Color.rgbName(0x6c, 0x5d, 0x80, '2695 u'), + RgbInt8Color.rgbName(0x74, 0x4f, 0x83, '8144 c'), + RgbInt8Color.rgbName(0x78, 0x52, 0x81, 'p 91-8 u'), + RgbInt8Color.rgbName(0x71, 0x56, 0x7f, 'p 93-15 u'), + RgbInt8Color.rgbName(0x73, 0x54, 0x89, '2617 u'), + RgbInt8Color.rgbName(0x7d, 0x5a, 0x25, '140 cp'), + RgbInt8Color.rgbName(0x7f, 0x56, 0x21, '463 cp'), + RgbInt8Color.rgbName(0x81, 0x61, 0x20, 'p 16-16 c'), + RgbInt8Color.rgbName(0x73, 0x5e, 0x2c, '147 xgc'), + RgbInt8Color.rgbName(0x77, 0x5f, 0x2b, '7560 xgc'), + RgbInt8Color.rgbName(0x7d, 0x5a, 0x32, '10363 c'), + RgbInt8Color.rgbName(0x70, 0x56, 0x41, '10375 c'), + RgbInt8Color.rgbName(0x6d, 0x58, 0x4b, '10380 c'), + RgbInt8Color.rgbName(0x71, 0x58, 0x45, '4625 u'), + RgbInt8Color.rgbName(0x6c, 0x5e, 0x4b, '7532 cp'), + RgbInt8Color.rgbName(0x73, 0x5b, 0x43, 'p 19-16 u'), + RgbInt8Color.rgbName(0x70, 0x58, 0x53, '2477 c'), + RgbInt8Color.rgbName(0x6e, 0x5e, 0x52, '476 u'), + RgbInt8Color.rgbName(0x71, 0x57, 0x51, '7631 up'), + RgbInt8Color.rgbName(0x69, 0x60, 0x56, 'black 4 u'), + RgbInt8Color.rgbName(0x66, 0x5f, 0x57, 'p 169-15 u'), + RgbInt8Color.rgbName(0x6b, 0x5f, 0x52, 'p 23-15 u'), + RgbInt8Color.rgbName(0x6c, 0x5c, 0x54, 'p 33-14 u'), + RgbInt8Color.rgbName(0x69, 0x5b, 0x56, 'p 44-13 u'), + RgbInt8Color.rgbName(0x69, 0x61, 0x58, '405 c'), + RgbInt8Color.rgbName(0x67, 0x60, 0x5f, '8423 c'), + RgbInt8Color.rgbName(0x67, 0x60, 0x5d, 'p 170-12 u'), + RgbInt8Color.rgbName(0x6c, 0x5f, 0x5c, 'p 44-12 u'), + RgbInt8Color.rgbName(0x69, 0x61, 0x5f, '440 u'), + RgbInt8Color.rgbName(0x71, 0x58, 0x62, '7644 u'), + RgbInt8Color.rgbName(0x6b, 0x60, 0x61, 'p 171-12 u'), + RgbInt8Color.rgbName(0x71, 0x5c, 0x65, 'p 86-13 u'), + RgbInt8Color.rgbName(0x69, 0x60, 0x74, '2363 cp'), + RgbInt8Color.rgbName(0x71, 0x5f, 0x6f, '2364 cp'), + RgbInt8Color.rgbName(0x69, 0x67, 0x6b, 'p 173-11 u'), + RgbInt8Color.rgbName(0x70, 0x5b, 0x6a, 'p 87-12 c'), + RgbInt8Color.rgbName(0x6e, 0x5f, 0x6b, 'p 87-12 u'), + RgbInt8Color.rgbName(0x6e, 0x5d, 0x74, 'p 98-13 u'), + RgbInt8Color.rgbName(0x70, 0x5b, 0x7d, '269 up'), + RgbInt8Color.rgbName(0x6b, 0x61, 0x7f, '3574 u'), + RgbInt8Color.rgbName(0x73, 0x57, 0x75, '525 u'), + RgbInt8Color.rgbName(0x72, 0x5e, 0x7c, '7665 u'), + RgbInt8Color.rgbName(0x76, 0x5c, 0x78, 'p 95-6 u'), + RgbInt8Color.rgbName(0x76, 0x5d, 0x84, '7664 u'), + RgbInt8Color.rgbName(0x6f, 0x5e, 0x89, 'p 96-14 u'), + RgbInt8Color.rgbName(0x72, 0x57, 0x87, 'p 97-13 c'), + RgbInt8Color.rgbName(0x72, 0x59, 0x83, 'p 98-5 c'), + RgbInt8Color.rgbName(0x73, 0x59, 0x90, '268 u'), + RgbInt8Color.rgbName(0x75, 0x5c, 0x88, '7665 up'), + RgbInt8Color.rgbName(0x6e, 0x62, 0x8b, '7679 u'), + RgbInt8Color.rgbName(0x6c, 0x67, 0x8b, 'p 103-5 u'), + RgbInt8Color.rgbName(0x79, 0x5a, 0x8a, 'p 93-7 u'), + RgbInt8Color.rgbName(0x6f, 0x5f, 0x8c, 'p 99-6 u'), + RgbInt8Color.rgbName(0x6e, 0x62, 0x93, '2104 up'), + RgbInt8Color.rgbName(0x6f, 0x61, 0x94, '7679 up'), + RgbInt8Color.rgbName(0x6f, 0x65, 0x9c, '10230 c'), + RgbInt8Color.rgbName(0x81, 0x73, 0xb0, '2095 u'), + RgbInt8Color.rgbName(0x7e, 0x65, 0x23, '7560 cp'), + RgbInt8Color.rgbName(0x79, 0x67, 0x34, '10345 c'), + RgbInt8Color.rgbName(0x78, 0x67, 0x34, '7756 cp'), + RgbInt8Color.rgbName(0x73, 0x69, 0x37, '7756 xgc'), + RgbInt8Color.rgbName(0x75, 0x66, 0x45, '2328 cp'), + RgbInt8Color.rgbName(0x73, 0x66, 0x48, '2328 xgc'), + RgbInt8Color.rgbName(0x72, 0x62, 0x4c, '2472 up'), + RgbInt8Color.rgbName(0x70, 0x62, 0x4d, '462 u'), + RgbInt8Color.rgbName(0x70, 0x65, 0x4b, '7553 u'), + RgbInt8Color.rgbName(0x73, 0x61, 0x44, 'p 12-16 u'), + RgbInt8Color.rgbName(0x71, 0x62, 0x4a, 'p 13-14 c'), + RgbInt8Color.rgbName(0x72, 0x62, 0x4f, '7531 xgc'), + RgbInt8Color.rgbName(0x6c, 0x65, 0x58, '7554 u'), + RgbInt8Color.rgbName(0x6c, 0x67, 0x55, '7554 up'), + RgbInt8Color.rgbName(0x6d, 0x64, 0x56, 'black 4 up'), + RgbInt8Color.rgbName(0x6c, 0x60, 0x54, 'warm gray 11 cp'), + RgbInt8Color.rgbName(0x6c, 0x61, 0x5a, '410 xgc'), + RgbInt8Color.rgbName(0x6e, 0x64, 0x5c, '7533 u'), + RgbInt8Color.rgbName(0x6d, 0x66, 0x5d, 'p 169-14 u'), + RgbInt8Color.rgbName(0x6d, 0x67, 0x5c, 'p 170-11 c'), + RgbInt8Color.rgbName(0x6c, 0x64, 0x60, 'p 170-11 u'), + RgbInt8Color.rgbName(0x6e, 0x62, 0x59, 'warm gray 11 c'), + RgbInt8Color.rgbName(0x6c, 0x64, 0x63, '2334 c'), + RgbInt8Color.rgbName(0x6c, 0x69, 0x62, '2334 cp'), + RgbInt8Color.rgbName(0x6b, 0x67, 0x64, '2334 xgc'), + RgbInt8Color.rgbName(0x6a, 0x68, 0x63, '2335 up'), + RgbInt8Color.rgbName(0x68, 0x68, 0x69, '426 u'), + RgbInt8Color.rgbName(0x6c, 0x68, 0x64, 'black 7 u'), + RgbInt8Color.rgbName(0x6d, 0x69, 0x63, 'black up'), + RgbInt8Color.rgbName(0x70, 0x65, 0x66, 'p 171-11 u'), + RgbInt8Color.rgbName(0x70, 0x64, 0x61, 'p 171-12 c'), + RgbInt8Color.rgbName(0x6a, 0x69, 0x66, 'p 172-11 c'), + RgbInt8Color.rgbName(0x6a, 0x65, 0x67, 'p 172-11 u'), + RgbInt8Color.rgbName(0x69, 0x69, 0x74, '2364 up'), + RgbInt8Color.rgbName(0x6f, 0x69, 0x6c, 'p 172-10 u'), + RgbInt8Color.rgbName(0x6d, 0x6b, 0x70, 'p 173-10 u'), + RgbInt8Color.rgbName(0x69, 0x69, 0x6b, 'p 173-11 c'), + RgbInt8Color.rgbName(0x71, 0x62, 0x70, 'p 87-11 u'), + RgbInt8Color.rgbName(0x6f, 0x6b, 0x7b, '5265 up'), + RgbInt8Color.rgbName(0x71, 0x63, 0x7f, '669 u'), + RgbInt8Color.rgbName(0x70, 0x66, 0x73, '7448 up'), + RgbInt8Color.rgbName(0x70, 0x69, 0x77, '7666 u'), + RgbInt8Color.rgbName(0x6e, 0x64, 0x7d, 'p 101-13 u'), + RgbInt8Color.rgbName(0x73, 0x60, 0x79, 'p 98-5 u'), + RgbInt8Color.rgbName(0x6c, 0x6a, 0x81, '2362 c'), + RgbInt8Color.rgbName(0x6d, 0x6b, 0x82, '5265 u'), + RgbInt8Color.rgbName(0x73, 0x68, 0x83, 'p 101-5 u'), + RgbInt8Color.rgbName(0x6e, 0x69, 0x93, '7671 u'), + RgbInt8Color.rgbName(0x73, 0x66, 0x8a, 'p 98-12 c'), + RgbInt8Color.rgbName(0x6c, 0x69, 0x9b, '2368 up'), + RgbInt8Color.rgbName(0x74, 0x67, 0x96, '667 cp'), + RgbInt8Color.rgbName(0x6c, 0x6b, 0x9d, '7671 up'), + RgbInt8Color.rgbName(0x70, 0x6b, 0x93, 'p 101-5 c'), + RgbInt8Color.rgbName(0x71, 0x6a, 0x9e, '2735 up'), + RgbInt8Color.rgbName(0x75, 0x66, 0xa0, '7676 c'), + RgbInt8Color.rgbName(0x7a, 0x81, 0xbb, '2116 u'), + RgbInt8Color.rgbName(0x81, 0x82, 0xb8, 'p 102-4 c'), + RgbInt8Color.rgbName(0xa0, 0x74, 0x0, '132 c'), + RgbInt8Color.rgbName(0x7a, 0x6c, 0x37, '7769 cp'), + RgbInt8Color.rgbName(0x7a, 0x72, 0x3c, '8680 c'), + RgbInt8Color.rgbName(0x77, 0x6f, 0x48, '455 u'), + RgbInt8Color.rgbName(0x6a, 0x73, 0x55, '574 u'), + RgbInt8Color.rgbName(0x70, 0x74, 0x4e, '5747 u'), + RgbInt8Color.rgbName(0x73, 0x6f, 0x4c, '5815 u'), + RgbInt8Color.rgbName(0x71, 0x74, 0x4c, '8700 c'), + RgbInt8Color.rgbName(0x76, 0x70, 0x45, 'p 3-16 u'), + RgbInt8Color.rgbName(0x77, 0x6e, 0x46, 'p 6-16 u'), + RgbInt8Color.rgbName(0x76, 0x68, 0x47, 'p 9-16 u'), + RgbInt8Color.rgbName(0x71, 0x6b, 0x54, '449 u'), + RgbInt8Color.rgbName(0x75, 0x6d, 0x59, '2329 up'), + RgbInt8Color.rgbName(0x6c, 0x6e, 0x60, '7764 u'), + RgbInt8Color.rgbName(0x70, 0x6a, 0x59, '7771 up'), + RgbInt8Color.rgbName(0x6e, 0x71, 0x5f, 'p 178-12 c'), + RgbInt8Color.rgbName(0x6b, 0x69, 0x60, 'p 178-12 u'), + RgbInt8Color.rgbName(0x6e, 0x6c, 0x69, '10395 c'), + RgbInt8Color.rgbName(0x6e, 0x6c, 0x69, '2336 up'), + RgbInt8Color.rgbName(0x74, 0x6d, 0x65, '404 cp'), + RgbInt8Color.rgbName(0x6f, 0x69, 0x63, '412 up'), + RgbInt8Color.rgbName(0x70, 0x6e, 0x64, 'p 178-11 u'), + RgbInt8Color.rgbName(0x6e, 0x6b, 0x68, 'p 179-11 u'), + RgbInt8Color.rgbName(0x6b, 0x71, 0x75, '10390 c'), + RgbInt8Color.rgbName(0x71, 0x6e, 0x6a, '2333 c'), + RgbInt8Color.rgbName(0x71, 0x6e, 0x6b, '2333 xgc'), + RgbInt8Color.rgbName(0x71, 0x6e, 0x6e, '2334 u'), + RgbInt8Color.rgbName(0x6f, 0x70, 0x6e, '424 xgc'), + RgbInt8Color.rgbName(0x6b, 0x71, 0x73, '445 u'), + RgbInt8Color.rgbName(0x6f, 0x6e, 0x6d, '8402 c'), + RgbInt8Color.rgbName(0x70, 0x6f, 0x6c, 'black 7 up'), + RgbInt8Color.rgbName(0x70, 0x6e, 0x6c, 'p 172-10 c'), + RgbInt8Color.rgbName(0x6e, 0x6e, 0x71, 'p 173-10 c'), + RgbInt8Color.rgbName(0x69, 0x72, 0x71, 'p 175-10 u'), + RgbInt8Color.rgbName(0x6d, 0x74, 0x6e, 'p 177-8 u'), + RgbInt8Color.rgbName(0x6f, 0x6e, 0x7d, '2363 u'), + RgbInt8Color.rgbName(0x72, 0x6b, 0x77, '2364 u'), + RgbInt8Color.rgbName(0x72, 0x70, 0x76, 'p 173-9 u'), + RgbInt8Color.rgbName(0x6c, 0x74, 0x7c, 'p 174-9 u'), + RgbInt8Color.rgbName(0x6b, 0x75, 0x74, 'p 176-7 u'), + RgbInt8Color.rgbName(0x6e, 0x73, 0x86, '2361 up'), + RgbInt8Color.rgbName(0x6f, 0x76, 0x84, '2362 up'), + RgbInt8Color.rgbName(0x73, 0x71, 0x85, '2362 xgc'), + RgbInt8Color.rgbName(0x6d, 0x74, 0x84, '2376 up'), + RgbInt8Color.rgbName(0x75, 0x6d, 0x87, 'p 103-12 u'), + RgbInt8Color.rgbName(0x6c, 0x74, 0x8f, '2109 up'), + RgbInt8Color.rgbName(0x70, 0x70, 0x8d, '2361 c'), + RgbInt8Color.rgbName(0x79, 0x6e, 0x8c, '7447 up'), + RgbInt8Color.rgbName(0x76, 0x6c, 0x8c, 'p 100-13 u'), + RgbInt8Color.rgbName(0x70, 0x76, 0x95, '2110 u'), + RgbInt8Color.rgbName(0x70, 0x6e, 0x9a, '7670 u'), + RgbInt8Color.rgbName(0x73, 0x6f, 0x9b, 'p 100-13 c'), + RgbInt8Color.rgbName(0x71, 0x6c, 0x95, 'p 102-13 u'), + RgbInt8Color.rgbName(0x72, 0x70, 0x96, 'p 103-12 c'), + RgbInt8Color.rgbName(0x78, 0x6e, 0x9f, '2089 up'), + RgbInt8Color.rgbName(0x79, 0x6f, 0xa0, '2096 up'), + RgbInt8Color.rgbName(0x72, 0x6b, 0x9c, '2103 up'), + RgbInt8Color.rgbName(0x6f, 0x74, 0xa6, '2736 up'), + RgbInt8Color.rgbName(0x6c, 0x73, 0xa5, '7668 cp'), + RgbInt8Color.rgbName(0x75, 0x72, 0xa1, 'p 102-5 u'), + RgbInt8Color.rgbName(0x6e, 0x75, 0x9f, 'p 104-13 u'), + RgbInt8Color.rgbName(0x79, 0x6b, 0xa7, '2096 u'), + RgbInt8Color.rgbName(0x6d, 0x7d, 0xaf, 'p 104-13 c'), + RgbInt8Color.rgbName(0x9a, 0x87, 0x0, '3985 c'), + RgbInt8Color.rgbName(0x8a, 0x7b, 0x19, '620 c'), + RgbInt8Color.rgbName(0x88, 0x7c, 0x1b, '8661 c'), + RgbInt8Color.rgbName(0x7c, 0x7a, 0x2b, 'p 168-15 c'), + RgbInt8Color.rgbName(0x7c, 0x80, 0x34, '7748 c'), + RgbInt8Color.rgbName(0x7a, 0x80, 0x33, '7748 xgc'), + RgbInt8Color.rgbName(0x79, 0x75, 0x39, '7761 xgc'), + RgbInt8Color.rgbName(0x73, 0x7a, 0x49, 'p 165-8 u'), + RgbInt8Color.rgbName(0x7a, 0x74, 0x48, '10338 c'), + RgbInt8Color.rgbName(0x71, 0x79, 0x54, '371 up'), + RgbInt8Color.rgbName(0x74, 0x7b, 0x4d, '378 u'), + RgbInt8Color.rgbName(0x73, 0x7b, 0x4c, '5763 c'), + RgbInt8Color.rgbName(0x72, 0x7a, 0x4b, '5763 xgc'), + RgbInt8Color.rgbName(0x78, 0x75, 0x4a, '581 u'), + RgbInt8Color.rgbName(0x7a, 0x7a, 0x49, 'p 168-7 u'), + RgbInt8Color.rgbName(0x6f, 0x7d, 0x55, 'p 159-14 u'), + RgbInt8Color.rgbName(0x76, 0x7e, 0x4f, 'p 162-14 u'), + RgbInt8Color.rgbName(0x78, 0x76, 0x5b, '8520 c'), + RgbInt8Color.rgbName(0x74, 0x7c, 0x61, '5753 u'), + RgbInt8Color.rgbName(0x74, 0x7a, 0x63, '7762 u'), + RgbInt8Color.rgbName(0x71, 0x74, 0x63, '7763 u'), + RgbInt8Color.rgbName(0x73, 0x75, 0x65, '7763 up'), + RgbInt8Color.rgbName(0x74, 0x77, 0x64, '7764 up'), + RgbInt8Color.rgbName(0x72, 0x73, 0x61, 'p 169-13 c'), + RgbInt8Color.rgbName(0x6f, 0x7b, 0x6b, 'p 177-9 c'), + RgbInt8Color.rgbName(0x75, 0x76, 0x63, 'p 178-11 c'), + RgbInt8Color.rgbName(0x70, 0x73, 0x72, '424 c'), + RgbInt8Color.rgbName(0x74, 0x78, 0x72, 'p 177-7 u'), + RgbInt8Color.rgbName(0x71, 0x79, 0x80, '431 up'), + RgbInt8Color.rgbName(0x71, 0x7c, 0x7d, '444 c'), + RgbInt8Color.rgbName(0x72, 0x79, 0x77, '445 up'), + RgbInt8Color.rgbName(0x70, 0x7f, 0x74, '5615 up'), + RgbInt8Color.rgbName(0x70, 0x74, 0x7c, '7540 u'), + RgbInt8Color.rgbName(0x73, 0x78, 0x7b, '7540 up'), + RgbInt8Color.rgbName(0x75, 0x78, 0x7b, 'cool gray 9 c'), + RgbInt8Color.rgbName(0x76, 0x77, 0x7b, 'p 173-8 c'), + RgbInt8Color.rgbName(0x74, 0x7b, 0x78, 'p 176-6 u'), + RgbInt8Color.rgbName(0x74, 0x75, 0x76, 'p 179-10 c'), + RgbInt8Color.rgbName(0x6e, 0x79, 0x87, '2138 up'), + RgbInt8Color.rgbName(0x73, 0x7b, 0x82, '431 u'), + RgbInt8Color.rgbName(0x75, 0x7c, 0x84, 'p 174-7 u'), + RgbInt8Color.rgbName(0x6e, 0x7a, 0x8f, '2138 u'), + RgbInt8Color.rgbName(0x6d, 0x7e, 0x91, '2166 u'), + RgbInt8Color.rgbName(0x72, 0x77, 0x8f, '2361 cp'), + RgbInt8Color.rgbName(0x76, 0x76, 0x8c, '2361 u'), + RgbInt8Color.rgbName(0x6e, 0x78, 0x91, 'p 108-12 u'), + RgbInt8Color.rgbName(0x71, 0x7d, 0x99, 'p 108-4 u'), + RgbInt8Color.rgbName(0x6e, 0x80, 0x9e, '653 up'), + RgbInt8Color.rgbName(0x6e, 0x7c, 0xa0, '7667 c'), + RgbInt8Color.rgbName(0x71, 0x78, 0xa5, '7668 xgc'), + RgbInt8Color.rgbName(0x78, 0x78, 0xa2, '7669 u'), + RgbInt8Color.rgbName(0x6d, 0x7f, 0xa3, 'p 107-2 u'), + RgbInt8Color.rgbName(0x6f, 0x84, 0xab, '2137 xgc'), + RgbInt8Color.rgbName(0x77, 0x78, 0xa8, '2366 up'), + RgbInt8Color.rgbName(0x7a, 0x79, 0xb3, '272 cp'), + RgbInt8Color.rgbName(0x82, 0x8e, 0xcb, '2114 xgc'), + RgbInt8Color.rgbName(0x82, 0x92, 0xcf, '2123 xgc'), + RgbInt8Color.rgbName(0x72, 0x92, 0xc3, '2135 xgc'), + RgbInt8Color.rgbName(0x75, 0x91, 0xbe, '2381 up'), + RgbInt8Color.rgbName(0x9b, 0x89, 0x0, '3985 xgc'), + RgbInt8Color.rgbName(0x8b, 0x7d, 0x1b, 'p 6-16 c'), + RgbInt8Color.rgbName(0x7a, 0x89, 0x33, '7491 cp'), + RgbInt8Color.rgbName(0x7b, 0x80, 0x3b, 'p 165-14 c'), + RgbInt8Color.rgbName(0x78, 0x80, 0x42, '2307 u'), + RgbInt8Color.rgbName(0x79, 0x86, 0x3c, '7491 c'), + RgbInt8Color.rgbName(0x7b, 0x8a, 0x40, '7491 xgc'), + RgbInt8Color.rgbName(0x82, 0x86, 0x3c, '7748 cp'), + RgbInt8Color.rgbName(0x6f, 0x84, 0x56, '575 u'), + RgbInt8Color.rgbName(0x77, 0x80, 0x4f, '5763 cp'), + RgbInt8Color.rgbName(0x79, 0x87, 0x4a, 'p 161-16 u'), + RgbInt8Color.rgbName(0x7a, 0x85, 0x4c, 'p 162-7 u'), + RgbInt8Color.rgbName(0x7d, 0x82, 0x4b, 'p 165-7 u'), + RgbInt8Color.rgbName(0x6f, 0x87, 0x57, '2279 up'), + RgbInt8Color.rgbName(0x78, 0x81, 0x53, '378 up'), + RgbInt8Color.rgbName(0x7b, 0x80, 0x4f, 'p 165-14 u'), + RgbInt8Color.rgbName(0x75, 0x88, 0x5b, '575 up'), + RgbInt8Color.rgbName(0x77, 0x7d, 0x63, '5753 up'), + RgbInt8Color.rgbName(0x77, 0x7d, 0x64, '7498 u'), + RgbInt8Color.rgbName(0x72, 0x8b, 0x63, 'p 153-12 u'), + RgbInt8Color.rgbName(0x70, 0x85, 0x73, '5625 c'), + RgbInt8Color.rgbName(0x70, 0x86, 0x74, '5625 xgc'), + RgbInt8Color.rgbName(0x73, 0x80, 0x70, 'p 177-7 c'), + RgbInt8Color.rgbName(0x73, 0x81, 0x7e, '8500 c'), + RgbInt8Color.rgbName(0x75, 0x80, 0x7d, 'p 175-7 u'), + RgbInt8Color.rgbName(0x72, 0x82, 0x88, '3526 up'), + RgbInt8Color.rgbName(0x70, 0x83, 0x8f, '5415 up'), + RgbInt8Color.rgbName(0x72, 0x85, 0x82, '5487 up'), + RgbInt8Color.rgbName(0x74, 0x80, 0x86, 'p 174-7 c'), + RgbInt8Color.rgbName(0x73, 0x85, 0x8d, '3526 u'), + RgbInt8Color.rgbName(0x75, 0x84, 0x91, '7544 xgc'), + RgbInt8Color.rgbName(0x78, 0x83, 0x8e, '7545 u'), + RgbInt8Color.rgbName(0x70, 0x89, 0x94, '2179 up'), + RgbInt8Color.rgbName(0x72, 0x82, 0x9f, '2373 c'), + RgbInt8Color.rgbName(0x6d, 0x88, 0x9f, '2159 up'), + RgbInt8Color.rgbName(0x73, 0x88, 0xa0, 'p 111-12 u'), + RgbInt8Color.rgbName(0x6f, 0x86, 0xa9, '10244 c'), + RgbInt8Color.rgbName(0x71, 0x85, 0xaa, '10252 c'), + RgbInt8Color.rgbName(0x75, 0x83, 0xa6, '7667 xgc'), + RgbInt8Color.rgbName(0x76, 0x80, 0xa7, '7668 up'), + RgbInt8Color.rgbName(0x78, 0x85, 0xb6, '2130 up'), + RgbInt8Color.rgbName(0x7b, 0xa0, 0xd0, '659 cp'), + RgbInt8Color.rgbName(0x9d, 0x9d, 0x0, '384 xgc'), + RgbInt8Color.rgbName(0x9a, 0x95, 0x0, '391 c'), + RgbInt8Color.rgbName(0xa0, 0x92, 0x0, '399 c'), + RgbInt8Color.rgbName(0xa0, 0x94, 0x7, '399 cp'), + RgbInt8Color.rgbName(0x85, 0x90, 0x26, '8664 c'), + RgbInt8Color.rgbName(0x9b, 0x8f, 0xf, 'p 3-8 c'), + RgbInt8Color.rgbName(0x78, 0x87, 0x4d, '10331 c'), + RgbInt8Color.rgbName(0x82, 0x8a, 0x48, 'p 164-16 u'), + RgbInt8Color.rgbName(0x75, 0x92, 0x58, '370 up'), + RgbInt8Color.rgbName(0x73, 0x8d, 0x67, 'p 150-12 u'), + RgbInt8Color.rgbName(0x73, 0x91, 0x62, 'p 153-12 c'), + RgbInt8Color.rgbName(0x79, 0x90, 0x64, 'p 156-4 u'), + RgbInt8Color.rgbName(0x76, 0x8f, 0x70, '2265 u'), + RgbInt8Color.rgbName(0x78, 0x8a, 0x7a, '5625 cp'), + RgbInt8Color.rgbName(0x76, 0x8e, 0x87, '5555 u'), + RgbInt8Color.rgbName(0x79, 0x89, 0x81, '5625 u'), + RgbInt8Color.rgbName(0x72, 0x90, 0x8e, '7475 up'), + RgbInt8Color.rgbName(0x76, 0x8b, 0x99, '10263 c'), + RgbInt8Color.rgbName(0x72, 0x8e, 0x9c, '2164 cp'), + RgbInt8Color.rgbName(0x6c, 0x8f, 0x9d, '2178 xgc'), + RgbInt8Color.rgbName(0x79, 0x8d, 0x95, '3526 cp'), + RgbInt8Color.rgbName(0x70, 0x8f, 0xa9, '2158 up'), + RgbInt8Color.rgbName(0x6d, 0x8d, 0xa5, 'p 114-12 u'), + RgbInt8Color.rgbName(0x76, 0x8f, 0xa9, '646 up'), + RgbInt8Color.rgbName(0x72, 0x8b, 0xaf, 'p 107-10 c'), + RgbInt8Color.rgbName(0x76, 0x8d, 0xa7, 'p 111-4 u'), + RgbInt8Color.rgbName(0x73, 0x8b, 0xb7, '7683 up'), + RgbInt8Color.rgbName(0x7b, 0xa4, 0xdb, '659 c'), + RgbInt8Color.rgbName(0x79, 0xa5, 0xd2, '2142 cp'), + RgbInt8Color.rgbName(0x82, 0xa3, 0xd6, '659 xgc'), + RgbInt8Color.rgbName(0x7b, 0xa6, 0xde, '7453 c'), + RgbInt8Color.rgbName(0x97, 0x99, 0x16, '384 cp'), + RgbInt8Color.rgbName(0x9b, 0x99, 0x12, '391 cp'), + RgbInt8Color.rgbName(0x93, 0x92, 0x1b, '582 cp'), + RgbInt8Color.rgbName(0x80, 0x7a, 0x39, '7761 cp'), + RgbInt8Color.rgbName(0x7c, 0x94, 0x4d, 'p 158-7 u'), + RgbInt8Color.rgbName(0x7d, 0x97, 0x56, '377 up'), + RgbInt8Color.rgbName(0x77, 0x95, 0x57, '8324 c'), + RgbInt8Color.rgbName(0x79, 0x97, 0x5c, '576 up'), + RgbInt8Color.rgbName(0x75, 0x92, 0x5e, 'p 155-13 u'), + RgbInt8Color.rgbName(0x77, 0x93, 0x5b, 'p 156-5 c'), + RgbInt8Color.rgbName(0x74, 0x96, 0x69, '2263 xgc'), + RgbInt8Color.rgbName(0x78, 0x96, 0x67, 'p 150-12 c'), + RgbInt8Color.rgbName(0x76, 0x98, 0x70, '2264 u'), + RgbInt8Color.rgbName(0x71, 0x99, 0x73, '2264 up'), + RgbInt8Color.rgbName(0x72, 0x9a, 0x70, 'p 144-11 c'), + RgbInt8Color.rgbName(0x72, 0x9c, 0x72, 'p 146-12 u'), + RgbInt8Color.rgbName(0x77, 0x93, 0x71, 'p 147-11 u'), + RgbInt8Color.rgbName(0x78, 0x96, 0x6a, 'p 150-4 u'), + RgbInt8Color.rgbName(0x77, 0x93, 0x74, '2265 up'), + RgbInt8Color.rgbName(0x79, 0x92, 0x81, '2407 u'), + RgbInt8Color.rgbName(0x7b, 0x95, 0x83, '2407 up'), + RgbInt8Color.rgbName(0x71, 0x98, 0x88, '2458 up'), + RgbInt8Color.rgbName(0x76, 0x96, 0x84, '8301 c'), + RgbInt8Color.rgbName(0x73, 0x9a, 0x8a, 'p 129-4 u'), + RgbInt8Color.rgbName(0x7a, 0x9a, 0x82, 'p 135-11 u'), + RgbInt8Color.rgbName(0x7a, 0x9a, 0x8c, 'p 129-12 u'), + RgbInt8Color.rgbName(0x74, 0x9d, 0x8f, 'p 132-11 c'), + RgbInt8Color.rgbName(0x75, 0x9b, 0x8b, 'p 132-2 u'), + RgbInt8Color.rgbName(0x7b, 0x96, 0x9e, '2178 up'), + RgbInt8Color.rgbName(0x6f, 0x9b, 0xa4, '2211 c'), + RgbInt8Color.rgbName(0x75, 0x99, 0xae, '10268 c'), + RgbInt8Color.rgbName(0x78, 0x96, 0xac, '5425 xgc'), + RgbInt8Color.rgbName(0x71, 0x9b, 0xaf, '7696 u'), + RgbInt8Color.rgbName(0x75, 0x94, 0xb3, '2157 c'), + RgbInt8Color.rgbName(0x78, 0x97, 0xb5, '2157 xgc'), + RgbInt8Color.rgbName(0x73, 0x9d, 0xb3, '2207 u'), + RgbInt8Color.rgbName(0x78, 0x96, 0xb2, 'p 110-12 u'), + RgbInt8Color.rgbName(0x75, 0x9a, 0xc4, '652 cp'), + RgbInt8Color.rgbName(0x75, 0x99, 0xbb, '7454 u'), + RgbInt8Color.rgbName(0x7f, 0xad, 0xe3, '2142 c'), + RgbInt8Color.rgbName(0x81, 0xb0, 0xd2, '2169 c'), + RgbInt8Color.rgbName(0x81, 0xab, 0xd9, '284 xgc'), + RgbInt8Color.rgbName(0x7b, 0xaf, 0xd4, '542 c'), + RgbInt8Color.rgbName(0x79, 0xab, 0xd2, '543 u'), + RgbInt8Color.rgbName(0x99, 0x9f, 0x1b, 'p 164-8 c'), + RgbInt8Color.rgbName(0x7a, 0x9b, 0x62, '576 u'), + RgbInt8Color.rgbName(0x7b, 0x9e, 0x6b, '7490 u'), + RgbInt8Color.rgbName(0x7d, 0x9e, 0x6d, 'p 150-4 c'), + RgbInt8Color.rgbName(0x77, 0x9e, 0x7c, '10299 c'), + RgbInt8Color.rgbName(0x7d, 0xa2, 0x78, 'p 141-3 c'), + RgbInt8Color.rgbName(0x7b, 0x9e, 0x77, 'p 144-3 u'), + RgbInt8Color.rgbName(0x78, 0x9f, 0x90, '624 c'), + RgbInt8Color.rgbName(0x73, 0xa6, 0x91, 'p 131-3 u'), + RgbInt8Color.rgbName(0x7c, 0xa0, 0x89, 'p 138-11 c'), + RgbInt8Color.rgbName(0x78, 0xa2, 0x92, '624 xgc'), + RgbInt8Color.rgbName(0x71, 0xa3, 0x9a, 'p 125-12 u'), + RgbInt8Color.rgbName(0x79, 0xa4, 0x96, 'p 129-12 c'), + RgbInt8Color.rgbName(0x75, 0xa0, 0xa3, '2211 cp'), + RgbInt8Color.rgbName(0x76, 0x9c, 0xa3, '5493 u'), + RgbInt8Color.rgbName(0x74, 0x9f, 0xae, '10274 c'), + RgbInt8Color.rgbName(0x76, 0x9f, 0xab, '2177 cp'), + RgbInt8Color.rgbName(0x75, 0x9c, 0xae, '7696 up'), + RgbInt8Color.rgbName(0x78, 0x9f, 0xa8, 'p 120-11 u'), + RgbInt8Color.rgbName(0x77, 0x9f, 0xb5, '2206 c'), + RgbInt8Color.rgbName(0x78, 0x9e, 0xb3, '2206 xgc'), + RgbInt8Color.rgbName(0x74, 0x9d, 0xb1, 'p 117-12 u'), + RgbInt8Color.rgbName(0x79, 0xa3, 0xbe, '542 up'), + RgbInt8Color.rgbName(0x77, 0xa1, 0xc5, 'p 110-4 c'), + RgbInt8Color.rgbName(0x7d, 0xa0, 0xbf, 'p 110-4 u'), + RgbInt8Color.rgbName(0x7b, 0xa3, 0xbf, 'p 114-3 c'), + RgbInt8Color.rgbName(0x7d, 0xa1, 0xc4, '645 c'), + RgbInt8Color.rgbName(0x79, 0xa0, 0xc6, '645 cp'), + RgbInt8Color.rgbName(0x97, 0xa9, 0x26, '390 u'), + RgbInt8Color.rgbName(0x82, 0xa4, 0x52, 'p 157-16 u'), + RgbInt8Color.rgbName(0x7a, 0xab, 0x6d, '7489 u'), + RgbInt8Color.rgbName(0x7b, 0xac, 0x66, '7737 u'), + RgbInt8Color.rgbName(0x7d, 0xa5, 0x64, 'p 152-6 c'), + RgbInt8Color.rgbName(0x82, 0xa9, 0x66, 'p 154-13 u'), + RgbInt8Color.rgbName(0x7e, 0xac, 0x71, 'p 148-12 u'), + RgbInt8Color.rgbName(0x80, 0xaa, 0x71, 'p 149-4 c'), + RgbInt8Color.rgbName(0x78, 0xa8, 0x7f, 'p 140-4 u'), + RgbInt8Color.rgbName(0x80, 0xaa, 0x78, 'p 143-12 c'), + RgbInt8Color.rgbName(0x7c, 0xae, 0x78, 'p 143-3 c'), + RgbInt8Color.rgbName(0x7e, 0xaa, 0x7b, 'p 146-3 u'), + RgbInt8Color.rgbName(0x77, 0xa9, 0x88, 'p 137-12 c'), + RgbInt8Color.rgbName(0x79, 0xa7, 0x8d, '556 cp'), + RgbInt8Color.rgbName(0x7b, 0xa6, 0x99, 'p 132-2 c'), + RgbInt8Color.rgbName(0x74, 0xac, 0xa3, 'p 128-11 c'), + RgbInt8Color.rgbName(0x77, 0xa6, 0xac, 'p 123-11 c'), + RgbInt8Color.rgbName(0x78, 0xae, 0xb5, '2218 up'), + RgbInt8Color.rgbName(0x78, 0xb0, 0xb5, '2232 u'), + RgbInt8Color.rgbName(0x75, 0xa7, 0xb9, 'p 120-3 c'), + RgbInt8Color.rgbName(0x7a, 0xac, 0xb3, 'p 123-4 c'), + RgbInt8Color.rgbName(0x78, 0xae, 0xbd, '2205 cp'), + RgbInt8Color.rgbName(0x79, 0xb1, 0xbe, '2218 u'), + RgbInt8Color.rgbName(0x7a, 0xaa, 0xbe, '550 u'), + RgbInt8Color.rgbName(0x7b, 0xa7, 0xbc, '7695 c'), + RgbInt8Color.rgbName(0x79, 0xa6, 0xbc, 'p 117-4 u'), + RgbInt8Color.rgbName(0x77, 0xb1, 0xcb, '7458 xgc'), + RgbInt8Color.rgbName(0x79, 0xa6, 0xc5, 'p 113-11 c'), + RgbInt8Color.rgbName(0x7d, 0xad, 0xd0, '3577 u'), + RgbInt8Color.rgbName(0x89, 0xab, 0xe3, '7451 c'), + RgbInt8Color.rgbName(0x82, 0xaf, 0x68, '7489 up'), + RgbInt8Color.rgbName(0x80, 0xb3, 0x7f, 'p 142-11 u'), + RgbInt8Color.rgbName(0x80, 0xb0, 0x79, 'p 145-12 u'), + RgbInt8Color.rgbName(0x79, 0xb8, 0x95, '2248 up'), + RgbInt8Color.rgbName(0x80, 0xb4, 0x8f, 'p 137-4 c'), + RgbInt8Color.rgbName(0x7c, 0xba, 0x96, '2247 cp'), + RgbInt8Color.rgbName(0x7d, 0xbb, 0x97, '2248 u'), + RgbInt8Color.rgbName(0x7c, 0xad, 0x93, '557 xgc'), + RgbInt8Color.rgbName(0x7f, 0xb4, 0x9a, 'p 130-11 u'), + RgbInt8Color.rgbName(0x7e, 0xb4, 0x9a, 'p 131-3 c'), + RgbInt8Color.rgbName(0x7b, 0xae, 0xa3, 'p 125-4 u'), + RgbInt8Color.rgbName(0x79, 0xb2, 0xb1, '2232 up'), + RgbInt8Color.rgbName(0x79, 0xbb, 0xab, '563 cp'), + RgbInt8Color.rgbName(0x76, 0xb9, 0xaf, '563 u'), + RgbInt8Color.rgbName(0x78, 0xb2, 0xb0, 'p 125-4 c'), + RgbInt8Color.rgbName(0x78, 0xb8, 0xae, 'p 127-12 c'), + RgbInt8Color.rgbName(0x7d, 0xb6, 0xac, 'p 128-3 c'), + RgbInt8Color.rgbName(0x81, 0xb1, 0xd1, '2169 cp'), + RgbInt8Color.rgbName(0x7d, 0xb2, 0xd1, '3577 cp'), + RgbInt8Color.rgbName(0x83, 0xba, 0xea, '2141 u'), + RgbInt8Color.rgbName(0x8a, 0xb3, 0xe8, '2142 u'), + RgbInt8Color.rgbName(0x7f, 0xbd, 0x94, '7480 up'), + RgbInt8Color.rgbName(0x7a, 0xbd, 0xac, 'p 127-4 u'), + RgbInt8Color.rgbName(0x7e, 0xc1, 0xad, '3258 up'), + RgbInt8Color.rgbName(0x82, 0xbd, 0xa9, 'p 130-11 c'), + RgbInt8Color.rgbName(0x7c, 0xc0, 0xba, '325 up'), + RgbInt8Color.rgbName(0x7e, 0xc1, 0xb3, '7465 up'), + RgbInt8Color.rgbName(0x7b, 0xc3, 0xc5, '319 up'), + RgbInt8Color.rgbName(0x79, 0xc2, 0xbe, '7472 cp'), + RgbInt8Color.rgbName(0x8b, 0xbe, 0xe8, '2141 c'), + RgbInt8Color.rgbName(0x8d, 0xba, 0xee, '278 u'), + RgbInt8Color.rgbName(0x86, 0xbd, 0xe2, 'p 112-4 c'), + RgbInt8Color.rgbName(0x81, 0xad, 0x74, 'p 146-3 c'), + RgbInt8Color.rgbName(0x82, 0xc6, 0xb0, '570 cp'), + RgbInt8Color.rgbName(0x81, 0xc7, 0xb9, '3258 cp'), + RgbInt8Color.rgbName(0x80, 0xc4, 0xb2, 'p 130-4 c'), + RgbInt8Color.rgbName(0x8d, 0xc8, 0xe8, '2905 c'), + RgbInt8Color.rgbName(0x83, 0xc8, 0xe0, 'p 118-4 c'), + RgbInt8Color.rgbName(0x9a, 0xa1, 0x26, '2305 cp'), + RgbInt8Color.rgbName(0x9d, 0xd3, 0x54, '2299 u'), + RgbInt8Color.rgbName(0x9d, 0xd3, 0x62, '367 xgc'), + RgbInt8Color.rgbName(0x92, 0xcc, 0xea, '2905 cp'), + RgbInt8Color.rgbName(0xad, 0xcb, 0x0, '3507 c'), + RgbInt8Color.rgbName(0xb1, 0xc5, 0x0, '3507 cp'), + RgbInt8Color.rgbName(0x9d, 0xa0, 0x3c, '7746 cp'), + RgbInt8Color.rgbName(0x97, 0xd8, 0x8a, '358 u'), + RgbInt8Color.rgbName(0x99, 0xd6, 0xea, '2975 c'), + RgbInt8Color.rgbName(0x9a, 0xdb, 0xe8, '304 c'), + RgbInt8Color.rgbName(0x9f, 0xdd, 0xed, '9464 c'), + RgbInt8Color.rgbName(0xad, 0xb4, 0x0, '383 xgc'), + RgbInt8Color.rgbName(0xb3, 0xc5, 0xe, 'p 160-8 c'), + RgbInt8Color.rgbName(0x9d, 0xc0, 0x4c, '2286 cp'), + RgbInt8Color.rgbName(0x9d, 0xc1, 0x49, '2292 cp'), + RgbInt8Color.rgbName(0x84, 0xaf, 0x5b, '376 up'), + RgbInt8Color.rgbName(0x9b, 0xe1, 0x98, '2267 c'), + RgbInt8Color.rgbName(0x9d, 0xe8, 0x9f, '2267 u'), + RgbInt8Color.rgbName(0xa0, 0xb8, 0x5a, 'p 157-14 c'), + RgbInt8Color.rgbName(0x9e, 0xc2, 0x58, 'p 157-7 u'), + RgbInt8Color.rgbName(0x97, 0xba, 0x5b, '2292 up'), + RgbInt8Color.rgbName(0x9c, 0xbd, 0x5e, '2293 up'), + RgbInt8Color.rgbName(0x9b, 0xb5, 0x60, 'p 157-14 u'), + RgbInt8Color.rgbName(0x8a, 0xd7, 0xb9, '337 xgc'), + RgbInt8Color.rgbName(0xa0, 0xea, 0xc5, '7478 u'), + RgbInt8Color.rgbName(0x90, 0xd7, 0xd2, '324 xgc'), + RgbInt8Color.rgbName(0x95, 0xde, 0xcf, '572 u'), + RgbInt8Color.rgbName(0x9d, 0xe7, 0xd7, 'green 0921 c'), + RgbInt8Color.rgbName(0x9f, 0xc0, 0x6b, '2286 up'), + RgbInt8Color.rgbName(0x9f, 0xc3, 0x6e, '375 up'), + RgbInt8Color.rgbName(0x9f, 0xc4, 0x74, '367 up'), + RgbInt8Color.rgbName(0x9d, 0xc3, 0x71, 'p 154-6 c'), + RgbInt8Color.rgbName(0x92, 0xd7, 0xa8, '352 xgc'), + RgbInt8Color.rgbName(0x91, 0xd6, 0xac, '345 c'), + RgbInt8Color.rgbName(0x96, 0xd9, 0xb4, '7478 xgc'), + RgbInt8Color.rgbName(0x8f, 0xd6, 0xbd, '337 c'), + RgbInt8Color.rgbName(0x9b, 0xe3, 0xbf, '7478 c'), + RgbInt8Color.rgbName(0x8d, 0xd0, 0xde, '629 u'), + RgbInt8Color.rgbName(0x8a, 0x15, 0x38, '1955 c'), + RgbInt8Color.rgbName(0xa5, 0x0, 0x34, '207 c'), + RgbInt8Color.rgbName(0x97, 0xe, 0x30, '7427 xgc'), + RgbInt8Color.rgbName(0x85, 0x25, 0x2a, '7623 xgc'), + RgbInt8Color.rgbName(0x83, 0x29, 0x26, '7624 cp'), + RgbInt8Color.rgbName(0x83, 0x36, 0x1f, 'p 42-8 c'), + RgbInt8Color.rgbName(0x8a, 0x25, 0x2c, 'p 50-8 c'), + RgbInt8Color.rgbName(0x8a, 0x1a, 0x46, 'p 72-16 c'), + RgbInt8Color.rgbName(0x86, 0x1f, 0x41, '208 c'), + RgbInt8Color.rgbName(0x8b, 0x1e, 0x56, '235 cp'), + RgbInt8Color.rgbName(0x8c, 0x1c, 0x59, '8842 c'), + RgbInt8Color.rgbName(0x77, 0x2c, 0x3f, 'p 64-16 c'), + RgbInt8Color.rgbName(0x87, 0x1c, 0x62, '242 xgc'), + RgbInt8Color.rgbName(0x8a, 0x1b, 0x61, '7649 c'), + RgbInt8Color.rgbName(0x8c, 0x14, 0x60, '7649 xgc'), + RgbInt8Color.rgbName(0xa5, 0x0, 0x50, '220 c'), + RgbInt8Color.rgbName(0x96, 0xf, 0x4e, '221 xgc'), + RgbInt8Color.rgbName(0x8b, 0x1e, 0x75, '2355 cp'), + RgbInt8Color.rgbName(0x83, 0x21, 0x56, 'p 82-8 c'), + RgbInt8Color.rgbName(0xa2, 0x0, 0x67, '234 c'), + RgbInt8Color.rgbName(0x83, 0x26, 0x72, 'p 88-16 c'), + RgbInt8Color.rgbName(0xaa, 0x0, 0x73, '2405 xgc'), + RgbInt8Color.rgbName(0xa5, 0x18, 0x90, '248 c'), + RgbInt8Color.rgbName(0xa4, 0x35, 0x87, '247 xgc'), + RgbInt8Color.rgbName(0xa1, 0x2d, 0x86, '248 cp'), + RgbInt8Color.rgbName(0xbb, 0x16, 0xa3, '247 c'), + RgbInt8Color.rgbName(0xbb, 0x29, 0xbb, 'purple c'), + RgbInt8Color.rgbName(0x86, 0x26, 0x33, '202 c'), + RgbInt8Color.rgbName(0x88, 0x25, 0x3a, '202 xgc'), + RgbInt8Color.rgbName(0x85, 0x23, 0x35, 'p 61-16 c'), + RgbInt8Color.rgbName(0x8c, 0x23, 0x45, '208 cp'), + RgbInt8Color.rgbName(0x87, 0x26, 0x51, '7435 c'), + RgbInt8Color.rgbName(0x8b, 0x24, 0x51, '7435 cp'), + RgbInt8Color.rgbName(0x89, 0x23, 0x53, '7435 xgc'), + RgbInt8Color.rgbName(0x8a, 0x26, 0x66, '2425 cp'), + RgbInt8Color.rgbName(0x8b, 0x22, 0x69, 'p 84-8 c'), + RgbInt8Color.rgbName(0xa3, 0x42, 0x8f, 'purple cp'), + RgbInt8Color.rgbName(0xbd, 0x51, 0xa2, '247 u'), + RgbInt8Color.rgbName(0x8a, 0x2a, 0x2b, '7623 c'), + RgbInt8Color.rgbName(0x7f, 0x30, 0x35, '491 c'), + RgbInt8Color.rgbName(0x78, 0x2f, 0x40, '195 c'), + RgbInt8Color.rgbName(0x7e, 0x2e, 0x45, '7638 xgc'), + RgbInt8Color.rgbName(0x83, 0x29, 0x45, 'p 70-16 c'), + RgbInt8Color.rgbName(0x7f, 0x29, 0x52, '683 cp'), + RgbInt8Color.rgbName(0x83, 0x31, 0x77, '512 c'), + RgbInt8Color.rgbName(0x8a, 0x39, 0x1b, '7526 c'), + RgbInt8Color.rgbName(0x83, 0x39, 0x21, '1685 c'), + RgbInt8Color.rgbName(0x84, 0x39, 0x1f, 'p 39-8 c'), + RgbInt8Color.rgbName(0x81, 0x35, 0x77, '512 xgc'), + RgbInt8Color.rgbName(0x7f, 0x37, 0x76, '8845 c'), + RgbInt8Color.rgbName(0x7d, 0x35, 0x71, '10207 c'), + RgbInt8Color.rgbName(0x85, 0x36, 0x7b, '512 cp'), + RgbInt8Color.rgbName(0x8b, 0x45, 0x13, '2315 xgc'), + RgbInt8Color.rgbName(0x85, 0x43, 0x1e, '7517 c'), + RgbInt8Color.rgbName(0x87, 0x41, 0x22, '1685 cp'), + RgbInt8Color.rgbName(0x88, 0x3d, 0x24, '1685 xgc'), + RgbInt8Color.rgbName(0x88, 0x3d, 0x23, '7526 xgc'), + RgbInt8Color.rgbName(0x8a, 0x43, 0x25, 'p 36-8 c'), + RgbInt8Color.rgbName(0x8c, 0x41, 0x28, 'p 42-7 c'), + RgbInt8Color.rgbName(0x7e, 0x2d, 0x40, '7638 c'), + RgbInt8Color.rgbName(0x7a, 0x33, 0x43, '2049 cp'), + RgbInt8Color.rgbName(0x85, 0x2c, 0x4d, '2049 c'), + RgbInt8Color.rgbName(0x80, 0x2e, 0x4c, '2049 xgc'), + RgbInt8Color.rgbName(0x83, 0x2e, 0x5d, '8821 c'), + RgbInt8Color.rgbName(0x8c, 0x4a, 0x1d, '2315 cp'), + RgbInt8Color.rgbName(0x85, 0x47, 0x1d, '7517 xgc'), + RgbInt8Color.rgbName(0x8b, 0x47, 0x20, '1615 c'), + RgbInt8Color.rgbName(0x8c, 0x4e, 0x20, '1615 cp'), + RgbInt8Color.rgbName(0x88, 0x47, 0x28, '7517 cp'), + RgbInt8Color.rgbName(0x8a, 0x49, 0x27, 'p 32-8 c'), + RgbInt8Color.rgbName(0x7c, 0x3a, 0x2d, '7594 c'), + RgbInt8Color.rgbName(0x7b, 0x39, 0x2f, '7594 xgc'), + RgbInt8Color.rgbName(0x7b, 0x3e, 0x29, 'p 42-15 c'), + RgbInt8Color.rgbName(0x80, 0x35, 0x2f, '181 cp'), + RgbInt8Color.rgbName(0x7c, 0x35, 0x34, '181 xgc'), + RgbInt8Color.rgbName(0x7e, 0x35, 0x45, '195 cp'), + RgbInt8Color.rgbName(0x84, 0x34, 0x4e, '506 c'), + RgbInt8Color.rgbName(0x83, 0x30, 0x51, 'p 74-15 c'), + RgbInt8Color.rgbName(0x82, 0x32, 0x58, 'p 77-15 c'), + RgbInt8Color.rgbName(0x85, 0x32, 0x6b, '249 cp'), + RgbInt8Color.rgbName(0x81, 0x33, 0x71, 'p 89-7 c'), + RgbInt8Color.rgbName(0x85, 0x48, 0x93, '7442 cp'), + RgbInt8Color.rgbName(0x94, 0x45, 0xb, '1535 c'), + RgbInt8Color.rgbName(0x77, 0x40, 0x2e, '175 cp'), + RgbInt8Color.rgbName(0x7f, 0x3d, 0x2c, 'p 47-15 c'), + RgbInt8Color.rgbName(0x7a, 0x3e, 0x3a, '499 c'), + RgbInt8Color.rgbName(0x7e, 0x3d, 0x3c, '491 cp'), + RgbInt8Color.rgbName(0x7b, 0x3b, 0x42, '491 xgc'), + RgbInt8Color.rgbName(0x76, 0x42, 0x42, '8561 c'), + RgbInt8Color.rgbName(0x72, 0x43, 0x3f, '8563 c'), + RgbInt8Color.rgbName(0x73, 0x45, 0x42, 'p 54-16 u'), + RgbInt8Color.rgbName(0x78, 0x45, 0x49, '3523 up'), + RgbInt8Color.rgbName(0x76, 0x48, 0x45, '499 xgc'), + RgbInt8Color.rgbName(0x73, 0x46, 0x49, 'p 66-16 u'), + RgbInt8Color.rgbName(0x7d, 0x40, 0x4e, '506 cp'), + RgbInt8Color.rgbName(0x81, 0x3a, 0x52, '506 xgc'), + RgbInt8Color.rgbName(0x77, 0x47, 0x52, 'p 77-16 u'), + RgbInt8Color.rgbName(0x78, 0x48, 0x58, 'p 82-8 u'), + RgbInt8Color.rgbName(0x85, 0x3c, 0x63, 'p 82-15 c'), + RgbInt8Color.rgbName(0x7c, 0x40, 0x70, '2356 u'), + RgbInt8Color.rgbName(0x7e, 0x48, 0x86, '7662 xgc'), + RgbInt8Color.rgbName(0x7c, 0x4e, 0x8a, 'p 93-14 c'), + RgbInt8Color.rgbName(0x92, 0x47, 0xd, '1535 xgc'), + RgbInt8Color.rgbName(0x91, 0x49, 0x10, '2315 c'), + RgbInt8Color.rgbName(0x7a, 0x4c, 0x30, '7588 cp'), + RgbInt8Color.rgbName(0x7b, 0x49, 0x31, '7602 c'), + RgbInt8Color.rgbName(0x81, 0x46, 0x2b, 'p 36-15 c'), + RgbInt8Color.rgbName(0x83, 0x46, 0x2d, 'p 39-15 c'), + RgbInt8Color.rgbName(0x7b, 0x4d, 0x35, '7588 c'), + RgbInt8Color.rgbName(0x79, 0x4c, 0x3c, '8560 c'), + RgbInt8Color.rgbName(0x79, 0x45, 0x41, 'p 50-8 u'), + RgbInt8Color.rgbName(0x7b, 0x47, 0x44, '499 cp'), + RgbInt8Color.rgbName(0x77, 0x4b, 0x4b, '8564 c'), + RgbInt8Color.rgbName(0x75, 0x50, 0x44, 'p 36-15 u'), + RgbInt8Color.rgbName(0x77, 0x4f, 0x46, 'p 42-15 u'), + RgbInt8Color.rgbName(0x77, 0x4c, 0x46, 'p 47-15 u'), + RgbInt8Color.rgbName(0x7a, 0x48, 0x45, 'p 47-8 u'), + RgbInt8Color.rgbName(0x78, 0x4d, 0x45, 'p 50-15 u'), + RgbInt8Color.rgbName(0x6e, 0x55, 0x4d, '2477 cp'), + RgbInt8Color.rgbName(0x6e, 0x55, 0x55, '7631 u'), + RgbInt8Color.rgbName(0x76, 0x4e, 0x50, '8565 c'), + RgbInt8Color.rgbName(0x70, 0x56, 0x52, 'p 43-13 u'), + RgbInt8Color.rgbName(0x71, 0x54, 0x4f, 'p 44-12 c'), + RgbInt8Color.rgbName(0x82, 0x47, 0x50, 'p 70-16 u'), + RgbInt8Color.rgbName(0x7b, 0x49, 0x53, 'p 74-16 u'), + RgbInt8Color.rgbName(0x78, 0x50, 0x55, '2042 up'), + RgbInt8Color.rgbName(0x7d, 0x4e, 0x5b, '7421 u'), + RgbInt8Color.rgbName(0x6f, 0x59, 0x56, 'p 51-13 u'), + RgbInt8Color.rgbName(0x78, 0x51, 0x58, 'p 67-13 c'), + RgbInt8Color.rgbName(0x73, 0x56, 0x59, 'p 67-13 u'), + RgbInt8Color.rgbName(0x72, 0x55, 0x59, 'p 78-13 u'), + RgbInt8Color.rgbName(0x76, 0x53, 0x5e, 'p 79-13 c'), + RgbInt8Color.rgbName(0x7e, 0x49, 0x66, '2056 c'), + RgbInt8Color.rgbName(0x74, 0x55, 0x68, '511 u'), + RgbInt8Color.rgbName(0x77, 0x4e, 0x68, 'p 84-16 u'), + RgbInt8Color.rgbName(0x7c, 0x4c, 0x6e, 'p 85-14 c'), + RgbInt8Color.rgbName(0x7a, 0x50, 0x6c, 'p 89-15 u'), + RgbInt8Color.rgbName(0x79, 0x4c, 0x6c, 'p 89-8 u'), + RgbInt8Color.rgbName(0x75, 0x55, 0x7a, '2623 u'), + RgbInt8Color.rgbName(0x80, 0x4c, 0x80, 'p 92-5 c'), + RgbInt8Color.rgbName(0x7b, 0x5d, 0x9d, '10216 c'), + RgbInt8Color.rgbName(0x84, 0x5f, 0xa1, '2587 cp'), + RgbInt8Color.rgbName(0xa7, 0x7b, 0xca, '2577 c'), + RgbInt8Color.rgbName(0xa4, 0x7e, 0xc6, '2577 u'), + RgbInt8Color.rgbName(0x93, 0x4d, 0x11, '724 c'), + RgbInt8Color.rgbName(0x85, 0x50, 0x26, '7567 cp'), + RgbInt8Color.rgbName(0x7c, 0x52, 0x2a, '8582 c'), + RgbInt8Color.rgbName(0x7e, 0x4e, 0x2c, 'p 29-15 c'), + RgbInt8Color.rgbName(0x85, 0x4f, 0x2a, 'p 32-15 c'), + RgbInt8Color.rgbName(0x7a, 0x4e, 0x3a, '7602 xgc'), + RgbInt8Color.rgbName(0x7c, 0x4d, 0x3a, '4705 c'), + RgbInt8Color.rgbName(0x77, 0x51, 0x42, '4705 cp'), + RgbInt8Color.rgbName(0x7c, 0x4e, 0x3b, '7588 xgc'), + RgbInt8Color.rgbName(0x76, 0x50, 0x43, 'p 43-13 c'), + RgbInt8Color.rgbName(0x76, 0x54, 0x46, 'p 29-15 u'), + RgbInt8Color.rgbName(0x7c, 0x4f, 0x44, 'p 36-8 u'), + RgbInt8Color.rgbName(0x77, 0x54, 0x48, 'p 39-15 u'), + RgbInt8Color.rgbName(0x7a, 0x4d, 0x44, 'p 39-8 u'), + RgbInt8Color.rgbName(0x79, 0x54, 0x53, '1817 u'), + RgbInt8Color.rgbName(0x77, 0x55, 0x54, '490 u'), + RgbInt8Color.rgbName(0x71, 0x59, 0x56, '497 u'), + RgbInt8Color.rgbName(0x74, 0x56, 0x54, '4975 u'), + RgbInt8Color.rgbName(0x75, 0x57, 0x53, '7616 cp'), + RgbInt8Color.rgbName(0x7c, 0x50, 0x60, '690 u'), + RgbInt8Color.rgbName(0x76, 0x59, 0x57, '7630 u'), + RgbInt8Color.rgbName(0x7b, 0x53, 0x56, 'p 51-12 c'), + RgbInt8Color.rgbName(0x77, 0x59, 0x5c, 'p 67-12 u'), + RgbInt8Color.rgbName(0x7d, 0x4e, 0x5d, 'p 78-12 c'), + RgbInt8Color.rgbName(0x73, 0x5a, 0x5c, 'p 79-13 u'), + RgbInt8Color.rgbName(0x7c, 0x4e, 0x5e, 'p 82-15 u'), + RgbInt8Color.rgbName(0x72, 0x59, 0x61, 'p 86-13 c'), + RgbInt8Color.rgbName(0x7a, 0x54, 0x66, '229 u'), + RgbInt8Color.rgbName(0x81, 0x4e, 0x64, '229 up'), + RgbInt8Color.rgbName(0x76, 0x5d, 0x64, '7645 up'), + RgbInt8Color.rgbName(0x72, 0x5c, 0x68, '7659 up'), + RgbInt8Color.rgbName(0x6e, 0x60, 0x5f, 'black 5 up'), + RgbInt8Color.rgbName(0x7c, 0x50, 0x67, 'p 85-7 u'), + RgbInt8Color.rgbName(0x7c, 0x50, 0x75, '2356 up'), + RgbInt8Color.rgbName(0x77, 0x56, 0x75, '525 up'), + RgbInt8Color.rgbName(0x7b, 0x55, 0x6e, '7652 up'), + RgbInt8Color.rgbName(0x7f, 0x52, 0x77, '2355 up'), + RgbInt8Color.rgbName(0x7a, 0x53, 0x76, '255 up'), + RgbInt8Color.rgbName(0x7d, 0x55, 0x78, 'p 90-14 c'), + RgbInt8Color.rgbName(0x7b, 0x55, 0x7c, 'p 91-15 u'), + RgbInt8Color.rgbName(0x78, 0x59, 0x7b, 'p 92-6 u'), + RgbInt8Color.rgbName(0x7a, 0x5b, 0x82, '2623 up'), + RgbInt8Color.rgbName(0x78, 0x5a, 0x87, 'p 94-11 c'), + RgbInt8Color.rgbName(0x7a, 0x59, 0x8b, 'p 94-6 c'), + RgbInt8Color.rgbName(0x7d, 0x5a, 0x95, '2082 xgc'), + RgbInt8Color.rgbName(0x7a, 0x5f, 0x97, '8142 c'), + RgbInt8Color.rgbName(0x8d, 0x86, 0xc5, '2715 xgc'), + RgbInt8Color.rgbName(0x9d, 0x86, 0xde, '928 u'), + RgbInt8Color.rgbName(0x85, 0x59, 0x23, '2319 cp'), + RgbInt8Color.rgbName(0x86, 0x5a, 0x23, '7575 cp'), + RgbInt8Color.rgbName(0x7d, 0x62, 0x2e, '7560 c'), + RgbInt8Color.rgbName(0x81, 0x59, 0x32, '2319 xgc'), + RgbInt8Color.rgbName(0x7a, 0x5b, 0x3a, '7505 xgc'), + RgbInt8Color.rgbName(0x83, 0x5d, 0x32, '7575 c'), + RgbInt8Color.rgbName(0x83, 0x59, 0x31, '8581 c'), + RgbInt8Color.rgbName(0x76, 0x5c, 0x40, '8620 c'), + RgbInt8Color.rgbName(0x74, 0x5d, 0x47, '2320 up'), + RgbInt8Color.rgbName(0x7a, 0x57, 0x3f, '7568 xgc'), + RgbInt8Color.rgbName(0x74, 0x5f, 0x43, 'p 16-16 u'), + RgbInt8Color.rgbName(0x76, 0x5a, 0x44, 'p 22-16 u'), + RgbInt8Color.rgbName(0x7a, 0x5f, 0x48, '1545 u'), + RgbInt8Color.rgbName(0x79, 0x5d, 0x48, '2320 u'), + RgbInt8Color.rgbName(0x73, 0x5d, 0x4e, 'p 23-14 c'), + RgbInt8Color.rgbName(0x79, 0x5c, 0x46, 'p 26-15 u'), + RgbInt8Color.rgbName(0x7b, 0x56, 0x47, 'p 32-15 u'), + RgbInt8Color.rgbName(0x77, 0x5c, 0x50, '4695 u'), + RgbInt8Color.rgbName(0x75, 0x62, 0x4f, '476 up'), + RgbInt8Color.rgbName(0x7d, 0x5b, 0x4f, '483 u'), + RgbInt8Color.rgbName(0x78, 0x59, 0x56, '7630 up'), + RgbInt8Color.rgbName(0x79, 0x5c, 0x53, 'p 33-13 c'), + RgbInt8Color.rgbName(0x77, 0x5b, 0x56, 'p 43-12 u'), + RgbInt8Color.rgbName(0x72, 0x63, 0x56, '2321 up'), + RgbInt8Color.rgbName(0x77, 0x5f, 0x58, '4975 up'), + RgbInt8Color.rgbName(0x75, 0x62, 0x58, 'p 33-13 u'), + RgbInt8Color.rgbName(0x76, 0x5e, 0x5b, 'p 51-12 u'), + RgbInt8Color.rgbName(0x79, 0x58, 0x5e, 'p 78-12 u'), + RgbInt8Color.rgbName(0x75, 0x60, 0x69, '5185 u'), + RgbInt8Color.rgbName(0x7a, 0x5a, 0x67, '7643 u'), + RgbInt8Color.rgbName(0x7f, 0x59, 0x64, 'p 79-12 c'), + RgbInt8Color.rgbName(0x78, 0x5d, 0x68, 'p 86-12 c'), + RgbInt8Color.rgbName(0x75, 0x5e, 0x68, 'p 86-12 u'), + RgbInt8Color.rgbName(0x79, 0x5c, 0x6e, '10194 c'), + RgbInt8Color.rgbName(0x75, 0x5e, 0x74, '262 u'), + RgbInt8Color.rgbName(0x78, 0x5e, 0x71, '262 up'), + RgbInt8Color.rgbName(0x79, 0x58, 0x72, '7658 up'), + RgbInt8Color.rgbName(0x7f, 0x5b, 0x70, 'p 85-14 u'), + RgbInt8Color.rgbName(0x76, 0x60, 0x70, 'p 87-11 c'), + RgbInt8Color.rgbName(0x7b, 0x5c, 0x71, 'p 90-14 u'), + RgbInt8Color.rgbName(0x7b, 0x5b, 0x7a, '2622 u'), + RgbInt8Color.rgbName(0x7c, 0x5d, 0x77, '2622 up'), + RgbInt8Color.rgbName(0x77, 0x5d, 0x7a, '519 u'), + RgbInt8Color.rgbName(0x7f, 0x5c, 0x78, '7651 u'), + RgbInt8Color.rgbName(0x7e, 0x59, 0x78, '7657 u'), + RgbInt8Color.rgbName(0x7c, 0x5e, 0x77, '7658 u'), + RgbInt8Color.rgbName(0x75, 0x5d, 0x7d, 'p 94-11 u'), + RgbInt8Color.rgbName(0x75, 0x5e, 0x7e, 'p 97-13 u'), + RgbInt8Color.rgbName(0x7a, 0x5c, 0x83, '7663 u'), + RgbInt8Color.rgbName(0x7d, 0x57, 0x7f, 'p 92-14 c'), + RgbInt8Color.rgbName(0x7c, 0x5f, 0x83, 'p 94-6 u'), + RgbInt8Color.rgbName(0x7a, 0x61, 0x84, 'p 97-5 u'), + RgbInt8Color.rgbName(0x7e, 0x5e, 0x8c, '2082 up'), + RgbInt8Color.rgbName(0x7d, 0x57, 0x87, '2613 u'), + RgbInt8Color.rgbName(0x7f, 0x59, 0x88, '2613 up'), + RgbInt8Color.rgbName(0x7b, 0x60, 0x88, 'p 95-13 c'), + RgbInt8Color.rgbName(0x75, 0x60, 0x8f, 'p 96-6 u'), + RgbInt8Color.rgbName(0x79, 0x5e, 0x91, 'p 97-5 c'), + RgbInt8Color.rgbName(0x73, 0x68, 0x9a, '2090 up'), + RgbInt8Color.rgbName(0x7a, 0x63, 0x9c, '10224 c'), + RgbInt8Color.rgbName(0x78, 0x67, 0xa2, '7676 xgc'), + RgbInt8Color.rgbName(0x7a, 0x6a, 0xa5, '2088 cp'), + RgbInt8Color.rgbName(0x77, 0x6a, 0xa3, '7676 cp'), + RgbInt8Color.rgbName(0x89, 0x73, 0x22, '119 c'), + RgbInt8Color.rgbName(0x88, 0x6b, 0x25, '1265 c'), + RgbInt8Color.rgbName(0x79, 0x66, 0x48, '1405 u'), + RgbInt8Color.rgbName(0x76, 0x69, 0x4a, '147 u'), + RgbInt8Color.rgbName(0x78, 0x62, 0x49, '161 u'), + RgbInt8Color.rgbName(0x78, 0x67, 0x48, '2328 c'), + RgbInt8Color.rgbName(0x7a, 0x61, 0x4d, '10374 c'), + RgbInt8Color.rgbName(0x78, 0x64, 0x58, '10379 c'), + RgbInt8Color.rgbName(0x73, 0x62, 0x55, '2472 u'), + RgbInt8Color.rgbName(0x77, 0x69, 0x50, '462 up'), + RgbInt8Color.rgbName(0x79, 0x62, 0x4f, '4625 up'), + RgbInt8Color.rgbName(0x7b, 0x60, 0x50, '4695 up'), + RgbInt8Color.rgbName(0x7c, 0x65, 0x53, 'p 23-13 c'), + RgbInt8Color.rgbName(0x74, 0x66, 0x58, 'p 23-14 u'), + RgbInt8Color.rgbName(0x74, 0x66, 0x61, '410 c'), + RgbInt8Color.rgbName(0x79, 0x60, 0x59, '497 up'), + RgbInt8Color.rgbName(0x70, 0x69, 0x5f, '7533 up'), + RgbInt8Color.rgbName(0x7b, 0x66, 0x5a, '7582 up'), + RgbInt8Color.rgbName(0x75, 0x6a, 0x57, 'p 13-13 u'), + RgbInt8Color.rgbName(0x74, 0x64, 0x60, 'p 44-11 u'), + RgbInt8Color.rgbName(0x74, 0x68, 0x60, 'warm gray 11 xgc'), + RgbInt8Color.rgbName(0x71, 0x69, 0x66, '2335 u'), + RgbInt8Color.rgbName(0x73, 0x68, 0x69, '439 u'), + RgbInt8Color.rgbName(0x73, 0x69, 0x64, '440 up'), + RgbInt8Color.rgbName(0x75, 0x6a, 0x63, '7589 u'), + RgbInt8Color.rgbName(0x77, 0x67, 0x60, '7596 u'), + RgbInt8Color.rgbName(0x75, 0x66, 0x67, '7617 u'), + RgbInt8Color.rgbName(0x73, 0x6a, 0x65, 'p 170-10 u'), + RgbInt8Color.rgbName(0x75, 0x68, 0x64, 'p 171-11 c'), + RgbInt8Color.rgbName(0x7a, 0x61, 0x6c, '5115 up'), + RgbInt8Color.rgbName(0x7b, 0x63, 0x6d, '5125 up'), + RgbInt8Color.rgbName(0x78, 0x66, 0x6d, '5185 up'), + RgbInt8Color.rgbName(0x72, 0x68, 0x74, '7448 u'), + RgbInt8Color.rgbName(0x79, 0x62, 0x71, '8463 c'), + RgbInt8Color.rgbName(0x76, 0x69, 0x6b, 'p 171-10 u'), + RgbInt8Color.rgbName(0x7c, 0x62, 0x6e, 'p 86-11 u'), + RgbInt8Color.rgbName(0x7d, 0x63, 0x78, '5125 u'), + RgbInt8Color.rgbName(0x7e, 0x65, 0x78, '519 up'), + RgbInt8Color.rgbName(0x73, 0x69, 0x76, '7666 up'), + RgbInt8Color.rgbName(0x7c, 0x66, 0x77, 'p 87-10 c'), + RgbInt8Color.rgbName(0x77, 0x66, 0x75, 'p 87-10 u'), + RgbInt8Color.rgbName(0x78, 0x68, 0x7f, 'p 98-12 u'), + RgbInt8Color.rgbName(0x7f, 0x62, 0x82, '261 u'), + RgbInt8Color.rgbName(0x79, 0x68, 0x82, '669 up'), + RgbInt8Color.rgbName(0x7f, 0x65, 0x7e, 'p 92-14 u'), + RgbInt8Color.rgbName(0x7e, 0x64, 0x84, 'p 94-10 u'), + RgbInt8Color.rgbName(0x7d, 0x69, 0x83, 'p 95-13 u'), + RgbInt8Color.rgbName(0x7d, 0x62, 0x92, '2617 up'), + RgbInt8Color.rgbName(0x84, 0x66, 0x8c, '7662 u'), + RgbInt8Color.rgbName(0x7b, 0x63, 0x92, '7664 up'), + RgbInt8Color.rgbName(0x76, 0x66, 0x91, '7678 u'), + RgbInt8Color.rgbName(0x7e, 0x62, 0x8c, 'p 93-14 u'), + RgbInt8Color.rgbName(0x82, 0x64, 0x8e, 'p 94-10 c'), + RgbInt8Color.rgbName(0x7f, 0x66, 0x99, '268 up'), + RgbInt8Color.rgbName(0x77, 0x67, 0x9a, '2685 up'), + RgbInt8Color.rgbName(0x7c, 0x69, 0x92, '667 c'), + RgbInt8Color.rgbName(0x78, 0x68, 0x9a, '7678 up'), + RgbInt8Color.rgbName(0x77, 0x75, 0xa7, '7669 up'), + RgbInt8Color.rgbName(0x84, 0x7f, 0xb4, '2101 cp'), + RgbInt8Color.rgbName(0x83, 0x81, 0xba, '2715 cp'), + RgbInt8Color.rgbName(0xa3, 0x78, 0x0, '132 xgc'), + RgbInt8Color.rgbName(0x89, 0x7a, 0x27, '105 c'), + RgbInt8Color.rgbName(0x8a, 0x6f, 0x2a, '1265 xgc'), + RgbInt8Color.rgbName(0x89, 0x68, 0x29, '7559 xgc'), + RgbInt8Color.rgbName(0x7c, 0x70, 0x47, '133 u'), + RgbInt8Color.rgbName(0x7d, 0x75, 0x47, '105 u'), + RgbInt8Color.rgbName(0x7f, 0x6a, 0x45, '140 u'), + RgbInt8Color.rgbName(0x7b, 0x6f, 0x4b, '4485 u'), + RgbInt8Color.rgbName(0x83, 0x6e, 0x47, 'p 12-15 u'), + RgbInt8Color.rgbName(0x79, 0x72, 0x56, '7497 xgc'), + RgbInt8Color.rgbName(0x7b, 0x6a, 0x51, 'p 13-13 c'), + RgbInt8Color.rgbName(0x76, 0x6f, 0x61, '2329 u'), + RgbInt8Color.rgbName(0x77, 0x6e, 0x64, '404 c'), + RgbInt8Color.rgbName(0x76, 0x6f, 0x64, '404 xgc'), + RgbInt8Color.rgbName(0x7c, 0x72, 0x59, '7561 up'), + RgbInt8Color.rgbName(0x78, 0x73, 0x59, '7757 up'), + RgbInt8Color.rgbName(0x77, 0x71, 0x61, '7770 u'), + RgbInt8Color.rgbName(0x7d, 0x6f, 0x59, 'p 13-12 u'), + RgbInt8Color.rgbName(0x76, 0x6e, 0x63, 'p 169-13 u'), + RgbInt8Color.rgbName(0x75, 0x6d, 0x61, 'p 170-10 c'), + RgbInt8Color.rgbName(0x7d, 0x6c, 0x5b, 'p 23-13 u'), + RgbInt8Color.rgbName(0x77, 0x6a, 0x60, 'warm gray 10 cp'), + RgbInt8Color.rgbName(0x75, 0x6b, 0x66, '7519 u'), + RgbInt8Color.rgbName(0x7a, 0x6d, 0x62, '7519 up'), + RgbInt8Color.rgbName(0x78, 0x6e, 0x66, '7532 u'), + RgbInt8Color.rgbName(0x79, 0x6e, 0x65, 'warm gray 10 c'), + RgbInt8Color.rgbName(0x76, 0x6d, 0x6f, '10384 c'), + RgbInt8Color.rgbName(0x74, 0x72, 0x6f, '2334 up'), + RgbInt8Color.rgbName(0x77, 0x72, 0x6d, '405 u'), + RgbInt8Color.rgbName(0x7a, 0x72, 0x6f, '411 u'), + RgbInt8Color.rgbName(0x77, 0x6c, 0x6b, '439 up'), + RgbInt8Color.rgbName(0x77, 0x6b, 0x6a, '7617 up'), + RgbInt8Color.rgbName(0x75, 0x71, 0x71, '8422 c'), + RgbInt8Color.rgbName(0x79, 0x6f, 0x6a, 'p 170-9 u'), + RgbInt8Color.rgbName(0x75, 0x70, 0x73, 'p 172-8 u'), + RgbInt8Color.rgbName(0x74, 0x6e, 0x71, 'p 172-9 u'), + RgbInt8Color.rgbName(0x76, 0x74, 0x74, '2333 u'), + RgbInt8Color.rgbName(0x7e, 0x6e, 0x76, '437 cp'), + RgbInt8Color.rgbName(0x75, 0x75, 0x73, 'p 172-8 c'), + RgbInt8Color.rgbName(0x75, 0x72, 0x7a, 'p 173-8 u'), + RgbInt8Color.rgbName(0x76, 0x74, 0x75, 'p 173-9 c'), + RgbInt8Color.rgbName(0x76, 0x72, 0x86, '2362 cp'), + RgbInt8Color.rgbName(0x77, 0x77, 0x87, '2362 u'), + RgbInt8Color.rgbName(0x7d, 0x6c, 0x86, 'p 98-4 u'), + RgbInt8Color.rgbName(0x79, 0x70, 0x94, 'p 100-5 u'), + RgbInt8Color.rgbName(0x7e, 0x71, 0x8a, 'p 101-12 u'), + RgbInt8Color.rgbName(0x82, 0x6c, 0x8c, 'p 97-12 u'), + RgbInt8Color.rgbName(0x7d, 0x6c, 0x93, 'p 98-4 c'), + RgbInt8Color.rgbName(0x76, 0x73, 0x9d, '10233 c'), + RgbInt8Color.rgbName(0x7a, 0x6b, 0x9b, '2097 up'), + RgbInt8Color.rgbName(0x7c, 0x6d, 0x96, '7677 u'), + RgbInt8Color.rgbName(0x80, 0x70, 0x96, '8141 c'), + RgbInt8Color.rgbName(0x7b, 0x74, 0x97, 'p 103-4 u'), + RgbInt8Color.rgbName(0x81, 0x6c, 0x96, 'p 97-12 c'), + RgbInt8Color.rgbName(0x83, 0x6f, 0xa0, '10223 c'), + RgbInt8Color.rgbName(0x79, 0x72, 0xa1, '10229 c'), + RgbInt8Color.rgbName(0x75, 0x74, 0xa3, 'p 100-5 c'), + RgbInt8Color.rgbName(0x77, 0x75, 0xa3, 'p 103-4 c'), + RgbInt8Color.rgbName(0x7b, 0x71, 0x9c, 'p 99-13 u'), + RgbInt8Color.rgbName(0x7a, 0x75, 0xa6, '2102 up'), + RgbInt8Color.rgbName(0x76, 0x7c, 0xa7, '2108 xgc'), + RgbInt8Color.rgbName(0x9a, 0x76, 0x11, '126 c'), + RgbInt8Color.rgbName(0x99, 0x76, 0x13, 'p 12-8 c'), + RgbInt8Color.rgbName(0x97, 0x7b, 0x12, 'p 9-8 c'), + RgbInt8Color.rgbName(0x8a, 0x74, 0x2e, '4495 cp'), + RgbInt8Color.rgbName(0x89, 0x76, 0x30, '7755 c'), + RgbInt8Color.rgbName(0x87, 0x77, 0x34, '7755 xgc'), + RgbInt8Color.rgbName(0x88, 0x7b, 0x31, '7768 xgc'), + RgbInt8Color.rgbName(0x8c, 0x77, 0x32, '4495 c'), + RgbInt8Color.rgbName(0x7e, 0x7d, 0x41, '392 u'), + RgbInt8Color.rgbName(0x84, 0x77, 0x48, '119 u'), + RgbInt8Color.rgbName(0x7e, 0x7b, 0x4b, '385 u'), + RgbInt8Color.rgbName(0x80, 0x75, 0x45, 'p 6-15 u'), + RgbInt8Color.rgbName(0x86, 0x79, 0x46, 'p 6-8 u'), + RgbInt8Color.rgbName(0x80, 0x76, 0x55, '147 up'), + RgbInt8Color.rgbName(0x7e, 0x76, 0x57, '2327 xgc'), + RgbInt8Color.rgbName(0x7e, 0x74, 0x52, '4485 up'), + RgbInt8Color.rgbName(0x7b, 0x77, 0x56, '5815 up'), + RgbInt8Color.rgbName(0x7a, 0x72, 0x56, '7497 c'), + RgbInt8Color.rgbName(0x7a, 0x74, 0x5f, '449 up'), + RgbInt8Color.rgbName(0x7e, 0x78, 0x5a, '450 u'), + RgbInt8Color.rgbName(0x80, 0x7a, 0x5a, '450 up'), + RgbInt8Color.rgbName(0x7a, 0x7b, 0x5d, '5747 up'), + RgbInt8Color.rgbName(0x7a, 0x7f, 0x5d, '7498 up'), + RgbInt8Color.rgbName(0x7c, 0x72, 0x57, '7553 up'), + RgbInt8Color.rgbName(0x77, 0x7a, 0x61, '7750 u'), + RgbInt8Color.rgbName(0x79, 0x7c, 0x5d, '7750 up'), + RgbInt8Color.rgbName(0x7e, 0x79, 0x5c, '7756 up'), + RgbInt8Color.rgbName(0x7a, 0x75, 0x5f, '7757 u'), + RgbInt8Color.rgbName(0x80, 0x77, 0x67, '2328 u'), + RgbInt8Color.rgbName(0x80, 0x79, 0x64, '7561 u'), + RgbInt8Color.rgbName(0x7b, 0x7c, 0x67, 'p 169-12 c'), + RgbInt8Color.rgbName(0x77, 0x75, 0x69, 'p 178-10 u'), + RgbInt8Color.rgbName(0x79, 0x77, 0x75, '2333 up'), + RgbInt8Color.rgbName(0x7b, 0x7c, 0x70, '416 xgc'), + RgbInt8Color.rgbName(0x77, 0x74, 0x73, 'p 172-9 c'), + RgbInt8Color.rgbName(0x77, 0x7a, 0x74, 'p 176-6 c'), + RgbInt8Color.rgbName(0x7e, 0x7b, 0x79, '10394 c'), + RgbInt8Color.rgbName(0x7a, 0x7b, 0x75, '418 u'), + RgbInt8Color.rgbName(0x78, 0x7b, 0x7e, '424 cp'), + RgbInt8Color.rgbName(0x80, 0x7a, 0x78, 'p 172-7 u'), + RgbInt8Color.rgbName(0x7a, 0x78, 0x7e, 'p 173-7 u'), + RgbInt8Color.rgbName(0x7b, 0x79, 0x76, 'p 179-10 u'), + RgbInt8Color.rgbName(0x7e, 0x78, 0x74, 'warm gray 11 up'), + RgbInt8Color.rgbName(0x80, 0x78, 0x85, '2359 u'), + RgbInt8Color.rgbName(0x7c, 0x7a, 0x82, '2359 up'), + RgbInt8Color.rgbName(0x7a, 0x7d, 0x81, 'cool gray 11 u'), + RgbInt8Color.rgbName(0x7c, 0x7e, 0x82, 'cool gray 11 up'), + RgbInt8Color.rgbName(0x7a, 0x7b, 0x7e, 'cool gray 9 cp'), + RgbInt8Color.rgbName(0x7a, 0x7d, 0x81, 'p 173-7 c'), + RgbInt8Color.rgbName(0x7b, 0x79, 0x8e, '2360 c'), + RgbInt8Color.rgbName(0x7e, 0x7d, 0x8e, '2360 u'), + RgbInt8Color.rgbName(0x7a, 0x7f, 0x8a, '2360 up'), + RgbInt8Color.rgbName(0x78, 0x79, 0x92, '2361 xgc'), + RgbInt8Color.rgbName(0x7b, 0x79, 0x92, '5275 u'), + RgbInt8Color.rgbName(0x7c, 0x77, 0x92, 'p 103-11 u'), + RgbInt8Color.rgbName(0x76, 0x7c, 0x9d, '2109 u'), + RgbInt8Color.rgbName(0x7d, 0x78, 0x9b, 'p 101-12 c'), + RgbInt8Color.rgbName(0x7e, 0x79, 0xa0, 'p 102-12 u'), + RgbInt8Color.rgbName(0x7a, 0x7d, 0xa8, '10239 c'), + RgbInt8Color.rgbName(0x77, 0x7f, 0xa8, '2108 c'), + RgbInt8Color.rgbName(0x7c, 0x7f, 0xab, '7675 c'), + RgbInt8Color.rgbName(0x7a, 0x7c, 0xad, 'p 102-12 c'), + RgbInt8Color.rgbName(0x78, 0x7f, 0xad, 'p 104-5 u'), + RgbInt8Color.rgbName(0x7a, 0x7a, 0xad, 'p 99-13 c'), + RgbInt8Color.rgbName(0x86, 0x77, 0xb1, '2655 cp'), + RgbInt8Color.rgbName(0x77, 0x87, 0xb7, '7455 up'), + RgbInt8Color.rgbName(0x80, 0x7d, 0xb3, 'p 99-5 c'), + RgbInt8Color.rgbName(0x83, 0x8d, 0xc8, '2114 c'), + RgbInt8Color.rgbName(0x85, 0x8e, 0xc7, '2115 u'), + RgbInt8Color.rgbName(0x9c, 0x84, 0x12, '112 c'), + RgbInt8Color.rgbName(0x8a, 0x7e, 0x2d, '105 xgc'), + RgbInt8Color.rgbName(0x88, 0x8d, 0x30, '7747 c'), + RgbInt8Color.rgbName(0x8a, 0x85, 0x37, '399 u'), + RgbInt8Color.rgbName(0x85, 0x80, 0x3b, '5825 xgc'), + RgbInt8Color.rgbName(0x86, 0x8d, 0x32, '7747 xgc'), + RgbInt8Color.rgbName(0x89, 0x81, 0x3d, '5825 c'), + RgbInt8Color.rgbName(0x7b, 0x87, 0x4d, '2306 up'), + RgbInt8Color.rgbName(0x82, 0x81, 0x4e, '385 up'), + RgbInt8Color.rgbName(0x84, 0x7f, 0x51, '105 up'), + RgbInt8Color.rgbName(0x81, 0x7d, 0x52, '581 up'), + RgbInt8Color.rgbName(0x82, 0x80, 0x4e, 'p 168-14 u'), + RgbInt8Color.rgbName(0x81, 0x85, 0x5c, '5757 u'), + RgbInt8Color.rgbName(0x80, 0x83, 0x63, '7749 u'), + RgbInt8Color.rgbName(0x82, 0x81, 0x62, '7761 u'), + RgbInt8Color.rgbName(0x79, 0x7e, 0x6a, '7762 up'), + RgbInt8Color.rgbName(0x7c, 0x7d, 0x68, 'p 178-10 c'), + RgbInt8Color.rgbName(0x7b, 0x7d, 0x72, '416 cp'), + RgbInt8Color.rgbName(0x7e, 0x87, 0x6d, '5763 u'), + RgbInt8Color.rgbName(0x83, 0x83, 0x6d, 'p 169-11 c'), + RgbInt8Color.rgbName(0x82, 0x83, 0x6f, 'p 178-9 c'), + RgbInt8Color.rgbName(0x7e, 0x7f, 0x74, '416 c'), + RgbInt8Color.rgbName(0x7f, 0x80, 0x76, '418 up'), + RgbInt8Color.rgbName(0x7c, 0x7d, 0x7b, '425 up'), + RgbInt8Color.rgbName(0x80, 0x82, 0x7b, 'p 172-7 c'), + RgbInt8Color.rgbName(0x7d, 0x82, 0x7a, 'p 176-5 c'), + RgbInt8Color.rgbName(0x7e, 0x83, 0x7e, 'p 176-5 u'), + RgbInt8Color.rgbName(0x7e, 0x81, 0x79, 'p 177-6 u'), + RgbInt8Color.rgbName(0x7b, 0x80, 0x85, '10389 c'), + RgbInt8Color.rgbName(0x7c, 0x7e, 0x7f, '425 u'), + RgbInt8Color.rgbName(0x76, 0x86, 0x87, '444 cp'), + RgbInt8Color.rgbName(0x7f, 0x7f, 0x7e, '8401 c'), + RgbInt8Color.rgbName(0x82, 0x80, 0x80, '8421 c'), + RgbInt8Color.rgbName(0x80, 0x81, 0x82, 'p 179-9 c'), + RgbInt8Color.rgbName(0x7c, 0x87, 0x8e, '430 c'), + RgbInt8Color.rgbName(0x7d, 0x88, 0x8b, '430 xgc'), + RgbInt8Color.rgbName(0x76, 0x86, 0x92, '7544 c'), + RgbInt8Color.rgbName(0x7f, 0x83, 0x8a, 'p 174-6 u'), + RgbInt8Color.rgbName(0x76, 0x87, 0x9a, '2165 u'), + RgbInt8Color.rgbName(0x78, 0x84, 0x9c, '2373 u'), + RgbInt8Color.rgbName(0x78, 0x85, 0x9d, '2373 up'), + RgbInt8Color.rgbName(0x78, 0x89, 0x95, '7544 cp'), + RgbInt8Color.rgbName(0x7a, 0x84, 0x9d, 'p 108-11 u'), + RgbInt8Color.rgbName(0x7a, 0x85, 0xa0, '2108 cp'), + RgbInt8Color.rgbName(0x7a, 0x86, 0x9e, '2108 up'), + RgbInt8Color.rgbName(0x7a, 0x88, 0xa1, '2373 xgc'), + RgbInt8Color.rgbName(0x7b, 0x81, 0xa4, '7668 u'), + RgbInt8Color.rgbName(0x7f, 0x82, 0xa1, 'p 105-12 u'), + RgbInt8Color.rgbName(0x7a, 0x84, 0xa1, 'p 107-10 u'), + RgbInt8Color.rgbName(0x74, 0x87, 0xa7, 'p 108-4 c'), + RgbInt8Color.rgbName(0x78, 0x86, 0xa9, '2137 u'), + RgbInt8Color.rgbName(0x7d, 0x86, 0xb6, '2726 up'), + RgbInt8Color.rgbName(0x80, 0x85, 0xb1, '7675 cp'), + RgbInt8Color.rgbName(0x8a, 0x9b, 0xca, '7452 cp'), + RgbInt8Color.rgbName(0xaa, 0x8a, 0x0, '111 c'), + RgbInt8Color.rgbName(0x98, 0x88, 0x15, '3985 cp'), + RgbInt8Color.rgbName(0xa4, 0x97, 0x0, '399 xgc'), + RgbInt8Color.rgbName(0x86, 0x8b, 0x3c, '384 u'), + RgbInt8Color.rgbName(0x85, 0x95, 0x34, '8344 c'), + RgbInt8Color.rgbName(0x84, 0x93, 0x37, '8665 c'), + RgbInt8Color.rgbName(0x88, 0x8a, 0x3b, '391 u'), + RgbInt8Color.rgbName(0x8a, 0x8f, 0x3b, '7747 cp'), + RgbInt8Color.rgbName(0x87, 0x8e, 0x42, 'p 165-6 c'), + RgbInt8Color.rgbName(0x82, 0x8d, 0x50, '2306 u'), + RgbInt8Color.rgbName(0x78, 0x90, 0x5e, 'p 156-13 c'), + RgbInt8Color.rgbName(0x82, 0x8f, 0x5b, '10330 c'), + RgbInt8Color.rgbName(0x83, 0x8e, 0x59, '7495 u'), + RgbInt8Color.rgbName(0x7e, 0x8c, 0x60, 'p 159-13 u'), + RgbInt8Color.rgbName(0x7d, 0x8e, 0x5c, 'p 159-6 u'), + RgbInt8Color.rgbName(0x81, 0x8c, 0x61, '7491 u'), + RgbInt8Color.rgbName(0x7a, 0x8f, 0x67, 'p 156-12 u'), + RgbInt8Color.rgbName(0x7a, 0x8d, 0x74, '10312 c'), + RgbInt8Color.rgbName(0x84, 0x8c, 0x70, '5763 up'), + RgbInt8Color.rgbName(0x7b, 0x93, 0x6b, 'p 153-11 u'), + RgbInt8Color.rgbName(0x7c, 0x8c, 0x7e, '5625 up'), + RgbInt8Color.rgbName(0x80, 0x89, 0x7a, 'p 177-6 c'), + RgbInt8Color.rgbName(0x79, 0x90, 0x93, '8260 c'), + RgbInt8Color.rgbName(0x7f, 0x87, 0x8d, 'p 174-6 c'), + RgbInt8Color.rgbName(0x80, 0x8d, 0x8c, 'p 175-6 c'), + RgbInt8Color.rgbName(0x78, 0x8b, 0x99, '2165 up'), + RgbInt8Color.rgbName(0x78, 0x8f, 0x98, '3526 c'), + RgbInt8Color.rgbName(0x79, 0x8f, 0x9b, '8200 c'), + RgbInt8Color.rgbName(0x75, 0x8f, 0x9a, '8220 c'), + RgbInt8Color.rgbName(0x80, 0x89, 0xa9, '2108 u'), + RgbInt8Color.rgbName(0x7b, 0x92, 0xad, '2136 cp'), + RgbInt8Color.rgbName(0x7d, 0x8e, 0xa6, '2373 cp'), + RgbInt8Color.rgbName(0x79, 0x93, 0xa5, '5425 u'), + RgbInt8Color.rgbName(0x82, 0x8c, 0xa8, '7667 u'), + RgbInt8Color.rgbName(0x81, 0x89, 0xab, 'p 105-12 c'), + RgbInt8Color.rgbName(0x7d, 0x8a, 0xad, 'p 107-1 u'), + RgbInt8Color.rgbName(0x81, 0x8c, 0xa6, 'p 108-3 u'), + RgbInt8Color.rgbName(0x87, 0x8c, 0xb4, '7674 c'), + RgbInt8Color.rgbName(0x83, 0x8f, 0xc0, '2114 cp'), + RgbInt8Color.rgbName(0x81, 0x8e, 0xbc, '2124 up'), + RgbInt8Color.rgbName(0x80, 0x8b, 0xba, '7456 up'), + RgbInt8Color.rgbName(0x7e, 0x95, 0xc2, '2718 up'), + RgbInt8Color.rgbName(0x7c, 0x9b, 0xc6, 'p 106-12 c'), + RgbInt8Color.rgbName(0x8b, 0xaa, 0xd4, '7453 cp'), + RgbInt8Color.rgbName(0x8b, 0xa9, 0xd8, '7453 xgc'), + RgbInt8Color.rgbName(0xa5, 0xa1, 0x0, '391 xgc'), + RgbInt8Color.rgbName(0x94, 0x92, 0x20, 'p 167-16 c'), + RgbInt8Color.rgbName(0x86, 0x97, 0x4b, 'p 161-8 u'), + RgbInt8Color.rgbName(0x83, 0x96, 0x52, 'p 159-6 c'), + RgbInt8Color.rgbName(0x80, 0x93, 0x56, 'p 158-14 u'), + RgbInt8Color.rgbName(0x85, 0x92, 0x50, 'p 161-15 u'), + RgbInt8Color.rgbName(0x80, 0x9d, 0x5b, 'p 155-13 c'), + RgbInt8Color.rgbName(0x7a, 0x98, 0x6c, '8322 c'), + RgbInt8Color.rgbName(0x78, 0x9a, 0x6b, 'p 149-12 u'), + RgbInt8Color.rgbName(0x7a, 0x95, 0x69, 'p 153-5 u'), + RgbInt8Color.rgbName(0x78, 0x98, 0x72, 'p 147-3 u'), + RgbInt8Color.rgbName(0x7f, 0x9b, 0x6f, 'p 153-11 c'), + RgbInt8Color.rgbName(0x7c, 0x9b, 0x6b, 'p 153-5 c'), + RgbInt8Color.rgbName(0x82, 0x97, 0x78, '8321 c'), + RgbInt8Color.rgbName(0x7c, 0x9a, 0x76, 'p 144-10 u'), + RgbInt8Color.rgbName(0x7f, 0x98, 0x91, '5497 xgc'), + RgbInt8Color.rgbName(0x7f, 0x98, 0x8a, '5555 up'), + RgbInt8Color.rgbName(0x83, 0x96, 0x8c, '8300 c'), + RgbInt8Color.rgbName(0x7c, 0x9c, 0x8d, 'p 132-10 u'), + RgbInt8Color.rgbName(0x7b, 0x9f, 0x90, 'p 135-11 c'), + RgbInt8Color.rgbName(0x82, 0x99, 0x95, '5497 c'), + RgbInt8Color.rgbName(0x81, 0x95, 0x95, '5497 u'), + RgbInt8Color.rgbName(0x7f, 0x96, 0x95, '8280 c'), + RgbInt8Color.rgbName(0x82, 0x97, 0x9f, '2163 cp'), + RgbInt8Color.rgbName(0x81, 0x96, 0xa2, '2164 up'), + RgbInt8Color.rgbName(0x7d, 0x98, 0xa3, '2178 u'), + RgbInt8Color.rgbName(0x7e, 0x92, 0x9e, '5425 up'), + RgbInt8Color.rgbName(0x7d, 0x94, 0xac, '10256 c'), + RgbInt8Color.rgbName(0x7e, 0x93, 0xa7, '2164 c'), + RgbInt8Color.rgbName(0x7a, 0x99, 0xac, '5425 c'), + RgbInt8Color.rgbName(0x7d, 0x97, 0xb4, '2157 u'), + RgbInt8Color.rgbName(0x7b, 0x9c, 0xb1, '5425 cp'), + RgbInt8Color.rgbName(0x7e, 0x94, 0xb9, 'p 107-1 c'), + RgbInt8Color.rgbName(0x80, 0x97, 0xb3, 'p 111-11 c'), + RgbInt8Color.rgbName(0x78, 0x9d, 0xb7, 'p 114-11 c'), + RgbInt8Color.rgbName(0x7e, 0x9a, 0xb0, 'p 114-11 u'), + RgbInt8Color.rgbName(0x7d, 0x9b, 0xc1, '652 c'), + RgbInt8Color.rgbName(0x80, 0x97, 0xbf, '7682 u'), + RgbInt8Color.rgbName(0x84, 0x96, 0xc3, '2123 up'), + RgbInt8Color.rgbName(0x82, 0x98, 0xc5, '2129 up'), + RgbInt8Color.rgbName(0x85, 0x98, 0xc6, '2135 u'), + RgbInt8Color.rgbName(0x88, 0xad, 0xe3, '7453 u'), + RgbInt8Color.rgbName(0x8c, 0xad, 0xd6, '2121 cp'), + RgbInt8Color.rgbName(0x8b, 0xac, 0xdb, '2121 xgc'), + RgbInt8Color.rgbName(0x84, 0xb1, 0xd4, '2169 u'), + RgbInt8Color.rgbName(0x83, 0xb2, 0xd2, 'p 113-3 c'), + RgbInt8Color.rgbName(0x91, 0xa0, 0xe4, '7452 u'), + RgbInt8Color.rgbName(0x8c, 0x85, 0x39, '5825 cp'), + RgbInt8Color.rgbName(0x87, 0x9b, 0x4e, '8343 c'), + RgbInt8Color.rgbName(0x7d, 0x9e, 0x62, 'p 155-5 u'), + RgbInt8Color.rgbName(0x82, 0xa2, 0x69, '7490 up'), + RgbInt8Color.rgbName(0x7c, 0x9c, 0x69, 'p 152-13 u'), + RgbInt8Color.rgbName(0x81, 0xa1, 0x74, '10305 c'), + RgbInt8Color.rgbName(0x80, 0xa0, 0x79, 'p 141-12 c'), + RgbInt8Color.rgbName(0x80, 0xa5, 0x7b, 'p 143-12 u'), + RgbInt8Color.rgbName(0x81, 0xa0, 0x79, 'p 147-11 c'), + RgbInt8Color.rgbName(0x81, 0xa4, 0x79, 'p 147-3 c'), + RgbInt8Color.rgbName(0x80, 0x9c, 0x7f, '2263 up'), + RgbInt8Color.rgbName(0x81, 0x9e, 0x87, '2406 c'), + RgbInt8Color.rgbName(0x7f, 0xa0, 0x87, '2406 xgc'), + RgbInt8Color.rgbName(0x81, 0xa0, 0x84, 'p 138-11 u'), + RgbInt8Color.rgbName(0x7c, 0xa4, 0x8e, '556 up'), + RgbInt8Color.rgbName(0x7f, 0x9c, 0x90, '5565 c'), + RgbInt8Color.rgbName(0x84, 0x9e, 0x8c, '5565 cp'), + RgbInt8Color.rgbName(0x7d, 0x9f, 0x90, '5565 xgc'), + RgbInt8Color.rgbName(0x82, 0xa5, 0x8b, 'p 135-3 u'), + RgbInt8Color.rgbName(0x82, 0xa1, 0x98, '624 u'), + RgbInt8Color.rgbName(0x81, 0xa1, 0x9a, 'p 126-12 u'), + RgbInt8Color.rgbName(0x7d, 0xa3, 0x9c, 'p 126-3 u'), + RgbInt8Color.rgbName(0x7d, 0x9f, 0xa5, '10280 c'), + RgbInt8Color.rgbName(0x7a, 0xa4, 0xa7, '10286 c'), + RgbInt8Color.rgbName(0x82, 0xa0, 0xa3, '2211 up'), + RgbInt8Color.rgbName(0x7f, 0xa0, 0xac, '2177 c'), + RgbInt8Color.rgbName(0x7f, 0x9f, 0xac, '2177 xgc'), + RgbInt8Color.rgbName(0x7a, 0xa4, 0xaf, 'p 120-3 u'), + RgbInt8Color.rgbName(0x7e, 0xa3, 0xb6, '2206 u'), + RgbInt8Color.rgbName(0x80, 0xa0, 0xb8, 'p 114-3 u'), + RgbInt8Color.rgbName(0x84, 0xa3, 0xc4, '645 u'), + RgbInt8Color.rgbName(0x83, 0xa6, 0xc9, '645 xgc'), + RgbInt8Color.rgbName(0x87, 0xa1, 0xc7, '652 up'), + RgbInt8Color.rgbName(0x81, 0x9e, 0xc3, '652 xgc'), + RgbInt8Color.rgbName(0x85, 0x9f, 0xc5, '7682 up'), + RgbInt8Color.rgbName(0x85, 0xb8, 0xdf, '2141 cp'), + RgbInt8Color.rgbName(0x87, 0xb8, 0xde, '2141 up'), + RgbInt8Color.rgbName(0x8b, 0xb8, 0xe8, '278 c'), + RgbInt8Color.rgbName(0x86, 0xba, 0xe1, 'p 112-4 u'), + RgbInt8Color.rgbName(0x90, 0xa4, 0xe3, '2122 u'), + RgbInt8Color.rgbName(0xa9, 0xa4, 0x10, 'p 167-8 c'), + RgbInt8Color.rgbName(0x89, 0xa8, 0x4f, '2276 c'), + RgbInt8Color.rgbName(0x83, 0xa7, 0x5f, '10318 c'), + RgbInt8Color.rgbName(0x87, 0xa7, 0x5b, 'p 155-5 c'), + RgbInt8Color.rgbName(0x83, 0xa6, 0x71, 'p 149-12 c'), + RgbInt8Color.rgbName(0x84, 0xa9, 0x75, 'p 149-3 u'), + RgbInt8Color.rgbName(0x83, 0xab, 0x6f, 'p 151-13 u'), + RgbInt8Color.rgbName(0x86, 0xa5, 0x6d, 'p 152-13 c'), + RgbInt8Color.rgbName(0x84, 0xad, 0x74, '2262 cp'), + RgbInt8Color.rgbName(0x82, 0xac, 0x7d, 'p 143-3 u'), + RgbInt8Color.rgbName(0x83, 0xa4, 0x7b, 'p 144-10 c'), + RgbInt8Color.rgbName(0x7f, 0xa6, 0x7d, 'p 144-3 c'), + RgbInt8Color.rgbName(0x85, 0xaa, 0x77, 'p 146-11 c'), + RgbInt8Color.rgbName(0x83, 0xa6, 0x7b, 'p 146-11 u'), + RgbInt8Color.rgbName(0x87, 0xa7, 0x78, 'p 149-11 u'), + RgbInt8Color.rgbName(0x85, 0xa6, 0x81, 'p 141-3 u'), + RgbInt8Color.rgbName(0x80, 0xa8, 0x90, 'p 138-3 c'), + RgbInt8Color.rgbName(0x82, 0xaf, 0x88, 'p 140-11 c'), + RgbInt8Color.rgbName(0x87, 0xa7, 0x96, '624 cp'), + RgbInt8Color.rgbName(0x82, 0xaa, 0x99, 'p 128-11 u'), + RgbInt8Color.rgbName(0x83, 0xa9, 0x96, 'p 131-10 u'), + RgbInt8Color.rgbName(0x85, 0xa7, 0x96, 'p 132-1 u'), + RgbInt8Color.rgbName(0x83, 0xa7, 0x9b, 'p 132-10 c'), + RgbInt8Color.rgbName(0x84, 0xab, 0x9a, 'p 135-3 c'), + RgbInt8Color.rgbName(0x7f, 0xa9, 0xa4, '10292 c'), + RgbInt8Color.rgbName(0x7f, 0xa9, 0xae, '5493 c'), + RgbInt8Color.rgbName(0x82, 0xaa, 0xab, 'p 123-4 u'), + RgbInt8Color.rgbName(0x7b, 0xad, 0xb6, '5493 cp'), + RgbInt8Color.rgbName(0x81, 0xab, 0xb1, '5493 xgc'), + RgbInt8Color.rgbName(0x82, 0xa8, 0xbd, '7695 u'), + RgbInt8Color.rgbName(0x84, 0xac, 0xbf, '7695 xgc'), + RgbInt8Color.rgbName(0x7e, 0xb0, 0xc1, 'p 119-11 c'), + RgbInt8Color.rgbName(0x7e, 0xad, 0xbb, 'p 119-11 u'), + RgbInt8Color.rgbName(0x81, 0xad, 0xcf, '2169 xgc'), + RgbInt8Color.rgbName(0x85, 0xb4, 0x7c, 'p 145-12 c'), + RgbInt8Color.rgbName(0x8c, 0xb4, 0x76, 'p 151-13 c'), + RgbInt8Color.rgbName(0x87, 0xba, 0x7f, '2269 up'), + RgbInt8Color.rgbName(0x87, 0xb7, 0x87, 'p 139-12 u'), + RgbInt8Color.rgbName(0x85, 0xbb, 0x8c, '2420 up'), + RgbInt8Color.rgbName(0x85, 0xb0, 0x9a, '557 c'), + RgbInt8Color.rgbName(0x8c, 0xb4, 0xa1, '557 cp'), + RgbInt8Color.rgbName(0x88, 0xb2, 0x9f, '557 u'), + RgbInt8Color.rgbName(0x89, 0xb4, 0xa3, 'p 128-3 u'), + RgbInt8Color.rgbName(0x88, 0xb7, 0xa0, 'p 134-3 c'), + RgbInt8Color.rgbName(0x88, 0xb5, 0xac, '2455 u'), + RgbInt8Color.rgbName(0x82, 0xb2, 0xb4, 'p 122-12 c'), + RgbInt8Color.rgbName(0x87, 0xb4, 0xb2, 'p 125-11 c'), + RgbInt8Color.rgbName(0x83, 0xb0, 0xc1, '2205 up'), + RgbInt8Color.rgbName(0x83, 0xb0, 0xc3, '550 up'), + RgbInt8Color.rgbName(0x82, 0xb3, 0xcc, 'p 116-11 u'), + RgbInt8Color.rgbName(0x85, 0xb3, 0xd1, '3577 c'), + RgbInt8Color.rgbName(0x86, 0xba, 0xd3, 'p 116-11 c'), + RgbInt8Color.rgbName(0x94, 0xb3, 0xea, '7451 u'), + RgbInt8Color.rgbName(0x8a, 0xa1, 0x58, 'p 158-6 u'), + RgbInt8Color.rgbName(0x8c, 0xbc, 0x7c, 'p 148-4 u'), + RgbInt8Color.rgbName(0x86, 0xc1, 0xa3, 'p 130-4 u'), + RgbInt8Color.rgbName(0x83, 0xc2, 0xae, '570 up'), + RgbInt8Color.rgbName(0x85, 0xbc, 0xb1, 'p 124-12 u'), + RgbInt8Color.rgbName(0x8a, 0xc2, 0xbe, 'p 124-12 c'), + RgbInt8Color.rgbName(0x83, 0xc4, 0xb9, 'p 127-4 c'), + RgbInt8Color.rgbName(0x86, 0xc3, 0xc9, '2225 up'), + RgbInt8Color.rgbName(0x83, 0xc4, 0xcb, '3105 up'), + RgbInt8Color.rgbName(0x85, 0xc3, 0xd1, '2197 up'), + RgbInt8Color.rgbName(0x84, 0xc5, 0xd1, '630 up'), + RgbInt8Color.rgbName(0x8c, 0xbe, 0xd7, 'p 116-3 u'), + RgbInt8Color.rgbName(0x85, 0xc7, 0xdb, 'p 118-4 u'), + RgbInt8Color.rgbName(0x88, 0xc4, 0xa2, '3385 up'), + RgbInt8Color.rgbName(0x86, 0xc4, 0xba, '3252 up'), + RgbInt8Color.rgbName(0x89, 0xc3, 0xb2, '3255 up'), + RgbInt8Color.rgbName(0x8a, 0xc9, 0xb9, '333 cp'), + RgbInt8Color.rgbName(0x86, 0xc4, 0xb6, '3533 up'), + RgbInt8Color.rgbName(0x8a, 0xc4, 0xb2, '563 up'), + RgbInt8Color.rgbName(0x86, 0xc8, 0xbc, '564 c'), + RgbInt8Color.rgbName(0x84, 0xc9, 0xb9, '564 xgc'), + RgbInt8Color.rgbName(0x8c, 0xc6, 0xbc, '3242 up'), + RgbInt8Color.rgbName(0x88, 0xc9, 0xc4, '325 cp'), + RgbInt8Color.rgbName(0x8c, 0xc9, 0xbf, '3255 cp'), + RgbInt8Color.rgbName(0x88, 0xc6, 0xbc, '564 u'), + RgbInt8Color.rgbName(0x8a, 0xca, 0xc9, '318 up'), + RgbInt8Color.rgbName(0x8a, 0xc8, 0xd4, '2197 cp'), + RgbInt8Color.rgbName(0x88, 0xc7, 0xd2, '310 up'), + RgbInt8Color.rgbName(0x87, 0xcb, 0xd8, '630 cp'), + RgbInt8Color.rgbName(0x89, 0xcc, 0xda, '310 cp'), + RgbInt8Color.rgbName(0x8b, 0xc5, 0xd8, 'p 118-12 c'), + RgbInt8Color.rgbName(0x8d, 0xc5, 0xe6, '2905 xgc'), + RgbInt8Color.rgbName(0xa4, 0xd6, 0x5e, '367 c'), + RgbInt8Color.rgbName(0xa7, 0xe1, 0x63, '2283 c'), + RgbInt8Color.rgbName(0xa6, 0xe3, 0x5f, '374 u'), + RgbInt8Color.rgbName(0xa5, 0xd5, 0x66, '2283 xgc'), + RgbInt8Color.rgbName(0xa8, 0xdc, 0x7d, '366 u'), + RgbInt8Color.rgbName(0xa1, 0xd8, 0x84, '359 c'), + RgbInt8Color.rgbName(0xa2, 0xd7, 0x80, '359 xgc'), + RgbInt8Color.rgbName(0xa1, 0xd4, 0xef, 'p 115-4 u'), + RgbInt8Color.rgbName(0xbc, 0xc9, 0x0, '3570 cp'), + RgbInt8Color.rgbName(0xbd, 0xdc, 0x4, '389 u'), + RgbInt8Color.rgbName(0xbc, 0xc6, 0x0, '390 cp'), + RgbInt8Color.rgbName(0xba, 0xc4, 0x0, '390 xgc'), + RgbInt8Color.rgbName(0xa8, 0xaa, 0x31, '397 u'), + RgbInt8Color.rgbName(0xa6, 0xab, 0x37, 'p 164-7 c'), + RgbInt8Color.rgbName(0xa9, 0xc3, 0x43, '2299 cp'), + RgbInt8Color.rgbName(0xa9, 0xc2, 0x3f, '2300 c'), + RgbInt8Color.rgbName(0xa6, 0xb3, 0x40, '583 u'), + RgbInt8Color.rgbName(0xa6, 0xc6, 0x49, '2300 xgc'), + RgbInt8Color.rgbName(0xa9, 0xe6, 0x75, '2283 u'), + RgbInt8Color.rgbName(0xb5, 0xbd, 0x0, '390 c'), + RgbInt8Color.rgbName(0xa7, 0xc5, 0x4c, 'p 157-7 c'), + RgbInt8Color.rgbName(0xa7, 0xc3, 0x49, 'p 160-8 u'), + RgbInt8Color.rgbName(0xa9, 0xee, 0x8a, '909 c'), + RgbInt8Color.rgbName(0xa4, 0xed, 0xdd, '9524 u'), + RgbInt8Color.rgbName(0xb7, 0xbf, 0x10, '583 c'), + RgbInt8Color.rgbName(0xbc, 0xc4, 0xc, '583 xgc'), + RgbInt8Color.rgbName(0xba, 0xbf, 0xc, '7744 xgc'), + RgbInt8Color.rgbName(0xa8, 0xbf, 0x58, '2300 up'), + RgbInt8Color.rgbName(0xa6, 0xc1, 0x57, '382 up'), + RgbInt8Color.rgbName(0xa7, 0xc2, 0x5f, '2299 up'), + RgbInt8Color.rgbName(0x9c, 0xc4, 0x84, '359 up'), + RgbInt8Color.rgbName(0xa1, 0xc8, 0x83, '7488 up'), + RgbInt8Color.rgbName(0xa8, 0xd9, 0x8d, '358 xgc'), + RgbInt8Color.rgbName(0x96, 0xca, 0x9a, 'p 139-4 c'), + RgbInt8Color.rgbName(0x96, 0xdb, 0xcc, '571 xgc'), + RgbInt8Color.rgbName(0x94, 0x2d, 0x1e, '2443 cp'), + RgbInt8Color.rgbName(0x97, 0x1b, 0x2f, '7427 c'), + RgbInt8Color.rgbName(0x93, 0x20, 0x2c, '7622 xgc'), + RgbInt8Color.rgbName(0x9c, 0x23, 0x1f, 'p 49-16 c'), + RgbInt8Color.rgbName(0x96, 0x1d, 0x40, '8863 c'), + RgbInt8Color.rgbName(0xa6, 0x9, 0x3d, '1945 c'), + RgbInt8Color.rgbName(0x8f, 0x1d, 0x5e, 'p 81-16 c'), + RgbInt8Color.rgbName(0x8f, 0x20, 0x54, '228 cp'), + RgbInt8Color.rgbName(0x92, 0x1e, 0x6c, '7649 cp'), + RgbInt8Color.rgbName(0xaa, 0x0, 0x61, '227 c'), + RgbInt8Color.rgbName(0xa8, 0x2, 0x62, '227 xgc'), + RgbInt8Color.rgbName(0x9a, 0x14, 0x56, '676 xgc'), + RgbInt8Color.rgbName(0xa2, 0x9, 0x6a, '234 xgc'), + RgbInt8Color.rgbName(0x90, 0x27, 0x7d, 'p 88-8 c'), + RgbInt8Color.rgbName(0x98, 0x24, 0x81, '248 xgc'), + RgbInt8Color.rgbName(0xaf, 0x16, 0x85, '241 c'), + RgbInt8Color.rgbName(0xab, 0x33, 0x88, '247 cp'), + RgbInt8Color.rgbName(0xad, 0x3a, 0x89, 'p 83-7 c'), + RgbInt8Color.rgbName(0xc8, 0x0, 0xa1, '2395 c'), + RgbInt8Color.rgbName(0xc5, 0x29, 0x9b, '240 c'), + RgbInt8Color.rgbName(0xc7, 0x24, 0xb1, '246 c'), + RgbInt8Color.rgbName(0xbf, 0x4d, 0xa5, '2353 c'), + RgbInt8Color.rgbName(0x93, 0x27, 0x2c, '7622 c'), + RgbInt8Color.rgbName(0x92, 0x26, 0x30, 'p 54-8 c'), + RgbInt8Color.rgbName(0x95, 0x25, 0x30, 'p 58-16 c'), + RgbInt8Color.rgbName(0x8d, 0x28, 0x38, '202 cp'), + RgbInt8Color.rgbName(0x92, 0x28, 0x41, '1955 cp'), + RgbInt8Color.rgbName(0x8e, 0x23, 0x40, 'p 66-8 c'), + RgbInt8Color.rgbName(0x94, 0x28, 0x65, 'p 81-15 c'), + RgbInt8Color.rgbName(0x96, 0x24, 0x75, 'p 83-16 c'), + RgbInt8Color.rgbName(0xb4, 0x45, 0x8d, '2062 c'), + RgbInt8Color.rgbName(0xb0, 0x45, 0x90, '246 cp'), + RgbInt8Color.rgbName(0xae, 0x46, 0x90, '246 xgc'), + RgbInt8Color.rgbName(0xbf, 0x53, 0xb6, 'purple u'), + RgbInt8Color.rgbName(0x91, 0x2d, 0x29, '7623 cp'), + RgbInt8Color.rgbName(0x8a, 0x2d, 0x5f, 'p 82-7 c'), + RgbInt8Color.rgbName(0x8f, 0x2c, 0x6a, '8105 c'), + RgbInt8Color.rgbName(0x96, 0x38, 0x21, '174 c'), + RgbInt8Color.rgbName(0x8d, 0x39, 0x21, '2443 c'), + RgbInt8Color.rgbName(0x8f, 0x3b, 0x21, '7526 cp'), + RgbInt8Color.rgbName(0x8e, 0x3a, 0x80, '7656 c'), + RgbInt8Color.rgbName(0x95, 0x39, 0x7d, '8104 c'), + RgbInt8Color.rgbName(0x89, 0x2e, 0x45, '7638 cp'), + RgbInt8Color.rgbName(0x8c, 0x2e, 0x55, '8841 c'), + RgbInt8Color.rgbName(0x8f, 0x4e, 0x1c, '1615 xgc'), + RgbInt8Color.rgbName(0x92, 0x4e, 0x13, '724 xgc'), + RgbInt8Color.rgbName(0x82, 0x3b, 0x34, '7609 c'), + RgbInt8Color.rgbName(0x85, 0x3c, 0x32, 'p 50-15 c'), + RgbInt8Color.rgbName(0x85, 0x38, 0x38, 'p 56-15 c'), + RgbInt8Color.rgbName(0x92, 0x31, 0x52, '7641 xgc'), + RgbInt8Color.rgbName(0x8d, 0x36, 0x50, 'p 70-15 c'), + RgbInt8Color.rgbName(0x87, 0x3e, 0x5e, '8820 c'), + RgbInt8Color.rgbName(0x89, 0x3b, 0x67, '689 c'), + RgbInt8Color.rgbName(0x8b, 0x3b, 0x70, 'p 84-15 c'), + RgbInt8Color.rgbName(0x83, 0x43, 0x7b, '10206 c'), + RgbInt8Color.rgbName(0x92, 0x4e, 0x8c, '2354 c'), + RgbInt8Color.rgbName(0x83, 0x41, 0x2c, '7601 c'), + RgbInt8Color.rgbName(0x84, 0x41, 0x2a, '7601 cp'), + RgbInt8Color.rgbName(0x8d, 0x3f, 0x2b, '7600 c'), + RgbInt8Color.rgbName(0x7f, 0x4a, 0x35, '7581 cp'), + RgbInt8Color.rgbName(0x82, 0x45, 0x35, '7601 xgc'), + RgbInt8Color.rgbName(0x88, 0x38, 0x2f, '7609 cp'), + RgbInt8Color.rgbName(0x7e, 0x49, 0x3f, '2443 up'), + RgbInt8Color.rgbName(0x81, 0x41, 0x41, '7609 xgc'), + RgbInt8Color.rgbName(0x8e, 0x3d, 0x45, '492 xgc'), + RgbInt8Color.rgbName(0x89, 0x3c, 0x47, '697 c'), + RgbInt8Color.rgbName(0x7c, 0x4c, 0x44, 'p 42-8 u'), + RgbInt8Color.rgbName(0x7c, 0x4c, 0x48, 'p 56-15 u'), + RgbInt8Color.rgbName(0x83, 0x44, 0x45, 'p 58-16 u'), + RgbInt8Color.rgbName(0x87, 0x3c, 0x4a, 'p 64-15 c'), + RgbInt8Color.rgbName(0x81, 0x4c, 0x4f, 'p 64-15 u'), + RgbInt8Color.rgbName(0x85, 0x46, 0x4d, 'p 64-8 u'), + RgbInt8Color.rgbName(0x7f, 0x4e, 0x58, '2042 u'), + RgbInt8Color.rgbName(0x8e, 0x3d, 0x56, '8840 c'), + RgbInt8Color.rgbName(0x85, 0x49, 0x5a, 'p 77-8 u'), + RgbInt8Color.rgbName(0x7f, 0x4b, 0x5e, 'p 82-7 u'), + RgbInt8Color.rgbName(0x92, 0x3c, 0x6c, '689 cp'), + RgbInt8Color.rgbName(0x7f, 0x4e, 0x74, 'p 88-16 u'), + RgbInt8Color.rgbName(0x85, 0x47, 0x7c, '2355 u'), + RgbInt8Color.rgbName(0x86, 0x45, 0x76, '8125 c'), + RgbInt8Color.rgbName(0x8e, 0x3f, 0x7e, 'p 88-15 c'), + RgbInt8Color.rgbName(0x80, 0x57, 0x91, '526 u'), + RgbInt8Color.rgbName(0x90, 0x53, 0x96, '10212 c'), + RgbInt8Color.rgbName(0x92, 0x57, 0x9b, '258 cp'), + RgbInt8Color.rgbName(0x8a, 0x4f, 0x25, 'p 29-8 c'), + RgbInt8Color.rgbName(0x7e, 0x4a, 0x37, '7581 xgc'), + RgbInt8Color.rgbName(0x86, 0x4a, 0x33, '7581 c'), + RgbInt8Color.rgbName(0x7d, 0x51, 0x42, '4705 xgc'), + RgbInt8Color.rgbName(0x7e, 0x54, 0x46, 'p 29-8 u'), + RgbInt8Color.rgbName(0x80, 0x53, 0x46, 'p 32-8 u'), + RgbInt8Color.rgbName(0x84, 0x4c, 0x45, 'p 50-7 u'), + RgbInt8Color.rgbName(0x80, 0x4d, 0x48, 'p 54-15 u'), + RgbInt8Color.rgbName(0x85, 0x47, 0x45, 'p 54-8 u'), + RgbInt8Color.rgbName(0x84, 0x49, 0x4b, 'p 61-16 u'), + RgbInt8Color.rgbName(0x87, 0x4b, 0x52, '4985 c'), + RgbInt8Color.rgbName(0x8a, 0x44, 0x51, '697 xgc'), + RgbInt8Color.rgbName(0x84, 0x4a, 0x4f, '8540 c'), + RgbInt8Color.rgbName(0x83, 0x4b, 0x51, 'p 66-15 u'), + RgbInt8Color.rgbName(0x85, 0x48, 0x4e, 'p 66-8 u'), + RgbInt8Color.rgbName(0x82, 0x50, 0x56, '4985 xgc'), + RgbInt8Color.rgbName(0x84, 0x4e, 0x5a, 'p 74-15 u'), + RgbInt8Color.rgbName(0x85, 0x4c, 0x5d, 'p 77-15 u'), + RgbInt8Color.rgbName(0x81, 0x4f, 0x6a, '2056 xgc'), + RgbInt8Color.rgbName(0x80, 0x52, 0x68, '683 u'), + RgbInt8Color.rgbName(0x91, 0x46, 0x63, 'p 74-14 c'), + RgbInt8Color.rgbName(0x84, 0x53, 0x63, 'p 78-11 c'), + RgbInt8Color.rgbName(0x8a, 0x49, 0x63, 'p 81-16 u'), + RgbInt8Color.rgbName(0x87, 0x50, 0x65, 'p 82-6 u'), + RgbInt8Color.rgbName(0x7e, 0x54, 0x75, '5135 c'), + RgbInt8Color.rgbName(0x8c, 0x48, 0x6c, '689 xgc'), + RgbInt8Color.rgbName(0x82, 0x4f, 0x71, 'p 84-8 u'), + RgbInt8Color.rgbName(0x81, 0x52, 0x73, 'p 89-7 u'), + RgbInt8Color.rgbName(0x86, 0x4b, 0x7c, 'p 89-14 c'), + RgbInt8Color.rgbName(0x8b, 0x4c, 0x84, '8124 c'), + RgbInt8Color.rgbName(0x81, 0x55, 0x85, 'p 91-7 u'), + RgbInt8Color.rgbName(0x91, 0x4b, 0x8b, '8103 c'), + RgbInt8Color.rgbName(0x8e, 0x5d, 0xa0, '2593 u'), + RgbInt8Color.rgbName(0xae, 0x7e, 0xca, '7441 u'), + RgbInt8Color.rgbName(0x8e, 0x51, 0x1f, '2469 cp'), + RgbInt8Color.rgbName(0x89, 0x53, 0x2f, '7567 c'), + RgbInt8Color.rgbName(0x7b, 0x56, 0x43, 'p 26-8 u'), + RgbInt8Color.rgbName(0x80, 0x57, 0x48, 'p 36-14 u'), + RgbInt8Color.rgbName(0x85, 0x50, 0x47, 'p 42-7 u'), + RgbInt8Color.rgbName(0x80, 0x55, 0x4a, 'p 43-12 c'), + RgbInt8Color.rgbName(0x85, 0x50, 0x49, 'p 47-7 u'), + RgbInt8Color.rgbName(0x7d, 0x59, 0x4d, '175 u'), + RgbInt8Color.rgbName(0x7c, 0x5b, 0x55, '1817 up'), + RgbInt8Color.rgbName(0x7a, 0x5d, 0x55, 'p 44-11 c'), + RgbInt8Color.rgbName(0x85, 0x58, 0x5a, '195 up'), + RgbInt8Color.rgbName(0x80, 0x55, 0x58, '3523 u'), + RgbInt8Color.rgbName(0x87, 0x4f, 0x58, '4985 cp'), + RgbInt8Color.rgbName(0x7c, 0x5c, 0x58, '7610 up'), + RgbInt8Color.rgbName(0x80, 0x5b, 0x5a, '7629 u'), + RgbInt8Color.rgbName(0x84, 0x58, 0x5a, 'p 51-11 c'), + RgbInt8Color.rgbName(0x80, 0x56, 0x5e, 'p 67-12 c'), + RgbInt8Color.rgbName(0x82, 0x58, 0x64, '209 u'), + RgbInt8Color.rgbName(0x7f, 0x5d, 0x62, '504 u'), + RgbInt8Color.rgbName(0x7e, 0x58, 0x67, '7642 u'), + RgbInt8Color.rgbName(0x7d, 0x5c, 0x60, 'p 67-11 u'), + RgbInt8Color.rgbName(0x7f, 0x59, 0x60, 'p 78-11 u'), + RgbInt8Color.rgbName(0x79, 0x5f, 0x61, 'p 79-12 u'), + RgbInt8Color.rgbName(0x7f, 0x5e, 0x6c, '2055 cp'), + RgbInt8Color.rgbName(0x82, 0x56, 0x6b, '222 u'), + RgbInt8Color.rgbName(0x83, 0x55, 0x73, '7650 u'), + RgbInt8Color.rgbName(0x88, 0x4f, 0x72, '7650 up'), + RgbInt8Color.rgbName(0x82, 0x56, 0x72, 'p 84-15 u'), + RgbInt8Color.rgbName(0x83, 0x59, 0x77, 'p 89-14 u'), + RgbInt8Color.rgbName(0x89, 0x50, 0x84, '10205 c'), + RgbInt8Color.rgbName(0x83, 0x57, 0x7d, '255 u'), + RgbInt8Color.rgbName(0x8b, 0x50, 0x7e, 'p 88-8 u'), + RgbInt8Color.rgbName(0x84, 0x59, 0x91, '2603 u'), + RgbInt8Color.rgbName(0x86, 0x57, 0x8d, '2612 u'), + RgbInt8Color.rgbName(0x86, 0x5e, 0x9c, '2081 c'), + RgbInt8Color.rgbName(0x84, 0x5e, 0x9a, '3559 u'), + RgbInt8Color.rgbName(0x8d, 0x6c, 0xab, '265 cp'), + RgbInt8Color.rgbName(0x90, 0x6e, 0xaa, '3593 u'), + RgbInt8Color.rgbName(0xa0, 0x86, 0xd7, '2087 u'), + RgbInt8Color.rgbName(0x92, 0x83, 0xc4, '2101 xgc'), + RgbInt8Color.rgbName(0xa2, 0x88, 0xd9, '2655 u'), + RgbInt8Color.rgbName(0x95, 0x76, 0x1d, 'p 12-15 c'), + RgbInt8Color.rgbName(0x91, 0x62, 0x24, '464 cp'), + RgbInt8Color.rgbName(0x91, 0x5a, 0x24, 'p 26-8 c'), + RgbInt8Color.rgbName(0x8b, 0x5b, 0x29, '464 c'), + RgbInt8Color.rgbName(0x88, 0x5e, 0x2c, 'p 26-15 c'), + RgbInt8Color.rgbName(0x8c, 0x5c, 0x2e, '464 xgc'), + RgbInt8Color.rgbName(0x8c, 0x59, 0x32, '10369 c'), + RgbInt8Color.rgbName(0x8c, 0x5c, 0x30, '2319 c'), + RgbInt8Color.rgbName(0x82, 0x62, 0x39, '7575 xgc'), + RgbInt8Color.rgbName(0x81, 0x60, 0x40, '7505 c'), + RgbInt8Color.rgbName(0x8a, 0x57, 0x3c, '7567 xgc'), + RgbInt8Color.rgbName(0x7b, 0x60, 0x4b, '469 u'), + RgbInt8Color.rgbName(0x81, 0x5d, 0x49, 'p 29-14 u'), + RgbInt8Color.rgbName(0x87, 0x5b, 0x48, 'p 29-7 u'), + RgbInt8Color.rgbName(0x80, 0x5e, 0x52, '175 up'), + RgbInt8Color.rgbName(0x87, 0x5a, 0x4e, 'p 43-11 c'), + RgbInt8Color.rgbName(0x82, 0x5e, 0x57, '490 up'), + RgbInt8Color.rgbName(0x80, 0x5d, 0x5b, '498 u'), + RgbInt8Color.rgbName(0x80, 0x5d, 0x5d, '504 up'), + RgbInt8Color.rgbName(0x80, 0x61, 0x5e, '7610 u'), + RgbInt8Color.rgbName(0x80, 0x64, 0x5b, '7615 xgc'), + RgbInt8Color.rgbName(0x80, 0x5d, 0x59, '7629 up'), + RgbInt8Color.rgbName(0x81, 0x61, 0x5a, 'p 43-11 u'), + RgbInt8Color.rgbName(0x82, 0x63, 0x5a, 'p 44-10 c'), + RgbInt8Color.rgbName(0x88, 0x5a, 0x61, '195 u'), + RgbInt8Color.rgbName(0x88, 0x5a, 0x61, '209 up'), + RgbInt8Color.rgbName(0x7b, 0x64, 0x69, '437 c'), + RgbInt8Color.rgbName(0x80, 0x5c, 0x67, '7428 u'), + RgbInt8Color.rgbName(0x7d, 0x5f, 0x69, '7643 up'), + RgbInt8Color.rgbName(0x7b, 0x60, 0x68, '7644 up'), + RgbInt8Color.rgbName(0x7b, 0x66, 0x63, 'p 44-10 u'), + RgbInt8Color.rgbName(0x85, 0x5d, 0x63, 'p 78-10 u'), + RgbInt8Color.rgbName(0x7e, 0x61, 0x64, 'p 79-11 u'), + RgbInt8Color.rgbName(0x77, 0x68, 0x6a, '437 xgc'), + RgbInt8Color.rgbName(0x80, 0x61, 0x6e, 'p 86-11 c'), + RgbInt8Color.rgbName(0x88, 0x57, 0x79, '249 u'), + RgbInt8Color.rgbName(0x88, 0x5a, 0x79, '7651 up'), + RgbInt8Color.rgbName(0x84, 0x5a, 0x7a, '7657 up'), + RgbInt8Color.rgbName(0x86, 0x5a, 0x7e, 'p 90-6 c'), + RgbInt8Color.rgbName(0x81, 0x5f, 0x78, 'p 90-6 u'), + RgbInt8Color.rgbName(0x81, 0x5f, 0x87, '520 u'), + RgbInt8Color.rgbName(0x82, 0x62, 0x86, '520 up'), + RgbInt8Color.rgbName(0x81, 0x5e, 0x80, 'p 92-5 u'), + RgbInt8Color.rgbName(0x82, 0x62, 0x92, '2084 up'), + RgbInt8Color.rgbName(0x88, 0x5d, 0x8d, '3559 up'), + RgbInt8Color.rgbName(0x82, 0x63, 0x91, '7663 up'), + RgbInt8Color.rgbName(0x8a, 0x5c, 0x8c, 'p 92-4 c'), + RgbInt8Color.rgbName(0x81, 0x66, 0x98, '2607 up'), + RgbInt8Color.rgbName(0x8a, 0x5a, 0x94, '8123 c'), + RgbInt8Color.rgbName(0x87, 0x62, 0x9f, '2081 xgc'), + RgbInt8Color.rgbName(0x84, 0x65, 0x9a, 'p 96-13 c'), + RgbInt8Color.rgbName(0x99, 0x60, 0x17, '1395 c'), + RgbInt8Color.rgbName(0x97, 0x63, 0x1a, '1395 xgc'), + RgbInt8Color.rgbName(0x93, 0x66, 0x23, 'p 19-8 c'), + RgbInt8Color.rgbName(0x8f, 0x6a, 0x2a, '7559 c'), + RgbInt8Color.rgbName(0x8e, 0x68, 0x2e, 'p 19-15 c'), + RgbInt8Color.rgbName(0x88, 0x69, 0x35, '10351 c'), + RgbInt8Color.rgbName(0x86, 0x65, 0x3d, '10362 c'), + RgbInt8Color.rgbName(0x87, 0x62, 0x3e, '7505 cp'), + RgbInt8Color.rgbName(0x82, 0x66, 0x47, 'p 19-15 u'), + RgbInt8Color.rgbName(0x83, 0x6c, 0x45, 'p 12-8 u'), + RgbInt8Color.rgbName(0x85, 0x65, 0x46, 'p 19-8 u'), + RgbInt8Color.rgbName(0x86, 0x65, 0x47, 'p 22-15 u'), + RgbInt8Color.rgbName(0x86, 0x60, 0x47, 'p 26-7 u'), + RgbInt8Color.rgbName(0x7d, 0x65, 0x56, '477 u'), + RgbInt8Color.rgbName(0x80, 0x67, 0x55, '477 up'), + RgbInt8Color.rgbName(0x83, 0x62, 0x55, '483 up'), + RgbInt8Color.rgbName(0x7a, 0x68, 0x55, '7531 c'), + RgbInt8Color.rgbName(0x87, 0x67, 0x4f, '875 c'), + RgbInt8Color.rgbName(0x85, 0x66, 0x4e, 'p 26-14 u'), + RgbInt8Color.rgbName(0x88, 0x61, 0x50, 'p 39-14 u'), + RgbInt8Color.rgbName(0x7c, 0x69, 0x5c, '2321 u'), + RgbInt8Color.rgbName(0x82, 0x65, 0x5d, '498 up'), + RgbInt8Color.rgbName(0x7a, 0x68, 0x5e, '7582 u'), + RgbInt8Color.rgbName(0x80, 0x66, 0x5c, '7595 u'), + RgbInt8Color.rgbName(0x7d, 0x69, 0x5b, '7596 up'), + RgbInt8Color.rgbName(0x7c, 0x67, 0x5d, '7603 u'), + RgbInt8Color.rgbName(0x7f, 0x68, 0x5a, '7603 up'), + RgbInt8Color.rgbName(0x83, 0x63, 0x5c, '7615 cp'), + RgbInt8Color.rgbName(0x82, 0x62, 0x58, 'p 33-12 c'), + RgbInt8Color.rgbName(0x7d, 0x68, 0x5d, 'p 33-12 u'), + RgbInt8Color.rgbName(0x80, 0x63, 0x61, 'p 51-11 u'), + RgbInt8Color.rgbName(0x7a, 0x6d, 0x68, '410 cp'), + RgbInt8Color.rgbName(0x82, 0x66, 0x74, '2056 up'), + RgbInt8Color.rgbName(0x83, 0x63, 0x6b, '7642 up'), + RgbInt8Color.rgbName(0x7c, 0x6c, 0x6a, 'p 171-10 c'), + RgbInt8Color.rgbName(0x7c, 0x6d, 0x70, 'p 171-9 u'), + RgbInt8Color.rgbName(0x80, 0x65, 0x72, 'p 86-10 u'), + RgbInt8Color.rgbName(0x83, 0x6a, 0x7a, '10193 c'), + RgbInt8Color.rgbName(0x88, 0x67, 0x7a, '2056 u'), + RgbInt8Color.rgbName(0x84, 0x61, 0x7b, '5135 xgc'), + RgbInt8Color.rgbName(0x81, 0x6c, 0x78, '5195 u'), + RgbInt8Color.rgbName(0x86, 0x64, 0x7a, '5205 c'), + RgbInt8Color.rgbName(0x84, 0x67, 0x7a, '5205 xgc'), + RgbInt8Color.rgbName(0x7e, 0x6c, 0x7c, 'p 87-9 u'), + RgbInt8Color.rgbName(0x85, 0x64, 0x85, '261 up'), + RgbInt8Color.rgbName(0x81, 0x6c, 0x7e, 'p 87-8 u'), + RgbInt8Color.rgbName(0x82, 0x69, 0x89, 'p 94-9 u'), + RgbInt8Color.rgbName(0x8f, 0x64, 0x8c, '2354 u'), + RgbInt8Color.rgbName(0x8a, 0x65, 0x8d, '260 u'), + RgbInt8Color.rgbName(0x84, 0x66, 0x95, '7662 up'), + RgbInt8Color.rgbName(0x8a, 0x63, 0x8a, 'p 91-14 u'), + RgbInt8Color.rgbName(0x88, 0x67, 0x89, 'p 92-4 u'), + RgbInt8Color.rgbName(0x85, 0x64, 0x94, 'p 93-6 u'), + RgbInt8Color.rgbName(0x84, 0x65, 0x8e, 'p 95-5 c'), + RgbInt8Color.rgbName(0x85, 0x69, 0x98, '2077 up'), + RgbInt8Color.rgbName(0x83, 0x69, 0x95, '2082 u'), + RgbInt8Color.rgbName(0x86, 0x69, 0x98, '3593 up'), + RgbInt8Color.rgbName(0x89, 0x63, 0x92, '526 up'), + RgbInt8Color.rgbName(0x86, 0x6a, 0x94, 'p 94-9 c'), + RgbInt8Color.rgbName(0x82, 0x6d, 0x97, 'p 96-13 u'), + RgbInt8Color.rgbName(0x85, 0x6c, 0xa2, '10215 c'), + RgbInt8Color.rgbName(0x81, 0x71, 0x9e, '7677 up'), + RgbInt8Color.rgbName(0x89, 0x69, 0xa1, 'p 96-5 c'), + RgbInt8Color.rgbName(0xaf, 0x6d, 0x4, '139 c'), + RgbInt8Color.rgbName(0xad, 0x6c, 0x0, '8962 c'), + RgbInt8Color.rgbName(0x93, 0x7f, 0x20, '119 cp'), + RgbInt8Color.rgbName(0x90, 0x71, 0x27, '1265 cp'), + RgbInt8Color.rgbName(0x96, 0x71, 0x26, '7558 c'), + RgbInt8Color.rgbName(0x96, 0x74, 0x28, '7558 xgc'), + RgbInt8Color.rgbName(0x91, 0x6f, 0x25, '7559 cp'), + RgbInt8Color.rgbName(0x90, 0x78, 0x24, 'p 9-15 c'), + RgbInt8Color.rgbName(0x8d, 0x79, 0x29, '119 xgc'), + RgbInt8Color.rgbName(0x86, 0x73, 0x37, '7755 cp'), + RgbInt8Color.rgbName(0x83, 0x71, 0x41, '10344 c'), + RgbInt8Color.rgbName(0x82, 0x6f, 0x4b, '7552 u'), + RgbInt8Color.rgbName(0x84, 0x6c, 0x47, 'p 16-15 u'), + RgbInt8Color.rgbName(0x81, 0x71, 0x4a, 'p 9-15 u'), + RgbInt8Color.rgbName(0x86, 0x6d, 0x4b, '873 c'), + RgbInt8Color.rgbName(0x88, 0x6b, 0x46, 'p 16-8 u'), + RgbInt8Color.rgbName(0x85, 0x72, 0x47, 'p 9-8 u'), + RgbInt8Color.rgbName(0x82, 0x73, 0x53, '1405 up'), + RgbInt8Color.rgbName(0x86, 0x6f, 0x53, '161 up'), + RgbInt8Color.rgbName(0x87, 0x6d, 0x54, '2319 up'), + RgbInt8Color.rgbName(0x85, 0x6f, 0x51, '463 u'), + RgbInt8Color.rgbName(0x7f, 0x74, 0x57, '7497 cp'), + RgbInt8Color.rgbName(0x83, 0x6e, 0x56, '7568 up'), + RgbInt8Color.rgbName(0x86, 0x6e, 0x51, '7575 up'), + RgbInt8Color.rgbName(0x85, 0x71, 0x4d, '872 c'), + RgbInt8Color.rgbName(0x86, 0x6f, 0x5b, '10373 c'), + RgbInt8Color.rgbName(0x82, 0x6d, 0x5e, '7568 u'), + RgbInt8Color.rgbName(0x86, 0x71, 0x5a, '7575 u'), + RgbInt8Color.rgbName(0x87, 0x71, 0x5a, '8005 c'), + RgbInt8Color.rgbName(0x86, 0x6f, 0x59, 'p 23-12 c'), + RgbInt8Color.rgbName(0x81, 0x6f, 0x64, '10378 c'), + RgbInt8Color.rgbName(0x7d, 0x72, 0x6a, '409 xgc'), + RgbInt8Color.rgbName(0x7f, 0x6d, 0x66, '7518 up'), + RgbInt8Color.rgbName(0x7e, 0x75, 0x68, '7532 up'), + RgbInt8Color.rgbName(0x7f, 0x71, 0x68, '7589 up'), + RgbInt8Color.rgbName(0x7d, 0x75, 0x69, 'p 169-12 u'), + RgbInt8Color.rgbName(0x7d, 0x72, 0x6a, 'p 170-8 u'), + RgbInt8Color.rgbName(0x7c, 0x73, 0x68, 'p 170-9 c'), + RgbInt8Color.rgbName(0x81, 0x72, 0x70, '2477 u'), + RgbInt8Color.rgbName(0x83, 0x72, 0x6c, '2477 up'), + RgbInt8Color.rgbName(0x7f, 0x73, 0x73, '438 up'), + RgbInt8Color.rgbName(0x81, 0x71, 0x72, '7518 u'), + RgbInt8Color.rgbName(0x80, 0x70, 0x75, 'p 171-8 u'), + RgbInt8Color.rgbName(0x81, 0x71, 0x6f, 'p 171-9 c'), + RgbInt8Color.rgbName(0x85, 0x6e, 0x6a, 'p 44-9 u'), + RgbInt8Color.rgbName(0x7f, 0x73, 0x6c, 'warm gray 10 xgc'), + RgbInt8Color.rgbName(0x81, 0x72, 0x75, '438 u'), + RgbInt8Color.rgbName(0x81, 0x72, 0x7d, '8462 c'), + RgbInt8Color.rgbName(0x83, 0x6c, 0x7e, 'p 87-9 c'), + RgbInt8Color.rgbName(0x7d, 0x77, 0x73, 'warm gray 11 u'), + RgbInt8Color.rgbName(0x7f, 0x73, 0x84, '2359 c'), + RgbInt8Color.rgbName(0x88, 0x6a, 0x80, 'p 87-8 c'), + RgbInt8Color.rgbName(0x89, 0x6b, 0x82, 'p 90-13 u'), + RgbInt8Color.rgbName(0x84, 0x6d, 0x89, 'p 95-5 u'), + RgbInt8Color.rgbName(0x81, 0x71, 0x88, 'p 98-11 u'), + RgbInt8Color.rgbName(0x82, 0x71, 0x96, '667 xgc'), + RgbInt8Color.rgbName(0x81, 0x73, 0x91, '668 u'), + RgbInt8Color.rgbName(0x7f, 0x73, 0x92, '7447 u'), + RgbInt8Color.rgbName(0x80, 0x71, 0x93, 'p 98-11 c'), + RgbInt8Color.rgbName(0x8d, 0x6e, 0x97, '7661 c'), + RgbInt8Color.rgbName(0x89, 0x6c, 0x93, '8122 c'), + RgbInt8Color.rgbName(0x87, 0x70, 0x93, 'p 97-4 u'), + RgbInt8Color.rgbName(0x88, 0x6d, 0x9e, '2597 up'), + RgbInt8Color.rgbName(0x87, 0x71, 0xa3, '267 up'), + RgbInt8Color.rgbName(0x88, 0x6d, 0x9c, '3575 up'), + RgbInt8Color.rgbName(0x89, 0x70, 0x9e, 'p 96-5 u'), + RgbInt8Color.rgbName(0x89, 0x73, 0xa0, 'p 97-4 c'), + RgbInt8Color.rgbName(0x81, 0x74, 0xa2, 'p 99-5 u'), + RgbInt8Color.rgbName(0x8a, 0x74, 0xad, '2075 cp'), + RgbInt8Color.rgbName(0x84, 0x79, 0xa9, '2088 up'), + RgbInt8Color.rgbName(0x84, 0x79, 0xa9, '2095 up'), + RgbInt8Color.rgbName(0x90, 0x71, 0xaa, '3575 cp'), + RgbInt8Color.rgbName(0x80, 0x7c, 0xa8, '7676 up'), + RgbInt8Color.rgbName(0x85, 0x74, 0xa5, 'violet up'), + RgbInt8Color.rgbName(0xac, 0x84, 0x0, '118 c'), + RgbInt8Color.rgbName(0x94, 0x85, 0x21, '620 cp'), + RgbInt8Color.rgbName(0x91, 0x8d, 0x28, 'p 168-7 c'), + RgbInt8Color.rgbName(0x8e, 0x78, 0x31, '8660 c'), + RgbInt8Color.rgbName(0x8a, 0x7a, 0x3e, '112 u'), + RgbInt8Color.rgbName(0x8b, 0x79, 0x3a, '4495 xgc'), + RgbInt8Color.rgbName(0x8f, 0x7e, 0x35, '7768 c'), + RgbInt8Color.rgbName(0x92, 0x73, 0x31, 'p 16-15 c'), + RgbInt8Color.rgbName(0x88, 0x75, 0x49, '1265 u'), + RgbInt8Color.rgbName(0x83, 0x7b, 0x4a, '3995 u'), + RgbInt8Color.rgbName(0x84, 0x75, 0x4e, '871 c'), + RgbInt8Color.rgbName(0x83, 0x79, 0x54, '133 up'), + RgbInt8Color.rgbName(0x89, 0x79, 0x53, '140 up'), + RgbInt8Color.rgbName(0x83, 0x79, 0x58, '2327 c'), + RgbInt8Color.rgbName(0x82, 0x7a, 0x54, '455 up'), + RgbInt8Color.rgbName(0x83, 0x7b, 0x59, '2327 cp'), + RgbInt8Color.rgbName(0x7f, 0x75, 0x5f, '2328 up'), + RgbInt8Color.rgbName(0x81, 0x77, 0x5f, '7769 u'), + RgbInt8Color.rgbName(0x8b, 0x77, 0x5b, 'p 13-11 c'), + RgbInt8Color.rgbName(0x83, 0x74, 0x5e, 'p 13-11 u'), + RgbInt8Color.rgbName(0x85, 0x72, 0x58, 'p 13-12 c'), + RgbInt8Color.rgbName(0x89, 0x78, 0x63, '7531 cp'), + RgbInt8Color.rgbName(0x83, 0x7d, 0x62, '7756 u'), + RgbInt8Color.rgbName(0x84, 0x7d, 0x64, '7769 up'), + RgbInt8Color.rgbName(0x7e, 0x7a, 0x68, '7770 up'), + RgbInt8Color.rgbName(0x80, 0x76, 0x6b, 'p 170-8 c'), + RgbInt8Color.rgbName(0x81, 0x7b, 0x74, '405 up'), + RgbInt8Color.rgbName(0x84, 0x7c, 0x6e, 'p 169-11 u'), + RgbInt8Color.rgbName(0x85, 0x7b, 0x70, 'p 170-7 u'), + RgbInt8Color.rgbName(0x7e, 0x7c, 0x70, 'p 178-9 u'), + RgbInt8Color.rgbName(0x83, 0x78, 0x6f, 'warm gray 9 c'), + RgbInt8Color.rgbName(0x87, 0x7a, 0x6e, 'warm gray 9 cp'), + RgbInt8Color.rgbName(0x85, 0x78, 0x74, '409 c'), + RgbInt8Color.rgbName(0x84, 0x7a, 0x76, '411 up'), + RgbInt8Color.rgbName(0x87, 0x77, 0x74, '7616 up'), + RgbInt8Color.rgbName(0x89, 0x77, 0x78, 'p 171-7 u'), + RgbInt8Color.rgbName(0x81, 0x7f, 0x7c, 'p 179-9 u'), + RgbInt8Color.rgbName(0x82, 0x7c, 0x78, 'warm gray 10 u'), + RgbInt8Color.rgbName(0x84, 0x7a, 0x73, 'warm gray 9 xgc'), + RgbInt8Color.rgbName(0x84, 0x7d, 0x80, '10383 c'), + RgbInt8Color.rgbName(0x84, 0x7a, 0x85, '2359 cp'), + RgbInt8Color.rgbName(0x83, 0x7f, 0x84, 'p 173-6 u'), + RgbInt8Color.rgbName(0x83, 0x7b, 0x8b, '2359 xgc'), + RgbInt8Color.rgbName(0x84, 0x80, 0x8f, '2360 cp'), + RgbInt8Color.rgbName(0x7e, 0x86, 0x89, '444 u'), + RgbInt8Color.rgbName(0x85, 0x76, 0x91, '668 up'), + RgbInt8Color.rgbName(0x85, 0x78, 0x93, 'p 101-4 u'), + RgbInt8Color.rgbName(0x86, 0x76, 0x90, 'p 98-3 u'), + RgbInt8Color.rgbName(0x87, 0x7c, 0x97, '8140 c'), + RgbInt8Color.rgbName(0x80, 0x7f, 0x99, '8161 c'), + RgbInt8Color.rgbName(0x86, 0x7b, 0x9a, 'p 100-12 u'), + RgbInt8Color.rgbName(0x8a, 0x77, 0x96, 'p 97-11 u'), + RgbInt8Color.rgbName(0x82, 0x7a, 0xa3, '7676 u'), + RgbInt8Color.rgbName(0x7e, 0x7f, 0xa2, 'p 103-11 c'), + RgbInt8Color.rgbName(0x88, 0x78, 0x9d, 'p 98-3 c'), + RgbInt8Color.rgbName(0x84, 0x7e, 0xa5, '10228 c'), + RgbInt8Color.rgbName(0x84, 0x7c, 0xae, '2094 cp'), + RgbInt8Color.rgbName(0x84, 0x80, 0xad, 'p 102-4 u'), + RgbInt8Color.rgbName(0x80, 0x88, 0xb7, '2116 up'), + RgbInt8Color.rgbName(0x8f, 0x8e, 0xc9, '7446 xgc'), + RgbInt8Color.rgbName(0x95, 0x95, 0xd2, '271 c'), + RgbInt8Color.rgbName(0x95, 0x93, 0xcd, '271 xgc'), + RgbInt8Color.rgbName(0x8e, 0x94, 0xcd, '3558 u'), + RgbInt8Color.rgbName(0x94, 0x93, 0xcf, '7446 u'), + RgbInt8Color.rgbName(0xb4, 0x7e, 0x0, '7551 c'), + RgbInt8Color.rgbName(0xad, 0x89, 0x0, '8643 c'), + RgbInt8Color.rgbName(0x91, 0x85, 0x2c, '7760 c'), + RgbInt8Color.rgbName(0x91, 0x83, 0x29, '7760 cp'), + RgbInt8Color.rgbName(0x87, 0x7f, 0x49, '620 u'), + RgbInt8Color.rgbName(0x87, 0x7f, 0x49, 'p 3-8 u'), + RgbInt8Color.rgbName(0x90, 0x81, 0x45, '456 u'), + RgbInt8Color.rgbName(0x86, 0x7f, 0x4b, 'p 3-15 u'), + RgbInt8Color.rgbName(0x84, 0x7d, 0x56, '10337 c'), + RgbInt8Color.rgbName(0x8a, 0x7f, 0x53, '119 up'), + RgbInt8Color.rgbName(0x88, 0x89, 0x4f, '392 up'), + RgbInt8Color.rgbName(0x8b, 0x81, 0x4f, '620 up'), + RgbInt8Color.rgbName(0x87, 0x86, 0x4e, 'p 168-6 u'), + RgbInt8Color.rgbName(0x8b, 0x7f, 0x58, '4495 up'), + RgbInt8Color.rgbName(0x84, 0x87, 0x60, '7749 up'), + RgbInt8Color.rgbName(0x8d, 0x83, 0x62, '7755 up'), + RgbInt8Color.rgbName(0x88, 0x7e, 0x6f, '7531 up'), + RgbInt8Color.rgbName(0x88, 0x80, 0x73, 'p 170-7 c'), + RgbInt8Color.rgbName(0x81, 0x86, 0x70, 'p 178-8 c'), + RgbInt8Color.rgbName(0x83, 0x7f, 0x72, 'p 178-8 u'), + RgbInt8Color.rgbName(0x88, 0x81, 0x78, '403 cp'), + RgbInt8Color.rgbName(0x82, 0x84, 0x7f, '417 u'), + RgbInt8Color.rgbName(0x8a, 0x82, 0x80, '410 u'), + RgbInt8Color.rgbName(0x84, 0x86, 0x85, '424 up'), + RgbInt8Color.rgbName(0x81, 0x83, 0x87, 'cool gray 10 u'), + RgbInt8Color.rgbName(0x83, 0x87, 0x86, 'cool gray 8 xgc'), + RgbInt8Color.rgbName(0x84, 0x82, 0x94, '2360 xgc'), + RgbInt8Color.rgbName(0x80, 0x89, 0x91, '430 u'), + RgbInt8Color.rgbName(0x80, 0x87, 0x8f, '7545 up'), + RgbInt8Color.rgbName(0x84, 0x82, 0xa3, '10232 c'), + RgbInt8Color.rgbName(0x85, 0x7f, 0xa3, 'p 101-4 c'), + RgbInt8Color.rgbName(0x88, 0x83, 0x9d, 'p 103-10 u'), + RgbInt8Color.rgbName(0x89, 0x82, 0xa3, 'p 103-3 u'), + RgbInt8Color.rgbName(0x84, 0x85, 0xaf, '7675 xgc'), + RgbInt8Color.rgbName(0x86, 0x83, 0xaa, 'p 100-12 c'), + RgbInt8Color.rgbName(0x87, 0x87, 0xa9, 'p 103-10 c'), + RgbInt8Color.rgbName(0x83, 0x86, 0xa8, 'p 105-4 u'), + RgbInt8Color.rgbName(0x92, 0x9c, 0xd1, '2114 u'), + RgbInt8Color.rgbName(0x94, 0x9c, 0xd0, '3558 c'), + RgbInt8Color.rgbName(0x94, 0xa0, 0xd2, '7452 xgc'), + RgbInt8Color.rgbName(0xb0, 0x90, 0x0, '111 xgc'), + RgbInt8Color.rgbName(0xb1, 0x8c, 0x0, '118 xgc'), + RgbInt8Color.rgbName(0xac, 0x8a, 0xb, '8642 c'), + RgbInt8Color.rgbName(0x95, 0x89, 0x30, '7760 xgc'), + RgbInt8Color.rgbName(0x8a, 0x8d, 0x4a, '5767 c'), + RgbInt8Color.rgbName(0x8b, 0x90, 0x4b, '5767 cp'), + RgbInt8Color.rgbName(0x8a, 0x91, 0x4e, '384 up'), + RgbInt8Color.rgbName(0x86, 0x90, 0x55, '7496 up'), + RgbInt8Color.rgbName(0x87, 0x92, 0x53, 'p 162-13 c'), + RgbInt8Color.rgbName(0x85, 0x8c, 0x58, 'p 162-13 u'), + RgbInt8Color.rgbName(0x89, 0x8e, 0x51, 'p 165-6 u'), + RgbInt8Color.rgbName(0x84, 0x8f, 0x5f, '7491 up'), + RgbInt8Color.rgbName(0x87, 0x8c, 0x62, '7748 u'), + RgbInt8Color.rgbName(0x89, 0x90, 0x64, '5773 c'), + RgbInt8Color.rgbName(0x88, 0x8f, 0x62, '5773 xgc'), + RgbInt8Color.rgbName(0x8b, 0x8c, 0x74, 'p 169-10 c'), + RgbInt8Color.rgbName(0x8c, 0x8d, 0x77, 'p 178-7 c'), + RgbInt8Color.rgbName(0x83, 0x8a, 0x87, '444 up'), + RgbInt8Color.rgbName(0x8b, 0x8c, 0x84, '7539 xgc'), + RgbInt8Color.rgbName(0x83, 0x8b, 0x88, 'p 175-6 u'), + RgbInt8Color.rgbName(0x8a, 0x8a, 0x7f, 'p 176-4 c'), + RgbInt8Color.rgbName(0x89, 0x8b, 0x84, 'p 176-4 u'), + RgbInt8Color.rgbName(0x88, 0x86, 0x83, 'p 179-8 u'), + RgbInt8Color.rgbName(0x89, 0x8d, 0x8d, '423 c'), + RgbInt8Color.rgbName(0x88, 0x8b, 0x89, '423 xgc'), + RgbInt8Color.rgbName(0x88, 0x89, 0x8a, '424 u'), + RgbInt8Color.rgbName(0x87, 0x89, 0x8c, 'cool gray 10 up'), + RgbInt8Color.rgbName(0x88, 0x8b, 0x8d, 'cool gray 8 c'), + RgbInt8Color.rgbName(0x89, 0x8b, 0x8e, 'cool gray 9 u'), + RgbInt8Color.rgbName(0x8b, 0x8c, 0x8c, 'p 179-8 c'), + RgbInt8Color.rgbName(0x85, 0x8f, 0x98, '430 cp'), + RgbInt8Color.rgbName(0x8a, 0x8b, 0x99, '8160 c'), + RgbInt8Color.rgbName(0x86, 0x93, 0x97, '8240 c'), + RgbInt8Color.rgbName(0x7e, 0x92, 0xa6, '2164 xgc'), + RgbInt8Color.rgbName(0x87, 0x89, 0xa9, '10238 c'), + RgbInt8Color.rgbName(0x81, 0x90, 0xab, '10251 c'), + RgbInt8Color.rgbName(0x85, 0x8f, 0xab, '2137 up'), + RgbInt8Color.rgbName(0x8a, 0x8a, 0xa8, '5285 cp'), + RgbInt8Color.rgbName(0x83, 0x8f, 0xa9, '7667 up'), + RgbInt8Color.rgbName(0x88, 0x8c, 0xaf, '7675 u'), + RgbInt8Color.rgbName(0x86, 0x8b, 0xb1, 'p 104-12 u'), + RgbInt8Color.rgbName(0x84, 0x8e, 0xab, 'p 107-9 u'), + RgbInt8Color.rgbName(0x82, 0x90, 0xac, 'p 108-11 c'), + RgbInt8Color.rgbName(0x83, 0x94, 0xb8, '2136 c'), + RgbInt8Color.rgbName(0x85, 0x8e, 0xb3, 'p 105-4 c'), + RgbInt8Color.rgbName(0x89, 0x92, 0xbe, '2115 up'), + RgbInt8Color.rgbName(0x7f, 0x9b, 0xb9, '645 up'), + RgbInt8Color.rgbName(0x88, 0x91, 0xbb, '7674 cp'), + RgbInt8Color.rgbName(0x87, 0x94, 0xbd, 'p 104-12 c'), + RgbInt8Color.rgbName(0x86, 0x96, 0xbb, 'p 106-12 u'), + RgbInt8Color.rgbName(0x8e, 0xaa, 0xd9, '2121 u'), + RgbInt8Color.rgbName(0x89, 0xa6, 0xd1, 'p 106-4 c'), + RgbInt8Color.rgbName(0x95, 0xa5, 0xd6, '2122 xgc'), + RgbInt8Color.rgbName(0xaf, 0x98, 0x0, '104 c'), + RgbInt8Color.rgbName(0xb2, 0x9e, 0x0, '104 xgc'), + RgbInt8Color.rgbName(0xb3, 0x9b, 0x0, '613 c'), + RgbInt8Color.rgbName(0x95, 0x95, 0x39, '398 u'), + RgbInt8Color.rgbName(0x8f, 0x99, 0x3e, '7495 c'), + RgbInt8Color.rgbName(0x8e, 0x9b, 0x41, '7495 xgc'), + RgbInt8Color.rgbName(0x8e, 0x98, 0x48, 'p 164-8 u'), + RgbInt8Color.rgbName(0x8e, 0x93, 0x4d, '391 up'), + RgbInt8Color.rgbName(0x8d, 0x92, 0x4b, '5767 xgc'), + RgbInt8Color.rgbName(0x91, 0x91, 0x45, '582 u'), + RgbInt8Color.rgbName(0x8e, 0x95, 0x4d, 'p 164-15 u'), + RgbInt8Color.rgbName(0x87, 0x97, 0x5e, 'p 159-13 c'), + RgbInt8Color.rgbName(0x8c, 0x96, 0x5a, 'p 162-6 u'), + RgbInt8Color.rgbName(0x81, 0x98, 0x72, 'p 150-11 u'), + RgbInt8Color.rgbName(0x82, 0x9c, 0x69, 'p 155-12 u'), + RgbInt8Color.rgbName(0x83, 0x99, 0x6f, 'p 156-3 u'), + RgbInt8Color.rgbName(0x84, 0x9d, 0x6a, 'p 156-4 c'), + RgbInt8Color.rgbName(0x86, 0x99, 0x71, 'p 156-11 u'), + RgbInt8Color.rgbName(0x85, 0x9b, 0x6e, 'p 156-12 c'), + RgbInt8Color.rgbName(0x80, 0x9a, 0x7b, '2263 u'), + RgbInt8Color.rgbName(0x86, 0x9d, 0x76, 'p 153-10 u'), + RgbInt8Color.rgbName(0x88, 0x96, 0x83, '10311 c'), + RgbInt8Color.rgbName(0x82, 0x9d, 0x92, '2457 up'), + RgbInt8Color.rgbName(0x8d, 0x95, 0x8d, '8320 c'), + RgbInt8Color.rgbName(0x88, 0x98, 0x93, '443 xgc'), + RgbInt8Color.rgbName(0x86, 0x97, 0xa9, '2164 u'), + RgbInt8Color.rgbName(0x84, 0x97, 0xac, 'p 111-11 u'), + RgbInt8Color.rgbName(0x86, 0x95, 0xb6, '2136 u'), + RgbInt8Color.rgbName(0x85, 0x97, 0xb9, '2136 xgc'), + RgbInt8Color.rgbName(0x84, 0x9d, 0xb2, '2157 up'), + RgbInt8Color.rgbName(0x87, 0x99, 0xb9, 'p 107-9 c'), + RgbInt8Color.rgbName(0x88, 0x96, 0xb2, 'p 108-3 c'), + RgbInt8Color.rgbName(0x88, 0x9b, 0xc6, '2135 up'), + RgbInt8Color.rgbName(0x8f, 0xac, 0xd9, '2121 c'), + RgbInt8Color.rgbName(0x92, 0xb2, 0xd9, '2128 cp'), + RgbInt8Color.rgbName(0x95, 0xb4, 0xe6, '2128 u'), + RgbInt8Color.rgbName(0x8e, 0xb1, 0xd7, '2142 up'), + RgbInt8Color.rgbName(0x8e, 0xb0, 0xdb, '2142 xgc'), + RgbInt8Color.rgbName(0x94, 0xb2, 0xdc, '278 xgc'), + RgbInt8Color.rgbName(0x93, 0xb3, 0xd9, '7453 up'), + RgbInt8Color.rgbName(0x8d, 0xb4, 0xda, 'p 109-4 c'), + RgbInt8Color.rgbName(0xad, 0xa4, 0x0, '398 c'), + RgbInt8Color.rgbName(0xb3, 0xa7, 0x0, '398 cp'), + RgbInt8Color.rgbName(0xb1, 0xa6, 0x0, '398 xgc'), + RgbInt8Color.rgbName(0x8f, 0x9b, 0x4e, '383 up'), + RgbInt8Color.rgbName(0x90, 0xa2, 0x51, 'p 158-14 c'), + RgbInt8Color.rgbName(0x8e, 0xa8, 0x51, '2276 cp'), + RgbInt8Color.rgbName(0x8e, 0xa9, 0x51, '2301 up'), + RgbInt8Color.rgbName(0x93, 0xa2, 0x52, 'p 161-7 u'), + RgbInt8Color.rgbName(0x90, 0x9d, 0x53, 'p 162-6 c'), + RgbInt8Color.rgbName(0x88, 0xa3, 0x69, 'p 155-12 c'), + RgbInt8Color.rgbName(0x88, 0xa2, 0x74, 'p 150-3 u'), + RgbInt8Color.rgbName(0x85, 0x9f, 0x7c, 'p 147-10 u'), + RgbInt8Color.rgbName(0x89, 0xa1, 0x76, 'p 150-11 c'), + RgbInt8Color.rgbName(0x8b, 0xa3, 0x77, 'p 153-4 u'), + RgbInt8Color.rgbName(0x89, 0xa0, 0x86, '2406 cp'), + RgbInt8Color.rgbName(0x86, 0xa3, 0x81, 'p 141-12 u'), + RgbInt8Color.rgbName(0x88, 0xa5, 0x83, 'p 144-9 u'), + RgbInt8Color.rgbName(0x86, 0xa3, 0x8a, '10298 c'), + RgbInt8Color.rgbName(0x89, 0xa1, 0x90, '2406 u'), + RgbInt8Color.rgbName(0x86, 0xa2, 0x94, '2457 u'), + RgbInt8Color.rgbName(0x86, 0xa7, 0x88, 'p 138-3 u'), + RgbInt8Color.rgbName(0x85, 0x9e, 0x9b, '5497 cp'), + RgbInt8Color.rgbName(0x8a, 0xa2, 0x9a, '5565 u'), + RgbInt8Color.rgbName(0x8b, 0xa5, 0x95, '624 up'), + RgbInt8Color.rgbName(0x80, 0xa4, 0xac, '2211 u'), + RgbInt8Color.rgbName(0x83, 0xa3, 0xa4, '5493 up'), + RgbInt8Color.rgbName(0x81, 0xa4, 0xa5, 'p 123-11 u'), + RgbInt8Color.rgbName(0x86, 0x9c, 0xae, '2163 c'), + RgbInt8Color.rgbName(0x86, 0xa0, 0xbc, 'p 111-3 c'), + RgbInt8Color.rgbName(0x8a, 0x9f, 0xb6, 'p 111-3 u'), + RgbInt8Color.rgbName(0x8e, 0x9f, 0xbc, '535 c'), + RgbInt8Color.rgbName(0x89, 0xa2, 0xc4, '652 u'), + RgbInt8Color.rgbName(0x83, 0xa7, 0xc1, 'p 113-11 u'), + RgbInt8Color.rgbName(0x93, 0xbd, 0xe2, '2141 xgc'), + RgbInt8Color.rgbName(0x91, 0xb7, 0xde, '278 cp'), + RgbInt8Color.rgbName(0x8f, 0xb7, 0xde, '284 up'), + RgbInt8Color.rgbName(0x96, 0xb6, 0xe5, '659 u'), + RgbInt8Color.rgbName(0x8f, 0xac, 0x57, 'p 157-15 u'), + RgbInt8Color.rgbName(0x8c, 0xa8, 0x68, '2276 u'), + RgbInt8Color.rgbName(0x8d, 0xa7, 0x69, '2276 up'), + RgbInt8Color.rgbName(0x8d, 0xa8, 0x6e, '10317 c'), + RgbInt8Color.rgbName(0x87, 0xa8, 0x75, 'p 152-5 u'), + RgbInt8Color.rgbName(0x8b, 0xa7, 0x6d, 'p 155-4 u'), + RgbInt8Color.rgbName(0x8e, 0xa9, 0x7b, 'p 150-3 c'), + RgbInt8Color.rgbName(0x8c, 0xaa, 0x7f, 'p 152-12 u'), + RgbInt8Color.rgbName(0x8b, 0xad, 0x85, '2262 xgc'), + RgbInt8Color.rgbName(0x8c, 0xaa, 0x86, 'p 144-2 u'), + RgbInt8Color.rgbName(0x8a, 0xa6, 0x80, 'p 147-2 u'), + RgbInt8Color.rgbName(0x8c, 0xac, 0x89, '2262 c'), + RgbInt8Color.rgbName(0x8d, 0xab, 0x8e, '2262 up'), + RgbInt8Color.rgbName(0x87, 0xad, 0x90, 'p 134-3 u'), + RgbInt8Color.rgbName(0x8b, 0xa8, 0x92, 'p 135-10 u'), + RgbInt8Color.rgbName(0x8a, 0xaf, 0x88, 'p 140-11 u'), + RgbInt8Color.rgbName(0x8b, 0xaa, 0x99, '2457 c'), + RgbInt8Color.rgbName(0x89, 0xa7, 0x97, '2457 cp'), + RgbInt8Color.rgbName(0x8b, 0xab, 0x9b, 'p 129-3 u'), + RgbInt8Color.rgbName(0x8c, 0xaa, 0x9c, 'p 132-9 u'), + RgbInt8Color.rgbName(0x8a, 0xad, 0x93, 'p 134-12 u'), + RgbInt8Color.rgbName(0x92, 0xac, 0xa0, '5575 c'), + RgbInt8Color.rgbName(0x80, 0xad, 0xaf, 'p 126-2 c'), + RgbInt8Color.rgbName(0x8e, 0xaa, 0x9e, 'p 129-11 u'), + RgbInt8Color.rgbName(0x89, 0xaa, 0xb1, 'p 120-10 u'), + RgbInt8Color.rgbName(0x83, 0xae, 0xae, 'p 122-12 u'), + RgbInt8Color.rgbName(0x8d, 0xa9, 0xb4, '2177 u'), + RgbInt8Color.rgbName(0x86, 0xa8, 0xbb, '7695 up'), + RgbInt8Color.rgbName(0x85, 0xad, 0xbb, 'p 120-10 c'), + RgbInt8Color.rgbName(0x8b, 0xa6, 0xc1, '2156 c'), + RgbInt8Color.rgbName(0x8c, 0xa8, 0xbf, '2156 cp'), + RgbInt8Color.rgbName(0x88, 0xaf, 0xc1, '2205 xgc'), + RgbInt8Color.rgbName(0x8d, 0xaa, 0xc1, 'p 114-10 c'), + RgbInt8Color.rgbName(0x89, 0xac, 0xbf, 'p 117-11 u'), + RgbInt8Color.rgbName(0x89, 0xb1, 0xc5, '2205 u'), + RgbInt8Color.rgbName(0x8b, 0xa9, 0xca, 'p 109-12 u'), + RgbInt8Color.rgbName(0x8c, 0xa9, 0xc5, 'p 110-11 c'), + RgbInt8Color.rgbName(0x89, 0xb1, 0xc6, 'p 117-11 c'), + RgbInt8Color.rgbName(0x92, 0xc1, 0xe9, '283 c'), + RgbInt8Color.rgbName(0x92, 0xc6, 0xe6, '291 up'), + RgbInt8Color.rgbName(0x92, 0xc7, 0xe2, 'p 115-12 u'), + RgbInt8Color.rgbName(0xac, 0xb1, 0x28, '7745 xgc'), + RgbInt8Color.rgbName(0x91, 0xb2, 0x70, 'p 154-12 u'), + RgbInt8Color.rgbName(0x93, 0xb4, 0x79, '577 u'), + RgbInt8Color.rgbName(0x90, 0xb8, 0x84, 'p 143-2 c'), + RgbInt8Color.rgbName(0x91, 0xb1, 0x83, 'p 146-10 u'), + RgbInt8Color.rgbName(0x93, 0xb6, 0x80, 'p 146-2 c'), + RgbInt8Color.rgbName(0x8d, 0xb2, 0x83, 'p 146-2 u'), + RgbInt8Color.rgbName(0x90, 0xb7, 0x7f, 'p 148-11 u'), + RgbInt8Color.rgbName(0x92, 0xb3, 0x81, 'p 149-2 u'), + RgbInt8Color.rgbName(0x8d, 0xb3, 0x94, 'p 137-11 u'), + RgbInt8Color.rgbName(0x93, 0xb2, 0x8d, 'p 144-2 c'), + RgbInt8Color.rgbName(0x8c, 0xb4, 0x9e, 'p 134-12 c'), + RgbInt8Color.rgbName(0x8b, 0xb3, 0xa8, 'p 129-3 c'), + RgbInt8Color.rgbName(0x8b, 0xb7, 0xa2, 'p 131-10 c'), + RgbInt8Color.rgbName(0x8d, 0xb4, 0x9f, 'p 131-2 u'), + RgbInt8Color.rgbName(0x8c, 0xb5, 0xab, '2455 up'), + RgbInt8Color.rgbName(0x87, 0xb6, 0xb5, 'p 122-4 u'), + RgbInt8Color.rgbName(0x8d, 0xb3, 0xa9, 'p 125-11 u'), + RgbInt8Color.rgbName(0x8f, 0xb1, 0xab, 'p 126-2 u'), + RgbInt8Color.rgbName(0x8c, 0xb3, 0xb9, 'p 123-10 c'), + RgbInt8Color.rgbName(0x8b, 0xb1, 0xb3, 'p 126-11 c'), + RgbInt8Color.rgbName(0x89, 0xb2, 0xc4, '2205 c'), + RgbInt8Color.rgbName(0x8d, 0xb2, 0xbb, 'p 120-2 u'), + RgbInt8Color.rgbName(0x8b, 0xb2, 0xcf, '3577 up'), + RgbInt8Color.rgbName(0x89, 0xb4, 0xcc, '543 up'), + RgbInt8Color.rgbName(0x8d, 0xb9, 0xca, '550 c'), + RgbInt8Color.rgbName(0x8c, 0xb6, 0xca, '550 cp'), + RgbInt8Color.rgbName(0x8a, 0xb0, 0xcd, 'p 113-3 u'), + RgbInt8Color.rgbName(0x90, 0xb5, 0xc9, 'p 117-3 u'), + RgbInt8Color.rgbName(0x8c, 0xba, 0xc6, 'p 119-3 u'), + RgbInt8Color.rgbName(0x8d, 0xb6, 0xc4, 'p 120-2 c'), + RgbInt8Color.rgbName(0x91, 0xb4, 0xcf, 'p 113-10 c'), + RgbInt8Color.rgbName(0x93, 0xca, 0xe3, '297 up'), + RgbInt8Color.rgbName(0x93, 0xcf, 0xdd, '2975 up'), + RgbInt8Color.rgbName(0x93, 0xc9, 0xe4, 'p 115-12 c'), + RgbInt8Color.rgbName(0x94, 0xbb, 0x85, 'p 145-11 u'), + RgbInt8Color.rgbName(0x8e, 0xbb, 0x92, 'p 136-11 u'), + RgbInt8Color.rgbName(0x8f, 0xba, 0x91, 'p 140-3 c'), + RgbInt8Color.rgbName(0x8e, 0xb9, 0x98, 'p 133-12 u'), + RgbInt8Color.rgbName(0x8d, 0xc1, 0xa3, '2247 up'), + RgbInt8Color.rgbName(0x93, 0xbc, 0xa4, '558 xgc'), + RgbInt8Color.rgbName(0x93, 0xbe, 0xa5, 'p 131-2 c'), + RgbInt8Color.rgbName(0x8e, 0xc0, 0xa6, 'p 133-12 c'), + RgbInt8Color.rgbName(0x91, 0xc1, 0xa1, 'p 136-11 c'), + RgbInt8Color.rgbName(0x91, 0xc0, 0xae, 'p 127-11 u'), + RgbInt8Color.rgbName(0x92, 0xbc, 0xb3, '2455 c'), + RgbInt8Color.rgbName(0x8b, 0xbc, 0xbc, 'p 122-4 c'), + RgbInt8Color.rgbName(0x92, 0xbf, 0xbc, 'p 125-3 c'), + RgbInt8Color.rgbName(0x8b, 0xc1, 0xd1, 'p 118-12 u'), + RgbInt8Color.rgbName(0x8b, 0xbc, 0xcc, 'p 119-3 c'), + RgbInt8Color.rgbName(0x90, 0xc3, 0xdb, 'p 116-3 c'), + RgbInt8Color.rgbName(0xab, 0xc2, 0x30, '2300 cp'), + RgbInt8Color.rgbName(0x92, 0xc4, 0x99, '353 up'), + RgbInt8Color.rgbName(0x8f, 0xc6, 0xad, '337 up'), + RgbInt8Color.rgbName(0x94, 0xc6, 0xa0, '345 up'), + RgbInt8Color.rgbName(0x8d, 0xc6, 0xb7, '3245 up'), + RgbInt8Color.rgbName(0x8d, 0xc9, 0xb8, '3248 up'), + RgbInt8Color.rgbName(0x8f, 0xc9, 0xb8, '338 cp'), + RgbInt8Color.rgbName(0x8e, 0xc9, 0xbf, '7472 up'), + RgbInt8Color.rgbName(0x93, 0xca, 0xbe, 'p 124-4 u'), + RgbInt8Color.rgbName(0x92, 0xb5, 0x7e, 'p 149-3 c'), + RgbInt8Color.rgbName(0x93, 0xb5, 0x7b, 'p 151-12 u'), + RgbInt8Color.rgbName(0x96, 0xcd, 0xbf, '3245 cp'), + RgbInt8Color.rgbName(0x91, 0xd1, 0xc5, '565 u'), + RgbInt8Color.rgbName(0x96, 0xd0, 0xc8, '3248 cp'), + RgbInt8Color.rgbName(0x95, 0xce, 0xc7, '3252 cp'), + RgbInt8Color.rgbName(0x95, 0xcf, 0xd8, '3105 cp'), + RgbInt8Color.rgbName(0x96, 0xcd, 0xda, '636 up'), + RgbInt8Color.rgbName(0xac, 0xe1, 0x52, '2290 u'), + RgbInt8Color.rgbName(0xae, 0xd7, 0x5d, '2298 xgc'), + RgbInt8Color.rgbName(0xb0, 0xdd, 0x65, '2298 u'), + RgbInt8Color.rgbName(0x95, 0xbe, 0x90, 'p 142-10 u'), + RgbInt8Color.rgbName(0x96, 0xc0, 0xa9, 'p 130-10 u'), + RgbInt8Color.rgbName(0x96, 0xca, 0xa6, 'p 133-4 u'), + RgbInt8Color.rgbName(0xa4, 0xdb, 0xe8, '635 c'), + RgbInt8Color.rgbName(0xb2, 0xaa, 0x3c, '10109 c'), + RgbInt8Color.rgbName(0xc7, 0xd9, 0x0, '381 xgc'), + RgbInt8Color.rgbName(0xc4, 0xd6, 0x0, '382 c'), + RgbInt8Color.rgbName(0xc2, 0xd7, 0x0, '382 xgc'), + RgbInt8Color.rgbName(0xab, 0xad, 0x23, '7745 c'), + RgbInt8Color.rgbName(0xaf, 0xb0, 0x38, '7745 cp'), + RgbInt8Color.rgbName(0xad, 0xb9, 0x39, 'p 160-15 c'), + RgbInt8Color.rgbName(0xaf, 0xb5, 0x26, 'p 163-16 c'), + RgbInt8Color.rgbName(0xaf, 0xab, 0x2e, 'p 167-7 c'), + RgbInt8Color.rgbName(0x96, 0xc9, 0xbc, '564 cp'), + RgbInt8Color.rgbName(0x96, 0xcc, 0xc9, 'p 121-4 u'), + RgbInt8Color.rgbName(0xac, 0xe3, 0xef, '635 u'), + RgbInt8Color.rgbName(0xa6, 0xdd, 0xea, '9461 u'), + RgbInt8Color.rgbName(0xa4, 0xd5, 0xee, 'p 115-4 c'), + RgbInt8Color.rgbName(0xc0, 0xdf, 0x16, '2297 c'), + RgbInt8Color.rgbName(0xaf, 0xc7, 0x49, '3507 up'), + RgbInt8Color.rgbName(0xb3, 0xc9, 0x48, '3570 up'), + RgbInt8Color.rgbName(0xb0, 0xd9, 0x7a, '2284 xgc'), + RgbInt8Color.rgbName(0xb0, 0xd9, 0x76, '366 xgc'), + RgbInt8Color.rgbName(0xad, 0xf2, 0x9c, '909 u'), + RgbInt8Color.rgbName(0x9a, 0xda, 0xb0, '344 xgc'), + RgbInt8Color.rgbName(0x9c, 0xd9, 0xad, '351 xgc'), + RgbInt8Color.rgbName(0xa2, 0xe4, 0xb8, '351 c'), + RgbInt8Color.rgbName(0x98, 0xdb, 0xce, '571 c'), + RgbInt8Color.rgbName(0xae, 0xe9, 0xe8, '317 u'), + RgbInt8Color.rgbName(0xb0, 0xeb, 0xe9, '9500 u'), + RgbInt8Color.rgbName(0xb1, 0xde, 0xf1, '9441 u'), + RgbInt8Color.rgbName(0xbf, 0xb8, 0x0, '397 c'), + RgbInt8Color.rgbName(0xc0, 0xb9, 0x0, '397 cp'), + RgbInt8Color.rgbName(0xbf, 0xbc, 0x0, '397 xgc'), + RgbInt8Color.rgbName(0xb3, 0xcb, 0x60, '2291 cp'), + RgbInt8Color.rgbName(0xad, 0xc7, 0x63, '2300 u'), + RgbInt8Color.rgbName(0xab, 0xcc, 0x6d, '367 cp'), + RgbInt8Color.rgbName(0xad, 0xcb, 0x69, 'p 157-6 u'), + RgbInt8Color.rgbName(0xa5, 0xc7, 0x76, '2285 cp'), + RgbInt8Color.rgbName(0xa9, 0xcb, 0x77, '7487 cp'), + RgbInt8Color.rgbName(0xa3, 0xc5, 0x7a, 'p 154-5 u'), + RgbInt8Color.rgbName(0xb3, 0xd8, 0x84, '2284 u'), + RgbInt8Color.rgbName(0x9b, 0xc5, 0x86, 'p 148-4 c'), + RgbInt8Color.rgbName(0x97, 0xc2, 0x8e, '2255 cp'), + RgbInt8Color.rgbName(0x9a, 0xc4, 0x8f, '2268 up'), + RgbInt8Color.rgbName(0xad, 0xdc, 0x91, '358 c'), + RgbInt8Color.rgbName(0xa0, 0xda, 0xb3, '344 c'), + RgbInt8Color.rgbName(0x9f, 0xdd, 0xd0, '572 xgc'), + RgbInt8Color.rgbName(0x9c, 0xdb, 0xd9, '324 c'), + RgbInt8Color.rgbName(0x98, 0xd5, 0xdd, '629 xgc'), + RgbInt8Color.rgbName(0xaf, 0xea, 0xdc, '9524 c'), + RgbInt8Color.rgbName(0xa6, 0x19, 0x2e, '187 c'), + RgbInt8Color.rgbName(0xa8, 0xd, 0x38, '187 xgc'), + RgbInt8Color.rgbName(0xba, 0x0, 0x20, '3517 c'), + RgbInt8Color.rgbName(0x9e, 0x22, 0x2c, '7628 xgc'), + RgbInt8Color.rgbName(0x9f, 0x1a, 0x3c, '201 xgc'), + RgbInt8Color.rgbName(0x9f, 0x1e, 0x45, '7420 xgc'), + RgbInt8Color.rgbName(0xa5, 0xe, 0x3e, '207 xgc'), + RgbInt8Color.rgbName(0x9f, 0x1e, 0x54, '676 cp'), + RgbInt8Color.rgbName(0xa4, 0x12, 0x3f, '7426 c'), + RgbInt8Color.rgbName(0xa5, 0x9, 0x42, '7426 xgc'), + RgbInt8Color.rgbName(0xa6, 0xf, 0x48, '1945 xgc'), + RgbInt8Color.rgbName(0x9e, 0x18, 0x5d, 'p 76-16 c'), + RgbInt8Color.rgbName(0xa7, 0x9, 0x54, '220 xgc'), + RgbInt8Color.rgbName(0x99, 0x1e, 0x66, '7648 c'), + RgbInt8Color.rgbName(0x9f, 0x1a, 0x6e, '7648 cp'), + RgbInt8Color.rgbName(0x9d, 0x18, 0x68, '7648 xgc'), + RgbInt8Color.rgbName(0x9e, 0x1c, 0x67, 'p 81-8 c'), + RgbInt8Color.rgbName(0x9e, 0x24, 0x7b, '2415 cp'), + RgbInt8Color.rgbName(0xa8, 0x22, 0x7f, 'p 83-8 c'), + RgbInt8Color.rgbName(0xb6, 0x3b, 0x87, '2395 xgc'), + RgbInt8Color.rgbName(0x9d, 0x22, 0x35, '201 c'), + RgbInt8Color.rgbName(0x9b, 0x25, 0x36, 'p 56-8 c'), + RgbInt8Color.rgbName(0x9a, 0x24, 0x3d, 'p 61-8 c'), + RgbInt8Color.rgbName(0x9b, 0x22, 0x42, '7420 c'), + RgbInt8Color.rgbName(0x9c, 0x21, 0x42, 'p 63-16 c'), + RgbInt8Color.rgbName(0x96, 0x28, 0x4a, '194 xgc'), + RgbInt8Color.rgbName(0x95, 0x27, 0x4d, '7641 cp'), + RgbInt8Color.rgbName(0xa0, 0x1f, 0x46, 'p 65-16 c'), + RgbInt8Color.rgbName(0x9c, 0x24, 0x52, '221 cp'), + RgbInt8Color.rgbName(0xb7, 0x41, 0x8f, '2395 cp'), + RgbInt8Color.rgbName(0xce, 0x57, 0xb3, '246 u'), + RgbInt8Color.rgbName(0x9e, 0x32, 0x26, '484 xgc'), + RgbInt8Color.rgbName(0x9a, 0x2f, 0x26, 'p 46-16 c'), + RgbInt8Color.rgbName(0x9e, 0x2a, 0x2f, '704 c'), + RgbInt8Color.rgbName(0x9d, 0x30, 0x2b, '7622 cp'), + RgbInt8Color.rgbName(0x9e, 0x2a, 0x2b, '7628 c'), + RgbInt8Color.rgbName(0x93, 0x2c, 0x46, '7637 cp'), + RgbInt8Color.rgbName(0x8e, 0x2c, 0x48, '7641 c'), + RgbInt8Color.rgbName(0x8d, 0x2f, 0x48, 'p 64-8 c'), + RgbInt8Color.rgbName(0x93, 0x2a, 0x51, '8864 c'), + RgbInt8Color.rgbName(0xc9, 0x64, 0xcf, '252 c'), + RgbInt8Color.rgbName(0x9a, 0x33, 0x24, '484 c'), + RgbInt8Color.rgbName(0x9b, 0x39, 0x21, 'p 41-16 c'), + RgbInt8Color.rgbName(0x91, 0x2f, 0x46, '7637 c'), + RgbInt8Color.rgbName(0x95, 0x33, 0x72, 'p 84-7 c'), + RgbInt8Color.rgbName(0x9c, 0x41, 0x24, '174 cp'), + RgbInt8Color.rgbName(0x9c, 0x3e, 0x25, '7593 cp'), + RgbInt8Color.rgbName(0x8f, 0x32, 0x37, '492 c'), + RgbInt8Color.rgbName(0x97, 0x29, 0x41, '2041 cp'), + RgbInt8Color.rgbName(0x96, 0x2d, 0x47, '8862 c'), + RgbInt8Color.rgbName(0x92, 0x30, 0x4d, '7637 xgc'), + RgbInt8Color.rgbName(0x99, 0x2e, 0x51, 'p 70-8 c'), + RgbInt8Color.rgbName(0x99, 0x2b, 0x57, '7434 xgc'), + RgbInt8Color.rgbName(0x97, 0x46, 0x84, '7656 xgc'), + RgbInt8Color.rgbName(0x9f, 0x3e, 0x82, 'p 83-15 c'), + RgbInt8Color.rgbName(0x9d, 0x48, 0x15, '2021 c'), + RgbInt8Color.rgbName(0x8e, 0x3b, 0x3b, 'p 54-15 c'), + RgbInt8Color.rgbName(0x92, 0x37, 0x56, '2048 cp'), + RgbInt8Color.rgbName(0x8e, 0x3d, 0x4c, 'p 66-15 c'), + RgbInt8Color.rgbName(0x93, 0x38, 0x5f, '2048 xgc'), + RgbInt8Color.rgbName(0x9b, 0x32, 0x59, '7434 c'), + RgbInt8Color.rgbName(0x90, 0x37, 0x5e, '8865 c'), + RgbInt8Color.rgbName(0x9a, 0x39, 0x5a, 'p 72-15 c'), + RgbInt8Color.rgbName(0x91, 0x40, 0x6b, 'p 82-6 c'), + RgbInt8Color.rgbName(0x93, 0x3f, 0x7a, '10201 c'), + RgbInt8Color.rgbName(0x9b, 0x5a, 0x1a, '154 c'), + RgbInt8Color.rgbName(0x8b, 0x42, 0x2f, '7600 cp'), + RgbInt8Color.rgbName(0x8e, 0x42, 0x32, 'p 47-7 c'), + RgbInt8Color.rgbName(0x8c, 0x43, 0x34, '7600 xgc'), + RgbInt8Color.rgbName(0x96, 0x3d, 0x34, 'p 50-7 c'), + RgbInt8Color.rgbName(0x8e, 0x43, 0x44, '492 cp'), + RgbInt8Color.rgbName(0x8c, 0x43, 0x4c, '697 cp'), + RgbInt8Color.rgbName(0x92, 0x3c, 0x47, '8861 c'), + RgbInt8Color.rgbName(0x93, 0x40, 0x54, '7640 c'), + RgbInt8Color.rgbName(0x8c, 0x4b, 0x57, 'p 70-15 u'), + RgbInt8Color.rgbName(0x8d, 0x4b, 0x59, 'p 72-16 u'), + RgbInt8Color.rgbName(0x97, 0x39, 0x61, '2048 c'), + RgbInt8Color.rgbName(0x95, 0x3c, 0x67, 'p 77-7 c'), + RgbInt8Color.rgbName(0x8d, 0x4d, 0x6d, '228 u'), + RgbInt8Color.rgbName(0x9b, 0x3c, 0x6f, 'p 81-14 c'), + RgbInt8Color.rgbName(0x8e, 0x4b, 0x81, 'p 89-6 c'), + RgbInt8Color.rgbName(0x9e, 0x54, 0x9a, '254 u'), + RgbInt8Color.rgbName(0x98, 0x57, 0x9b, '2582 cp'), + RgbInt8Color.rgbName(0x9e, 0x70, 0xb5, '7441 xgc'), + RgbInt8Color.rgbName(0xbb, 0x76, 0xcf, '2582 u'), + RgbInt8Color.rgbName(0x97, 0x4c, 0x28, '7587 cp'), + RgbInt8Color.rgbName(0x96, 0x47, 0x2a, 'p 38-16 c'), + RgbInt8Color.rgbName(0x91, 0x4a, 0x2b, 'p 39-7 c'), + RgbInt8Color.rgbName(0x92, 0x4d, 0x33, '7587 xgc'), + RgbInt8Color.rgbName(0x8f, 0x46, 0x44, 'p 49-16 u'), + RgbInt8Color.rgbName(0x85, 0x55, 0x49, 'p 39-7 u'), + RgbInt8Color.rgbName(0x90, 0x4a, 0x46, 'p 46-16 u'), + RgbInt8Color.rgbName(0x8f, 0x48, 0x46, 'p 56-8 u'), + RgbInt8Color.rgbName(0x93, 0x4a, 0x4e, 'p 61-8 u'), + RgbInt8Color.rgbName(0x94, 0x48, 0x51, 'p 63-16 u'), + RgbInt8Color.rgbName(0x89, 0x55, 0x59, '188 u'), + RgbInt8Color.rgbName(0x89, 0x4f, 0x5e, '2049 up'), + RgbInt8Color.rgbName(0x87, 0x56, 0x5b, '697 u'), + RgbInt8Color.rgbName(0x96, 0x46, 0x5a, 'p 70-14 c'), + RgbInt8Color.rgbName(0x8b, 0x53, 0x65, '2049 u'), + RgbInt8Color.rgbName(0x8a, 0x55, 0x66, '216 u'), + RgbInt8Color.rgbName(0x85, 0x56, 0x60, '7638 u'), + RgbInt8Color.rgbName(0x97, 0x49, 0x62, 'p 76-16 u'), + RgbInt8Color.rgbName(0x90, 0x4d, 0x67, 'p 81-15 u'), + RgbInt8Color.rgbName(0x91, 0x4e, 0x72, '235 u'), + RgbInt8Color.rgbName(0x8c, 0x52, 0x70, '242 up'), + RgbInt8Color.rgbName(0x8b, 0x53, 0x77, '249 up'), + RgbInt8Color.rgbName(0x99, 0x48, 0x78, '682 c'), + RgbInt8Color.rgbName(0x99, 0x48, 0x79, '682 cp'), + RgbInt8Color.rgbName(0x8e, 0x50, 0x76, 'p 83-16 u'), + RgbInt8Color.rgbName(0x8b, 0x54, 0x77, 'p 84-7 u'), + RgbInt8Color.rgbName(0x8a, 0x55, 0x7b, 'p 85-6 c'), + RgbInt8Color.rgbName(0x8a, 0x54, 0x7b, 'p 88-15 u'), + RgbInt8Color.rgbName(0x8a, 0x58, 0x7f, '512 u'), + RgbInt8Color.rgbName(0x9a, 0x49, 0x8b, '2069 cp'), + RgbInt8Color.rgbName(0x9b, 0x47, 0x8b, 'p 88-7 c'), + RgbInt8Color.rgbName(0x93, 0x52, 0x93, 'p 91-6 c'), + RgbInt8Color.rgbName(0xb5, 0x80, 0xd1, '528 c'), + RgbInt8Color.rgbName(0x97, 0x52, 0x22, '1535 cp'), + RgbInt8Color.rgbName(0x98, 0x56, 0x1f, '724 cp'), + RgbInt8Color.rgbName(0x94, 0x52, 0x2c, '7516 xgc'), + RgbInt8Color.rgbName(0x92, 0x4c, 0x2e, '7587 c'), + RgbInt8Color.rgbName(0x8f, 0x57, 0x36, 'p 36-14 c'), + RgbInt8Color.rgbName(0x8f, 0x57, 0x3a, '2469 c'), + RgbInt8Color.rgbName(0x8e, 0x56, 0x45, 'p 28-16 u'), + RgbInt8Color.rgbName(0x95, 0x52, 0x46, 'p 35-16 u'), + RgbInt8Color.rgbName(0x8a, 0x58, 0x48, 'p 36-7 u'), + RgbInt8Color.rgbName(0x8d, 0x54, 0x47, 'p 38-16 u'), + RgbInt8Color.rgbName(0x90, 0x50, 0x49, 'p 41-16 u'), + RgbInt8Color.rgbName(0x87, 0x58, 0x4e, 'p 47-14 u'), + RgbInt8Color.rgbName(0x8f, 0x4d, 0x4a, 'p 54-7 u'), + RgbInt8Color.rgbName(0x8b, 0x59, 0x52, '181 u'), + RgbInt8Color.rgbName(0x90, 0x55, 0x51, '7624 up'), + RgbInt8Color.rgbName(0x88, 0x59, 0x4e, 'p 50-14 u'), + RgbInt8Color.rgbName(0x8e, 0x57, 0x4f, 'p 54-14 u'), + RgbInt8Color.rgbName(0x8c, 0x57, 0x51, 'p 56-14 u'), + RgbInt8Color.rgbName(0x91, 0x51, 0x52, 'p 61-15 u'), + RgbInt8Color.rgbName(0x89, 0x57, 0x5f, '7638 up'), + RgbInt8Color.rgbName(0x8c, 0x54, 0x67, '222 up'), + RgbInt8Color.rgbName(0x91, 0x53, 0x66, '7435 up'), + RgbInt8Color.rgbName(0x89, 0x5d, 0x63, 'p 67-11 c'), + RgbInt8Color.rgbName(0x8b, 0x57, 0x67, 'p 78-10 c'), + RgbInt8Color.rgbName(0x91, 0x55, 0x6f, '2048 up'), + RgbInt8Color.rgbName(0x8d, 0x5a, 0x6d, '683 up'), + RgbInt8Color.rgbName(0x8c, 0x56, 0x6b, '7435 u'), + RgbInt8Color.rgbName(0x85, 0x5f, 0x6a, 'p 79-11 c'), + RgbInt8Color.rgbName(0x95, 0x51, 0x6c, 'p 81-14 u'), + RgbInt8Color.rgbName(0x8d, 0x55, 0x6c, 'p 82-5 u'), + RgbInt8Color.rgbName(0x8d, 0x59, 0x77, '242 u'), + RgbInt8Color.rgbName(0x93, 0x53, 0x79, '7649 u'), + RgbInt8Color.rgbName(0x88, 0x5e, 0x77, 'p 85-6 u'), + RgbInt8Color.rgbName(0x94, 0x4f, 0x85, '2354 cp'), + RgbInt8Color.rgbName(0x97, 0x53, 0x81, '2425 u'), + RgbInt8Color.rgbName(0x95, 0x51, 0x7f, 'p 84-14 c'), + RgbInt8Color.rgbName(0x8b, 0x5c, 0x7f, 'p 89-6 u'), + RgbInt8Color.rgbName(0x8d, 0x58, 0x88, '2070 up'), + RgbInt8Color.rgbName(0x95, 0x53, 0x8d, '2354 xgc'), + RgbInt8Color.rgbName(0x8e, 0x59, 0x91, 'p 91-14 c'), + RgbInt8Color.rgbName(0x88, 0x60, 0x91, '2603 up'), + RgbInt8Color.rgbName(0xa0, 0x8b, 0xcb, '2086 c'), + RgbInt8Color.rgbName(0xa0, 0x8a, 0xcc, '3543 c'), + RgbInt8Color.rgbName(0x9a, 0x84, 0xc9, '3543 u'), + RgbInt8Color.rgbName(0x99, 0x73, 0x1d, 'p 16-8 c'), + RgbInt8Color.rgbName(0x9d, 0x61, 0x20, '154 cp'), + RgbInt8Color.rgbName(0x9a, 0x5f, 0x23, '154 xgc'), + RgbInt8Color.rgbName(0x98, 0x62, 0x21, 'p 22-8 c'), + RgbInt8Color.rgbName(0x8c, 0x5d, 0x38, 'p 29-14 c'), + RgbInt8Color.rgbName(0x93, 0x5b, 0x31, 'p 29-7 c'), + RgbInt8Color.rgbName(0x8d, 0x5e, 0x38, '4635 xgc'), + RgbInt8Color.rgbName(0x90, 0x5c, 0x38, 'p 32-14 c'), + RgbInt8Color.rgbName(0x8a, 0x61, 0x4b, '168 u'), + RgbInt8Color.rgbName(0x91, 0x5e, 0x47, 'p 25-16 u'), + RgbInt8Color.rgbName(0x87, 0x60, 0x4c, 'p 32-14 u'), + RgbInt8Color.rgbName(0x8d, 0x5a, 0x4e, 'p 42-6 u'), + RgbInt8Color.rgbName(0x8b, 0x5e, 0x54, '181 up'), + RgbInt8Color.rgbName(0x8f, 0x56, 0x52, '1815 u'), + RgbInt8Color.rgbName(0x8f, 0x5a, 0x55, '1815 up'), + RgbInt8Color.rgbName(0x8f, 0x5b, 0x4f, '2443 u'), + RgbInt8Color.rgbName(0x8d, 0x5a, 0x54, '7624 u'), + RgbInt8Color.rgbName(0x8b, 0x61, 0x4d, 'p 36-13 u'), + RgbInt8Color.rgbName(0x90, 0x5e, 0x4f, 'p 39-6 u'), + RgbInt8Color.rgbName(0x89, 0x5e, 0x50, 'p 42-14 u'), + RgbInt8Color.rgbName(0x90, 0x58, 0x4e, 'p 47-6 u'), + RgbInt8Color.rgbName(0x89, 0x60, 0x5e, '188 up'), + RgbInt8Color.rgbName(0x90, 0x59, 0x59, '202 up'), + RgbInt8Color.rgbName(0x8e, 0x59, 0x5a, '491 u'), + RgbInt8Color.rgbName(0x8a, 0x5c, 0x66, '505 u'), + RgbInt8Color.rgbName(0x8b, 0x61, 0x64, '505 up'), + RgbInt8Color.rgbName(0x8b, 0x5c, 0x68, '7421 up'), + RgbInt8Color.rgbName(0x8b, 0x5b, 0x66, '7428 up'), + RgbInt8Color.rgbName(0x86, 0x67, 0x61, '7615 c'), + RgbInt8Color.rgbName(0x8d, 0x5e, 0x5f, 'p 51-10 c'), + RgbInt8Color.rgbName(0x86, 0x61, 0x65, 'p 67-10 u'), + RgbInt8Color.rgbName(0x8f, 0x57, 0x65, 'p 74-14 u'), + RgbInt8Color.rgbName(0x85, 0x65, 0x68, 'p 79-10 u'), + RgbInt8Color.rgbName(0x95, 0x5b, 0x6e, 'p 77-14 u'), + RgbInt8Color.rgbName(0x92, 0x5b, 0x6d, 'p 78-9 c'), + RgbInt8Color.rgbName(0x8d, 0x5d, 0x70, 'p 82-14 u'), + RgbInt8Color.rgbName(0x90, 0x5d, 0x78, '682 u'), + RgbInt8Color.rgbName(0x8e, 0x61, 0x78, '689 u'), + RgbInt8Color.rgbName(0x8a, 0x5e, 0x7b, 'p 84-14 u'), + RgbInt8Color.rgbName(0x8c, 0x60, 0x7e, '5135 cp'), + RgbInt8Color.rgbName(0x91, 0x5d, 0x7f, 'p 84-6 u'), + RgbInt8Color.rgbName(0x8d, 0x63, 0x83, 'p 85-13 c'), + RgbInt8Color.rgbName(0x90, 0x5f, 0x8e, '10204 c'), + RgbInt8Color.rgbName(0x98, 0x5b, 0x8b, '254 up'), + RgbInt8Color.rgbName(0x93, 0x5a, 0x8b, '512 up'), + RgbInt8Color.rgbName(0x91, 0x60, 0x8f, 'p 91-6 u'), + RgbInt8Color.rgbName(0x91, 0x63, 0x94, '2612 up'), + RgbInt8Color.rgbName(0x94, 0x60, 0x9a, '10211 c'), + RgbInt8Color.rgbName(0x90, 0x66, 0xa2, '3593 cp'), + RgbInt8Color.rgbName(0xb5, 0x63, 0x0, '8963 c'), + RgbInt8Color.rgbName(0x92, 0x65, 0x2e, 'p 22-15 c'), + RgbInt8Color.rgbName(0x94, 0x60, 0x37, '4635 c'), + RgbInt8Color.rgbName(0x9a, 0x65, 0x32, '730 xgc'), + RgbInt8Color.rgbName(0x94, 0x64, 0x3e, '10368 c'), + RgbInt8Color.rgbName(0x96, 0x63, 0x40, '2315 u'), + RgbInt8Color.rgbName(0x8b, 0x63, 0x4b, '876 c'), + RgbInt8Color.rgbName(0x8d, 0x64, 0x45, 'p 22-8 u'), + RgbInt8Color.rgbName(0x86, 0x68, 0x53, '1545 up'), + RgbInt8Color.rgbName(0x84, 0x69, 0x54, '469 up'), + RgbInt8Color.rgbName(0x88, 0x67, 0x4d, '732 u'), + RgbInt8Color.rgbName(0x8c, 0x6c, 0x47, 'p 19-7 u'), + RgbInt8Color.rgbName(0x8e, 0x60, 0x52, 'p 43-10 c'), + RgbInt8Color.rgbName(0x8b, 0x64, 0x5a, '7594 u'), + RgbInt8Color.rgbName(0x86, 0x6b, 0x5f, '7595 up'), + RgbInt8Color.rgbName(0x93, 0x63, 0x5a, '7609 up'), + RgbInt8Color.rgbName(0x8a, 0x69, 0x5c, 'p 33-11 c'), + RgbInt8Color.rgbName(0x8b, 0x66, 0x5f, 'p 43-10 u'), + RgbInt8Color.rgbName(0x82, 0x6b, 0x69, '2476 c'), + RgbInt8Color.rgbName(0x8d, 0x61, 0x5f, '499 u'), + RgbInt8Color.rgbName(0x86, 0x6d, 0x60, 'p 33-11 u'), + RgbInt8Color.rgbName(0x87, 0x6f, 0x67, 'p 44-8 u'), + RgbInt8Color.rgbName(0x8c, 0x68, 0x5f, 'p 44-9 c'), + RgbInt8Color.rgbName(0x87, 0x68, 0x66, 'p 51-10 u'), + RgbInt8Color.rgbName(0x8b, 0x64, 0x68, 'p 67-9 u'), + RgbInt8Color.rgbName(0x8d, 0x61, 0x68, 'p 78-9 u'), + RgbInt8Color.rgbName(0x8c, 0x64, 0x6d, 'p 79-10 c'), + RgbInt8Color.rgbName(0x87, 0x71, 0x6f, '2476 cp'), + RgbInt8Color.rgbName(0x8f, 0x6a, 0x6f, '4985 u'), + RgbInt8Color.rgbName(0x8c, 0x62, 0x73, '690 up'), + RgbInt8Color.rgbName(0x85, 0x72, 0x71, 'p 171-8 c'), + RgbInt8Color.rgbName(0x92, 0x65, 0x6d, 'p 67-8 u'), + RgbInt8Color.rgbName(0x91, 0x62, 0x6a, 'p 78-8 u'), + RgbInt8Color.rgbName(0x8b, 0x6a, 0x6d, 'p 79-9 u'), + RgbInt8Color.rgbName(0x87, 0x66, 0x74, 'p 86-10 c'), + RgbInt8Color.rgbName(0x90, 0x5f, 0x7b, '2055 c'), + RgbInt8Color.rgbName(0x89, 0x68, 0x7e, '5205 cp'), + RgbInt8Color.rgbName(0x90, 0x63, 0x75, '689 up'), + RgbInt8Color.rgbName(0x8c, 0x6a, 0x7a, 'p 86-8 u'), + RgbInt8Color.rgbName(0x8e, 0x6b, 0x7a, 'p 86-9 c'), + RgbInt8Color.rgbName(0x89, 0x69, 0x78, 'p 86-9 u'), + RgbInt8Color.rgbName(0x92, 0x65, 0x7e, '2055 xgc'), + RgbInt8Color.rgbName(0x8c, 0x6a, 0x80, 'p 85-13 u'), + RgbInt8Color.rgbName(0x90, 0x68, 0x85, 'p 89-13 u'), + RgbInt8Color.rgbName(0x8e, 0x68, 0x8c, '2354 up'), + RgbInt8Color.rgbName(0x8e, 0x69, 0x8d, '260 up'), + RgbInt8Color.rgbName(0x96, 0x64, 0x8d, '7656 u'), + RgbInt8Color.rgbName(0x94, 0x62, 0x8d, 'p 89-13 c'), + RgbInt8Color.rgbName(0x8f, 0x6b, 0x8b, 'p 90-13 c'), + RgbInt8Color.rgbName(0x8b, 0x6c, 0x90, 'p 92-13 c'), + RgbInt8Color.rgbName(0x8b, 0x6d, 0x90, 'p 94-5 u'), + RgbInt8Color.rgbName(0x8d, 0x6e, 0x95, '7661 xgc'), + RgbInt8Color.rgbName(0x8b, 0x6c, 0x9a, 'p 94-5 c'), + RgbInt8Color.rgbName(0x8d, 0x73, 0xa1, '2076 up'), + RgbInt8Color.rgbName(0x8c, 0x70, 0x9e, '2081 u'), + RgbInt8Color.rgbName(0x8c, 0x6e, 0x9c, '2081 up'), + RgbInt8Color.rgbName(0x94, 0x67, 0x9c, '259 u'), + RgbInt8Color.rgbName(0x91, 0x68, 0x9b, 'p 93-13 c'), + RgbInt8Color.rgbName(0x9e, 0x87, 0x19, '112 xgc'), + RgbInt8Color.rgbName(0xb2, 0x75, 0x3, '139 xgc'), + RgbInt8Color.rgbName(0xa7, 0x6d, 0x11, '146 c'), + RgbInt8Color.rgbName(0xb9, 0x70, 0x0, '2014 c'), + RgbInt8Color.rgbName(0x99, 0x78, 0x26, '7558 cp'), + RgbInt8Color.rgbName(0x9b, 0x70, 0x2c, '8960 c'), + RgbInt8Color.rgbName(0x9c, 0x70, 0x2c, 'p 19-7 c'), + RgbInt8Color.rgbName(0x92, 0x6d, 0x39, '10357 c'), + RgbInt8Color.rgbName(0x8e, 0x71, 0x43, '10350 c'), + RgbInt8Color.rgbName(0x94, 0x6e, 0x43, '1395 u'), + RgbInt8Color.rgbName(0x94, 0x6b, 0x3a, '8580 c'), + RgbInt8Color.rgbName(0x95, 0x6d, 0x3e, 'p 26-14 c'), + RgbInt8Color.rgbName(0x8f, 0x70, 0x4b, '10361 c'), + RgbInt8Color.rgbName(0x8b, 0x6f, 0x4e, '874 c'), + RgbInt8Color.rgbName(0x8b, 0x6b, 0x55, '168 up'), + RgbInt8Color.rgbName(0x8d, 0x6e, 0x57, '2319 u'), + RgbInt8Color.rgbName(0x88, 0x71, 0x57, '8006 c'), + RgbInt8Color.rgbName(0x8f, 0x69, 0x51, 'p 29-13 u'), + RgbInt8Color.rgbName(0x8e, 0x6e, 0x5c, '478 u'), + RgbInt8Color.rgbName(0x8d, 0x71, 0x58, '732 up'), + RgbInt8Color.rgbName(0x90, 0x70, 0x5c, '7567 u'), + RgbInt8Color.rgbName(0x89, 0x6e, 0x61, '7588 u'), + RgbInt8Color.rgbName(0x84, 0x72, 0x5e, 'p 23-12 u'), + RgbInt8Color.rgbName(0x8b, 0x6f, 0x66, '4705 u'), + RgbInt8Color.rgbName(0x92, 0x6e, 0x65, '499 up'), + RgbInt8Color.rgbName(0x88, 0x75, 0x66, '7505 u'), + RgbInt8Color.rgbName(0x8e, 0x70, 0x61, '7588 up'), + RgbInt8Color.rgbName(0x8d, 0x6e, 0x61, '7602 u'), + RgbInt8Color.rgbName(0x8e, 0x70, 0x63, '7602 up'), + RgbInt8Color.rgbName(0x8c, 0x73, 0x64, 'p 33-10 u'), + RgbInt8Color.rgbName(0x86, 0x74, 0x74, '7616 u'), + RgbInt8Color.rgbName(0x90, 0x6e, 0x6a, 'p 51-9 u'), + RgbInt8Color.rgbName(0x8e, 0x71, 0x7e, '2055 up'), + RgbInt8Color.rgbName(0x87, 0x72, 0x7b, '5195 up'), + RgbInt8Color.rgbName(0x8c, 0x72, 0x87, '5135 u'), + RgbInt8Color.rgbName(0x92, 0x6b, 0x83, 'p 85-5 u'), + RgbInt8Color.rgbName(0x8b, 0x74, 0x84, 'p 87-7 u'), + RgbInt8Color.rgbName(0x8e, 0x6f, 0x87, 'p 90-5 u'), + RgbInt8Color.rgbName(0x93, 0x6f, 0x90, 'p 90-5 c'), + RgbInt8Color.rgbName(0x8b, 0x73, 0x8d, 'p 92-13 u'), + RgbInt8Color.rgbName(0x8e, 0x6f, 0x91, 'p 92-3 u'), + RgbInt8Color.rgbName(0x95, 0x6d, 0x95, '10203 c'), + RgbInt8Color.rgbName(0x90, 0x72, 0x9b, '7661 cp'), + RgbInt8Color.rgbName(0x92, 0x6d, 0x93, '8101 c'), + RgbInt8Color.rgbName(0x93, 0x6c, 0x96, 'p 92-3 c'), + RgbInt8Color.rgbName(0x96, 0x71, 0xa0, '2593 up'), + RgbInt8Color.rgbName(0x94, 0x73, 0xab, '2074 cp'), + RgbInt8Color.rgbName(0x95, 0x6f, 0xa7, '2083 cp'), + RgbInt8Color.rgbName(0x8e, 0x77, 0xa8, '266 up'), + RgbInt8Color.rgbName(0x9f, 0x8e, 0x19, 'p 6-8 c'), + RgbInt8Color.rgbName(0x9f, 0x7d, 0x23, '7557 c'), + RgbInt8Color.rgbName(0x8e, 0x77, 0x42, '126 u'), + RgbInt8Color.rgbName(0x97, 0x7a, 0x3c, '132 u'), + RgbInt8Color.rgbName(0x8c, 0x7a, 0x4f, '10343 c'), + RgbInt8Color.rgbName(0x97, 0x78, 0x47, 'p 11-16 u'), + RgbInt8Color.rgbName(0x92, 0x7a, 0x4b, 'p 12-14 u'), + RgbInt8Color.rgbName(0x94, 0x7a, 0x49, 'p 12-7 u'), + RgbInt8Color.rgbName(0x8b, 0x7c, 0x5e, '2326 c'), + RgbInt8Color.rgbName(0x8c, 0x7e, 0x5b, '2326 cp'), + RgbInt8Color.rgbName(0x8b, 0x75, 0x5f, '7505 up'), + RgbInt8Color.rgbName(0x8b, 0x7c, 0x5a, '7560 up'), + RgbInt8Color.rgbName(0x89, 0x7a, 0x69, '8004 c'), + RgbInt8Color.rgbName(0x8b, 0x7a, 0x62, 'p 13-10 u'), + RgbInt8Color.rgbName(0x8e, 0x79, 0x62, 'p 23-11 u'), + RgbInt8Color.rgbName(0x92, 0x79, 0x6d, '4705 up'), + RgbInt8Color.rgbName(0x92, 0x76, 0x6e, 'p 44-7 u'), + RgbInt8Color.rgbName(0x8b, 0x7f, 0x79, '7531 u'), + RgbInt8Color.rgbName(0x8e, 0x7b, 0x77, 'p 171-7 c'), + RgbInt8Color.rgbName(0x86, 0x7f, 0x7c, 'warm gray 9 u'), + RgbInt8Color.rgbName(0x8c, 0x78, 0x85, '10192 c'), + RgbInt8Color.rgbName(0x8d, 0x7f, 0x83, '437 u'), + RgbInt8Color.rgbName(0x88, 0x7e, 0x7f, '437 up'), + RgbInt8Color.rgbName(0x90, 0x79, 0x80, '5205 up'), + RgbInt8Color.rgbName(0x87, 0x7c, 0x86, '8461 c'), + RgbInt8Color.rgbName(0x92, 0x77, 0x8b, '5135 up'), + RgbInt8Color.rgbName(0x90, 0x7b, 0x8a, '5205 u'), + RgbInt8Color.rgbName(0x87, 0x87, 0x8a, 'p 173-6 c'), + RgbInt8Color.rgbName(0x92, 0x7b, 0x8a, 'p 87-6 u'), + RgbInt8Color.rgbName(0x92, 0x77, 0x8d, 'p 90-12 u'), + RgbInt8Color.rgbName(0x8d, 0x7a, 0x92, 'p 95-12 u'), + RgbInt8Color.rgbName(0x8a, 0x7a, 0x93, 'p 98-10 u'), + RgbInt8Color.rgbName(0x93, 0x7e, 0x96, '8100 c'), + RgbInt8Color.rgbName(0x8d, 0x7d, 0x96, '8121 c'), + RgbInt8Color.rgbName(0x88, 0x7e, 0x97, 'p 101-11 u'), + RgbInt8Color.rgbName(0x8e, 0x77, 0x99, 'p 95-12 c'), + RgbInt8Color.rgbName(0x91, 0x7d, 0x98, 'p 95-4 u'), + RgbInt8Color.rgbName(0x8f, 0x7b, 0x9d, 'p 97-3 u'), + RgbInt8Color.rgbName(0x8b, 0x7c, 0xa4, '10222 c'), + RgbInt8Color.rgbName(0x93, 0x7b, 0x9f, 'p 95-4 c'), + RgbInt8Color.rgbName(0x8b, 0x7c, 0xa2, 'p 97-11 c'), + RgbInt8Color.rgbName(0x8a, 0x80, 0x9f, 'p 98-10 c'), + RgbInt8Color.rgbName(0x90, 0x7d, 0xa6, '10214 c'), + RgbInt8Color.rgbName(0x91, 0x7a, 0xa8, '2075 up'), + RgbInt8Color.rgbName(0x8e, 0x7f, 0xae, '2094 c'), + RgbInt8Color.rgbName(0x8e, 0x7e, 0xae, '2665 up'), + RgbInt8Color.rgbName(0x89, 0x85, 0xa6, 'p 101-11 c'), + RgbInt8Color.rgbName(0x94, 0x78, 0xa8, 'p 96-12 c'), + RgbInt8Color.rgbName(0x88, 0x87, 0xaf, 'p 103-3 c'), + RgbInt8Color.rgbName(0x91, 0x8f, 0xc2, '7446 cp'), + RgbInt8Color.rgbName(0x9f, 0x8f, 0xca, '2100 c'), + RgbInt8Color.rgbName(0xb5, 0x85, 0x0, '125 c'), + RgbInt8Color.rgbName(0x98, 0x89, 0x27, 'p 6-15 c'), + RgbInt8Color.rgbName(0x99, 0x87, 0x30, '105 cp'), + RgbInt8Color.rgbName(0x90, 0x83, 0x4e, 'p 6-14 u'), + RgbInt8Color.rgbName(0x92, 0x7e, 0x4c, 'p 9-7 u'), + RgbInt8Color.rgbName(0x92, 0x84, 0x52, '112 up'), + RgbInt8Color.rgbName(0x90, 0x7d, 0x53, '1265 up'), + RgbInt8Color.rgbName(0x8d, 0x87, 0x53, '3995 up'), + RgbInt8Color.rgbName(0x8d, 0x7e, 0x56, '7552 up'), + RgbInt8Color.rgbName(0x90, 0x7e, 0x52, 'p 9-14 u'), + RgbInt8Color.rgbName(0x8b, 0x7e, 0x60, '2326 xgc'), + RgbInt8Color.rgbName(0x90, 0x84, 0x5f, '4495 u'), + RgbInt8Color.rgbName(0x8b, 0x86, 0x5d, '5825 u'), + RgbInt8Color.rgbName(0x90, 0x85, 0x5f, '7755 u'), + RgbInt8Color.rgbName(0x8a, 0x87, 0x5f, '7761 up'), + RgbInt8Color.rgbName(0x8d, 0x87, 0x65, '10336 c'), + RgbInt8Color.rgbName(0x8d, 0x87, 0x63, '5825 up'), + RgbInt8Color.rgbName(0x8e, 0x7e, 0x62, '7560 u'), + RgbInt8Color.rgbName(0x93, 0x81, 0x65, 'p 13-9 u'), + RgbInt8Color.rgbName(0x8c, 0x7d, 0x73, '10377 c'), + RgbInt8Color.rgbName(0x91, 0x85, 0x6c, '2326 up'), + RgbInt8Color.rgbName(0x8b, 0x80, 0x75, '8003 c'), + RgbInt8Color.rgbName(0x8d, 0x83, 0x74, 'p 169-10 u'), + RgbInt8Color.rgbName(0x8c, 0x85, 0x7b, '403 c'), + RgbInt8Color.rgbName(0x8c, 0x86, 0x7a, '403 xgc'), + RgbInt8Color.rgbName(0x8b, 0x80, 0x7a, '409 cp'), + RgbInt8Color.rgbName(0x8c, 0x87, 0x78, '7497 u'), + RgbInt8Color.rgbName(0x8b, 0x84, 0x7c, '8002 c'), + RgbInt8Color.rgbName(0x8f, 0x83, 0x77, 'p 170-6 u'), + RgbInt8Color.rgbName(0x8d, 0x87, 0x78, 'p 178-7 u'), + RgbInt8Color.rgbName(0x89, 0x82, 0x7c, 'warm gray 10 up'), + RgbInt8Color.rgbName(0x8c, 0x82, 0x79, 'warm gray 8 c'), + RgbInt8Color.rgbName(0x8d, 0x84, 0x7d, 'warm gray 9 up'), + RgbInt8Color.rgbName(0x89, 0x88, 0x86, '2332 up'), + RgbInt8Color.rgbName(0x8b, 0x89, 0x84, '2332 xgc'), + RgbInt8Color.rgbName(0x8b, 0x86, 0x81, '404 u'), + RgbInt8Color.rgbName(0x86, 0x87, 0x87, '8400 c'), + RgbInt8Color.rgbName(0x90, 0x84, 0x80, 'p 172-6 u'), + RgbInt8Color.rgbName(0x88, 0x86, 0x9b, '5275 up'), + RgbInt8Color.rgbName(0x90, 0x80, 0x9a, 'p 98-2 u'), + RgbInt8Color.rgbName(0x90, 0x83, 0xa1, '667 u'), + RgbInt8Color.rgbName(0x8d, 0x82, 0xa3, 'p 100-4 u'), + RgbInt8Color.rgbName(0x95, 0x83, 0xa1, 'p 97-10 u'), + RgbInt8Color.rgbName(0x8e, 0x89, 0xa8, '10227 c'), + RgbInt8Color.rgbName(0x91, 0x85, 0xae, '2094 u'), + RgbInt8Color.rgbName(0x8f, 0x86, 0xaa, 'p 102-11 u'), + RgbInt8Color.rgbName(0x93, 0x85, 0xac, 'p 97-3 c'), + RgbInt8Color.rgbName(0x93, 0x85, 0xb6, '2087 cp'), + RgbInt8Color.rgbName(0x8c, 0x89, 0xb1, 'p 100-4 c'), + RgbInt8Color.rgbName(0x90, 0x8b, 0xb7, '2094 up'), + RgbInt8Color.rgbName(0x90, 0x8a, 0xb8, '2725 up'), + RgbInt8Color.rgbName(0x8e, 0x8d, 0xb8, 'p 102-11 c'), + RgbInt8Color.rgbName(0x90, 0x93, 0xc4, '271 cp'), + RgbInt8Color.rgbName(0x9a, 0x9b, 0xd4, '271 u'), + RgbInt8Color.rgbName(0x9f, 0x98, 0xdf, '2715 u'), + RgbInt8Color.rgbName(0xa0, 0x8d, 0x26, '456 xgc'), + RgbInt8Color.rgbName(0x97, 0x8d, 0x2f, 'p 3-15 c'), + RgbInt8Color.rgbName(0x9f, 0x91, 0x2a, '619 c'), + RgbInt8Color.rgbName(0xa0, 0x86, 0x29, '7754 c'), + RgbInt8Color.rgbName(0x9b, 0x8d, 0x39, '104 u'), + RgbInt8Color.rgbName(0x9c, 0x87, 0x3b, '111 u'), + RgbInt8Color.rgbName(0x90, 0x8e, 0x4a, '399 up'), + RgbInt8Color.rgbName(0x9f, 0x89, 0x3c, '4505 cp'), + RgbInt8Color.rgbName(0x93, 0x90, 0x47, 'p 168-14 c'), + RgbInt8Color.rgbName(0x99, 0x89, 0x44, '7768 cp'), + RgbInt8Color.rgbName(0x92, 0x90, 0x49, 'p 167-16 u'), + RgbInt8Color.rgbName(0x92, 0x89, 0x4c, 'p 3-7 u'), + RgbInt8Color.rgbName(0x97, 0x87, 0x48, 'p 5-16 u'), + RgbInt8Color.rgbName(0x96, 0x8d, 0x54, '619 u'), + RgbInt8Color.rgbName(0x8b, 0x92, 0x56, '7495 up'), + RgbInt8Color.rgbName(0x8b, 0x92, 0x60, '7748 up'), + RgbInt8Color.rgbName(0x8d, 0x91, 0x5b, 'p 165-13 u'), + RgbInt8Color.rgbName(0x93, 0x91, 0x5b, 'p 168-13 u'), + RgbInt8Color.rgbName(0x8e, 0x91, 0x67, '5757 up'), + RgbInt8Color.rgbName(0x93, 0x8f, 0x66, '5835 u'), + RgbInt8Color.rgbName(0x91, 0x8b, 0x65, '5835 up'), + RgbInt8Color.rgbName(0x95, 0x8b, 0x62, '7768 u'), + RgbInt8Color.rgbName(0x8f, 0x89, 0x75, '2327 u'), + RgbInt8Color.rgbName(0x91, 0x89, 0x6f, '2327 up'), + RgbInt8Color.rgbName(0x8e, 0x87, 0x74, '7497 up'), + RgbInt8Color.rgbName(0x96, 0x8c, 0x79, '2326 u'), + RgbInt8Color.rgbName(0x8d, 0x8b, 0x80, 'p 177-5 u'), + RgbInt8Color.rgbName(0x8c, 0x89, 0x85, '2332 c'), + RgbInt8Color.rgbName(0x8f, 0x8a, 0x83, '2332 cp'), + RgbInt8Color.rgbName(0x8c, 0x8a, 0x88, '2332 u'), + RgbInt8Color.rgbName(0x90, 0x8d, 0x85, '404 up'), + RgbInt8Color.rgbName(0x8e, 0x88, 0x84, '410 up'), + RgbInt8Color.rgbName(0x8f, 0x90, 0x84, '415 xgc'), + RgbInt8Color.rgbName(0x8c, 0x8b, 0x89, '8001 c'), + RgbInt8Color.rgbName(0x90, 0x8c, 0x84, 'p 172-6 c'), + RgbInt8Color.rgbName(0x8f, 0x88, 0x84, 'warm gray 8 u'), + RgbInt8Color.rgbName(0x87, 0x8f, 0x90, '430 up'), + RgbInt8Color.rgbName(0x8e, 0x90, 0x89, '7539 c'), + RgbInt8Color.rgbName(0x90, 0x8d, 0x8d, '8420 c'), + RgbInt8Color.rgbName(0x8f, 0x8b, 0x91, '8460 c'), + RgbInt8Color.rgbName(0x8a, 0x8d, 0x8f, '877 c'), + RgbInt8Color.rgbName(0x8d, 0x8c, 0x91, 'p 174-5 u'), + RgbInt8Color.rgbName(0x8c, 0x90, 0x93, '10388 c'), + RgbInt8Color.rgbName(0x90, 0x88, 0x98, '8120 c'), + RgbInt8Color.rgbName(0x87, 0x90, 0x9a, '8180 c'), + RgbInt8Color.rgbName(0x8b, 0x90, 0x96, 'p 174-5 c'), + RgbInt8Color.rgbName(0x8d, 0x89, 0xa5, '5285 c'), + RgbInt8Color.rgbName(0x91, 0x88, 0xa2, 'p 101-3 u'), + RgbInt8Color.rgbName(0x93, 0x8f, 0xa8, 'p 103-9 u'), + RgbInt8Color.rgbName(0x94, 0x88, 0xa9, 'p 98-2 c'), + RgbInt8Color.rgbName(0x96, 0x8e, 0xab, 'p 98-9 c'), + RgbInt8Color.rgbName(0x94, 0x8c, 0xb7, '2101 up'), + RgbInt8Color.rgbName(0x8f, 0x93, 0xb8, '7674 xgc'), + RgbInt8Color.rgbName(0x8b, 0x91, 0xb6, '7675 up'), + RgbInt8Color.rgbName(0x8f, 0x92, 0xaf, 'p 105-11 u'), + RgbInt8Color.rgbName(0xab, 0x92, 0xe1, '935 c'), + RgbInt8Color.rgbName(0x99, 0x9b, 0x30, '7746 c'), + RgbInt8Color.rgbName(0x98, 0x9d, 0x32, '7746 xgc'), + RgbInt8Color.rgbName(0x9c, 0x9a, 0x34, 'p 167-15 c'), + RgbInt8Color.rgbName(0x9b, 0x98, 0x3f, 'p 168-6 c'), + RgbInt8Color.rgbName(0x9c, 0x90, 0x3f, '3985 u'), + RgbInt8Color.rgbName(0x9a, 0x99, 0x49, '398 up'), + RgbInt8Color.rgbName(0x91, 0x95, 0x53, 'p 165-13 c'), + RgbInt8Color.rgbName(0x9d, 0x92, 0x45, 'p 2-16 u'), + RgbInt8Color.rgbName(0x99, 0x95, 0x51, '582 up'), + RgbInt8Color.rgbName(0x90, 0x96, 0x61, '7747 u'), + RgbInt8Color.rgbName(0x8c, 0x9b, 0x60, '8342 c'), + RgbInt8Color.rgbName(0x92, 0x9b, 0x58, 'p 161-14 u'), + RgbInt8Color.rgbName(0x94, 0x92, 0x57, 'p 168-5 u'), + RgbInt8Color.rgbName(0x8c, 0x97, 0x6a, '10329 c'), + RgbInt8Color.rgbName(0x8d, 0x97, 0x70, '8341 c'), + RgbInt8Color.rgbName(0x8d, 0x9c, 0x68, 'p 159-5 u'), + RgbInt8Color.rgbName(0x93, 0x9a, 0x66, 'p 162-12 u'), + RgbInt8Color.rgbName(0x94, 0x98, 0x6c, '5767 u'), + RgbInt8Color.rgbName(0x8e, 0x9c, 0x6e, 'p 159-12 u'), + RgbInt8Color.rgbName(0x8f, 0x96, 0x7d, '8340 c'), + RgbInt8Color.rgbName(0x95, 0x97, 0x78, '8360 c'), + RgbInt8Color.rgbName(0x90, 0x90, 0x85, '417 up'), + RgbInt8Color.rgbName(0x8e, 0x95, 0x8a, '7538 xgc'), + RgbInt8Color.rgbName(0x90, 0x94, 0x82, 'p 177-5 c'), + RgbInt8Color.rgbName(0x91, 0x92, 0x8c, '416 u'), + RgbInt8Color.rgbName(0x96, 0x97, 0x8c, '416 up'), + RgbInt8Color.rgbName(0x92, 0x97, 0x90, '7539 cp'), + RgbInt8Color.rgbName(0x93, 0x94, 0x8c, 'p 176-3 u'), + RgbInt8Color.rgbName(0x93, 0x96, 0x94, '423 cp'), + RgbInt8Color.rgbName(0x90, 0x94, 0x96, '423 u'), + RgbInt8Color.rgbName(0x8f, 0x9a, 0x9b, '443 u'), + RgbInt8Color.rgbName(0x8c, 0x9d, 0x99, '5497 up'), + RgbInt8Color.rgbName(0x8d, 0x9d, 0x94, '5635 u'), + RgbInt8Color.rgbName(0x8f, 0x90, 0x92, 'cool gray 8 cp'), + RgbInt8Color.rgbName(0x93, 0x95, 0x98, 'cool gray 8 u'), + RgbInt8Color.rgbName(0x8e, 0x92, 0x93, 'cool gray 9 up'), + RgbInt8Color.rgbName(0x96, 0x95, 0x98, 'p 174-4 u'), + RgbInt8Color.rgbName(0x96, 0x97, 0x97, 'p 179-7 c'), + RgbInt8Color.rgbName(0x8c, 0x9a, 0xa3, '10262 c'), + RgbInt8Color.rgbName(0x87, 0x9b, 0xad, '2163 xgc'), + RgbInt8Color.rgbName(0x91, 0x99, 0x9f, '429 u'), + RgbInt8Color.rgbName(0x94, 0x94, 0xab, '5285 up'), + RgbInt8Color.rgbName(0x8d, 0x96, 0xae, 'p 108-10 u'), + RgbInt8Color.rgbName(0x8d, 0x9a, 0xb4, '2136 up'), + RgbInt8Color.rgbName(0x8c, 0x9d, 0xb8, '535 u'), + RgbInt8Color.rgbName(0x92, 0x96, 0xb8, '7674 u'), + RgbInt8Color.rgbName(0x95, 0x97, 0xb5, 'p 103-9 c'), + RgbInt8Color.rgbName(0x90, 0x99, 0xba, '2107 c'), + RgbInt8Color.rgbName(0x93, 0x9a, 0xbc, '2107 xgc'), + RgbInt8Color.rgbName(0x94, 0x93, 0xbf, '272 up'), + RgbInt8Color.rgbName(0x94, 0x95, 0xbe, '3558 up'), + RgbInt8Color.rgbName(0x94, 0x97, 0xbf, 'p 104-4 u'), + RgbInt8Color.rgbName(0x94, 0x9c, 0xc7, '3558 cp'), + RgbInt8Color.rgbName(0x92, 0x9b, 0xc5, '7674 up'), + RgbInt8Color.rgbName(0x92, 0x9b, 0xc7, 'p 104-4 c'), + RgbInt8Color.rgbName(0x9b, 0xae, 0xe4, '2122 c'), + RgbInt8Color.rgbName(0x96, 0xab, 0xd2, '2122 cp'), + RgbInt8Color.rgbName(0x9f, 0xae, 0xe5, '2716 c'), + RgbInt8Color.rgbName(0xbb, 0xa6, 0x0, '3975 c'), + RgbInt8Color.rgbName(0xb8, 0xa2, 0x0, '613 xgc'), + RgbInt8Color.rgbName(0x99, 0xa8, 0x43, 'p 161-7 c'), + RgbInt8Color.rgbName(0x9b, 0xa7, 0x47, '2305 u'), + RgbInt8Color.rgbName(0x9a, 0xa5, 0x4c, '2305 up'), + RgbInt8Color.rgbName(0x98, 0xa4, 0x51, 'p 161-14 c'), + RgbInt8Color.rgbName(0x9a, 0x9f, 0x59, 'p 165-5 c'), + RgbInt8Color.rgbName(0x92, 0xa3, 0x66, 'p 158-13 u'), + RgbInt8Color.rgbName(0x93, 0xa3, 0x68, 'p 159-5 c'), + RgbInt8Color.rgbName(0x95, 0x9f, 0x65, 'p 162-12 c'), + RgbInt8Color.rgbName(0x8c, 0xa6, 0x74, 'p 155-11 u'), + RgbInt8Color.rgbName(0x8f, 0xa4, 0x7e, 'p 150-10 u'), + RgbInt8Color.rgbName(0x8e, 0xa6, 0x7c, 'p 153-10 c'), + RgbInt8Color.rgbName(0x92, 0xa5, 0x7a, 'p 156-11 c'), + RgbInt8Color.rgbName(0x90, 0xa4, 0x7a, 'p 156-2 u'), + RgbInt8Color.rgbName(0x90, 0xa6, 0x76, 'p 156-3 c'), + RgbInt8Color.rgbName(0x8d, 0xa5, 0x83, '10304 c'), + RgbInt8Color.rgbName(0x8d, 0xa4, 0x8f, '2406 up'), + RgbInt8Color.rgbName(0x96, 0xa0, 0x94, '10310 c'), + RgbInt8Color.rgbName(0x90, 0xa2, 0x96, '5635 up'), + RgbInt8Color.rgbName(0x93, 0x9d, 0x9e, '429 up'), + RgbInt8Color.rgbName(0x91, 0x9d, 0x9d, '443 c'), + RgbInt8Color.rgbName(0x91, 0x9c, 0xac, '10250 c'), + RgbInt8Color.rgbName(0x8d, 0xa5, 0xad, '2177 up'), + RgbInt8Color.rgbName(0x8f, 0x9f, 0xae, '535 up'), + RgbInt8Color.rgbName(0x8f, 0xa1, 0xb2, '2163 u'), + RgbInt8Color.rgbName(0x93, 0x9f, 0xb7, 'p 108-2 u'), + RgbInt8Color.rgbName(0x98, 0xa1, 0xbe, '2107 u'), + RgbInt8Color.rgbName(0x8e, 0xa7, 0xc2, '2156 xgc'), + RgbInt8Color.rgbName(0x90, 0xa2, 0xbf, '535 cp'), + RgbInt8Color.rgbName(0x8f, 0x9f, 0xbc, '535 xgc'), + RgbInt8Color.rgbName(0x8f, 0xa7, 0xc0, 'p 110-11 u'), + RgbInt8Color.rgbName(0x8e, 0xa6, 0xba, 'p 114-10 u'), + RgbInt8Color.rgbName(0x95, 0xa0, 0xc7, '2114 up'), + RgbInt8Color.rgbName(0x93, 0xa2, 0xc9, 'p 106-4 u'), + RgbInt8Color.rgbName(0x93, 0xa5, 0xcf, '2134 c'), + RgbInt8Color.rgbName(0x98, 0xb6, 0xe4, '2128 c'), + RgbInt8Color.rgbName(0x99, 0xbd, 0xdd, '278 up'), + RgbInt8Color.rgbName(0xba, 0xa9, 0x5, '3975 cp'), + RgbInt8Color.rgbName(0xb8, 0xa9, 0x0, 'p 2-16 c'), + RgbInt8Color.rgbName(0x9b, 0xaa, 0x53, '10324 c'), + RgbInt8Color.rgbName(0xa0, 0xab, 0x4d, '2304 c'), + RgbInt8Color.rgbName(0x9c, 0xad, 0x4d, '390 up'), + RgbInt8Color.rgbName(0x99, 0xae, 0x50, 'p 158-6 c'), + RgbInt8Color.rgbName(0x9f, 0xab, 0x53, '2304 cp'), + RgbInt8Color.rgbName(0xa0, 0xac, 0x4e, '2304 xgc'), + RgbInt8Color.rgbName(0x9e, 0xa8, 0x64, '2304 u'), + RgbInt8Color.rgbName(0x91, 0xae, 0x6b, 'p 155-4 c'), + RgbInt8Color.rgbName(0x97, 0xab, 0x65, 'p 158-5 u'), + RgbInt8Color.rgbName(0x93, 0xac, 0x76, 'p 155-11 c'), + RgbInt8Color.rgbName(0x8f, 0xa9, 0x7e, 'p 153-4 c'), + RgbInt8Color.rgbName(0x93, 0xae, 0x78, 'p 155-3 u'), + RgbInt8Color.rgbName(0x90, 0xab, 0x85, 'p 147-10 c'), + RgbInt8Color.rgbName(0x92, 0xa7, 0x81, 'p 153-9 u'), + RgbInt8Color.rgbName(0x97, 0xa8, 0x82, 'p 156-10 u'), + RgbInt8Color.rgbName(0x8f, 0xad, 0x8e, '2262 u'), + RgbInt8Color.rgbName(0x90, 0xac, 0x92, 'p 138-10 u'), + RgbInt8Color.rgbName(0x91, 0xaf, 0x8d, 'p 144-9 c'), + RgbInt8Color.rgbName(0x93, 0xab, 0x8b, 'p 147-9 u'), + RgbInt8Color.rgbName(0x91, 0xa9, 0x9a, '5565 up'), + RgbInt8Color.rgbName(0x94, 0xa5, 0x96, '5635 c'), + RgbInt8Color.rgbName(0x97, 0xa7, 0x98, '5635 cp'), + RgbInt8Color.rgbName(0x93, 0xa6, 0x96, '5635 xgc'), + RgbInt8Color.rgbName(0x8e, 0xae, 0x9a, 'p 138-10 c'), + RgbInt8Color.rgbName(0x92, 0xaf, 0xa1, '5575 xgc'), + RgbInt8Color.rgbName(0x90, 0xae, 0xa2, 'p 135-10 c'), + RgbInt8Color.rgbName(0x96, 0xa9, 0xa7, '5507 u'), + RgbInt8Color.rgbName(0x91, 0xa4, 0xb0, '2163 up'), + RgbInt8Color.rgbName(0x91, 0xb1, 0xb3, 'p 123-10 u'), + RgbInt8Color.rgbName(0x91, 0xa9, 0xc4, '2156 u'), + RgbInt8Color.rgbName(0x93, 0xa7, 0xc0, 'p 111-10 c'), + RgbInt8Color.rgbName(0x92, 0xad, 0xc3, 'p 114-2 u'), + RgbInt8Color.rgbName(0x94, 0xa9, 0xcb, '7681 c'), + RgbInt8Color.rgbName(0x91, 0xb1, 0xc9, 'p 114-2 c'), + RgbInt8Color.rgbName(0x96, 0xa9, 0xd0, '2134 cp'), + RgbInt8Color.rgbName(0x95, 0xaa, 0xcf, '2134 xgc'), + RgbInt8Color.rgbName(0x98, 0xc3, 0xe5, '283 cp'), + RgbInt8Color.rgbName(0x9b, 0xc7, 0xee, '283 u'), + RgbInt8Color.rgbName(0x9e, 0xbf, 0xe1, '283 xgc'), + RgbInt8Color.rgbName(0x99, 0xc7, 0xe5, '291 xgc'), + RgbInt8Color.rgbName(0x97, 0xc1, 0xdf, '544 u'), + RgbInt8Color.rgbName(0x99, 0xc0, 0xdd, 'p 112-11 c'), + RgbInt8Color.rgbName(0x9e, 0xb3, 0x56, '2303 c'), + RgbInt8Color.rgbName(0xa0, 0xb3, 0x57, '2303 xgc'), + RgbInt8Color.rgbName(0x9e, 0xb1, 0x64, '2303 cp'), + RgbInt8Color.rgbName(0x95, 0xb3, 0x7a, 'p 152-5 c'), + RgbInt8Color.rgbName(0x9b, 0xb5, 0x78, 'p 155-3 c'), + RgbInt8Color.rgbName(0x92, 0xaf, 0x87, 'p 147-2 c'), + RgbInt8Color.rgbName(0x95, 0xb2, 0x81, 'p 149-11 c'), + RgbInt8Color.rgbName(0x97, 0xb2, 0x82, 'p 152-12 c'), + RgbInt8Color.rgbName(0x94, 0xb4, 0x93, '2261 up'), + RgbInt8Color.rgbName(0x93, 0xb9, 0x90, 'p 140-3 u'), + RgbInt8Color.rgbName(0x94, 0xb2, 0x91, 'p 141-2 c'), + RgbInt8Color.rgbName(0x97, 0xb4, 0x91, 'p 141-2 u'), + RgbInt8Color.rgbName(0x95, 0xb7, 0x89, 'p 143-2 u'), + RgbInt8Color.rgbName(0x9c, 0xb4, 0x8c, 'p 150-2 c'), + RgbInt8Color.rgbName(0x97, 0xb4, 0x98, 'p 138-2 u'), + RgbInt8Color.rgbName(0x9a, 0xb3, 0x94, 'p 141-11 c'), + RgbInt8Color.rgbName(0x99, 0xb4, 0x96, 'p 141-11 u'), + RgbInt8Color.rgbName(0x93, 0xb5, 0xa6, 'p 131-9 u'), + RgbInt8Color.rgbName(0x90, 0xb3, 0xa6, 'p 132-1 c'), + RgbInt8Color.rgbName(0x98, 0xb6, 0x9e, 'p 135-2 u'), + RgbInt8Color.rgbName(0x95, 0xb6, 0xa2, 'p 138-2 c'), + RgbInt8Color.rgbName(0x98, 0xb0, 0xaa, '5507 xgc'), + RgbInt8Color.rgbName(0x96, 0xb5, 0xab, '623 u'), + RgbInt8Color.rgbName(0x96, 0xb7, 0xa8, 'p 128-10 u'), + RgbInt8Color.rgbName(0x93, 0xb5, 0xab, 'p 129-11 c'), + RgbInt8Color.rgbName(0x94, 0xb7, 0xbb, '5503 c'), + RgbInt8Color.rgbName(0x94, 0xb7, 0xbc, '5503 u'), + RgbInt8Color.rgbName(0x92, 0xb8, 0xbc, '5503 xgc'), + RgbInt8Color.rgbName(0x94, 0xb6, 0xc5, '7695 cp'), + RgbInt8Color.rgbName(0x95, 0xb2, 0xce, 'p 110-3 c'), + RgbInt8Color.rgbName(0x95, 0xaf, 0xc9, 'p 110-3 u'), + RgbInt8Color.rgbName(0x96, 0xb4, 0xcd, 'p 113-10 u'), + RgbInt8Color.rgbName(0x8f, 0xb8, 0xce, 'p 117-3 c'), + RgbInt8Color.rgbName(0x94, 0xbb, 0xc7, 'p 119-10 u'), + RgbInt8Color.rgbName(0x96, 0xb4, 0xd8, '2121 up'), + RgbInt8Color.rgbName(0x97, 0xb6, 0xda, 'p 109-4 u'), + RgbInt8Color.rgbName(0x94, 0xba, 0xd9, 'p 112-11 u'), + RgbInt8Color.rgbName(0x99, 0xcd, 0xe4, '2905 up'), + RgbInt8Color.rgbName(0x9b, 0xcb, 0xeb, '291 c'), + RgbInt8Color.rgbName(0x9e, 0xd1, 0xdc, '635 up'), + RgbInt8Color.rgbName(0xa0, 0xc9, 0xde, 'p 116-2 u'), + RgbInt8Color.rgbName(0x9f, 0xd1, 0xe0, 'p 118-3 u'), + RgbInt8Color.rgbName(0xb7, 0xbe, 0x16, '583 cp'), + RgbInt8Color.rgbName(0xba, 0xbc, 0x16, '7744 c'), + RgbInt8Color.rgbName(0x99, 0xb9, 0x7c, 'p 154-11 u'), + RgbInt8Color.rgbName(0x99, 0xbe, 0x8a, '2261 cp'), + RgbInt8Color.rgbName(0x9a, 0xbf, 0x8a, 'p 145-11 c'), + RgbInt8Color.rgbName(0x99, 0xb6, 0x84, 'p 146-10 c'), + RgbInt8Color.rgbName(0x9f, 0xbe, 0x85, 'p 151-12 c'), + RgbInt8Color.rgbName(0x97, 0xb8, 0x8f, '2261 u'), + RgbInt8Color.rgbName(0x9b, 0xbe, 0x90, '2261 xgc'), + RgbInt8Color.rgbName(0x9b, 0xbb, 0x8b, 'p 146-1 u'), + RgbInt8Color.rgbName(0x9b, 0xbe, 0x8a, 'p 148-10 u'), + RgbInt8Color.rgbName(0x9f, 0xbc, 0x8c, 'p 149-2 c'), + RgbInt8Color.rgbName(0x95, 0xb9, 0x9a, 'p 137-11 c'), + RgbInt8Color.rgbName(0x93, 0xbb, 0x9b, 'p 137-3 u'), + RgbInt8Color.rgbName(0x98, 0xbc, 0x9b, 'p 140-10 c'), + RgbInt8Color.rgbName(0x9a, 0xbb, 0xa2, 'p 134-2 u'), + RgbInt8Color.rgbName(0x9a, 0xbd, 0xaa, '557 up'), + RgbInt8Color.rgbName(0x9a, 0xbe, 0xaa, '558 c'), + RgbInt8Color.rgbName(0x97, 0xbd, 0xad, '623 xgc'), + RgbInt8Color.rgbName(0x96, 0xc0, 0xb6, '2455 cp'), + RgbInt8Color.rgbName(0x96, 0xbd, 0xb3, 'p 125-3 u'), + RgbInt8Color.rgbName(0x96, 0xbc, 0xb4, 'p 128-10 c'), + RgbInt8Color.rgbName(0x92, 0xbd, 0xc1, '5503 cp'), + RgbInt8Color.rgbName(0x98, 0xbf, 0xc2, 'p 122-11 c'), + RgbInt8Color.rgbName(0x99, 0xbd, 0xbd, 'p 122-11 u'), + RgbInt8Color.rgbName(0x98, 0xbf, 0xbe, 'p 125-10 c'), + RgbInt8Color.rgbName(0x93, 0xba, 0xcd, '550 xgc'), + RgbInt8Color.rgbName(0x97, 0xbd, 0xc4, 'p 123-3 c'), + RgbInt8Color.rgbName(0x99, 0xbe, 0xd3, '544 up'), + RgbInt8Color.rgbName(0x96, 0xc0, 0xce, '551 u'), + RgbInt8Color.rgbName(0x97, 0xbf, 0xd4, 'p 116-10 u'), + RgbInt8Color.rgbName(0x9a, 0xbf, 0xd9, 'p 113-2 c'), + RgbInt8Color.rgbName(0x99, 0xc4, 0x9a, '2255 up'), + RgbInt8Color.rgbName(0x97, 0xca, 0xa4, '344 up'), + RgbInt8Color.rgbName(0x9c, 0xc9, 0xa0, '351 up'), + RgbInt8Color.rgbName(0x99, 0xc8, 0x9c, '352 up'), + RgbInt8Color.rgbName(0x9d, 0xc4, 0x9b, 'p 139-11 u'), + RgbInt8Color.rgbName(0xa0, 0xcb, 0x97, 'p 142-3 u'), + RgbInt8Color.rgbName(0x9b, 0xc7, 0xa5, '2412 cp'), + RgbInt8Color.rgbName(0x9f, 0xc5, 0xa2, 'p 136-10 u'), + RgbInt8Color.rgbName(0x9c, 0xca, 0xa0, 'p 136-3 u'), + RgbInt8Color.rgbName(0x98, 0xcb, 0xaf, '3375 up'), + RgbInt8Color.rgbName(0x99, 0xca, 0xb5, '564 up'), + RgbInt8Color.rgbName(0x9c, 0xc8, 0xb8, 'p 130-10 c'), + RgbInt8Color.rgbName(0x9a, 0xcd, 0xb3, 'p 133-4 c'), + RgbInt8Color.rgbName(0x95, 0xc4, 0xc1, 'p 121-11 u'), + RgbInt8Color.rgbName(0x9b, 0xc7, 0xbe, 'p 124-11 u'), + RgbInt8Color.rgbName(0x99, 0xc7, 0xbb, 'p 127-11 c'), + RgbInt8Color.rgbName(0x97, 0xca, 0xca, '2225 cp'), + RgbInt8Color.rgbName(0x96, 0xc7, 0xcc, 'p 121-11 c'), + RgbInt8Color.rgbName(0x9c, 0xd3, 0xe4, '2975 xgc'), + RgbInt8Color.rgbName(0xb7, 0xd7, 0x34, '2297 xgc'), + RgbInt8Color.rgbName(0xba, 0xd7, 0x39, '381 u'), + RgbInt8Color.rgbName(0xa0, 0xcf, 0xa8, '345 cp'), + RgbInt8Color.rgbName(0x98, 0xcd, 0xc4, '7471 up'), + RgbInt8Color.rgbName(0x9f, 0xd2, 0xcb, '3242 cp'), + RgbInt8Color.rgbName(0xa0, 0xd1, 0xca, '7464 c'), + RgbInt8Color.rgbName(0x9c, 0xd0, 0xc7, '7464 xgc'), + RgbInt8Color.rgbName(0x9b, 0xcf, 0xca, 'p 124-4 c'), + RgbInt8Color.rgbName(0x99, 0xce, 0xd5, '304 up'), + RgbInt8Color.rgbName(0x9a, 0xd0, 0xd5, 'p 121-4 c'), + RgbInt8Color.rgbName(0x9b, 0xd4, 0xdd, '304 xgc'), + RgbInt8Color.rgbName(0x9b, 0xd3, 0xdd, '629 c'), + RgbInt8Color.rgbName(0x9d, 0xd5, 0xe1, '635 xgc'), + RgbInt8Color.rgbName(0xb7, 0xdb, 0x57, '2298 c'), + RgbInt8Color.rgbName(0x9c, 0xd5, 0xc3, '565 xgc'), + RgbInt8Color.rgbName(0x9f, 0xdc, 0xcb, '331 xgc'), + RgbInt8Color.rgbName(0xbb, 0xb3, 0x23, '7765 c'), + RgbInt8Color.rgbName(0xb8, 0xae, 0x22, '7766 cp'), + RgbInt8Color.rgbName(0xb5, 0xab, 0x22, '7766 xgc'), + RgbInt8Color.rgbName(0xb9, 0xe9, 0x72, '373 u'), + RgbInt8Color.rgbName(0xb7, 0xdd, 0x79, '366 c'), + RgbInt8Color.rgbName(0xa0, 0xcd, 0xb3, 'p 130-3 u'), + RgbInt8Color.rgbName(0x9d, 0xcd, 0xbc, '571 up'), + RgbInt8Color.rgbName(0x9a, 0xcb, 0xb9, 'p 127-3 u'), + RgbInt8Color.rgbName(0xce, 0xdc, 0x0, '381 c'), + RgbInt8Color.rgbName(0xd0, 0xdf, 0x0, '389 c'), + RgbInt8Color.rgbName(0xcd, 0xda, 0x0, '389 xgc'), + RgbInt8Color.rgbName(0xbe, 0xb4, 0x27, '7765 xgc'), + RgbInt8Color.rgbName(0xba, 0xb7, 0x43, 'p 166-16 u'), + RgbInt8Color.rgbName(0xb7, 0xcb, 0x50, 'p 160-7 u'), + RgbInt8Color.rgbName(0xb7, 0xe3, 0x94, '7486 u'), + RgbInt8Color.rgbName(0xb9, 0xef, 0xa3, '916 c'), + RgbInt8Color.rgbName(0xa4, 0xdc, 0xad, '2254 xgc'), + RgbInt8Color.rgbName(0xbd, 0xed, 0xef, '9480 u'), + RgbInt8Color.rgbName(0xb6, 0xea, 0xec, '9481 u'), + RgbInt8Color.rgbName(0xa7, 0xd4, 0xee, '290 u'), + RgbInt8Color.rgbName(0xbc, 0xc0, 0x4b, 'p 163-15 c'), + RgbInt8Color.rgbName(0xba, 0xcb, 0x58, '381 up'), + RgbInt8Color.rgbName(0xbc, 0xda, 0x6a, '374 xgc'), + RgbInt8Color.rgbName(0xbb, 0xcc, 0x5e, '389 up'), + RgbInt8Color.rgbName(0xb3, 0xcc, 0x6a, 'p 157-6 c'), + RgbInt8Color.rgbName(0xb3, 0xd5, 0x7d, '2284 c'), + RgbInt8Color.rgbName(0xb3, 0xce, 0x78, '374 up'), + RgbInt8Color.rgbName(0xb7, 0xdc, 0x86, '365 xgc'), + RgbInt8Color.rgbName(0xa1, 0xc7, 0x89, 'p 151-5 c'), + RgbInt8Color.rgbName(0xa2, 0xca, 0x8f, 'p 145-3 u'), + RgbInt8Color.rgbName(0xbd, 0xf4, 0xaa, '916 u'), + RgbInt8Color.rgbName(0xae, 0xe4, 0xb5, '2254 u'), + RgbInt8Color.rgbName(0xa7, 0xe6, 0xd7, '331 c'), + RgbInt8Color.rgbName(0xa5, 0xdf, 0xd3, '572 c'), + RgbInt8Color.rgbName(0xaf, 0x23, 0x1c, '2350 c'), + RgbInt8Color.rgbName(0xc0, 0xd, 0x1e, '3546 c'), + RgbInt8Color.rgbName(0xac, 0x1b, 0x2c, '7621 xgc'), + RgbInt8Color.rgbName(0xaa, 0x1e, 0x36, 'p 60-16 c'), + RgbInt8Color.rgbName(0xbc, 0x0, 0x3a, '200 xgc'), + RgbInt8Color.rgbName(0xa1, 0x1c, 0x52, 'p 72-8 c'), + RgbInt8Color.rgbName(0xa3, 0x1b, 0x5b, 'p 74-8 c'), + RgbInt8Color.rgbName(0xa4, 0x1a, 0x67, '234 cp'), + RgbInt8Color.rgbName(0xac, 0x14, 0x5a, '215 c'), + RgbInt8Color.rgbName(0xaf, 0x1c, 0x63, '227 cp'), + RgbInt8Color.rgbName(0xaf, 0x17, 0x67, 'p 76-8 c'), + RgbInt8Color.rgbName(0xbf, 0x0, 0x78, '233 xgc'), + RgbInt8Color.rgbName(0xa2, 0x24, 0x6b, 'p 81-7 c'), + RgbInt8Color.rgbName(0xa5, 0x27, 0x7a, '2063 cp'), + RgbInt8Color.rgbName(0xc6, 0x0, 0x7e, '233 c'), + RgbInt8Color.rgbName(0xa9, 0x25, 0x81, '2405 cp'), + RgbInt8Color.rgbName(0xa9, 0x27, 0x7e, '241 xgc'), + RgbInt8Color.rgbName(0xc8, 0x2e, 0x84, '3527 cp'), + RgbInt8Color.rgbName(0xc6, 0x38, 0x84, 'p 80-7 c'), + RgbInt8Color.rgbName(0xd5, 0x39, 0xb5, '2385 c'), + RgbInt8Color.rgbName(0xdb, 0x3e, 0xb1, '239 c'), + RgbInt8Color.rgbName(0xd6, 0x25, 0x98, 'pink c'), + RgbInt8Color.rgbName(0xa1, 0x23, 0x36, 'p 53-16 c'), + RgbInt8Color.rgbName(0x9b, 0x27, 0x43, '194 c'), + RgbInt8Color.rgbName(0xa1, 0x22, 0x4e, '2041 c'), + RgbInt8Color.rgbName(0xa1, 0x20, 0x4f, '2041 xgc'), + RgbInt8Color.rgbName(0xa1, 0x27, 0x46, '7420 cp'), + RgbInt8Color.rgbName(0xaa, 0x21, 0x57, '215 cp'), + RgbInt8Color.rgbName(0xdb, 0x55, 0xaa, '239 u'), + RgbInt8Color.rgbName(0xd5, 0x57, 0xaf, '2395 u'), + RgbInt8Color.rgbName(0xa7, 0x2b, 0x2a, '7627 c'), + RgbInt8Color.rgbName(0x9d, 0x2a, 0x37, '704 xgc'), + RgbInt8Color.rgbName(0x9d, 0x29, 0x45, '194 cp'), + RgbInt8Color.rgbName(0x9d, 0x2a, 0x46, 'p 63-15 c'), + RgbInt8Color.rgbName(0xa1, 0x2e, 0x64, '8085 c'), + RgbInt8Color.rgbName(0xa5, 0x30, 0x7c, '2063 c'), + RgbInt8Color.rgbName(0xaa, 0x32, 0x6f, '10177 c'), + RgbInt8Color.rgbName(0xa5, 0x5b, 0xa8, '2069 u'), + RgbInt8Color.rgbName(0xa1, 0x35, 0x25, 'p 49-15 c'), + RgbInt8Color.rgbName(0xa1, 0x2a, 0x3d, '201 cp'), + RgbInt8Color.rgbName(0xa0, 0x2e, 0x5a, '7434 cp'), + RgbInt8Color.rgbName(0xa9, 0x38, 0x7f, '2063 xgc'), + RgbInt8Color.rgbName(0xa4, 0x51, 0x98, 'purple xgc'), + RgbInt8Color.rgbName(0xa9, 0x43, 0x1e, '1675 c'), + RgbInt8Color.rgbName(0xa1, 0x44, 0x27, 'p 41-15 c'), + RgbInt8Color.rgbName(0xa1, 0x2c, 0x36, '7427 cp'), + RgbInt8Color.rgbName(0xa5, 0x5c, 0xa1, '2068 xgc'), + RgbInt8Color.rgbName(0xa9, 0x4b, 0x26, '1675 cp'), + RgbInt8Color.rgbName(0xa1, 0x4f, 0x20, '2021 xgc'), + RgbInt8Color.rgbName(0xa1, 0x34, 0x3f, '1807 xgc'), + RgbInt8Color.rgbName(0xa4, 0x30, 0x3c, '704 cp'), + RgbInt8Color.rgbName(0x9b, 0x3c, 0x3c, 'p 54-7 c'), + RgbInt8Color.rgbName(0x97, 0x41, 0x46, 'p 61-15 c'), + RgbInt8Color.rgbName(0xa1, 0x36, 0x45, 'p 61-7 c'), + RgbInt8Color.rgbName(0x9a, 0x40, 0x50, 'p 64-7 c'), + RgbInt8Color.rgbName(0xa5, 0x34, 0x5b, '8882 c'), + RgbInt8Color.rgbName(0xa0, 0x3a, 0x58, 'p 70-7 c'), + RgbInt8Color.rgbName(0xa0, 0x3a, 0x63, '2047 cp'), + RgbInt8Color.rgbName(0xa6, 0x31, 0x60, '7433 xgc'), + RgbInt8Color.rgbName(0xa1, 0x4f, 0x8c, '248 u'), + RgbInt8Color.rgbName(0xa1, 0x68, 0xad, '2582 xgc'), + RgbInt8Color.rgbName(0xc0, 0x69, 0xc2, '2067 c'), + RgbInt8Color.rgbName(0xb9, 0x47, 0x0, '1525 c'), + RgbInt8Color.rgbName(0xa1, 0x56, 0x1c, '160 c'), + RgbInt8Color.rgbName(0xa3, 0x54, 0x1b, '2021 cp'), + RgbInt8Color.rgbName(0x9d, 0x43, 0x2c, '7593 c'), + RgbInt8Color.rgbName(0x99, 0x42, 0x33, '174 xgc'), + RgbInt8Color.rgbName(0x9d, 0x41, 0x2f, '7593 xgc'), + RgbInt8Color.rgbName(0x97, 0x45, 0x42, '8860 c'), + RgbInt8Color.rgbName(0x94, 0x4b, 0x46, 'p 49-15 u'), + RgbInt8Color.rgbName(0x9b, 0x41, 0x52, '8881 c'), + RgbInt8Color.rgbName(0x92, 0x4b, 0x4c, 'p 58-15 u'), + RgbInt8Color.rgbName(0x91, 0x4d, 0x54, 'p 64-7 u'), + RgbInt8Color.rgbName(0x9e, 0x41, 0x53, 'p 66-7 c'), + RgbInt8Color.rgbName(0x98, 0x48, 0x56, '696 c'), + RgbInt8Color.rgbName(0x96, 0x4b, 0x57, '696 cp'), + RgbInt8Color.rgbName(0x92, 0x4d, 0x56, 'p 66-7 u'), + RgbInt8Color.rgbName(0x93, 0x4a, 0x56, 'p 70-8 u'), + RgbInt8Color.rgbName(0xa7, 0x3a, 0x64, '7433 c'), + RgbInt8Color.rgbName(0x97, 0x4a, 0x60, '7640 xgc'), + RgbInt8Color.rgbName(0xa3, 0x3b, 0x74, '8084 c'), + RgbInt8Color.rgbName(0x97, 0x4b, 0x6a, 'p 81-8 u'), + RgbInt8Color.rgbName(0x97, 0x4d, 0x84, '10200 c'), + RgbInt8Color.rgbName(0x9b, 0x4b, 0x80, 'p 84-6 c'), + RgbInt8Color.rgbName(0xa3, 0x72, 0xb5, '2583 u'), + RgbInt8Color.rgbName(0xac, 0x75, 0xbd, '3520 c'), + RgbInt8Color.rgbName(0xa8, 0x78, 0xb9, '3520 u'), + RgbInt8Color.rgbName(0xbf, 0x74, 0xc0, '2067 u'), + RgbInt8Color.rgbName(0xa6, 0x63, 0x1b, '7512 c'), + RgbInt8Color.rgbName(0xa9, 0x64, 0x1e, '7512 cp'), + RgbInt8Color.rgbName(0xa9, 0x5f, 0x1c, '8941 c'), + RgbInt8Color.rgbName(0xa1, 0x4a, 0x29, 'p 35-16 c'), + RgbInt8Color.rgbName(0x9e, 0x48, 0x3f, '2350 u'), + RgbInt8Color.rgbName(0x95, 0x4e, 0x4c, '8880 c'), + RgbInt8Color.rgbName(0x92, 0x55, 0x47, 'p 31-16 u'), + RgbInt8Color.rgbName(0xa1, 0x47, 0x45, 'p 49-8 u'), + RgbInt8Color.rgbName(0x90, 0x55, 0x4a, 'p 50-6 u'), + RgbInt8Color.rgbName(0x98, 0x49, 0x49, 'p 53-16 u'), + RgbInt8Color.rgbName(0x98, 0x4c, 0x51, 'p 61-7 u'), + RgbInt8Color.rgbName(0x97, 0x4a, 0x53, 'p 63-15 u'), + RgbInt8Color.rgbName(0x99, 0x49, 0x55, 'p 65-16 u'), + RgbInt8Color.rgbName(0x96, 0x50, 0x5b, '1955 up'), + RgbInt8Color.rgbName(0x97, 0x4d, 0x5c, '696 xgc'), + RgbInt8Color.rgbName(0x9c, 0x49, 0x5d, '7640 cp'), + RgbInt8Color.rgbName(0x94, 0x53, 0x5d, 'p 70-14 u'), + RgbInt8Color.rgbName(0x9a, 0x4b, 0x5b, 'p 70-7 u'), + RgbInt8Color.rgbName(0x97, 0x53, 0x61, '1955 u'), + RgbInt8Color.rgbName(0x90, 0x55, 0x67, '208 u'), + RgbInt8Color.rgbName(0x95, 0x56, 0x62, '208 up'), + RgbInt8Color.rgbName(0x95, 0x58, 0x64, '7637 u'), + RgbInt8Color.rgbName(0x9d, 0x4b, 0x62, 'p 74-8 u'), + RgbInt8Color.rgbName(0x93, 0x51, 0x67, 'p 77-7 u'), + RgbInt8Color.rgbName(0x9e, 0x4c, 0x6e, '221 u'), + RgbInt8Color.rgbName(0x99, 0x4e, 0x70, '235 up'), + RgbInt8Color.rgbName(0x9b, 0x4b, 0x6d, 'p 81-7 u'), + RgbInt8Color.rgbName(0x9e, 0x4c, 0x79, '2063 up'), + RgbInt8Color.rgbName(0x9d, 0x4b, 0x7b, '682 xgc'), + RgbInt8Color.rgbName(0xa2, 0x4b, 0x79, 'p 81-13 c'), + RgbInt8Color.rgbName(0x9b, 0x4e, 0x76, 'p 82-5 c'), + RgbInt8Color.rgbName(0x96, 0x57, 0x84, 'p 88-7 u'), + RgbInt8Color.rgbName(0xbe, 0x54, 0x0, '2020 c'), + RgbInt8Color.rgbName(0xbe, 0x4d, 0x0, '718 c'), + RgbInt8Color.rgbName(0xc0, 0x51, 0x0, '718 xgc'), + RgbInt8Color.rgbName(0xa6, 0x68, 0x1e, '8961 c'), + RgbInt8Color.rgbName(0x99, 0x55, 0x2b, '7516 c'), + RgbInt8Color.rgbName(0x9a, 0x54, 0x30, '7516 cp'), + RgbInt8Color.rgbName(0xa0, 0x51, 0x2a, '7586 cp'), + RgbInt8Color.rgbName(0x9e, 0x53, 0x30, '7586 c'), + RgbInt8Color.rgbName(0x9a, 0x57, 0x34, 'p 36-7 c'), + RgbInt8Color.rgbName(0x9a, 0x53, 0x39, 'p 42-6 c'), + RgbInt8Color.rgbName(0x95, 0x59, 0x40, 'p 42-14 c'), + RgbInt8Color.rgbName(0x92, 0x57, 0x41, 'p 47-14 c'), + RgbInt8Color.rgbName(0x97, 0x56, 0x43, 'p 50-14 c'), + RgbInt8Color.rgbName(0x96, 0x50, 0x4b, 'p 56-14 c'), + RgbInt8Color.rgbName(0x9e, 0x51, 0x48, '2350 up'), + RgbInt8Color.rgbName(0x8e, 0x5f, 0x4b, 'p 32-7 u'), + RgbInt8Color.rgbName(0x93, 0x53, 0x4c, 'p 41-15 u'), + RgbInt8Color.rgbName(0x99, 0x50, 0x4d, 'p 56-7 u'), + RgbInt8Color.rgbName(0x9a, 0x56, 0x51, 'p 54-6 u'), + RgbInt8Color.rgbName(0x90, 0x58, 0x5e, '202 u'), + RgbInt8Color.rgbName(0x92, 0x59, 0x5c, 'p 64-14 u'), + RgbInt8Color.rgbName(0x92, 0x58, 0x5d, 'p 66-14 u'), + RgbInt8Color.rgbName(0xa0, 0x4f, 0x65, '2041 u'), + RgbInt8Color.rgbName(0x9d, 0x4e, 0x61, '2041 up'), + RgbInt8Color.rgbName(0x93, 0x59, 0x68, '216 up'), + RgbInt8Color.rgbName(0x8e, 0x5f, 0x5f, '697 up'), + RgbInt8Color.rgbName(0x96, 0x58, 0x62, '7637 up'), + RgbInt8Color.rgbName(0x9e, 0x52, 0x63, 'p 70-13 c'), + RgbInt8Color.rgbName(0x99, 0x55, 0x60, 'p 70-13 u'), + RgbInt8Color.rgbName(0x9b, 0x56, 0x65, 'p 72-15 u'), + RgbInt8Color.rgbName(0x9b, 0x57, 0x70, '2047 up'), + RgbInt8Color.rgbName(0x97, 0x5a, 0x71, '2048 u'), + RgbInt8Color.rgbName(0x97, 0x52, 0x72, 'p 77-14 c'), + RgbInt8Color.rgbName(0x9e, 0x54, 0x7a, '228 up'), + RgbInt8Color.rgbName(0x9e, 0x53, 0x7b, '7648 u'), + RgbInt8Color.rgbName(0x9e, 0x51, 0x77, '7648 up'), + RgbInt8Color.rgbName(0x97, 0x55, 0x7e, 'p 83-15 u'), + RgbInt8Color.rgbName(0xa4, 0x50, 0x83, '10175 c'), + RgbInt8Color.rgbName(0xa0, 0x53, 0x80, '2063 u'), + RgbInt8Color.rgbName(0x9c, 0x56, 0x7f, '7649 up'), + RgbInt8Color.rgbName(0xa0, 0x4e, 0x85, '8083 c'), + RgbInt8Color.rgbName(0xa1, 0x53, 0x84, 'p 83-8 u'), + RgbInt8Color.rgbName(0x94, 0x5f, 0x85, 'p 88-14 u'), + RgbInt8Color.rgbName(0x99, 0x5c, 0x8c, '10199 c'), + RgbInt8Color.rgbName(0x92, 0x5f, 0x90, '8102 c'), + RgbInt8Color.rgbName(0x9a, 0x5a, 0x8e, 'p 88-14 c'), + RgbInt8Color.rgbName(0xa1, 0x5a, 0x95, '7655 c'), + RgbInt8Color.rgbName(0x99, 0x68, 0xa4, '2583 cp'), + RgbInt8Color.rgbName(0x9c, 0x6b, 0xa8, '7441 cp'), + RgbInt8Color.rgbName(0x97, 0x6c, 0xa4, 'p 93-5 c'), + RgbInt8Color.rgbName(0xa1, 0x8c, 0xca, '2086 xgc'), + RgbInt8Color.rgbName(0xa8, 0x88, 0xc4, '2577 xgc'), + RgbInt8Color.rgbName(0xb8, 0x89, 0xd2, '528 u'), + RgbInt8Color.rgbName(0xae, 0x59, 0xb, '8942 c'), + RgbInt8Color.rgbName(0xbd, 0x5a, 0x0, '8943 c'), + RgbInt8Color.rgbName(0xa3, 0x5a, 0x24, '1605 cp'), + RgbInt8Color.rgbName(0xa2, 0x5f, 0x23, 'p 25-16 c'), + RgbInt8Color.rgbName(0xa1, 0x57, 0x2a, '160 xgc'), + RgbInt8Color.rgbName(0xa4, 0x5a, 0x2a, '470 c'), + RgbInt8Color.rgbName(0xa4, 0x5d, 0x28, 'p 28-16 c'), + RgbInt8Color.rgbName(0xa4, 0x5b, 0x32, '1605 xgc'), + RgbInt8Color.rgbName(0x9b, 0x5d, 0x33, 'p 32-7 c'), + RgbInt8Color.rgbName(0x97, 0x62, 0x41, '1535 u'), + RgbInt8Color.rgbName(0x97, 0x5f, 0x42, 'p 39-14 c'), + RgbInt8Color.rgbName(0x9e, 0x5a, 0x3c, 'p 39-6 c'), + RgbInt8Color.rgbName(0x99, 0x5b, 0x49, 'p 31-15 u'), + RgbInt8Color.rgbName(0x97, 0x5c, 0x4c, 'p 38-15 u'), + RgbInt8Color.rgbName(0x95, 0x61, 0x4d, '1685 u'), + RgbInt8Color.rgbName(0x92, 0x5f, 0x52, '7526 u'), + RgbInt8Color.rgbName(0x96, 0x63, 0x4f, 'p 36-6 u'), + RgbInt8Color.rgbName(0x98, 0x58, 0x4e, 'p 41-14 u'), + RgbInt8Color.rgbName(0x92, 0x61, 0x5e, '491 up'), + RgbInt8Color.rgbName(0x9b, 0x5c, 0x57, '7623 u'), + RgbInt8Color.rgbName(0x9d, 0x5c, 0x5a, 'p 61-14 u'), + RgbInt8Color.rgbName(0x91, 0x61, 0x68, 'p 67-10 c'), + RgbInt8Color.rgbName(0x9a, 0x5d, 0x6d, '7641 u'), + RgbInt8Color.rgbName(0x97, 0x65, 0x6e, 'p 67-9 c'), + RgbInt8Color.rgbName(0x9c, 0x59, 0x72, 'p 74-13 c'), + RgbInt8Color.rgbName(0x9a, 0x5f, 0x6f, 'p 78-8 c'), + RgbInt8Color.rgbName(0x9f, 0x5f, 0x78, '2047 u'), + RgbInt8Color.rgbName(0x9c, 0x57, 0x75, 'p 81-13 u'), + RgbInt8Color.rgbName(0x97, 0x5b, 0x7b, 'p 82-14 c'), + RgbInt8Color.rgbName(0x96, 0x60, 0x76, 'p 82-4 u'), + RgbInt8Color.rgbName(0x9c, 0x59, 0x84, '2425 up'), + RgbInt8Color.rgbName(0xa1, 0x5c, 0x8c, 'p 84-5 c'), + RgbInt8Color.rgbName(0x97, 0x68, 0x98, '2602 up'), + RgbInt8Color.rgbName(0x9e, 0x5f, 0x98, '513 u'), + RgbInt8Color.rgbName(0x98, 0x73, 0xac, '2080 c'), + RgbInt8Color.rgbName(0x98, 0x76, 0xab, '2080 xgc'), + RgbInt8Color.rgbName(0xa2, 0x70, 0xb0, '2583 xgc'), + RgbInt8Color.rgbName(0xa1, 0x7e, 0x16, '126 xgc'), + RgbInt8Color.rgbName(0xa7, 0x7e, 0x15, 'p 11-16 c'), + RgbInt8Color.rgbName(0xa6, 0x62, 0x21, '10135 c'), + RgbInt8Color.rgbName(0xa0, 0x69, 0x28, '1395 cp'), + RgbInt8Color.rgbName(0xa6, 0x66, 0x22, 'p 21-16 c'), + RgbInt8Color.rgbName(0x9e, 0x65, 0x2e, '730 c'), + RgbInt8Color.rgbName(0xa1, 0x67, 0x2b, '7574 cp'), + RgbInt8Color.rgbName(0xa2, 0x63, 0x2a, '8940 c'), + RgbInt8Color.rgbName(0x9b, 0x69, 0x30, 'p 26-7 c'), + RgbInt8Color.rgbName(0xa2, 0x66, 0x32, '10141 c'), + RgbInt8Color.rgbName(0xa0, 0x69, 0x32, '730 cp'), + RgbInt8Color.rgbName(0x92, 0x68, 0x44, '154 u'), + RgbInt8Color.rgbName(0x93, 0x65, 0x4a, '1615 u'), + RgbInt8Color.rgbName(0x94, 0x67, 0x47, '725 u'), + RgbInt8Color.rgbName(0x97, 0x68, 0x48, '2315 up'), + RgbInt8Color.rgbName(0x96, 0x6b, 0x47, '7512 u'), + RgbInt8Color.rgbName(0x97, 0x66, 0x4b, 'p 25-15 u'), + RgbInt8Color.rgbName(0x9a, 0x63, 0x4b, 'p 28-15 u'), + RgbInt8Color.rgbName(0x9b, 0x66, 0x46, 'p 36-13 c'), + RgbInt8Color.rgbName(0x94, 0x6a, 0x55, '1685 up'), + RgbInt8Color.rgbName(0x91, 0x6a, 0x57, '4715 cp'), + RgbInt8Color.rgbName(0x93, 0x69, 0x57, '7517 u'), + RgbInt8Color.rgbName(0x92, 0x6c, 0x4e, 'p 26-6 u'), + RgbInt8Color.rgbName(0x94, 0x69, 0x50, 'p 29-6 u'), + RgbInt8Color.rgbName(0x93, 0x6b, 0x53, 'p 32-13 u'), + RgbInt8Color.rgbName(0x95, 0x6b, 0x53, 'p 36-12 u'), + RgbInt8Color.rgbName(0x95, 0x6c, 0x58, '4715 c'), + RgbInt8Color.rgbName(0x92, 0x6f, 0x5c, '478 up'), + RgbInt8Color.rgbName(0x97, 0x67, 0x57, '7526 up'), + RgbInt8Color.rgbName(0x90, 0x71, 0x59, '7567 up'), + RgbInt8Color.rgbName(0x91, 0x6b, 0x5d, '7581 u'), + RgbInt8Color.rgbName(0x92, 0x69, 0x5c, '7601 u'), + RgbInt8Color.rgbName(0x92, 0x66, 0x60, '7609 u'), + RgbInt8Color.rgbName(0x98, 0x66, 0x56, 'p 43-9 c'), + RgbInt8Color.rgbName(0x91, 0x6b, 0x61, 'p 43-9 u'), + RgbInt8Color.rgbName(0x94, 0x6a, 0x5d, 'p 44-8 c'), + RgbInt8Color.rgbName(0x98, 0x67, 0x59, 'p 47-13 u'), + RgbInt8Color.rgbName(0x98, 0x69, 0x5a, 'p 50-13 u'), + RgbInt8Color.rgbName(0x9c, 0x65, 0x59, 'p 54-13 u'), + RgbInt8Color.rgbName(0x98, 0x65, 0x6c, '696 u'), + RgbInt8Color.rgbName(0x94, 0x71, 0x65, '7581 up'), + RgbInt8Color.rgbName(0x9b, 0x67, 0x65, 'p 51-8 c'), + RgbInt8Color.rgbName(0x93, 0x6d, 0x69, 'p 51-8 u'), + RgbInt8Color.rgbName(0x95, 0x66, 0x66, 'p 51-9 c'), + RgbInt8Color.rgbName(0x9a, 0x65, 0x6c, '4995 cp'), + RgbInt8Color.rgbName(0x9c, 0x69, 0x6f, '4995 xgc'), + RgbInt8Color.rgbName(0x9a, 0x63, 0x72, '506 u'), + RgbInt8Color.rgbName(0x93, 0x6d, 0x73, '7639 c'), + RgbInt8Color.rgbName(0x9b, 0x66, 0x73, '7640 u'), + RgbInt8Color.rgbName(0x97, 0x6b, 0x70, 'p 67-7 u'), + RgbInt8Color.rgbName(0x9e, 0x65, 0x71, 'p 67-8 c'), + RgbInt8Color.rgbName(0x99, 0x62, 0x70, 'p 74-13 u'), + RgbInt8Color.rgbName(0x98, 0x6a, 0x70, 'p 78-7 u'), + RgbInt8Color.rgbName(0x92, 0x6c, 0x71, 'p 79-8 u'), + RgbInt8Color.rgbName(0x92, 0x6a, 0x74, 'p 79-9 c'), + RgbInt8Color.rgbName(0x99, 0x68, 0x76, 'p 79-8 c'), + RgbInt8Color.rgbName(0x9b, 0x66, 0x7d, 'p 82-3 u'), + RgbInt8Color.rgbName(0x99, 0x6c, 0x81, 'p 82-13 u'), + RgbInt8Color.rgbName(0x95, 0x6b, 0x89, 'p 84-13 u'), + RgbInt8Color.rgbName(0x96, 0x65, 0x87, 'p 84-5 u'), + RgbInt8Color.rgbName(0x94, 0x6e, 0x7d, 'p 86-8 c'), + RgbInt8Color.rgbName(0x9d, 0x63, 0x90, '7656 up'), + RgbInt8Color.rgbName(0x9c, 0x62, 0x8b, '8082 c'), + RgbInt8Color.rgbName(0xa0, 0x63, 0x8a, 'p 83-14 u'), + RgbInt8Color.rgbName(0xa0, 0x65, 0x8f, 'p 84-13 c'), + RgbInt8Color.rgbName(0x97, 0x69, 0x8b, 'p 85-5 c'), + RgbInt8Color.rgbName(0x9b, 0x65, 0x93, 'p 89-5 c'), + RgbInt8Color.rgbName(0x97, 0x6b, 0x8d, 'p 89-5 u'), + RgbInt8Color.rgbName(0x9f, 0x65, 0x92, 'p 88-6 u'), + RgbInt8Color.rgbName(0x99, 0x6e, 0x9f, '10210 c'), + RgbInt8Color.rgbName(0x98, 0x70, 0x9e, '527 up'), + RgbInt8Color.rgbName(0x97, 0x71, 0x9f, '7442 up'), + RgbInt8Color.rgbName(0xa4, 0x8c, 0x1a, '112 cp'), + RgbInt8Color.rgbName(0xa7, 0x86, 0x1d, '126 cp'), + RgbInt8Color.rgbName(0xa9, 0x76, 0x20, '146 cp'), + RgbInt8Color.rgbName(0xaa, 0x6b, 0x24, '7512 xgc'), + RgbInt8Color.rgbName(0xaa, 0x6d, 0x28, 'p 21-15 c'), + RgbInt8Color.rgbName(0x9d, 0x6f, 0x3c, '139 u'), + RgbInt8Color.rgbName(0x9e, 0x6a, 0x38, '7574 c'), + RgbInt8Color.rgbName(0x9e, 0x6c, 0x40, '2468 cp'), + RgbInt8Color.rgbName(0x98, 0x73, 0x45, 'p 15-16 u'), + RgbInt8Color.rgbName(0x98, 0x6e, 0x44, 'p 18-16 u'), + RgbInt8Color.rgbName(0x90, 0x73, 0x4c, 'p 19-14 u'), + RgbInt8Color.rgbName(0x9d, 0x6b, 0x47, '160 u'), + RgbInt8Color.rgbName(0x9e, 0x6d, 0x44, '4635 cp'), + RgbInt8Color.rgbName(0x94, 0x75, 0x49, 'p 16-7 u'), + RgbInt8Color.rgbName(0x93, 0x71, 0x4c, 'p 22-14 u'), + RgbInt8Color.rgbName(0x9a, 0x6f, 0x4a, 'p 22-7 u'), + RgbInt8Color.rgbName(0x9b, 0x6e, 0x49, 'p 29-13 c'), + RgbInt8Color.rgbName(0x9c, 0x6b, 0x45, 'p 32-13 c'), + RgbInt8Color.rgbName(0x96, 0x6d, 0x56, '1615 up'), + RgbInt8Color.rgbName(0x8d, 0x74, 0x56, '463 up'), + RgbInt8Color.rgbName(0x95, 0x71, 0x56, '731 u'), + RgbInt8Color.rgbName(0x9a, 0x6a, 0x4f, '7525 c'), + RgbInt8Color.rgbName(0x91, 0x71, 0x54, 'p 26-13 u'), + RgbInt8Color.rgbName(0x92, 0x71, 0x5e, '4635 u'), + RgbInt8Color.rgbName(0x94, 0x73, 0x5c, '4635 up'), + RgbInt8Color.rgbName(0x93, 0x6e, 0x5d, '4715 xgc'), + RgbInt8Color.rgbName(0x94, 0x76, 0x5b, '731 up'), + RgbInt8Color.rgbName(0x93, 0x76, 0x59, '7504 xgc'), + RgbInt8Color.rgbName(0x97, 0x6b, 0x56, '7525 xgc'), + RgbInt8Color.rgbName(0x99, 0x6e, 0x5c, '7587 u'), + RgbInt8Color.rgbName(0x98, 0x6b, 0x5b, '7594 up'), + RgbInt8Color.rgbName(0x8f, 0x76, 0x5e, 'p 23-11 c'), + RgbInt8Color.rgbName(0x94, 0x70, 0x61, 'p 33-10 c'), + RgbInt8Color.rgbName(0x98, 0x6d, 0x5b, 'p 42-13 u'), + RgbInt8Color.rgbName(0x98, 0x71, 0x61, '2469 u'), + RgbInt8Color.rgbName(0x9a, 0x6d, 0x63, 'p 43-8 u'), + RgbInt8Color.rgbName(0x90, 0x7c, 0x6b, '10372 c'), + RgbInt8Color.rgbName(0x93, 0x77, 0x69, 'p 33-9 u'), + RgbInt8Color.rgbName(0x95, 0x70, 0x73, 'p 79-7 u'), + RgbInt8Color.rgbName(0x95, 0x77, 0x79, '4985 up'), + RgbInt8Color.rgbName(0x99, 0x73, 0x78, '7639 cp'), + RgbInt8Color.rgbName(0x9f, 0x6d, 0x79, '8062 c'), + RgbInt8Color.rgbName(0x9c, 0x70, 0x75, 'p 67-6 u'), + RgbInt8Color.rgbName(0x9e, 0x6b, 0x77, 'p 78-7 c'), + RgbInt8Color.rgbName(0x95, 0x73, 0x81, '2054 cp'), + RgbInt8Color.rgbName(0x96, 0x73, 0x87, '2055 u'), + RgbInt8Color.rgbName(0x9d, 0x6d, 0x80, '682 up'), + RgbInt8Color.rgbName(0x95, 0x75, 0x83, 'p 86-7 u'), + RgbInt8Color.rgbName(0x93, 0x74, 0x88, 'p 87-7 c'), + RgbInt8Color.rgbName(0x9e, 0x70, 0x8b, '2054 c'), + RgbInt8Color.rgbName(0x9a, 0x71, 0x8f, '8081 c'), + RgbInt8Color.rgbName(0x9d, 0x6b, 0x95, '10198 c'), + RgbInt8Color.rgbName(0x9d, 0x6d, 0x92, 'p 88-13 u'), + RgbInt8Color.rgbName(0x92, 0x73, 0x9a, 'p 93-13 u'), + RgbInt8Color.rgbName(0x95, 0x75, 0xa2, '2083 up'), + RgbInt8Color.rgbName(0x9d, 0x72, 0xa2, 'p 91-13 c'), + RgbInt8Color.rgbName(0x9d, 0x72, 0x9f, 'p 91-5 u'), + RgbInt8Color.rgbName(0x99, 0x76, 0x9f, 'p 92-2 c'), + RgbInt8Color.rgbName(0x94, 0x7a, 0x9d, 'p 94-4 u'), + RgbInt8Color.rgbName(0x91, 0x7b, 0xa4, 'p 96-12 u'), + RgbInt8Color.rgbName(0x97, 0x7a, 0xa7, '2074 up'), + RgbInt8Color.rgbName(0x98, 0x7c, 0xaa, '2080 u'), + RgbInt8Color.rgbName(0x97, 0x7c, 0xab, '2587 up'), + RgbInt8Color.rgbName(0xa0, 0x6e, 0xa5, 'p 91-5 c'), + RgbInt8Color.rgbName(0xbc, 0x77, 0x0, '2014 xgc'), + RgbInt8Color.rgbName(0xa4, 0x8d, 0x1c, '456 cp'), + RgbInt8Color.rgbName(0xa2, 0x82, 0x21, '7557 cp'), + RgbInt8Color.rgbName(0x9d, 0x7c, 0x2f, '8640 c'), + RgbInt8Color.rgbName(0xa1, 0x81, 0x27, '7557 xgc'), + RgbInt8Color.rgbName(0xa9, 0x75, 0x27, 'p 18-16 c'), + RgbInt8Color.rgbName(0x99, 0x77, 0x47, '10356 c'), + RgbInt8Color.rgbName(0x9d, 0x74, 0x41, '146 u'), + RgbInt8Color.rgbName(0x9d, 0x7b, 0x42, 'p 19-14 c'), + RgbInt8Color.rgbName(0x96, 0x7b, 0x50, '10349 c'), + RgbInt8Color.rgbName(0x94, 0x7a, 0x4e, 'p 16-14 u'), + RgbInt8Color.rgbName(0x98, 0x77, 0x4b, 'p 19-6 u'), + RgbInt8Color.rgbName(0x97, 0x79, 0x52, '1395 up'), + RgbInt8Color.rgbName(0x97, 0x76, 0x53, '7504 cp'), + RgbInt8Color.rgbName(0x97, 0x7b, 0x59, '10360 c'), + RgbInt8Color.rgbName(0x9d, 0x77, 0x5a, '2469 up'), + RgbInt8Color.rgbName(0x99, 0x7d, 0x5a, '2470 cp'), + RgbInt8Color.rgbName(0x94, 0x79, 0x5d, '7504 c'), + RgbInt8Color.rgbName(0x99, 0x77, 0x5b, '7574 u'), + RgbInt8Color.rgbName(0x96, 0x7c, 0x63, 'p 23-10 c'), + RgbInt8Color.rgbName(0x94, 0x7f, 0x66, 'p 23-10 u'), + RgbInt8Color.rgbName(0x97, 0x78, 0x6a, 'p 33-8 u'), + RgbInt8Color.rgbName(0x99, 0x79, 0x70, '7525 u'), + RgbInt8Color.rgbName(0x96, 0x7c, 0x73, 'p 44-6 u'), + RgbInt8Color.rgbName(0x98, 0x78, 0x7d, '7639 xgc'), + RgbInt8Color.rgbName(0x9c, 0x78, 0x7a, 'p 79-6 u'), + RgbInt8Color.rgbName(0x90, 0x85, 0x7b, 'warm gray 8 cp'), + RgbInt8Color.rgbName(0x99, 0x7a, 0x88, '2054 up'), + RgbInt8Color.rgbName(0x9b, 0x79, 0x83, '8061 c'), + RgbInt8Color.rgbName(0x94, 0x80, 0x7e, 'p 171-6 u'), + RgbInt8Color.rgbName(0xa0, 0x78, 0x8f, '2054 xgc'), + RgbInt8Color.rgbName(0x9b, 0x77, 0x93, '5145 c'), + RgbInt8Color.rgbName(0x91, 0x87, 0x8a, 'p 173-5 u'), + RgbInt8Color.rgbName(0x98, 0x79, 0x8e, 'p 85-12 u'), + RgbInt8Color.rgbName(0x9c, 0x7a, 0x87, 'p 86-7 c'), + RgbInt8Color.rgbName(0x98, 0x7b, 0x8e, 'p 87-6 c'), + RgbInt8Color.rgbName(0x94, 0x7f, 0x9d, '7661 u'), + RgbInt8Color.rgbName(0x9b, 0x79, 0x95, 'p 85-12 c'), + RgbInt8Color.rgbName(0x9b, 0x76, 0x94, 'p 89-12 u'), + RgbInt8Color.rgbName(0x9a, 0x7c, 0x9a, 'p 90-12 c'), + RgbInt8Color.rgbName(0x99, 0x7c, 0x95, 'p 90-4 u'), + RgbInt8Color.rgbName(0x98, 0x75, 0x9b, 'p 91-13 u'), + RgbInt8Color.rgbName(0x97, 0x7a, 0x9a, 'p 92-2 u'), + RgbInt8Color.rgbName(0x99, 0x76, 0xa3, 'p 93-5 u'), + RgbInt8Color.rgbName(0x9a, 0x7d, 0xaa, '2080 up'), + RgbInt8Color.rgbName(0x96, 0x7e, 0xa8, 'p 94-4 c'), + RgbInt8Color.rgbName(0x9a, 0x7c, 0xaf, 'p 96-4 c'), + RgbInt8Color.rgbName(0x9b, 0x7d, 0xb1, '2080 cp'), + RgbInt8Color.rgbName(0xa2, 0x90, 0xcd, '2086 u'), + RgbInt8Color.rgbName(0xa5, 0x96, 0xce, '2100 u'), + RgbInt8Color.rgbName(0xba, 0x86, 0x0, '7551 xgc'), + RgbInt8Color.rgbName(0xa8, 0x85, 0x22, 'p 12-7 c'), + RgbInt8Color.rgbName(0xa8, 0x86, 0x22, '8641 c'), + RgbInt8Color.rgbName(0xa3, 0x89, 0x2a, 'p 9-7 c'), + RgbInt8Color.rgbName(0x9e, 0x81, 0x39, '118 u'), + RgbInt8Color.rgbName(0x99, 0x85, 0x42, '4505 c'), + RgbInt8Color.rgbName(0xa1, 0x88, 0x38, '7754 cp'), + RgbInt8Color.rgbName(0xa1, 0x89, 0x2e, '7754 xgc'), + RgbInt8Color.rgbName(0xa4, 0x85, 0x30, 'p 12-14 c'), + RgbInt8Color.rgbName(0xa5, 0x81, 0x33, 'p 16-7 c'), + RgbInt8Color.rgbName(0xa6, 0x81, 0x3d, '125 u'), + RgbInt8Color.rgbName(0xa0, 0x82, 0x46, '1255 u'), + RgbInt8Color.rgbName(0x99, 0x82, 0x52, '126 up'), + RgbInt8Color.rgbName(0x9b, 0x88, 0x48, '4505 xgc'), + RgbInt8Color.rgbName(0x9e, 0x7f, 0x49, 'p 11-15 u'), + RgbInt8Color.rgbName(0x97, 0x88, 0x4b, 'p 6-7 u'), + RgbInt8Color.rgbName(0x9e, 0x85, 0x4a, 'p 8-16 u'), + RgbInt8Color.rgbName(0x93, 0x84, 0x5e, '10342 c'), + RgbInt8Color.rgbName(0x9b, 0x81, 0x57, '7559 up'), + RgbInt8Color.rgbName(0x9d, 0x85, 0x53, 'p 12-13 u'), + RgbInt8Color.rgbName(0xa0, 0x82, 0x4f, 'p 16-6 u'), + RgbInt8Color.rgbName(0x9c, 0x83, 0x5d, '10348 c'), + RgbInt8Color.rgbName(0x9b, 0x83, 0x5e, '7558 u'), + RgbInt8Color.rgbName(0x9e, 0x84, 0x59, '7558 up'), + RgbInt8Color.rgbName(0x97, 0x7f, 0x5e, '7559 u'), + RgbInt8Color.rgbName(0x95, 0x7f, 0x5f, 'p 13-10 c'), + RgbInt8Color.rgbName(0x9a, 0x7f, 0x61, '2470 c'), + RgbInt8Color.rgbName(0x94, 0x82, 0x72, '7504 u'), + RgbInt8Color.rgbName(0x91, 0x87, 0x76, 'p 170-6 c'), + RgbInt8Color.rgbName(0x91, 0x83, 0x7d, '2476 up'), + RgbInt8Color.rgbName(0x99, 0x81, 0x79, 'p 44-5 u'), + RgbInt8Color.rgbName(0x92, 0x88, 0x7e, 'warm gray 8 xgc'), + RgbInt8Color.rgbName(0x94, 0x85, 0x84, '2476 u'), + RgbInt8Color.rgbName(0x94, 0x89, 0x82, '408 xgc'), + RgbInt8Color.rgbName(0x97, 0x84, 0x80, '7615 u'), + RgbInt8Color.rgbName(0x95, 0x86, 0x82, '7615 up'), + RgbInt8Color.rgbName(0x98, 0x84, 0x85, '8440 c'), + RgbInt8Color.rgbName(0x92, 0x89, 0x81, 'warm gray 8 up'), + RgbInt8Color.rgbName(0x95, 0x86, 0x91, '10191 c'), + RgbInt8Color.rgbName(0x99, 0x85, 0x8d, '8060 c'), + RgbInt8Color.rgbName(0x94, 0x87, 0x94, '7653 c'), + RgbInt8Color.rgbName(0x95, 0x88, 0x96, '8080 c'), + RgbInt8Color.rgbName(0x99, 0x84, 0x91, 'p 87-5 u'), + RgbInt8Color.rgbName(0x96, 0x82, 0x9b, 'p 92-12 u'), + RgbInt8Color.rgbName(0x93, 0x87, 0xa7, '10221 c'), + RgbInt8Color.rgbName(0x9b, 0x83, 0xa6, '2079 cp'), + RgbInt8Color.rgbName(0x94, 0x89, 0xa3, '667 up'), + RgbInt8Color.rgbName(0x98, 0x86, 0xa3, '7661 up'), + RgbInt8Color.rgbName(0x9d, 0x83, 0xa3, 'p 92-1 u'), + RgbInt8Color.rgbName(0x9a, 0x83, 0xa2, 'p 92-12 c'), + RgbInt8Color.rgbName(0x98, 0x88, 0x9f, 'p 95-11 u'), + RgbInt8Color.rgbName(0x96, 0x89, 0xa0, 'p 98-9 u'), + RgbInt8Color.rgbName(0x99, 0x81, 0xad, 'p 96-4 u'), + RgbInt8Color.rgbName(0x97, 0x8a, 0xac, 'p 97-10 c'), + RgbInt8Color.rgbName(0x95, 0x86, 0xac, 'p 99-12 u'), + RgbInt8Color.rgbName(0x99, 0x89, 0xb9, '2086 cp'), + RgbInt8Color.rgbName(0x96, 0x89, 0xb2, '2094 xgc'), + RgbInt8Color.rgbName(0x99, 0x87, 0xb2, '3543 up'), + RgbInt8Color.rgbName(0x96, 0x90, 0xb9, '2087 up'), + RgbInt8Color.rgbName(0x9b, 0x91, 0xbe, '2100 cp'), + RgbInt8Color.rgbName(0xa5, 0x9c, 0xce, '2100 xgc'), + RgbInt8Color.rgbName(0xa4, 0x9f, 0xcf, '2705 xgc'), + RgbInt8Color.rgbName(0xbe, 0x8d, 0x0, '125 xgc'), + RgbInt8Color.rgbName(0xa2, 0x8e, 0x2a, '456 c'), + RgbInt8Color.rgbName(0xa2, 0x94, 0x2c, '619 cp'), + RgbInt8Color.rgbName(0xa6, 0x94, 0x2a, '8645 c'), + RgbInt8Color.rgbName(0xa2, 0x8e, 0x35, '8365 c'), + RgbInt8Color.rgbName(0xa0, 0x89, 0x3a, 'p 9-14 c'), + RgbInt8Color.rgbName(0xa3, 0x94, 0x3d, 'p 6-14 c'), + RgbInt8Color.rgbName(0x9e, 0x8d, 0x4c, 'p 5-15 u'), + RgbInt8Color.rgbName(0x9c, 0x8d, 0x53, '456 up'), + RgbInt8Color.rgbName(0x99, 0x8e, 0x5b, '619 up'), + RgbInt8Color.rgbName(0x97, 0x8f, 0x56, 'p 3-14 u'), + RgbInt8Color.rgbName(0x99, 0x8c, 0x56, 'p 6-13 u'), + RgbInt8Color.rgbName(0x96, 0x8f, 0x5e, '7760 u'), + RgbInt8Color.rgbName(0x9d, 0x86, 0x64, 'p 13-9 c'), + RgbInt8Color.rgbName(0x95, 0x90, 0x73, '10335 c'), + RgbInt8Color.rgbName(0x9b, 0x8d, 0x6e, '10341 c'), + RgbInt8Color.rgbName(0x92, 0x91, 0x72, '451 u'), + RgbInt8Color.rgbName(0x98, 0x89, 0x7b, '10371 c'), + RgbInt8Color.rgbName(0x97, 0x92, 0x79, '8381 c'), + RgbInt8Color.rgbName(0x96, 0x8c, 0x7b, 'p 169-9 u'), + RgbInt8Color.rgbName(0x97, 0x8e, 0x7c, 'p 178-6 u'), + RgbInt8Color.rgbName(0x96, 0x8a, 0x83, '10376 c'), + RgbInt8Color.rgbName(0x92, 0x8d, 0x88, '403 u'), + RgbInt8Color.rgbName(0x97, 0x8c, 0x87, '408 c'), + RgbInt8Color.rgbName(0x94, 0x8b, 0x8a, '409 u'), + RgbInt8Color.rgbName(0x96, 0x8c, 0x83, 'warm gray 7 c'), + RgbInt8Color.rgbName(0x99, 0x8c, 0x85, 'warm gray 7 cp'), + RgbInt8Color.rgbName(0x91, 0x93, 0x88, '415 c'), + RgbInt8Color.rgbName(0x95, 0x90, 0x8d, '8040 c'), + RgbInt8Color.rgbName(0x96, 0x8f, 0x8b, 'warm gray 7 u'), + RgbInt8Color.rgbName(0x95, 0x90, 0x92, '10382 c'), + RgbInt8Color.rgbName(0x94, 0x90, 0x92, 'p 173-5 c'), + RgbInt8Color.rgbName(0x99, 0x91, 0xa4, '7660 c'), + RgbInt8Color.rgbName(0x99, 0x90, 0xa2, '7660 xgc'), + RgbInt8Color.rgbName(0x95, 0x8e, 0xa5, 'p 101-10 u'), + RgbInt8Color.rgbName(0x96, 0x93, 0xaa, '10226 c'), + RgbInt8Color.rgbName(0x96, 0x94, 0xac, '5285 u'), + RgbInt8Color.rgbName(0x98, 0x92, 0xae, 'p 100-11 u'), + RgbInt8Color.rgbName(0x94, 0x90, 0xb0, 'p 101-3 c'), + RgbInt8Color.rgbName(0x96, 0x8e, 0xae, 'p 103-2 u'), + RgbInt8Color.rgbName(0x9f, 0x8a, 0xaa, 'p 94-3 u'), + RgbInt8Color.rgbName(0x9d, 0x8b, 0xa8, 'p 95-11 c'), + RgbInt8Color.rgbName(0x9e, 0x8c, 0xa6, 'p 95-3 u'), + RgbInt8Color.rgbName(0x9c, 0x8b, 0xb0, 'p 96-11 u'), + RgbInt8Color.rgbName(0x9c, 0x8b, 0xaa, 'p 97-2 u'), + RgbInt8Color.rgbName(0x98, 0x91, 0xba, '2086 up'), + RgbInt8Color.rgbName(0x9f, 0x88, 0xb5, '265 up'), + RgbInt8Color.rgbName(0x9c, 0x8d, 0xba, '2655 up'), + RgbInt8Color.rgbName(0x98, 0x96, 0xb2, 'p 101-10 c'), + RgbInt8Color.rgbName(0x97, 0x91, 0xba, 'p 102-3 u'), + RgbInt8Color.rgbName(0x94, 0x92, 0xb7, 'p 103-2 c'), + RgbInt8Color.rgbName(0xa0, 0x8a, 0xb4, 'p 96-11 c'), + RgbInt8Color.rgbName(0x9b, 0x8c, 0xb3, 'p 99-4 u'), + RgbInt8Color.rgbName(0x9e, 0x8b, 0xba, '3543 cp'), + RgbInt8Color.rgbName(0x98, 0x93, 0xbc, 'p 99-12 c'), + RgbInt8Color.rgbName(0x98, 0x98, 0xc4, 'p 102-3 c'), + RgbInt8Color.rgbName(0xa7, 0xa4, 0xe0, '2705 c'), + RgbInt8Color.rgbName(0xa3, 0xa7, 0xd4, '2113 xgc'), + RgbInt8Color.rgbName(0xa9, 0x9a, 0x25, '7767 cp'), + RgbInt8Color.rgbName(0xa3, 0x96, 0x2e, '619 xgc'), + RgbInt8Color.rgbName(0xa2, 0x94, 0x38, '613 u'), + RgbInt8Color.rgbName(0xa1, 0x93, 0x41, '8364 c'), + RgbInt8Color.rgbName(0x9a, 0x98, 0x4c, 'p 167-15 u'), + RgbInt8Color.rgbName(0xa3, 0x97, 0x53, '104 up'), + RgbInt8Color.rgbName(0x9f, 0x9a, 0x54, '5835 xgc'), + RgbInt8Color.rgbName(0x9d, 0x9a, 0x58, '8362 c'), + RgbInt8Color.rgbName(0x9b, 0x94, 0x5f, '451 c'), + RgbInt8Color.rgbName(0xa0, 0x99, 0x58, '5835 c'), + RgbInt8Color.rgbName(0x96, 0x9c, 0x60, '7747 up'), + RgbInt8Color.rgbName(0x9c, 0x93, 0x5f, '7768 up'), + RgbInt8Color.rgbName(0x97, 0x9c, 0x5e, 'p 165-5 u'), + RgbInt8Color.rgbName(0x9e, 0x96, 0x64, '451 xgc'), + RgbInt8Color.rgbName(0xa3, 0x96, 0x67, '7754 up'), + RgbInt8Color.rgbName(0x9e, 0x94, 0x61, '7760 up'), + RgbInt8Color.rgbName(0x98, 0x98, 0x69, '8361 c'), + RgbInt8Color.rgbName(0x9e, 0x9c, 0x62, 'p 168-4 u'), + RgbInt8Color.rgbName(0x95, 0x9c, 0x72, '5773 cp'), + RgbInt8Color.rgbName(0x9d, 0x92, 0x72, '7503 u'), + RgbInt8Color.rgbName(0x94, 0x94, 0x7d, 'p 178-6 c'), + RgbInt8Color.rgbName(0x95, 0x9e, 0x7b, '10328 c'), + RgbInt8Color.rgbName(0x9d, 0x9a, 0x78, '451 up'), + RgbInt8Color.rgbName(0x97, 0x95, 0x7c, 'p 169-9 c'), + RgbInt8Color.rgbName(0x9c, 0x98, 0x83, '10334 c'), + RgbInt8Color.rgbName(0x92, 0x93, 0x88, '415 cp'), + RgbInt8Color.rgbName(0x94, 0x93, 0x87, '8380 c'), + RgbInt8Color.rgbName(0x9b, 0x9a, 0x83, 'p 169-8 c'), + RgbInt8Color.rgbName(0x94, 0x93, 0x87, 'p 176-3 c'), + RgbInt8Color.rgbName(0x99, 0x96, 0x87, 'p 177-4 u'), + RgbInt8Color.rgbName(0x9d, 0x96, 0x8d, '402 c'), + RgbInt8Color.rgbName(0x9c, 0x95, 0x8c, '402 cp'), + RgbInt8Color.rgbName(0x94, 0x9a, 0x90, '7538 c'), + RgbInt8Color.rgbName(0x92, 0x98, 0x90, 'p 175-5 u'), + RgbInt8Color.rgbName(0x94, 0x92, 0x8f, 'p 179-7 u'), + RgbInt8Color.rgbName(0x93, 0x9c, 0x98, '443 up'), + RgbInt8Color.rgbName(0x97, 0x99, 0x9b, 'cool gray 7 c'), + RgbInt8Color.rgbName(0x93, 0x9c, 0x98, 'p 175-5 c'), + RgbInt8Color.rgbName(0x9e, 0x95, 0xa0, '7653 u'), + RgbInt8Color.rgbName(0x99, 0x99, 0x9b, 'cool gray 7 cp'), + RgbInt8Color.rgbName(0x96, 0x9a, 0x9d, 'p 174-4 c'), + RgbInt8Color.rgbName(0x9c, 0x94, 0xab, '10220 c'), + RgbInt8Color.rgbName(0x97, 0x96, 0xae, '5285 xgc'), + RgbInt8Color.rgbName(0x9c, 0x97, 0xa8, '7660 u'), + RgbInt8Color.rgbName(0x9a, 0x95, 0xa7, '7660 up'), + RgbInt8Color.rgbName(0x97, 0x9c, 0xb9, 'p 105-11 c'), + RgbInt8Color.rgbName(0x95, 0x99, 0xb9, 'p 105-3 u'), + RgbInt8Color.rgbName(0x9c, 0x9a, 0xc4, '2715 up'), + RgbInt8Color.rgbName(0xa5, 0xb0, 0xe3, '2113 c'), + RgbInt8Color.rgbName(0xa7, 0xb2, 0xe8, '2113 u'), + RgbInt8Color.rgbName(0x9a, 0xaf, 0xd4, '2122 up'), + RgbInt8Color.rgbName(0x9c, 0xab, 0xd4, '2716 cp'), + RgbInt8Color.rgbName(0xa2, 0xaf, 0xe9, '2716 u'), + RgbInt8Color.rgbName(0x98, 0xb1, 0xd6, '659 up'), + RgbInt8Color.rgbName(0x9a, 0xb1, 0xd7, '7451 cp'), + RgbInt8Color.rgbName(0x9b, 0xae, 0xd8, '7451 xgc'), + RgbInt8Color.rgbName(0xad, 0x96, 0xdc, '2645 c'), + RgbInt8Color.rgbName(0xb8, 0x9f, 0xc, '457 xgc'), + RgbInt8Color.rgbName(0xaa, 0x9d, 0x2e, '7767 c'), + RgbInt8Color.rgbName(0xa8, 0x9f, 0x2f, '7767 xgc'), + RgbInt8Color.rgbName(0xaa, 0x9e, 0x32, 'p 3-7 c'), + RgbInt8Color.rgbName(0xa4, 0x9c, 0x41, '8363 c'), + RgbInt8Color.rgbName(0xa1, 0xa0, 0x48, 'p 167-14 c'), + RgbInt8Color.rgbName(0xa1, 0x9f, 0x48, 'p 167-8 u'), + RgbInt8Color.rgbName(0x9d, 0xa4, 0x4e, 'p 164-7 u'), + RgbInt8Color.rgbName(0xa1, 0xa5, 0x50, 'p 164-14 c'), + RgbInt8Color.rgbName(0x9c, 0xa1, 0x57, 'p 164-14 u'), + RgbInt8Color.rgbName(0xaa, 0xa0, 0x50, 'p 3-14 c'), + RgbInt8Color.rgbName(0x99, 0xa4, 0x60, '2304 up'), + RgbInt8Color.rgbName(0xa5, 0x9f, 0x5a, '5835 cp'), + RgbInt8Color.rgbName(0x9b, 0x9f, 0x60, '7746 u'), + RgbInt8Color.rgbName(0x95, 0xa4, 0x71, 'p 159-12 c'), + RgbInt8Color.rgbName(0x9e, 0xa8, 0x65, 'p 161-13 u'), + RgbInt8Color.rgbName(0x9d, 0xa4, 0x67, 'p 162-5 u'), + RgbInt8Color.rgbName(0xa0, 0xa4, 0x67, 'p 165-12 c'), + RgbInt8Color.rgbName(0x9c, 0x9f, 0x67, 'p 165-12 u'), + RgbInt8Color.rgbName(0xa2, 0xa1, 0x61, 'p 168-13 c'), + RgbInt8Color.rgbName(0x9f, 0xa0, 0x74, '5767 up'), + RgbInt8Color.rgbName(0x9e, 0xa5, 0x71, 'p 162-11 u'), + RgbInt8Color.rgbName(0x97, 0xa9, 0x7f, '10316 c'), + RgbInt8Color.rgbName(0x9a, 0xa1, 0x84, '5773 u'), + RgbInt8Color.rgbName(0x98, 0x9f, 0x8f, '7538 cp'), + RgbInt8Color.rgbName(0x9c, 0x9e, 0x89, 'p 177-4 c'), + RgbInt8Color.rgbName(0x99, 0x9d, 0x99, '423 up'), + RgbInt8Color.rgbName(0x9c, 0xa1, 0x98, '7539 up'), + RgbInt8Color.rgbName(0x9e, 0xa2, 0xa2, '422 c'), + RgbInt8Color.rgbName(0x9e, 0xa1, 0xa2, '422 u'), + RgbInt8Color.rgbName(0x98, 0xa3, 0xa5, '443 cp'), + RgbInt8Color.rgbName(0x9c, 0x9e, 0xa0, '7539 u'), + RgbInt8Color.rgbName(0x9b, 0x9e, 0xa0, 'cool gray 7 u'), + RgbInt8Color.rgbName(0x9e, 0xa0, 0x9f, 'cool gray 7 up'), + RgbInt8Color.rgbName(0xa0, 0x9f, 0xa0, 'p 174-3 u'), + RgbInt8Color.rgbName(0x98, 0xa1, 0xad, '2162 up'), + RgbInt8Color.rgbName(0x98, 0xa4, 0xae, '7543 c'), + RgbInt8Color.rgbName(0x98, 0xa5, 0xae, '7543 cp'), + RgbInt8Color.rgbName(0x95, 0xa2, 0xad, '7543 xgc'), + RgbInt8Color.rgbName(0x9d, 0xa5, 0xb3, '2162 u'), + RgbInt8Color.rgbName(0x9d, 0xa5, 0xb4, '2162 xgc'), + RgbInt8Color.rgbName(0x94, 0xa6, 0xba, 'p 111-10 u'), + RgbInt8Color.rgbName(0x9b, 0xa3, 0xba, '2107 up'), + RgbInt8Color.rgbName(0x9d, 0x9e, 0xbd, 'p 100-11 c'), + RgbInt8Color.rgbName(0x9b, 0x9f, 0xc0, 'p 104-11 u'), + RgbInt8Color.rgbName(0x99, 0xa4, 0xbc, 'p 108-10 c'), + RgbInt8Color.rgbName(0xa3, 0xa1, 0xc8, '7445 cp'), + RgbInt8Color.rgbName(0x9b, 0xa5, 0xcc, '7452 up'), + RgbInt8Color.rgbName(0xa1, 0xa0, 0xc5, 'p 102-10 c'), + RgbInt8Color.rgbName(0x9c, 0xa3, 0xc3, 'p 105-3 c'), + RgbInt8Color.rgbName(0x9a, 0xa6, 0xc6, 'p 106-11 u'), + RgbInt8Color.rgbName(0xa1, 0xb9, 0xde, '2128 xgc'), + RgbInt8Color.rgbName(0xbf, 0xb0, 0x0, '10111 c'), + RgbInt8Color.rgbName(0xc5, 0xa9, 0x0, '103 c'), + RgbInt8Color.rgbName(0xc1, 0xad, 0x0, '3975 xgc'), + RgbInt8Color.rgbName(0xbc, 0xa7, 0x5, '613 cp'), + RgbInt8Color.rgbName(0xbb, 0xa3, 0xd, '104 cp'), + RgbInt8Color.rgbName(0xa7, 0xaf, 0x48, 'p 163-16 u'), + RgbInt8Color.rgbName(0x9e, 0xa9, 0x62, '10323 c'), + RgbInt8Color.rgbName(0xa4, 0xa8, 0x5d, '7746 up'), + RgbInt8Color.rgbName(0xa3, 0xad, 0x66, 'p 161-13 c'), + RgbInt8Color.rgbName(0x9f, 0xa9, 0x6b, 'p 162-5 c'), + RgbInt8Color.rgbName(0xa3, 0xa7, 0x6d, '5777 cp'), + RgbInt8Color.rgbName(0x9c, 0xa9, 0x76, 'p 159-4 u'), + RgbInt8Color.rgbName(0x96, 0xac, 0x85, 'p 150-10 c'), + RgbInt8Color.rgbName(0x96, 0xae, 0x83, 'p 150-2 u'), + RgbInt8Color.rgbName(0x9e, 0xaa, 0x7c, 'p 159-11 u'), + RgbInt8Color.rgbName(0xa3, 0xaa, 0x83, '5783 c'), + RgbInt8Color.rgbName(0x99, 0xb0, 0x80, 'p 155-10 u'), + RgbInt8Color.rgbName(0x9d, 0xaf, 0x81, 'p 156-2 c'), + RgbInt8Color.rgbName(0xa1, 0xa7, 0x8c, '5773 up'), + RgbInt8Color.rgbName(0x97, 0xb2, 0x87, 'p 149-10 u'), + RgbInt8Color.rgbName(0x9a, 0xaf, 0x8a, 'p 153-9 c'), + RgbInt8Color.rgbName(0x9b, 0xb2, 0xa2, '5575 cp'), + RgbInt8Color.rgbName(0x9d, 0xad, 0xa8, '442 xgc'), + RgbInt8Color.rgbName(0x9e, 0xad, 0xa8, '5507 up'), + RgbInt8Color.rgbName(0x9a, 0xa5, 0xaf, '7544 u'), + RgbInt8Color.rgbName(0x9e, 0xa6, 0xb4, '2162 c'), + RgbInt8Color.rgbName(0x9b, 0xab, 0xb5, '2162 cp'), + RgbInt8Color.rgbName(0x95, 0xae, 0xc4, '2156 up'), + RgbInt8Color.rgbName(0x9c, 0xb1, 0xbd, '5435 up'), + RgbInt8Color.rgbName(0x9a, 0xac, 0xc1, 'p 111-2 u'), + RgbInt8Color.rgbName(0x9f, 0xaa, 0xcc, 'p 104-11 c'), + RgbInt8Color.rgbName(0x99, 0xad, 0xcf, 'p 106-11 c'), + RgbInt8Color.rgbName(0x9b, 0xb0, 0xc7, 'p 111-2 c'), + RgbInt8Color.rgbName(0xa0, 0xad, 0xd3, '2113 cp'), + RgbInt8Color.rgbName(0x9a, 0xad, 0xd0, '7681 cp'), + RgbInt8Color.rgbName(0xa7, 0xc6, 0xed, '2717 c'), + RgbInt8Color.rgbName(0xa9, 0xc8, 0xf4, '2717 u'), + RgbInt8Color.rgbName(0xa8, 0xc4, 0xe3, '2717 up'), + RgbInt8Color.rgbName(0xa9, 0xc7, 0xe5, '277 cp'), + RgbInt8Color.rgbName(0xaa, 0xc6, 0xe3, '277 xgc'), + RgbInt8Color.rgbName(0xa4, 0xc8, 0xe1, '543 c'), + RgbInt8Color.rgbName(0xa7, 0xc6, 0xe4, '543 cp'), + RgbInt8Color.rgbName(0xa8, 0xc1, 0xde, '651 xgc'), + RgbInt8Color.rgbName(0xa9, 0xc4, 0xe3, '658 cp'), + RgbInt8Color.rgbName(0xa9, 0xc5, 0xe2, 'p 109-3 c'), + RgbInt8Color.rgbName(0xa8, 0xc6, 0xdf, 'p 112-10 u'), + RgbInt8Color.rgbName(0xa2, 0xc7, 0xe6, 'p 112-3 u'), + RgbInt8Color.rgbName(0xc4, 0xb0, 0x0, '612 c'), + RgbInt8Color.rgbName(0xc4, 0xb2, 0x0, '7759 c'), + RgbInt8Color.rgbName(0xc2, 0xb6, 0x0, '7759 xgc'), + RgbInt8Color.rgbName(0xa2, 0xb3, 0x4c, 'p 160-15 u'), + RgbInt8Color.rgbName(0x9e, 0xb3, 0x6c, '2303 u'), + RgbInt8Color.rgbName(0xa8, 0xb4, 0x60, 'p 161-6 c'), + RgbInt8Color.rgbName(0xa3, 0xaf, 0x61, 'p 161-6 u'), + RgbInt8Color.rgbName(0x9f, 0xb3, 0x6d, '2303 up'), + RgbInt8Color.rgbName(0xa1, 0xb0, 0x6a, 'p 158-13 c'), + RgbInt8Color.rgbName(0xa9, 0xb3, 0x6e, '2302 u'), + RgbInt8Color.rgbName(0xa2, 0xb2, 0x7a, 'p 158-12 u'), + RgbInt8Color.rgbName(0xa2, 0xb0, 0x79, 'p 159-4 c'), + RgbInt8Color.rgbName(0x99, 0xb7, 0x8a, 'p 152-4 u'), + RgbInt8Color.rgbName(0xa0, 0xb8, 0x83, 'p 155-2 u'), + RgbInt8Color.rgbName(0xa3, 0xb4, 0x8d, '7494 cp'), + RgbInt8Color.rgbName(0x9c, 0xb1, 0x89, '7494 xgc'), + RgbInt8Color.rgbName(0x98, 0xb9, 0x91, 'p 143-11 c'), + RgbInt8Color.rgbName(0x98, 0xb6, 0x91, 'p 143-11 u'), + RgbInt8Color.rgbName(0x9a, 0xb3, 0x90, 'p 147-1 u'), + RgbInt8Color.rgbName(0xa0, 0xb4, 0x8a, 'p 153-3 u'), + RgbInt8Color.rgbName(0xa0, 0xb4, 0x9b, '2404 u'), + RgbInt8Color.rgbName(0x9e, 0xb6, 0x97, 'p 147-9 c'), + RgbInt8Color.rgbName(0x9d, 0xb0, 0xac, '5507 c'), + RgbInt8Color.rgbName(0x9d, 0xb4, 0xab, '5575 u'), + RgbInt8Color.rgbName(0x9a, 0xb9, 0xad, '623 c'), + RgbInt8Color.rgbName(0x99, 0xb5, 0xb0, 'p 126-11 u'), + RgbInt8Color.rgbName(0x99, 0xb7, 0xae, 'p 132-9 c'), + RgbInt8Color.rgbName(0xa2, 0xb5, 0xbe, '2176 xgc'), + RgbInt8Color.rgbName(0x9d, 0xb4, 0xc4, '5435 u'), + RgbInt8Color.rgbName(0x9a, 0xb7, 0xbe, 'p 120-9 u'), + RgbInt8Color.rgbName(0x9b, 0xba, 0xbd, 'p 123-3 u'), + RgbInt8Color.rgbName(0x9e, 0xb5, 0xcb, '2155 c'), + RgbInt8Color.rgbName(0x9f, 0xb4, 0xca, '2155 xgc'), + RgbInt8Color.rgbName(0xa2, 0xb2, 0xc8, '536 c'), + RgbInt8Color.rgbName(0x9b, 0xb6, 0xcd, '644 up'), + RgbInt8Color.rgbName(0x9f, 0xb4, 0xc6, 'p 114-9 u'), + RgbInt8Color.rgbName(0x9b, 0xbb, 0xc6, 'p 120-9 c'), + RgbInt8Color.rgbName(0x9b, 0xb8, 0xd3, '644 c'), + RgbInt8Color.rgbName(0x97, 0xb8, 0xd4, '644 cp'), + RgbInt8Color.rgbName(0x98, 0xb7, 0xd6, 'p 109-11 c'), + RgbInt8Color.rgbName(0xa6, 0xca, 0xe4, '283 up'), + RgbInt8Color.rgbName(0xa1, 0xcd, 0xeb, '291 cp'), + RgbInt8Color.rgbName(0xa1, 0xca, 0xe4, '543 xgc'), + RgbInt8Color.rgbName(0xa6, 0xcb, 0xe7, 'p 112-3 c'), + RgbInt8Color.rgbName(0xa8, 0xb8, 0x68, 'p 158-5 c'), + RgbInt8Color.rgbName(0xa1, 0xbd, 0x7a, 'p 154-12 c'), + RgbInt8Color.rgbName(0xaa, 0xbe, 0x6e, 'p 157-13 u'), + RgbInt8Color.rgbName(0xa5, 0xb7, 0x78, 'p 158-4 u'), + RgbInt8Color.rgbName(0x9e, 0xbb, 0x86, '577 up'), + RgbInt8Color.rgbName(0xa1, 0xc0, 0x89, 'p 151-11 u'), + RgbInt8Color.rgbName(0x9a, 0xbb, 0x91, '2261 c'), + RgbInt8Color.rgbName(0xa2, 0xbf, 0x8b, 'p 146-1 c'), + RgbInt8Color.rgbName(0xa1, 0xbc, 0x91, 'p 146-9 u'), + RgbInt8Color.rgbName(0xa1, 0xc1, 0x89, 'p 148-11 c'), + RgbInt8Color.rgbName(0xa2, 0xbd, 0x8e, 'p 149-1 u'), + RgbInt8Color.rgbName(0x9c, 0xbb, 0x99, 'p 140-10 u'), + RgbInt8Color.rgbName(0x9f, 0xba, 0x99, 'p 144-1 u'), + RgbInt8Color.rgbName(0x9c, 0xc2, 0xa3, 'p 137-3 c'), + RgbInt8Color.rgbName(0x9a, 0xc0, 0xae, '558 u'), + RgbInt8Color.rgbName(0x9d, 0xc0, 0xb1, 'p 131-1 u'), + RgbInt8Color.rgbName(0x9d, 0xc1, 0xb0, 'p 131-9 c'), + RgbInt8Color.rgbName(0x9d, 0xbc, 0xaf, 'p 135-2 c'), + RgbInt8Color.rgbName(0xa1, 0xbb, 0xa9, 'p 135-9 u'), + RgbInt8Color.rgbName(0xa3, 0xbd, 0xac, 'p 138-9 c'), + RgbInt8Color.rgbName(0x9e, 0xc0, 0xb8, 'p 125-10 u'), + RgbInt8Color.rgbName(0xa0, 0xc3, 0xb4, 'p 128-2 u'), + RgbInt8Color.rgbName(0x9f, 0xbb, 0xb0, 'p 129-2 u'), + RgbInt8Color.rgbName(0x9f, 0xbf, 0xc1, 'p 126-1 c'), + RgbInt8Color.rgbName(0x9c, 0xc5, 0xbd, 'p 128-2 c'), + RgbInt8Color.rgbName(0x9a, 0xc2, 0xc7, '5503 up'), + RgbInt8Color.rgbName(0x9c, 0xc0, 0xcb, '551 up'), + RgbInt8Color.rgbName(0x98, 0xbf, 0xcc, 'p 119-10 c'), + RgbInt8Color.rgbName(0xa1, 0xbf, 0xc7, 'p 120-1 u'), + RgbInt8Color.rgbName(0x9c, 0xc3, 0xd1, '551 cp'), + RgbInt8Color.rgbName(0x9f, 0xbe, 0xd7, 'p 113-2 u'), + RgbInt8Color.rgbName(0xc8, 0xc1, 0x7, 'p 166-16 c'), + RgbInt8Color.rgbName(0xc4, 0xc6, 0x26, '7744 cp'), + RgbInt8Color.rgbName(0xa9, 0xc4, 0x7f, '577 c'), + RgbInt8Color.rgbName(0xa2, 0xc8, 0x8f, 'p 148-3 u'), + RgbInt8Color.rgbName(0xa1, 0xc8, 0x94, '2268 cp'), + RgbInt8Color.rgbName(0xa7, 0xc5, 0x8e, '578 u'), + RgbInt8Color.rgbName(0xa6, 0xc9, 0x8e, 'p 151-4 u'), + RgbInt8Color.rgbName(0xa4, 0xc8, 0x9a, 'p 142-10 c'), + RgbInt8Color.rgbName(0xa5, 0xc5, 0x94, 'p 145-10 u'), + RgbInt8Color.rgbName(0xa5, 0xc8, 0xa6, 'p 140-2 c'), + RgbInt8Color.rgbName(0xa6, 0xc8, 0xa0, 'p 142-9 u'), + RgbInt8Color.rgbName(0xa3, 0xc4, 0x9c, 'p 143-1 c'), + RgbInt8Color.rgbName(0xa4, 0xcb, 0xac, '2412 up'), + RgbInt8Color.rgbName(0xa4, 0xc6, 0xaa, 'p 133-11 u'), + RgbInt8Color.rgbName(0x9e, 0xc4, 0xb1, 'p 134-2 c'), + RgbInt8Color.rgbName(0xa3, 0xc3, 0xa9, 'p 137-10 u'), + RgbInt8Color.rgbName(0xa3, 0xc4, 0xb6, '558 cp'), + RgbInt8Color.rgbName(0xa3, 0xc7, 0xd2, '551 c'), + RgbInt8Color.rgbName(0xa3, 0xc7, 0xd4, 'p 119-2 c'), + RgbInt8Color.rgbName(0x9d, 0xc4, 0xce, 'p 119-2 u'), + RgbInt8Color.rgbName(0x9e, 0xc6, 0xda, 'p 116-10 c'), + RgbInt8Color.rgbName(0xc6, 0xd2, 0x19, '382 cp'), + RgbInt8Color.rgbName(0xaa, 0xd0, 0x95, '359 cp'), + RgbInt8Color.rgbName(0xaa, 0xcc, 0x95, '358 up'), + RgbInt8Color.rgbName(0xa3, 0xcf, 0xab, '353 cp'), + RgbInt8Color.rgbName(0xa3, 0xcd, 0xa4, 'p 139-3 u'), + RgbInt8Color.rgbName(0xa1, 0xd0, 0xb2, 'p 136-3 c'), + RgbInt8Color.rgbName(0xa7, 0xcc, 0xa9, 'p 139-11 c'), + RgbInt8Color.rgbName(0xa4, 0xd4, 0xb8, '2246 xgc'), + RgbInt8Color.rgbName(0xa3, 0xcf, 0xb8, '332 up'), + RgbInt8Color.rgbName(0xa2, 0xd1, 0xbe, '3385 cp'), + RgbInt8Color.rgbName(0xa6, 0xcc, 0xb2, 'p 136-10 c'), + RgbInt8Color.rgbName(0xa6, 0xd3, 0xc1, '571 cp'), + RgbInt8Color.rgbName(0xa3, 0xd0, 0xc5, 'p 127-3 c'), + RgbInt8Color.rgbName(0xa0, 0xd0, 0xc1, 'p 130-3 c'), + RgbInt8Color.rgbName(0x9f, 0xcf, 0xcb, '324 up'), + RgbInt8Color.rgbName(0xa1, 0xd6, 0xca, '565 c'), + RgbInt8Color.rgbName(0xa1, 0xd3, 0xd3, '318 cp'), + RgbInt8Color.rgbName(0xa5, 0xd2, 0xd5, '629 up'), + RgbInt8Color.rgbName(0xa5, 0xd5, 0xdc, '629 cp'), + RgbInt8Color.rgbName(0xa2, 0xd4, 0xdf, '9462 u'), + RgbInt8Color.rgbName(0xa8, 0xd3, 0xe9, '290 up'), + RgbInt8Color.rgbName(0xa5, 0xd7, 0xe3, '2975 cp'), + RgbInt8Color.rgbName(0xa3, 0xd5, 0xe3, '636 cp'), + RgbInt8Color.rgbName(0xa4, 0xd3, 0xe5, '9442 u'), + RgbInt8Color.rgbName(0xaa, 0xd3, 0xe8, 'p 115-11 u'), + RgbInt8Color.rgbName(0xa3, 0xd3, 0xe4, 'p 118-3 c'), + RgbInt8Color.rgbName(0xa6, 0xcd, 0xe1, 'p 116-2 c'), + RgbInt8Color.rgbName(0xa8, 0xd0, 0xde, 'p 118-11 c'), + RgbInt8Color.rgbName(0xa9, 0xc3, 0x87, 'p 154-10 u'), + RgbInt8Color.rgbName(0xaa, 0xc3, 0x86, 'p 154-11 c'), + RgbInt8Color.rgbName(0xa9, 0xbe, 0x87, 'p 155-2 c'), + RgbInt8Color.rgbName(0xa7, 0xd9, 0xbc, '2246 u'), + RgbInt8Color.rgbName(0xa4, 0xdb, 0xd9, '317 xgc'), + RgbInt8Color.rgbName(0xa6, 0xd6, 0xde, '304 cp'), + RgbInt8Color.rgbName(0xa9, 0xde, 0xdb, '9501 u'), + RgbInt8Color.rgbName(0xc1, 0xe5, 0x4e, '2297 u'), + RgbInt8Color.rgbName(0xc5, 0xe8, 0x6c, '374 c'), + RgbInt8Color.rgbName(0xa9, 0xca, 0xb4, '559 xgc'), + RgbInt8Color.rgbName(0xa8, 0xd5, 0xba, '2246 c'), + RgbInt8Color.rgbName(0xc3, 0xb9, 0x1f, '7765 cp'), + RgbInt8Color.rgbName(0xc5, 0xd1, 0x48, 'p 163-8 u'), + RgbInt8Color.rgbName(0xad, 0xca, 0x82, '2285 up'), + RgbInt8Color.rgbName(0xc8, 0xef, 0x97, '2282 u'), + RgbInt8Color.rgbName(0xbc, 0xe1, 0x94, '7486 c'), + RgbInt8Color.rgbName(0xa8, 0xd3, 0xc6, '337 cp'), + RgbInt8Color.rgbName(0xa9, 0xd3, 0xcf, '7471 cp'), + RgbInt8Color.rgbName(0xaa, 0xdb, 0xd7, '7464 u'), + RgbInt8Color.rgbName(0xb8, 0xe0, 0xf1, '9440 u'), + RgbInt8Color.rgbName(0xc2, 0xea, 0xf3, '9460 u'), + RgbInt8Color.rgbName(0xdb, 0xe2, 0x0, '396 u'), + RgbInt8Color.rgbName(0xc1, 0xcd, 0x42, 'p 160-7 c'), + RgbInt8Color.rgbName(0xb9, 0xcf, 0x69, '2290 cp'), + RgbInt8Color.rgbName(0xc1, 0xdd, 0x76, '2288 xgc'), + RgbInt8Color.rgbName(0xb9, 0xce, 0x6c, '2298 cp'), + RgbInt8Color.rgbName(0xc8, 0xe3, 0x79, '2288 c'), + RgbInt8Color.rgbName(0xb3, 0xcb, 0x78, '2290 up'), + RgbInt8Color.rgbName(0xc4, 0xdd, 0x78, '373 xgc'), + RgbInt8Color.rgbName(0xbf, 0xde, 0x8d, '2282 xgc'), + RgbInt8Color.rgbName(0xc2, 0xe6, 0x92, '365 u'), + RgbInt8Color.rgbName(0xb9, 0xdd, 0x91, '7486 xgc'), + RgbInt8Color.rgbName(0xad, 0xdf, 0xb3, '2254 c'), + RgbInt8Color.rgbName(0xad, 0xdf, 0xbb, '2253 xgc'), + RgbInt8Color.rgbName(0xb1, 0xe4, 0xe3, '317 c'), + RgbInt8Color.rgbName(0xac, 0xe0, 0xe3, '9482 u'), + RgbInt8Color.rgbName(0xba, 0xdf, 0xf1, 'p 115-3 u'), + RgbInt8Color.rgbName(0xba, 0xc, 0x2f, '200 c'), + RgbInt8Color.rgbName(0xb4, 0x21, 0x21, '2350 xgc'), + RgbInt8Color.rgbName(0xab, 0x23, 0x28, '7621 c'), + RgbInt8Color.rgbName(0xae, 0x24, 0x24, 'p 49-8 c'), + RgbInt8Color.rgbName(0xc5, 0x0, 0x3e, '1935 c'), + RgbInt8Color.rgbName(0xb1, 0x18, 0x58, 'p 71-16 c'), + RgbInt8Color.rgbName(0xb2, 0x13, 0x5d, '215 xgc'), + RgbInt8Color.rgbName(0xc2, 0x11, 0x66, 'p 73-16 c'), + RgbInt8Color.rgbName(0xd0, 0x0, 0x6f, '226 c'), + RgbInt8Color.rgbName(0xae, 0x25, 0x73, '675 c'), + RgbInt8Color.rgbName(0xc1, 0x12, 0x71, 'p 75-16 c'), + RgbInt8Color.rgbName(0xb1, 0x1f, 0x79, '675 cp'), + RgbInt8Color.rgbName(0xb1, 0x23, 0x73, 'p 80-16 c'), + RgbInt8Color.rgbName(0xac, 0x2b, 0x81, '241 cp'), + RgbInt8Color.rgbName(0xc3, 0x16, 0x7c, '233 cp'), + RgbInt8Color.rgbName(0xcf, 0x3a, 0x89, '225 xgc'), + RgbInt8Color.rgbName(0xd1, 0x2b, 0x92, '3527 c'), + RgbInt8Color.rgbName(0xe1, 0x0, 0x98, 'rhodamine red c'), + RgbInt8Color.rgbName(0xe4, 0x4c, 0x9a, 'rhodamine red u'), + RgbInt8Color.rgbName(0xaf, 0x27, 0x2f, '1805 c'), + RgbInt8Color.rgbName(0xb1, 0x26, 0x29, '2350 cp'), + RgbInt8Color.rgbName(0xaf, 0x26, 0x34, '1805 xgc'), + RgbInt8Color.rgbName(0xb1, 0x22, 0x37, 'p 53-8 c'), + RgbInt8Color.rgbName(0xae, 0x20, 0x47, 'p 63-8 c'), + RgbInt8Color.rgbName(0xa8, 0x24, 0x53, 'p 69-16 c'), + RgbInt8Color.rgbName(0xae, 0x23, 0x59, '220 cp'), + RgbInt8Color.rgbName(0xb3, 0x28, 0x77, '675 xgc'), + RgbInt8Color.rgbName(0xd1, 0x42, 0x8d, 'pink u'), + RgbInt8Color.rgbName(0xb1, 0x30, 0x2a, '7620 cp'), + RgbInt8Color.rgbName(0xaf, 0x2f, 0x2c, '7621 cp'), + RgbInt8Color.rgbName(0xb3, 0x2c, 0x76, 'p 80-15 c'), + RgbInt8Color.rgbName(0xa8, 0x38, 0x75, 'p 81-6 c'), + RgbInt8Color.rgbName(0xae, 0x33, 0x7e, '2062 cp'), + RgbInt8Color.rgbName(0xb0, 0x66, 0xb3, '2068 u'), + RgbInt8Color.rgbName(0xca, 0x36, 0x4, '2349 c'), + RgbInt8Color.rgbName(0xb3, 0x3d, 0x26, '7599 c'), + RgbInt8Color.rgbName(0xb4, 0x44, 0x24, 'p 41-8 c'), + RgbInt8Color.rgbName(0xac, 0x2b, 0x37, '187 cp'), + RgbInt8Color.rgbName(0xa4, 0x34, 0x3a, '1807 c'), + RgbInt8Color.rgbName(0xaf, 0x26, 0x3d, 'p 60-15 c'), + RgbInt8Color.rgbName(0xac, 0x2c, 0x4a, '1945 cp'), + RgbInt8Color.rgbName(0xb1, 0x2b, 0x50, '7426 cp'), + RgbInt8Color.rgbName(0xa6, 0x42, 0x79, '10176 c'), + RgbInt8Color.rgbName(0xc0, 0x4a, 0x0, '1525 xgc'), + RgbInt8Color.rgbName(0xcf, 0x36, 0x4, '2349 xgc'), + RgbInt8Color.rgbName(0xae, 0x4a, 0x28, '1675 xgc'), + RgbInt8Color.rgbName(0xaf, 0x34, 0x29, 'p 46-8 c'), + RgbInt8Color.rgbName(0xa3, 0x3e, 0x2e, '484 cp'), + RgbInt8Color.rgbName(0xa3, 0x37, 0x36, '7628 cp'), + RgbInt8Color.rgbName(0xa7, 0x31, 0x39, '7627 xgc'), + RgbInt8Color.rgbName(0xa4, 0x38, 0x3d, '1807 cp'), + RgbInt8Color.rgbName(0xa8, 0x34, 0x40, '8883 c'), + RgbInt8Color.rgbName(0xa2, 0x39, 0x4c, 'p 63-14 c'), + RgbInt8Color.rgbName(0xa8, 0x35, 0x51, 'p 65-15 c'), + RgbInt8Color.rgbName(0xab, 0x38, 0x61, 'p 72-7 c'), + RgbInt8Color.rgbName(0xa8, 0x3d, 0x72, '7647 c'), + RgbInt8Color.rgbName(0xb1, 0x4d, 0x92, '10189 c'), + RgbInt8Color.rgbName(0xb2, 0x50, 0x93, 'p 83-6 c'), + RgbInt8Color.rgbName(0xa6, 0x55, 0x23, '1605 c'), + RgbInt8Color.rgbName(0xa9, 0x52, 0x25, '8025 c'), + RgbInt8Color.rgbName(0xa5, 0x48, 0x35, 'p 46-15 c'), + RgbInt8Color.rgbName(0xa2, 0x40, 0x40, 'p 58-15 c'), + RgbInt8Color.rgbName(0xa4, 0x49, 0x3d, '7608 c'), + RgbInt8Color.rgbName(0xa6, 0x3f, 0x42, 'p 56-7 c'), + RgbInt8Color.rgbName(0xa3, 0x3d, 0x4b, '8884 c'), + RgbInt8Color.rgbName(0xa0, 0x45, 0x55, '8885 c'), + RgbInt8Color.rgbName(0x9f, 0x49, 0x4c, 'p 60-16 u'), + RgbInt8Color.rgbName(0x9c, 0x4d, 0x56, 'p 63-14 u'), + RgbInt8Color.rgbName(0x9f, 0x4c, 0x59, 'p 65-15 u'), + RgbInt8Color.rgbName(0xa2, 0x4b, 0x5d, 'p 69-16 u'), + RgbInt8Color.rgbName(0xab, 0x3d, 0x6b, 'p 74-7 c'), + RgbInt8Color.rgbName(0xa5, 0x45, 0x70, '2047 c'), + RgbInt8Color.rgbName(0xad, 0x42, 0x79, '7647 xgc'), + RgbInt8Color.rgbName(0xab, 0x54, 0x91, '2415 u'), + RgbInt8Color.rgbName(0xa8, 0x58, 0x90, 'p 83-14 c'), + RgbInt8Color.rgbName(0xce, 0x70, 0xcc, '252 u'), + RgbInt8Color.rgbName(0xb7, 0x4f, 0xd, '8922 c'), + RgbInt8Color.rgbName(0xa5, 0x4e, 0x2e, 'p 41-14 c'), + RgbInt8Color.rgbName(0xa2, 0x52, 0x3f, 'p 50-6 c'), + RgbInt8Color.rgbName(0x9a, 0x54, 0x4c, 'p 46-15 u'), + RgbInt8Color.rgbName(0x9d, 0x53, 0x49, 'p 49-14 u'), + RgbInt8Color.rgbName(0xa6, 0x4c, 0x48, 'p 49-7 u'), + RgbInt8Color.rgbName(0x9c, 0x52, 0x4c, 'p 54-14 c'), + RgbInt8Color.rgbName(0xa4, 0x4e, 0x49, 'p 54-6 c'), + RgbInt8Color.rgbName(0xa8, 0x45, 0x4a, 'p 58-8 u'), + RgbInt8Color.rgbName(0x9c, 0x56, 0x52, '7623 up'), + RgbInt8Color.rgbName(0xa0, 0x52, 0x4e, 'p 53-15 u'), + RgbInt8Color.rgbName(0xa4, 0x4d, 0x51, 'p 60-15 u'), + RgbInt8Color.rgbName(0xa7, 0x48, 0x4e, 'p 61-6 c'), + RgbInt8Color.rgbName(0xa7, 0x48, 0x54, 'p 63-13 c'), + RgbInt8Color.rgbName(0xa7, 0x47, 0x54, 'p 63-8 u'), + RgbInt8Color.rgbName(0xa2, 0x4f, 0x56, '704 u'), + RgbInt8Color.rgbName(0x9d, 0x54, 0x56, '8065 c'), + RgbInt8Color.rgbName(0xa1, 0x53, 0x5a, 'p 63-13 u'), + RgbInt8Color.rgbName(0x9b, 0x54, 0x5d, 'p 64-14 c'), + RgbInt8Color.rgbName(0x9f, 0x4c, 0x5f, 'p 72-8 u'), + RgbInt8Color.rgbName(0xa8, 0x4d, 0x64, 'p 70-6 c'), + RgbInt8Color.rgbName(0xa2, 0x53, 0x62, 'p 70-6 u'), + RgbInt8Color.rgbName(0xa4, 0x4b, 0x74, '2047 xgc'), + RgbInt8Color.rgbName(0xaa, 0x46, 0x74, 'p 76-15 c'), + RgbInt8Color.rgbName(0xa9, 0x49, 0x6a, 'p 76-8 u'), + RgbInt8Color.rgbName(0xac, 0x46, 0x79, '7647 cp'), + RgbInt8Color.rgbName(0xa9, 0x49, 0x74, 'p 80-16 u'), + RgbInt8Color.rgbName(0xb0, 0x49, 0x82, '2061 cp'), + RgbInt8Color.rgbName(0xac, 0x48, 0x7d, 'p 81-5 c'), + RgbInt8Color.rgbName(0xaf, 0x5b, 0x97, '10188 c'), + RgbInt8Color.rgbName(0xa5, 0x5e, 0x98, '2068 cp'), + RgbInt8Color.rgbName(0xa5, 0x64, 0x9c, 'p 88-6 c'), + RgbInt8Color.rgbName(0xad, 0x66, 0x1c, '8964 c'), + RgbInt8Color.rgbName(0xab, 0x5a, 0x20, '160 cp'), + RgbInt8Color.rgbName(0xa2, 0x54, 0x2c, 'p 31-16 c'), + RgbInt8Color.rgbName(0xa1, 0x57, 0x2d, '470 xgc'), + RgbInt8Color.rgbName(0xaa, 0x4f, 0x2f, 'p 38-8 c'), + RgbInt8Color.rgbName(0xa1, 0x56, 0x38, '7586 xgc'), + RgbInt8Color.rgbName(0xa3, 0x51, 0x38, '8900 c'), + RgbInt8Color.rgbName(0xa0, 0x58, 0x39, 'p 38-15 c'), + RgbInt8Color.rgbName(0x9c, 0x57, 0x43, 'p 47-6 c'), + RgbInt8Color.rgbName(0x9c, 0x5b, 0x4b, '174 u'), + RgbInt8Color.rgbName(0xa4, 0x52, 0x48, '7524 c'), + RgbInt8Color.rgbName(0xa6, 0x51, 0x4a, '7524 cp'), + RgbInt8Color.rgbName(0xa0, 0x5b, 0x47, 'p 28-8 u'), + RgbInt8Color.rgbName(0xa5, 0x56, 0x48, 'p 35-8 u'), + RgbInt8Color.rgbName(0x9f, 0x56, 0x49, 'p 38-8 u'), + RgbInt8Color.rgbName(0xa5, 0x4d, 0x49, 'p 46-8 u'), + RgbInt8Color.rgbName(0xa7, 0x51, 0x54, '1807 u'), + RgbInt8Color.rgbName(0xa2, 0x58, 0x4f, '7524 xgc'), + RgbInt8Color.rgbName(0xa8, 0x50, 0x4d, '7608 xgc'), + RgbInt8Color.rgbName(0x9f, 0x5d, 0x50, 'p 41-13 u'), + RgbInt8Color.rgbName(0x9f, 0x54, 0x57, 'p 61-6 u'), + RgbInt8Color.rgbName(0x9c, 0x58, 0x5e, '194 up'), + RgbInt8Color.rgbName(0xa5, 0x52, 0x5c, '7427 u'), + RgbInt8Color.rgbName(0x9f, 0x59, 0x56, 'p 58-14 u'), + RgbInt8Color.rgbName(0x9e, 0x59, 0x5e, 'p 64-6 u'), + RgbInt8Color.rgbName(0x9d, 0x57, 0x60, 'p 66-14 c'), + RgbInt8Color.rgbName(0xa3, 0x59, 0x65, '194 u'), + RgbInt8Color.rgbName(0xa1, 0x57, 0x60, '201 u'), + RgbInt8Color.rgbName(0x9d, 0x5d, 0x60, '492 u'), + RgbInt8Color.rgbName(0xa1, 0x5b, 0x62, '8064 c'), + RgbInt8Color.rgbName(0x9f, 0x59, 0x62, 'p 66-6 u'), + RgbInt8Color.rgbName(0xab, 0x4f, 0x63, 'p 69-15 u'), + RgbInt8Color.rgbName(0xa5, 0x52, 0x73, '221 up'), + RgbInt8Color.rgbName(0xa6, 0x54, 0x6b, 'p 74-7 u'), + RgbInt8Color.rgbName(0xa4, 0x54, 0x6f, 'p 76-15 u'), + RgbInt8Color.rgbName(0xa2, 0x51, 0x73, 'p 81-6 u'), + RgbInt8Color.rgbName(0xa8, 0x50, 0x79, '676 u'), + RgbInt8Color.rgbName(0xa6, 0x58, 0x79, 'p 81-5 u'), + RgbInt8Color.rgbName(0xa5, 0x58, 0x87, '248 up'), + RgbInt8Color.rgbName(0xa1, 0x5d, 0x81, 'p 82-4 c'), + RgbInt8Color.rgbName(0xad, 0x53, 0x89, '2061 c'), + RgbInt8Color.rgbName(0xa5, 0x59, 0x8a, 'p 83-7 u'), + RgbInt8Color.rgbName(0x9f, 0x62, 0x92, '513 up'), + RgbInt8Color.rgbName(0xc9, 0x8b, 0xdb, '2572 c'), + RgbInt8Color.rgbName(0xb8, 0x84, 0xcb, '2573 c'), + RgbInt8Color.rgbName(0xb9, 0x89, 0xcb, '2573 u'), + RgbInt8Color.rgbName(0xad, 0x87, 0xc0, '528 xgc'), + RgbInt8Color.rgbName(0xac, 0x72, 0x10, '146 xgc'), + RgbInt8Color.rgbName(0xc2, 0x5a, 0x0, '2020 xgc'), + RgbInt8Color.rgbName(0xa7, 0x5c, 0x33, 'p 31-15 c'), + RgbInt8Color.rgbName(0xa5, 0x63, 0x3d, '2021 u'), + RgbInt8Color.rgbName(0xa2, 0x58, 0x40, '8045 c'), + RgbInt8Color.rgbName(0xa1, 0x5d, 0x42, '8920 c'), + RgbInt8Color.rgbName(0xa0, 0x5b, 0x4e, '484 u'), + RgbInt8Color.rgbName(0xa0, 0x62, 0x48, 'p 25-8 u'), + RgbInt8Color.rgbName(0x9c, 0x60, 0x4b, 'p 31-14 u'), + RgbInt8Color.rgbName(0xa3, 0x5a, 0x4a, 'p 31-8 u'), + RgbInt8Color.rgbName(0x9f, 0x5e, 0x4b, 'p 35-15 u'), + RgbInt8Color.rgbName(0x9f, 0x5f, 0x53, '2442 c'), + RgbInt8Color.rgbName(0xa4, 0x58, 0x51, '2442 cp'), + RgbInt8Color.rgbName(0xa3, 0x59, 0x53, 'p 56-6 u'), + RgbInt8Color.rgbName(0xa3, 0x5a, 0x5f, '201 up'), + RgbInt8Color.rgbName(0xa6, 0x5a, 0x5b, '704 up'), + RgbInt8Color.rgbName(0xa5, 0x5d, 0x5c, '7622 u'), + RgbInt8Color.rgbName(0xa8, 0x59, 0x59, '7628 u'), + RgbInt8Color.rgbName(0x9c, 0x67, 0x58, 'p 42-5 u'), + RgbInt8Color.rgbName(0x9d, 0x67, 0x59, 'p 43-8 c'), + RgbInt8Color.rgbName(0xa5, 0x5a, 0x56, 'p 61-14 c'), + RgbInt8Color.rgbName(0xa6, 0x5b, 0x5c, 'p 61-5 u'), + RgbInt8Color.rgbName(0x9c, 0x61, 0x69, '4995 c'), + RgbInt8Color.rgbName(0xa4, 0x57, 0x68, '7420 u'), + RgbInt8Color.rgbName(0xa5, 0x5a, 0x68, '7420 up'), + RgbInt8Color.rgbName(0xa7, 0x59, 0x60, 'p 63-12 u'), + RgbInt8Color.rgbName(0xa1, 0x5f, 0x6a, 'p 70-12 u'), + RgbInt8Color.rgbName(0xa7, 0x5a, 0x68, 'p 70-5 u'), + RgbInt8Color.rgbName(0xa9, 0x5c, 0x6d, '2343 xgc'), + RgbInt8Color.rgbName(0xa4, 0x5f, 0x6c, '8063 c'), + RgbInt8Color.rgbName(0xa5, 0x5f, 0x6e, 'p 70-12 c'), + RgbInt8Color.rgbName(0xa6, 0x5c, 0x7e, 'p 77-6 c'), + RgbInt8Color.rgbName(0xa3, 0x62, 0x79, 'p 77-6 u'), + RgbInt8Color.rgbName(0xa5, 0x5f, 0x8c, '10174 c'), + RgbInt8Color.rgbName(0x9f, 0x6b, 0x99, '2069 up'), + RgbInt8Color.rgbName(0xb4, 0x76, 0xae, '2067 xgc'), + RgbInt8Color.rgbName(0xa2, 0x76, 0xae, '258 u'), + RgbInt8Color.rgbName(0xa7, 0x63, 0x2c, '470 cp'), + RgbInt8Color.rgbName(0xa7, 0x66, 0x2b, '7573 c'), + RgbInt8Color.rgbName(0xa8, 0x69, 0x2e, '10134 c'), + RgbInt8Color.rgbName(0xa7, 0x68, 0x2d, 'p 25-15 c'), + RgbInt8Color.rgbName(0xad, 0x64, 0x33, '7566 c'), + RgbInt8Color.rgbName(0xa8, 0x69, 0x32, '7573 cp'), + RgbInt8Color.rgbName(0x97, 0x69, 0x4c, '2468 c'), + RgbInt8Color.rgbName(0xaa, 0x64, 0x39, 'p 31-14 c'), + RgbInt8Color.rgbName(0x9f, 0x6c, 0x48, 'p 21-16 u'), + RgbInt8Color.rgbName(0x9d, 0x68, 0x56, '174 up'), + RgbInt8Color.rgbName(0xa1, 0x6a, 0x4d, '7525 cp'), + RgbInt8Color.rgbName(0x9b, 0x6c, 0x53, 'p 32-6 u'), + RgbInt8Color.rgbName(0x9d, 0x66, 0x57, 'p 47-5 u'), + RgbInt8Color.rgbName(0x9d, 0x65, 0x54, 'p 50-5 u'), + RgbInt8Color.rgbName(0xa4, 0x66, 0x5a, '484 up'), + RgbInt8Color.rgbName(0x9a, 0x72, 0x5b, '7517 up'), + RgbInt8Color.rgbName(0xa2, 0x68, 0x59, '7593 u'), + RgbInt8Color.rgbName(0x9b, 0x6a, 0x5e, '7600 u'), + RgbInt8Color.rgbName(0x9d, 0x6d, 0x5d, '7601 up'), + RgbInt8Color.rgbName(0x9c, 0x6a, 0x58, 'p 39-5 u'), + RgbInt8Color.rgbName(0xa4, 0x63, 0x5a, 'p 54-5 u'), + RgbInt8Color.rgbName(0xa4, 0x66, 0x5b, 'p 56-13 c'), + RgbInt8Color.rgbName(0x9c, 0x67, 0x5d, 'p 56-13 u'), + RgbInt8Color.rgbName(0xa2, 0x65, 0x65, '492 up'), + RgbInt8Color.rgbName(0x9e, 0x6a, 0x6b, '696 up'), + RgbInt8Color.rgbName(0x9b, 0x73, 0x64, 'p 44-7 c'), + RgbInt8Color.rgbName(0xa6, 0x62, 0x6b, '7419 u'), + RgbInt8Color.rgbName(0xa8, 0x65, 0x6e, '7419 up'), + RgbInt8Color.rgbName(0xa8, 0x65, 0x6c, 'p 64-13 c'), + RgbInt8Color.rgbName(0xa2, 0x68, 0x6c, 'p 66-13 u'), + RgbInt8Color.rgbName(0xa7, 0x63, 0x72, 'p 72-14 u'), + RgbInt8Color.rgbName(0xa1, 0x70, 0x79, 'p 67-7 c'), + RgbInt8Color.rgbName(0xa4, 0x64, 0x80, 'p 81-12 u'), + RgbInt8Color.rgbName(0xa7, 0x63, 0x89, '688 c'), + RgbInt8Color.rgbName(0xa9, 0x65, 0x9a, '7655 xgc'), + RgbInt8Color.rgbName(0x9e, 0x73, 0xa2, '259 up'), + RgbInt8Color.rgbName(0xac, 0x66, 0x9f, '7655 cp'), + RgbInt8Color.rgbName(0x9f, 0x77, 0xa5, '2583 up'), + RgbInt8Color.rgbName(0xa9, 0x6d, 0x2f, '8965 c'), + RgbInt8Color.rgbName(0xa9, 0x6d, 0x37, '7573 xgc'), + RgbInt8Color.rgbName(0xa5, 0x72, 0x34, 'p 22-7 c'), + RgbInt8Color.rgbName(0xa7, 0x70, 0x40, '10140 c'), + RgbInt8Color.rgbName(0x9b, 0x70, 0x4d, '10367 c'), + RgbInt8Color.rgbName(0x9e, 0x71, 0x43, '7574 xgc'), + RgbInt8Color.rgbName(0xa2, 0x6f, 0x43, 'p 29-6 c'), + RgbInt8Color.rgbName(0xa5, 0x6c, 0x43, 'p 32-6 c'), + RgbInt8Color.rgbName(0xa3, 0x6f, 0x48, 'p 21-15 u'), + RgbInt8Color.rgbName(0x9f, 0x6e, 0x4e, 'p 25-14 u'), + RgbInt8Color.rgbName(0x9c, 0x72, 0x55, '1535 up'), + RgbInt8Color.rgbName(0x9e, 0x76, 0x4e, '2318 xgc'), + RgbInt8Color.rgbName(0xa3, 0x70, 0x52, '470 u'), + RgbInt8Color.rgbName(0xa3, 0x71, 0x4f, 'p 36-12 c'), + RgbInt8Color.rgbName(0xa0, 0x6e, 0x54, 'p 36-5 u'), + RgbInt8Color.rgbName(0xa1, 0x6c, 0x54, 'p 47-13 c'), + RgbInt8Color.rgbName(0x9c, 0x74, 0x57, '725 up'), + RgbInt8Color.rgbName(0xa2, 0x71, 0x5d, '7586 u'), + RgbInt8Color.rgbName(0x9e, 0x72, 0x5c, '7587 up'), + RgbInt8Color.rgbName(0x9b, 0x74, 0x59, 'p 29-12 u'), + RgbInt8Color.rgbName(0x9e, 0x75, 0x5b, 'p 36-11 u'), + RgbInt8Color.rgbName(0x9b, 0x72, 0x5e, 'p 39-13 u'), + RgbInt8Color.rgbName(0xa3, 0x6f, 0x5e, 'p 43-7 c'), + RgbInt8Color.rgbName(0x9e, 0x70, 0x6a, '2442 u'), + RgbInt8Color.rgbName(0xa0, 0x6f, 0x68, '2442 up'), + RgbInt8Color.rgbName(0xa0, 0x74, 0x62, '7516 u'), + RgbInt8Color.rgbName(0xa3, 0x6d, 0x6a, '7524 u'), + RgbInt8Color.rgbName(0xa2, 0x70, 0x67, '7524 up'), + RgbInt8Color.rgbName(0xa5, 0x6e, 0x60, '8043 c'), + RgbInt8Color.rgbName(0x9d, 0x76, 0x67, 'p 33-8 c'), + RgbInt8Color.rgbName(0x9a, 0x75, 0x67, 'p 33-9 c'), + RgbInt8Color.rgbName(0xa0, 0x73, 0x66, 'p 43-7 u'), + RgbInt8Color.rgbName(0xa4, 0x6e, 0x6e, '8442 c'), + RgbInt8Color.rgbName(0xa4, 0x6c, 0x6c, 'p 64-13 u'), + RgbInt8Color.rgbName(0xa6, 0x6c, 0x75, '2343 u'), + RgbInt8Color.rgbName(0xa6, 0x6b, 0x74, '2343 up'), + RgbInt8Color.rgbName(0xa6, 0x71, 0x75, '2447 up'), + RgbInt8Color.rgbName(0x99, 0x7d, 0x73, '4715 u'), + RgbInt8Color.rgbName(0xa6, 0x71, 0x7a, '7640 up'), + RgbInt8Color.rgbName(0xa6, 0x6c, 0x75, '7641 up'), + RgbInt8Color.rgbName(0x9c, 0x79, 0x74, 'p 51-7 u'), + RgbInt8Color.rgbName(0xa5, 0x6e, 0x7c, 'p 74-12 u'), + RgbInt8Color.rgbName(0xa0, 0x75, 0x7a, 'p 78-6 u'), + RgbInt8Color.rgbName(0x9e, 0x70, 0x7c, 'p 79-7 c'), + RgbInt8Color.rgbName(0x9f, 0x78, 0x7f, '4995 u'), + RgbInt8Color.rgbName(0xa5, 0x73, 0x80, '506 up'), + RgbInt8Color.rgbName(0xa5, 0x6e, 0x87, '7646 c'), + RgbInt8Color.rgbName(0xa8, 0x6c, 0x82, 'p 74-12 c'), + RgbInt8Color.rgbName(0xa6, 0x6e, 0x83, 'p 77-13 u'), + RgbInt8Color.rgbName(0xa3, 0x6e, 0x86, 'p 82-2 u'), + RgbInt8Color.rgbName(0xa5, 0x70, 0x8d, '681 u'), + RgbInt8Color.rgbName(0xa2, 0x73, 0x8c, '688 u'), + RgbInt8Color.rgbName(0xa8, 0x6d, 0x89, 'p 77-13 c'), + RgbInt8Color.rgbName(0xa6, 0x71, 0x8e, 'p 82-13 c'), + RgbInt8Color.rgbName(0xa1, 0x71, 0x92, 'p 84-4 u'), + RgbInt8Color.rgbName(0xa5, 0x6d, 0x95, '10173 c'), + RgbInt8Color.rgbName(0xa4, 0x6e, 0x9b, '2068 up'), + RgbInt8Color.rgbName(0x9f, 0x76, 0x94, 'p 84-12 u'), + RgbInt8Color.rgbName(0x9e, 0x75, 0x9c, 'p 89-12 c'), + RgbInt8Color.rgbName(0xa8, 0x6f, 0x9d, '7655 up'), + RgbInt8Color.rgbName(0xa3, 0x71, 0x9e, 'p 88-13 c'), + RgbInt8Color.rgbName(0x9b, 0x7e, 0xa4, '2079 c'), + RgbInt8Color.rgbName(0xa2, 0x77, 0xa6, '7440 c'), + RgbInt8Color.rgbName(0xa4, 0x87, 0xba, '2577 cp'), + RgbInt8Color.rgbName(0xb2, 0x9e, 0xe7, '935 u'), + RgbInt8Color.rgbName(0xab, 0x91, 0x13, '8644 c'), + RgbInt8Color.rgbName(0xb1, 0x93, 0x19, 'p 8-16 c'), + RgbInt8Color.rgbName(0xab, 0x7f, 0x20, '132 cp'), + RgbInt8Color.rgbName(0xac, 0x7f, 0x20, 'p 15-16 c'), + RgbInt8Color.rgbName(0xad, 0x84, 0x1f, '1255 c'), + RgbInt8Color.rgbName(0xb2, 0x78, 0x27, '139 cp'), + RgbInt8Color.rgbName(0xa6, 0x7d, 0x34, '8385 c'), + RgbInt8Color.rgbName(0xa2, 0x77, 0x42, 'p 22-14 c'), + RgbInt8Color.rgbName(0xa7, 0x74, 0x40, '2314 cp'), + RgbInt8Color.rgbName(0xa2, 0x7c, 0x45, 'p 15-15 u'), + RgbInt8Color.rgbName(0xa7, 0x7e, 0x3c, 'p 19-6 c'), + RgbInt8Color.rgbName(0xa6, 0x78, 0x41, 'p 26-6 c'), + RgbInt8Color.rgbName(0xa4, 0x78, 0x48, '2314 xgc'), + RgbInt8Color.rgbName(0xa4, 0x74, 0x49, '2318 c'), + RgbInt8Color.rgbName(0xa3, 0x79, 0x49, 'p 18-15 u'), + RgbInt8Color.rgbName(0x9f, 0x78, 0x54, '154 up'), + RgbInt8Color.rgbName(0x9b, 0x7c, 0x56, '464 u'), + RgbInt8Color.rgbName(0xa5, 0x73, 0x50, '724 u'), + RgbInt8Color.rgbName(0xa7, 0x77, 0x50, '7511 u'), + RgbInt8Color.rgbName(0xa1, 0x78, 0x53, '7512 up'), + RgbInt8Color.rgbName(0xa2, 0x7a, 0x55, '7574 up'), + RgbInt8Color.rgbName(0xa5, 0x7b, 0x4f, 'p 22-6 u'), + RgbInt8Color.rgbName(0xa1, 0x7b, 0x50, 'p 26-13 c'), + RgbInt8Color.rgbName(0x9e, 0x79, 0x57, 'p 26-5 u'), + RgbInt8Color.rgbName(0xa2, 0x7c, 0x5c, '10366 c'), + RgbInt8Color.rgbName(0x9c, 0x7d, 0x61, '2318 up'), + RgbInt8Color.rgbName(0x9d, 0x7e, 0x58, '464 up'), + RgbInt8Color.rgbName(0xa4, 0x78, 0x59, '470 up'), + RgbInt8Color.rgbName(0xa3, 0x77, 0x5b, 'p 29-5 u'), + RgbInt8Color.rgbName(0x9e, 0x76, 0x5d, 'p 32-12 u'), + RgbInt8Color.rgbName(0xa6, 0x78, 0x5b, 'p 32-5 u'), + RgbInt8Color.rgbName(0xa1, 0x7e, 0x65, '2318 u'), + RgbInt8Color.rgbName(0xa3, 0x7b, 0x63, '7516 up'), + RgbInt8Color.rgbName(0x9c, 0x79, 0x68, '7525 up'), + RgbInt8Color.rgbName(0x9e, 0x7e, 0x61, 'p 26-12 u'), + RgbInt8Color.rgbName(0xa5, 0x77, 0x66, 'p 47-12 u'), + RgbInt8Color.rgbName(0xa6, 0x7a, 0x6f, '2441 u'), + RgbInt8Color.rgbName(0xa7, 0x7a, 0x6d, '2441 up'), + RgbInt8Color.rgbName(0xa1, 0x7f, 0x6e, '2468 u'), + RgbInt8Color.rgbName(0xa0, 0x7d, 0x6b, '4645 u'), + RgbInt8Color.rgbName(0x99, 0x7f, 0x73, '4715 up'), + RgbInt8Color.rgbName(0x9f, 0x81, 0x70, '8021 c'), + RgbInt8Color.rgbName(0x9e, 0x7b, 0x71, '8042 c'), + RgbInt8Color.rgbName(0xa2, 0x7e, 0x70, 'p 33-7 c'), + RgbInt8Color.rgbName(0x9d, 0x7e, 0x6f, 'p 33-7 u'), + RgbInt8Color.rgbName(0xa5, 0x7a, 0x6c, 'p 43-6 u'), + RgbInt8Color.rgbName(0xa1, 0x7c, 0x6b, 'p 44-6 c'), + RgbInt8Color.rgbName(0xa6, 0x79, 0x6b, 'p 50-12 u'), + RgbInt8Color.rgbName(0xa3, 0x75, 0x73, 'p 51-7 c'), + RgbInt8Color.rgbName(0xa0, 0x7b, 0x7b, '8441 c'), + RgbInt8Color.rgbName(0xa3, 0x79, 0x7c, 'p 67-5 u'), + RgbInt8Color.rgbName(0x98, 0x86, 0x7f, 'p 171-6 c'), + RgbInt8Color.rgbName(0xa7, 0x79, 0x80, 'p 67-6 c'), + RgbInt8Color.rgbName(0xa5, 0x7e, 0x81, 'p 78-5 u'), + RgbInt8Color.rgbName(0xa8, 0x78, 0x83, 'p 78-6 c'), + RgbInt8Color.rgbName(0xa0, 0x7f, 0x7e, 'p 79-5 u'), + RgbInt8Color.rgbName(0xa4, 0x79, 0x84, 'p 79-6 c'), + RgbInt8Color.rgbName(0xa7, 0x76, 0x8a, '688 up'), + RgbInt8Color.rgbName(0xa9, 0x78, 0x8e, 'p 82-1 u'), + RgbInt8Color.rgbName(0x9f, 0x7c, 0x94, 'p 85-4 u'), + RgbInt8Color.rgbName(0x9f, 0x82, 0x8e, 'p 86-6 u'), + RgbInt8Color.rgbName(0x9c, 0x7e, 0x9e, '10202 c'), + RgbInt8Color.rgbName(0xa2, 0x7e, 0x94, '2054 u'), + RgbInt8Color.rgbName(0xa2, 0x78, 0x9c, '7654 c'), + RgbInt8Color.rgbName(0xa2, 0x7c, 0x9c, 'p 89-4 u'), + RgbInt8Color.rgbName(0xa1, 0x7d, 0x9e, '10197 c'), + RgbInt8Color.rgbName(0x9f, 0x7c, 0xa4, '10209 c'), + RgbInt8Color.rgbName(0xa9, 0x78, 0xa0, '7655 u'), + RgbInt8Color.rgbName(0xa5, 0x78, 0xa2, 'p 89-4 c'), + RgbInt8Color.rgbName(0xa4, 0x79, 0xa6, '2592 up'), + RgbInt8Color.rgbName(0x9f, 0x80, 0xa7, 'p 92-1 c'), + RgbInt8Color.rgbName(0xa0, 0x7f, 0xac, 'p 93-12 c'), + RgbInt8Color.rgbName(0x9f, 0x85, 0xab, 'p 93-12 u'), + RgbInt8Color.rgbName(0xa5, 0x7f, 0xb2, '521 c'), + RgbInt8Color.rgbName(0xaa, 0x7e, 0xb3, '7440 cp'), + RgbInt8Color.rgbName(0xaf, 0x95, 0xd3, '2073 c'), + RgbInt8Color.rgbName(0xae, 0x96, 0xd4, '2073 u'), + RgbInt8Color.rgbName(0xb4, 0x98, 0x1d, '457 cp'), + RgbInt8Color.rgbName(0xb1, 0x9c, 0x11, 'p 5-16 c'), + RgbInt8Color.rgbName(0xac, 0x83, 0x25, '1255 cp'), + RgbInt8Color.rgbName(0xa6, 0x83, 0x40, '8384 c'), + RgbInt8Color.rgbName(0xaa, 0x84, 0x47, 'p 11-8 u'), + RgbInt8Color.rgbName(0xa3, 0x86, 0x4a, 'p 16-14 c'), + RgbInt8Color.rgbName(0x9e, 0x7f, 0x56, '10355 c'), + RgbInt8Color.rgbName(0x9e, 0x87, 0x55, '1255 up'), + RgbInt8Color.rgbName(0xa9, 0x82, 0x53, '139 up'), + RgbInt8Color.rgbName(0xa0, 0x7d, 0x55, '146 up'), + RgbInt8Color.rgbName(0xa5, 0x7e, 0x4d, '2318 cp'), + RgbInt8Color.rgbName(0xa3, 0x88, 0x50, 'p 12-6 u'), + RgbInt8Color.rgbName(0xaa, 0x82, 0x4e, 'p 18-14 u'), + RgbInt8Color.rgbName(0xa4, 0x82, 0x52, 'p 19-5 u'), + RgbInt8Color.rgbName(0xa1, 0x7e, 0x54, 'p 22-13 u'), + RgbInt8Color.rgbName(0xa3, 0x7e, 0x5a, '2314 up'), + RgbInt8Color.rgbName(0xa2, 0x85, 0x5b, 'p 19-13 u'), + RgbInt8Color.rgbName(0xa6, 0x7e, 0x59, 'p 29-12 c'), + RgbInt8Color.rgbName(0x9d, 0x86, 0x69, '10359 c'), + RgbInt8Color.rgbName(0xa4, 0x82, 0x67, '730 up'), + RgbInt8Color.rgbName(0x9b, 0x87, 0x68, 'p 13-8 u'), + RgbInt8Color.rgbName(0xa0, 0x83, 0x68, 'p 23-9 c'), + RgbInt8Color.rgbName(0x9e, 0x86, 0x6b, 'p 23-9 u'), + RgbInt8Color.rgbName(0xa7, 0x82, 0x64, 'p 29-11 u'), + RgbInt8Color.rgbName(0xa4, 0x85, 0x71, '2468 up'), + RgbInt8Color.rgbName(0x9c, 0x87, 0x72, '7504 up'), + RgbInt8Color.rgbName(0xa2, 0x80, 0x73, '7614 xgc'), + RgbInt8Color.rgbName(0xa4, 0x83, 0x73, 'p 44-5 c'), + RgbInt8Color.rgbName(0x9e, 0x8a, 0x77, '2470 u'), + RgbInt8Color.rgbName(0x9a, 0x88, 0x7b, '8020 c'), + RgbInt8Color.rgbName(0x9c, 0x84, 0x7c, '8041 c'), + RgbInt8Color.rgbName(0x99, 0x89, 0x7c, 'p 170-5 u'), + RgbInt8Color.rgbName(0xa1, 0x85, 0x75, 'p 33-6 u'), + RgbInt8Color.rgbName(0xa4, 0x83, 0x7a, 'p 51-6 u'), + RgbInt8Color.rgbName(0xa0, 0x86, 0x7f, '2475 c'), + RgbInt8Color.rgbName(0x9a, 0x88, 0x86, 'p 171-5 u'), + RgbInt8Color.rgbName(0xa0, 0x87, 0x80, 'p 44-4 u'), + RgbInt8Color.rgbName(0x98, 0x90, 0x8b, '409 up'), + RgbInt8Color.rgbName(0xa0, 0x85, 0x8a, '7639 u'), + RgbInt8Color.rgbName(0x9b, 0x8f, 0x8b, 'p 172-5 u'), + RgbInt8Color.rgbName(0xa8, 0x83, 0x8c, 'p 79-5 c'), + RgbInt8Color.rgbName(0xa3, 0x84, 0x9b, '5145 xgc'), + RgbInt8Color.rgbName(0x9e, 0x87, 0x97, 'p 87-5 c'), + RgbInt8Color.rgbName(0xa4, 0x80, 0x9d, '5145 cp'), + RgbInt8Color.rgbName(0xa5, 0x85, 0xa0, 'p 89-11 u'), + RgbInt8Color.rgbName(0x9f, 0x88, 0x9d, 'p 90-11 u'), + RgbInt8Color.rgbName(0xa2, 0x82, 0xa1, 'p 90-4 c'), + RgbInt8Color.rgbName(0xa2, 0x86, 0xad, '2079 up'), + RgbInt8Color.rgbName(0xa2, 0x8b, 0xaa, '2079 xgc'), + RgbInt8Color.rgbName(0xab, 0x84, 0xb6, '521 cp'), + RgbInt8Color.rgbName(0xa6, 0x83, 0xb3, '521 xgc'), + RgbInt8Color.rgbName(0xac, 0x84, 0xb4, 'p 91-4 c'), + RgbInt8Color.rgbName(0xa5, 0x85, 0xb5, 'p 93-4 c'), + RgbInt8Color.rgbName(0xb0, 0x98, 0xcd, '2073 xgc'), + RgbInt8Color.rgbName(0xaf, 0xa0, 0xc9, '2099 u'), + RgbInt8Color.rgbName(0xad, 0x98, 0xcd, '2645 xgc'), + RgbInt8Color.rgbName(0xb4, 0x8f, 0x1f, '118 cp'), + RgbInt8Color.rgbName(0xb2, 0x8a, 0x24, 'p 11-15 c'), + RgbInt8Color.rgbName(0xb2, 0x8b, 0x29, '1255 xgc'), + RgbInt8Color.rgbName(0xb2, 0x8b, 0x33, '10128 c'), + RgbInt8Color.rgbName(0xa8, 0x91, 0x53, '118 up'), + RgbInt8Color.rgbName(0xa5, 0x88, 0x55, '132 up'), + RgbInt8Color.rgbName(0xa2, 0x8d, 0x5b, '8383 c'), + RgbInt8Color.rgbName(0xa8, 0x88, 0x51, 'p 11-14 u'), + RgbInt8Color.rgbName(0xa4, 0x89, 0x59, 'p 16-13 u'), + RgbInt8Color.rgbName(0xa2, 0x8d, 0x56, 'p 9-6 u'), + RgbInt8Color.rgbName(0xa5, 0x8d, 0x5f, '7557 u'), + RgbInt8Color.rgbName(0xa4, 0x91, 0x5e, '7754 u'), + RgbInt8Color.rgbName(0xad, 0x8c, 0x5a, 'p 19-13 c'), + RgbInt8Color.rgbName(0xa4, 0x90, 0x5d, 'p 9-13 u'), + RgbInt8Color.rgbName(0xa1, 0x8b, 0x6b, '10347 c'), + RgbInt8Color.rgbName(0xa4, 0x8a, 0x66, '10354 c'), + RgbInt8Color.rgbName(0xa0, 0x91, 0x67, '7503 up'), + RgbInt8Color.rgbName(0x9c, 0x8f, 0x69, '8382 c'), + RgbInt8Color.rgbName(0xa7, 0x8c, 0x66, 'p 13-8 c'), + RgbInt8Color.rgbName(0xa0, 0x90, 0x74, '2325 c'), + RgbInt8Color.rgbName(0x9e, 0x91, 0x73, '2325 xgc'), + RgbInt8Color.rgbName(0xa1, 0x8e, 0x6f, 'p 13-7 u'), + RgbInt8Color.rgbName(0xa7, 0x8b, 0x6c, 'p 23-8 u'), + RgbInt8Color.rgbName(0xa0, 0x8f, 0x78, '2470 up'), + RgbInt8Color.rgbName(0x9d, 0x8f, 0x7b, '7530 xgc'), + RgbInt8Color.rgbName(0x9d, 0x8f, 0x7b, 'p 170-5 c'), + RgbInt8Color.rgbName(0xa2, 0x8b, 0x83, '2475 cp'), + RgbInt8Color.rgbName(0xa4, 0x8c, 0x84, 'p 44-3 u'), + RgbInt8Color.rgbName(0x9b, 0x91, 0x87, 'warm gray 7 xgc'), + RgbInt8Color.rgbName(0xa0, 0x8f, 0x8a, 'p 171-5 c'), + RgbInt8Color.rgbName(0x9b, 0x90, 0x91, 'p 173-4 u'), + RgbInt8Color.rgbName(0x9d, 0x95, 0x94, '408 u'), + RgbInt8Color.rgbName(0xa2, 0x8c, 0x9c, '5215 u'), + RgbInt8Color.rgbName(0x9c, 0x92, 0x9d, '7653 xgc'), + RgbInt8Color.rgbName(0xa2, 0x8d, 0x9a, 'p 87-4 u'), + RgbInt8Color.rgbName(0x9e, 0x95, 0x9d, '10190 c'), + RgbInt8Color.rgbName(0xa4, 0x89, 0x9f, '5145 u'), + RgbInt8Color.rgbName(0xa0, 0x92, 0xa1, '7653 cp'), + RgbInt8Color.rgbName(0xa7, 0x8c, 0xa4, 'p 85-11 c'), + RgbInt8Color.rgbName(0xa4, 0x88, 0x9d, 'p 85-11 u'), + RgbInt8Color.rgbName(0x9e, 0x91, 0xa8, 'p 98-1 u'), + RgbInt8Color.rgbName(0xa3, 0x8b, 0xa8, '10208 c'), + RgbInt8Color.rgbName(0xa3, 0x8c, 0xab, '2079 u'), + RgbInt8Color.rgbName(0xa4, 0x93, 0xab, 'p 92-11 u'), + RgbInt8Color.rgbName(0xa3, 0x8f, 0xae, 'p 95-3 c'), + RgbInt8Color.rgbName(0xa9, 0x8b, 0xb5, '521 u'), + RgbInt8Color.rgbName(0xa1, 0x92, 0xb2, '666 c'), + RgbInt8Color.rgbName(0x9f, 0x94, 0xb8, '666 cp'), + RgbInt8Color.rgbName(0xa2, 0x95, 0xb4, '666 xgc'), + RgbInt8Color.rgbName(0x9e, 0x97, 0xb8, 'p 102-10 u'), + RgbInt8Color.rgbName(0xa7, 0x8c, 0xb4, 'p 93-4 u'), + RgbInt8Color.rgbName(0xa0, 0x94, 0xb7, 'p 97-2 c'), + RgbInt8Color.rgbName(0xa1, 0x98, 0xb4, 'p 98-1 c'), + RgbInt8Color.rgbName(0xa1, 0x98, 0xc1, '2093 cp'), + RgbInt8Color.rgbName(0xa2, 0x98, 0xbf, '2100 up'), + RgbInt8Color.rgbName(0xad, 0x8c, 0xbb, '2573 cp'), + RgbInt8Color.rgbName(0xae, 0x8c, 0xbd, '528 cp'), + RgbInt8Color.rgbName(0xa5, 0x92, 0xba, 'p 96-3 u'), + RgbInt8Color.rgbName(0x9e, 0x98, 0xc3, 'p 99-4 c'), + RgbInt8Color.rgbName(0xa4, 0x98, 0xc6, '2645 cp'), + RgbInt8Color.rgbName(0x9f, 0x9c, 0xc5, '271 up'), + RgbInt8Color.rgbName(0xa1, 0xa1, 0xcc, '2705 cp'), + RgbInt8Color.rgbName(0xba, 0x93, 0xdf, 'violet 0631 u'), + RgbInt8Color.rgbName(0xad, 0x9b, 0x34, 'p 6-7 c'), + RgbInt8Color.rgbName(0xad, 0x98, 0x44, '457 u'), + RgbInt8Color.rgbName(0xac, 0x9f, 0x3c, '618 c'), + RgbInt8Color.rgbName(0xa7, 0x9a, 0x4c, '613 up'), + RgbInt8Color.rgbName(0xac, 0x97, 0x51, '10126 c'), + RgbInt8Color.rgbName(0xa6, 0x94, 0x53, '111 up'), + RgbInt8Color.rgbName(0xa4, 0x9a, 0x59, 'p 3-6 u'), + RgbInt8Color.rgbName(0xa8, 0x96, 0x52, 'p 5-14 u'), + RgbInt8Color.rgbName(0xa5, 0x95, 0x56, 'p 6-6 u'), + RgbInt8Color.rgbName(0xa5, 0x97, 0x5e, 'p 6-12 u'), + RgbInt8Color.rgbName(0xa6, 0x97, 0x6b, '4505 up'), + RgbInt8Color.rgbName(0xa6, 0x9d, 0x62, '618 u'), + RgbInt8Color.rgbName(0xa8, 0x99, 0x68, '7503 c'), + RgbInt8Color.rgbName(0xaa, 0x99, 0x64, '7503 xgc'), + RgbInt8Color.rgbName(0xa5, 0x96, 0x75, '2325 cp'), + RgbInt8Color.rgbName(0xa1, 0x94, 0x79, '2325 up'), + RgbInt8Color.rgbName(0xa3, 0x97, 0x71, '4505 u'), + RgbInt8Color.rgbName(0xa5, 0x9d, 0x6d, '451 cp'), + RgbInt8Color.rgbName(0xa1, 0x96, 0x7e, '10340 c'), + RgbInt8Color.rgbName(0xa2, 0x90, 0x7a, '10358 c'), + RgbInt8Color.rgbName(0xa2, 0x96, 0x81, '2325 u'), + RgbInt8Color.rgbName(0x9f, 0x94, 0x82, 'p 169-8 u'), + RgbInt8Color.rgbName(0x9f, 0x97, 0x83, 'p 178-5 u'), + RgbInt8Color.rgbName(0xa3, 0x93, 0x82, '7530 c'), + RgbInt8Color.rgbName(0xa4, 0x98, 0x85, 'p 170-4 c'), + RgbInt8Color.rgbName(0xa1, 0x92, 0x84, 'p 170-4 u'), + RgbInt8Color.rgbName(0xa1, 0x98, 0x8f, '10370 c'), + RgbInt8Color.rgbName(0xa0, 0x9b, 0x8e, '402 xgc'), + RgbInt8Color.rgbName(0x9c, 0x96, 0x90, '403 up'), + RgbInt8Color.rgbName(0x9f, 0x93, 0x8c, '408 cp'), + RgbInt8Color.rgbName(0x9e, 0x97, 0x8e, 'black 0961 c'), + RgbInt8Color.rgbName(0x9e, 0x98, 0x90, 'p 172-5 c'), + RgbInt8Color.rgbName(0x9b, 0x9b, 0x92, 'p 176-2 u'), + RgbInt8Color.rgbName(0xa2, 0x98, 0x8f, 'warm gray 6 cp'), + RgbInt8Color.rgbName(0x9f, 0x97, 0x8e, 'warm gray 7 up'), + RgbInt8Color.rgbName(0x9d, 0x99, 0x94, 'black 0961 u'), + RgbInt8Color.rgbName(0x98, 0x9a, 0x99, 'cool gray 7 xgc'), + RgbInt8Color.rgbName(0x9c, 0x9d, 0x9b, 'cool gray 8 up'), + RgbInt8Color.rgbName(0xa0, 0x98, 0x98, 'p 173-3 u'), + RgbInt8Color.rgbName(0x9f, 0x9a, 0x99, 'p 173-4 c'), + RgbInt8Color.rgbName(0x9d, 0x9c, 0x92, 'p 176-2 c'), + RgbInt8Color.rgbName(0xa2, 0x9b, 0x96, 'warm gray 6 u'), + RgbInt8Color.rgbName(0xa2, 0x97, 0x9c, '7653 up'), + RgbInt8Color.rgbName(0xa7, 0x94, 0xa1, 'p 87-3 u'), + RgbInt8Color.rgbName(0xa3, 0x9a, 0xa6, '2358 u'), + RgbInt8Color.rgbName(0xa3, 0x9a, 0xac, '7660 cp'), + RgbInt8Color.rgbName(0xa1, 0x95, 0xb0, 'p 97-9 u'), + RgbInt8Color.rgbName(0xa1, 0x9b, 0xb9, 'p 100-3 u'), + RgbInt8Color.rgbName(0xa6, 0x93, 0xb6, 'p 94-3 c'), + RgbInt8Color.rgbName(0xa6, 0x99, 0xc1, '2093 c'), + RgbInt8Color.rgbName(0xa5, 0x99, 0xc0, '2093 u'), + RgbInt8Color.rgbName(0xa3, 0x9e, 0xc5, '7446 up'), + RgbInt8Color.rgbName(0x9f, 0xb0, 0xd6, '2134 u'), + RgbInt8Color.rgbName(0xad, 0xae, 0xde, '270 u'), + RgbInt8Color.rgbName(0xb4, 0xa9, 0x1f, '7766 c'), + RgbInt8Color.rgbName(0xb4, 0x9f, 0x29, '103 u'), + RgbInt8Color.rgbName(0xac, 0xa0, 0x4a, 'p 2-15 u'), + RgbInt8Color.rgbName(0xb1, 0xa2, 0x42, 'p 2-8 u'), + RgbInt8Color.rgbName(0xa8, 0x9f, 0x52, '3985 up'), + RgbInt8Color.rgbName(0xa4, 0xa1, 0x55, 'p 167-14 u'), + RgbInt8Color.rgbName(0xa5, 0xa2, 0x53, 'p 168-5 c'), + RgbInt8Color.rgbName(0xaa, 0xa7, 0x4f, 'p 167-7 u'), + RgbInt8Color.rgbName(0xae, 0x9f, 0x51, 'p 6-13 c'), + RgbInt8Color.rgbName(0xab, 0x9d, 0x62, '10125 c'), + RgbInt8Color.rgbName(0xa2, 0xa5, 0x69, '5777 c'), + RgbInt8Color.rgbName(0xa7, 0x9d, 0x69, '618 up'), + RgbInt8Color.rgbName(0xa4, 0xa7, 0x68, 'p 165-4 u'), + RgbInt8Color.rgbName(0xa4, 0xa2, 0x6d, 'p 168-12 u'), + RgbInt8Color.rgbName(0xa5, 0xa3, 0x6c, 'p 168-3 u'), + RgbInt8Color.rgbName(0xa7, 0xa3, 0x75, '5845 u'), + RgbInt8Color.rgbName(0xaa, 0xa2, 0x75, '10124 c'), + RgbInt8Color.rgbName(0x9e, 0x9d, 0x86, 'p 178-5 c'), + RgbInt8Color.rgbName(0xa6, 0x9f, 0x88, '7536 c'), + RgbInt8Color.rgbName(0xa4, 0x9e, 0x86, '7536 xgc'), + RgbInt8Color.rgbName(0x9d, 0x9f, 0x99, '415 u'), + RgbInt8Color.rgbName(0xa3, 0xa2, 0x8f, 'p 169-7 c'), + RgbInt8Color.rgbName(0xa0, 0x9d, 0x8f, 'p 177-3 u'), + RgbInt8Color.rgbName(0xa9, 0xa0, 0x8c, 'p 178-4 u'), + RgbInt8Color.rgbName(0xa3, 0x9e, 0x98, '402 u'), + RgbInt8Color.rgbName(0xa5, 0xa1, 0x99, '402 up'), + RgbInt8Color.rgbName(0xa2, 0xa2, 0x96, '415 up'), + RgbInt8Color.rgbName(0xa0, 0xa6, 0x99, '7538 up'), + RgbInt8Color.rgbName(0xa0, 0xa3, 0xa2, '422 xgc'), + RgbInt8Color.rgbName(0xa0, 0xa3, 0xa5, 'p 174-3 c'), + RgbInt8Color.rgbName(0xa1, 0xa4, 0x9d, 'p 175-4 u'), + RgbInt8Color.rgbName(0xa3, 0xa1, 0x9f, 'p 179-6 u'), + RgbInt8Color.rgbName(0xa5, 0x9f, 0xaa, '2358 up'), + RgbInt8Color.rgbName(0xa4, 0xa6, 0xa8, 'cool gray 6 u'), + RgbInt8Color.rgbName(0x9e, 0xa3, 0xb7, '2107 cp'), + RgbInt8Color.rgbName(0xa5, 0xa0, 0xb7, 'p 101-2 u'), + RgbInt8Color.rgbName(0xa4, 0xa0, 0xbd, 'p 103-1 u'), + RgbInt8Color.rgbName(0xa1, 0xa5, 0xc0, 'p 105-10 u'), + RgbInt8Color.rgbName(0xa8, 0xa1, 0xc0, 'p 99-11 u'), + RgbInt8Color.rgbName(0xa7, 0xa0, 0xc5, '2093 up'), + RgbInt8Color.rgbName(0xa6, 0x9e, 0xc5, '2093 xgc'), + RgbInt8Color.rgbName(0x9d, 0xb0, 0xd0, '7681 u'), + RgbInt8Color.rgbName(0x9b, 0xaf, 0xce, '7681 xgc'), + RgbInt8Color.rgbName(0xb4, 0xb5, 0xdf, '270 c'), + RgbInt8Color.rgbName(0xc6, 0xae, 0x0, 'p 5-8 c'), + RgbInt8Color.rgbName(0xae, 0xa6, 0x43, '618 xgc'), + RgbInt8Color.rgbName(0xb0, 0xa5, 0x49, '10115 c'), + RgbInt8Color.rgbName(0xac, 0xae, 0x4c, '397 up'), + RgbInt8Color.rgbName(0xb0, 0xab, 0x4f, '10108 c'), + RgbInt8Color.rgbName(0xa9, 0xae, 0x58, 'p 164-6 u'), + RgbInt8Color.rgbName(0xae, 0xac, 0x5c, 'p 167-13 c'), + RgbInt8Color.rgbName(0xac, 0xaa, 0x62, '10107 c'), + RgbInt8Color.rgbName(0xa5, 0xb0, 0x6a, '2302 up'), + RgbInt8Color.rgbName(0xa4, 0xaa, 0x6a, '5777 xgc'), + RgbInt8Color.rgbName(0xa9, 0xac, 0x64, 'p 164-13 u'), + RgbInt8Color.rgbName(0xa8, 0xab, 0x69, 'p 165-4 c'), + RgbInt8Color.rgbName(0xac, 0xa9, 0x70, '10113 c'), + RgbInt8Color.rgbName(0xa3, 0xab, 0x76, '10322 c'), + RgbInt8Color.rgbName(0xaf, 0xa9, 0x6e, '5845 c'), + RgbInt8Color.rgbName(0xa5, 0xac, 0x77, 'p 162-11 c'), + RgbInt8Color.rgbName(0xa6, 0xab, 0x75, 'p 165-11 c'), + RgbInt8Color.rgbName(0xa7, 0xaa, 0x75, 'p 165-11 u'), + RgbInt8Color.rgbName(0xab, 0xab, 0x74, '10106 c'), + RgbInt8Color.rgbName(0xa6, 0xa9, 0x7b, '5777 u'), + RgbInt8Color.rgbName(0xa1, 0xa9, 0x7e, '5783 xgc'), + RgbInt8Color.rgbName(0xab, 0xa8, 0x83, '452 up'), + RgbInt8Color.rgbName(0x9c, 0xaf, 0x88, '7494 c'), + RgbInt8Color.rgbName(0x9f, 0xb1, 0x87, 'p 156-1 u'), + RgbInt8Color.rgbName(0xaa, 0xaa, 0x88, '10112 c'), + RgbInt8Color.rgbName(0x9e, 0xb0, 0x91, '7494 u'), + RgbInt8Color.rgbName(0xa3, 0xb2, 0x8b, 'p 156-10 c'), + RgbInt8Color.rgbName(0xa2, 0xa8, 0x9a, '7537 xgc'), + RgbInt8Color.rgbName(0xa9, 0xaa, 0x99, 'p 169-6 c'), + RgbInt8Color.rgbName(0xa4, 0xa5, 0x93, 'p 177-3 c'), + RgbInt8Color.rgbName(0xa8, 0xa9, 0x9e, '414 c'), + RgbInt8Color.rgbName(0x9f, 0xaf, 0xa5, '5645 u'), + RgbInt8Color.rgbName(0xa7, 0xac, 0xa2, '7537 c'), + RgbInt8Color.rgbName(0xa5, 0xaa, 0xa8, '7538 u'), + RgbInt8Color.rgbName(0xa3, 0xa4, 0xa3, 'cool gray 6 up'), + RgbInt8Color.rgbName(0xa2, 0xa7, 0xa2, 'p 175-4 c'), + RgbInt8Color.rgbName(0xa5, 0xa7, 0xa8, '422 cp'), + RgbInt8Color.rgbName(0xa7, 0xab, 0xa8, '422 up'), + RgbInt8Color.rgbName(0xa2, 0xaa, 0xad, '429 c'), + RgbInt8Color.rgbName(0xa2, 0xac, 0xab, '442 c'), + RgbInt8Color.rgbName(0xa7, 0xa8, 0xaa, 'cool gray 6 c'), + RgbInt8Color.rgbName(0xa8, 0xa9, 0xa8, 'cool gray 6 xgc'), + RgbInt8Color.rgbName(0xa6, 0xa9, 0xaa, 'silver c'), + RgbInt8Color.rgbName(0xa6, 0xad, 0xaf, '429 xgc'), + RgbInt8Color.rgbName(0xa0, 0xac, 0xc4, 'p 108-2 c'), + RgbInt8Color.rgbName(0xa2, 0xb1, 0xc8, '536 xgc'), + RgbInt8Color.rgbName(0xa7, 0xa7, 0xc6, 'p 100-3 c'), + RgbInt8Color.rgbName(0xa6, 0xa6, 0xc5, 'p 103-1 c'), + RgbInt8Color.rgbName(0xa6, 0xaa, 0xcd, 'p 104-3 u'), + RgbInt8Color.rgbName(0xa2, 0xae, 0xd0, '2113 up'), + RgbInt8Color.rgbName(0xa7, 0xaf, 0xd7, '2716 xgc'), + RgbInt8Color.rgbName(0xb4, 0xc5, 0xeb, '2120 u'), + RgbInt8Color.rgbName(0xb3, 0xc5, 0xde, '2708 up'), + RgbInt8Color.rgbName(0xab, 0xc1, 0xe1, '2717 cp'), + RgbInt8Color.rgbName(0xad, 0xc2, 0xe1, '2717 xgc'), + RgbInt8Color.rgbName(0xaf, 0xc3, 0xdc, '651 u'), + RgbInt8Color.rgbName(0xaf, 0xc3, 0xdc, '651 up'), + RgbInt8Color.rgbName(0xb0, 0xc7, 0xe0, '658 up'), + RgbInt8Color.rgbName(0xae, 0xc4, 0xe3, '658 xgc'), + RgbInt8Color.rgbName(0xab, 0xc5, 0xe2, 'p 109-3 u'), + RgbInt8Color.rgbName(0xc7, 0xb0, 0x0, '103 xgc'), + RgbInt8Color.rgbName(0xb1, 0xb4, 0x53, '583 up'), + RgbInt8Color.rgbName(0xb1, 0xb5, 0x53, 'p 164-6 c'), + RgbInt8Color.rgbName(0xad, 0xb8, 0x5d, '2302 cp'), + RgbInt8Color.rgbName(0xaf, 0xb3, 0x5d, '7745 u'), + RgbInt8Color.rgbName(0xae, 0xb8, 0x62, '2302 c'), + RgbInt8Color.rgbName(0xad, 0xba, 0x62, '2302 xgc'), + RgbInt8Color.rgbName(0xac, 0xb0, 0x66, 'p 164-13 c'), + RgbInt8Color.rgbName(0xab, 0xb3, 0x72, 'p 161-12 u'), + RgbInt8Color.rgbName(0xa2, 0xb7, 0x85, 'p 155-10 c'), + RgbInt8Color.rgbName(0xaf, 0xb7, 0x78, 'p 161-12 c'), + RgbInt8Color.rgbName(0xab, 0xb1, 0x7a, 'p 162-4 u'), + RgbInt8Color.rgbName(0xab, 0xb0, 0x78, 'p 165-3 c'), + RgbInt8Color.rgbName(0xa7, 0xb3, 0x84, 'p 159-11 c'), + RgbInt8Color.rgbName(0xaa, 0xb0, 0x8d, '5783 cp'), + RgbInt8Color.rgbName(0xa4, 0xb0, 0x91, '7494 up'), + RgbInt8Color.rgbName(0xa1, 0xb4, 0x91, 'p 150-9 u'), + RgbInt8Color.rgbName(0xa1, 0xba, 0x93, 'p 152-11 u'), + RgbInt8Color.rgbName(0xa6, 0xba, 0x8d, 'p 155-9 u'), + RgbInt8Color.rgbName(0xa4, 0xb8, 0x9a, '2404 up'), + RgbInt8Color.rgbName(0x9f, 0xb9, 0x9a, '2404 xgc'), + RgbInt8Color.rgbName(0xa7, 0xbb, 0x96, 'p 150-1 u'), + RgbInt8Color.rgbName(0xa4, 0xb9, 0x94, 'p 153-3 c'), + RgbInt8Color.rgbName(0xa5, 0xb9, 0x9c, '2404 c'), + RgbInt8Color.rgbName(0xa3, 0xb2, 0xa4, '5645 c'), + RgbInt8Color.rgbName(0xa4, 0xb2, 0xa3, '5645 up'), + RgbInt8Color.rgbName(0xa3, 0xb4, 0xa5, '5645 xgc'), + RgbInt8Color.rgbName(0xa3, 0xbb, 0xa3, 'p 138-9 u'), + RgbInt8Color.rgbName(0xa6, 0xbb, 0xaa, '5575 up'), + RgbInt8Color.rgbName(0xa2, 0xb9, 0xaf, '5585 u'), + RgbInt8Color.rgbName(0xa4, 0xba, 0xa8, '623 up'), + RgbInt8Color.rgbName(0xa8, 0xb1, 0xb1, '428 up'), + RgbInt8Color.rgbName(0xa6, 0xba, 0xb7, '5507 cp'), + RgbInt8Color.rgbName(0xa5, 0xb2, 0xb8, '7544 up'), + RgbInt8Color.rgbName(0xa6, 0xb8, 0xc1, '2176 c'), + RgbInt8Color.rgbName(0xa3, 0xb9, 0xc3, '7542 xgc'), + RgbInt8Color.rgbName(0xa3, 0xb3, 0xcb, '536 cp'), + RgbInt8Color.rgbName(0xa4, 0xb5, 0xcb, '536 u'), + RgbInt8Color.rgbName(0xa2, 0xba, 0xca, '5435 cp'), + RgbInt8Color.rgbName(0xa3, 0xb8, 0xc9, '5435 xgc'), + RgbInt8Color.rgbName(0xa1, 0xb6, 0xcc, 'p 110-10 u'), + RgbInt8Color.rgbName(0xa7, 0xb6, 0xc8, 'p 111-9 u'), + RgbInt8Color.rgbName(0xa5, 0xb3, 0xd5, '2134 up'), + RgbInt8Color.rgbName(0x9d, 0xb9, 0xd5, '644 u'), + RgbInt8Color.rgbName(0xa0, 0xb9, 0xd4, 'p 109-11 u'), + RgbInt8Color.rgbName(0xa1, 0xb8, 0xd0, 'p 110-10 c'), + RgbInt8Color.rgbName(0xa3, 0xba, 0xdb, '2128 up'), + RgbInt8Color.rgbName(0xa1, 0xbb, 0xd6, '644 xgc'), + RgbInt8Color.rgbName(0xa3, 0xba, 0xd8, '651 cp'), + RgbInt8Color.rgbName(0xa7, 0xb9, 0xdb, '7451 up'), + RgbInt8Color.rgbName(0xa4, 0xb9, 0xdb, '7681 up'), + RgbInt8Color.rgbName(0xa8, 0xba, 0xdb, 'p 106-3 c'), + RgbInt8Color.rgbName(0xa8, 0xb5, 0xd6, 'p 106-3 u'), + RgbInt8Color.rgbName(0xb2, 0xc9, 0xef, '2708 u'), + RgbInt8Color.rgbName(0xab, 0xca, 0xe9, '277 c'), + RgbInt8Color.rgbName(0xad, 0xcf, 0xf1, '277 u'), + RgbInt8Color.rgbName(0xd0, 0xbc, 0x0, '103 cp'), + RgbInt8Color.rgbName(0xca, 0xb9, 0x0, '612 cp'), + RgbInt8Color.rgbName(0xc9, 0xb6, 0x0, '612 xgc'), + RgbInt8Color.rgbName(0xcd, 0xb9, 0x0, 'p 2-8 c'), + RgbInt8Color.rgbName(0xca, 0xbb, 0x15, '7759 cp'), + RgbInt8Color.rgbName(0xaf, 0xbd, 0x5c, 'p 160-14 u'), + RgbInt8Color.rgbName(0xaf, 0xc1, 0x71, 'p 157-13 c'), + RgbInt8Color.rgbName(0xb2, 0xbb, 0x71, 'p 161-5 u'), + RgbInt8Color.rgbName(0xa4, 0xbc, 0x92, 'p 149-10 c'), + RgbInt8Color.rgbName(0xa9, 0xc1, 0x8f, 'p 152-4 c'), + RgbInt8Color.rgbName(0xa8, 0xc0, 0x96, 'p 146-9 c'), + RgbInt8Color.rgbName(0xa4, 0xbc, 0x9b, 'p 147-1 c'), + RgbInt8Color.rgbName(0xa9, 0xc0, 0x9a, 'p 149-9 u'), + RgbInt8Color.rgbName(0xa8, 0xba, 0x99, 'p 150-9 c'), + RgbInt8Color.rgbName(0xa5, 0xc3, 0x9d, 'p 143-1 u'), + RgbInt8Color.rgbName(0xa7, 0xbd, 0xb1, '5585 c'), + RgbInt8Color.rgbName(0xa2, 0xbf, 0xaf, '623 cp'), + RgbInt8Color.rgbName(0xa6, 0xc2, 0xad, 'p 134-11 u'), + RgbInt8Color.rgbName(0xa9, 0xc2, 0xb3, '5585 xgc'), + RgbInt8Color.rgbName(0xa2, 0xc2, 0xb8, 'p 129-2 c'), + RgbInt8Color.rgbName(0xa8, 0xc0, 0xb7, 'p 135-9 c'), + RgbInt8Color.rgbName(0xa4, 0xbc, 0xc2, '7542 c'), + RgbInt8Color.rgbName(0xa5, 0xbb, 0xc0, '7542 cp'), + RgbInt8Color.rgbName(0xa4, 0xbf, 0xc0, 'p 123-9 u'), + RgbInt8Color.rgbName(0xa5, 0xc1, 0xbb, 'p 126-1 u'), + RgbInt8Color.rgbName(0xa6, 0xbb, 0xc8, '5435 c'), + RgbInt8Color.rgbName(0xa7, 0xbe, 0xc9, '5445 up'), + RgbInt8Color.rgbName(0xa2, 0xb9, 0xcb, 'p 114-9 c'), + RgbInt8Color.rgbName(0xa0, 0xbc, 0xcc, 'p 117-10 u'), + RgbInt8Color.rgbName(0xa1, 0xc6, 0xc6, 'p 122-3 u'), + RgbInt8Color.rgbName(0xa3, 0xc1, 0xc6, 'p 123-9 c'), + RgbInt8Color.rgbName(0xa3, 0xba, 0xd0, '2155 u'), + RgbInt8Color.rgbName(0xa9, 0xbe, 0xd3, '2155 up'), + RgbInt8Color.rgbName(0xa8, 0xbf, 0xd3, 'p 114-1 c'), + RgbInt8Color.rgbName(0xa3, 0xc1, 0xd2, 'p 117-10 c'), + RgbInt8Color.rgbName(0xad, 0xc9, 0x84, '577 xgc'), + RgbInt8Color.rgbName(0xae, 0xcb, 0x88, '2284 up'), + RgbInt8Color.rgbName(0xab, 0xc8, 0x95, 'p 148-10 c'), + RgbInt8Color.rgbName(0xad, 0xc9, 0x9a, 'p 145-10 c'), + RgbInt8Color.rgbName(0xac, 0xc8, 0x9a, 'p 148-9 u'), + RgbInt8Color.rgbName(0xad, 0xc5, 0x98, 'p 149-1 c'), + RgbInt8Color.rgbName(0xad, 0xc7, 0x94, 'p 151-11 c'), + RgbInt8Color.rgbName(0xa8, 0xc6, 0xa4, 'p 140-2 u'), + RgbInt8Color.rgbName(0xa8, 0xc1, 0xa4, 'p 144-1 c'), + RgbInt8Color.rgbName(0xa6, 0xc9, 0xb7, 'p 131-1 c'), + RgbInt8Color.rgbName(0xa7, 0xcc, 0xb7, 'p 133-11 c'), + RgbInt8Color.rgbName(0xae, 0xc7, 0xb4, 'p 134-1 u'), + RgbInt8Color.rgbName(0xaa, 0xc7, 0xb9, 'p 134-11 c'), + RgbInt8Color.rgbName(0xab, 0xc8, 0xb1, 'p 137-10 c'), + RgbInt8Color.rgbName(0xa7, 0xcc, 0xc0, 'p 127-10 u'), + RgbInt8Color.rgbName(0xab, 0xc7, 0xbc, 'p 128-9 u'), + RgbInt8Color.rgbName(0xab, 0xc7, 0xca, '5513 c'), + RgbInt8Color.rgbName(0xa4, 0xc9, 0xcb, 'p 122-3 c'), + RgbInt8Color.rgbName(0xa4, 0xcc, 0xc8, 'p 124-11 c'), + RgbInt8Color.rgbName(0xa7, 0xcb, 0xca, 'p 125-2 c'), + RgbInt8Color.rgbName(0xa7, 0xc6, 0xd6, '551 xgc'), + RgbInt8Color.rgbName(0xa1, 0xcb, 0xd7, 'p 118-11 u'), + RgbInt8Color.rgbName(0xa8, 0xc8, 0xd1, 'p 119-9 u'), + RgbInt8Color.rgbName(0xa5, 0xc4, 0xd0, 'p 120-1 c'), + RgbInt8Color.rgbName(0xa6, 0xcb, 0xdb, '9443 u'), + RgbInt8Color.rgbName(0xab, 0xcf, 0xe7, '277 up'), + RgbInt8Color.rgbName(0xb1, 0xc9, 0xe8, '658 c'), + RgbInt8Color.rgbName(0xcb, 0xd4, 0x21, '381 cp'), + RgbInt8Color.rgbName(0xcd, 0xd3, 0x25, 'p 163-8 c'), + RgbInt8Color.rgbName(0xb0, 0xcf, 0x87, '366 up'), + RgbInt8Color.rgbName(0xb3, 0xcc, 0x84, '577 cp'), + RgbInt8Color.rgbName(0xb0, 0xcd, 0x8a, 'p 154-5 c'), + RgbInt8Color.rgbName(0xb3, 0xcf, 0x8e, '2283 cp'), + RgbInt8Color.rgbName(0xb4, 0xd2, 0x93, '7487 up'), + RgbInt8Color.rgbName(0xac, 0xce, 0x98, 'p 145-3 c'), + RgbInt8Color.rgbName(0xad, 0xce, 0x97, 'p 148-2 u'), + RgbInt8Color.rgbName(0xb0, 0xcf, 0x97, 'p 148-3 c'), + RgbInt8Color.rgbName(0xb4, 0xd0, 0x99, 'p 151-4 c'), + RgbInt8Color.rgbName(0xad, 0xce, 0xa2, '2267 up'), + RgbInt8Color.rgbName(0xb4, 0xd4, 0xa2, '358 cp'), + RgbInt8Color.rgbName(0xad, 0xd3, 0xa6, 'p 142-3 c'), + RgbInt8Color.rgbName(0xb4, 0xd3, 0xa1, 'p 145-2 u'), + RgbInt8Color.rgbName(0xaf, 0xcf, 0xa9, '2254 up'), + RgbInt8Color.rgbName(0xac, 0xd3, 0xb1, '352 cp'), + RgbInt8Color.rgbName(0xae, 0xd0, 0xb4, '2246 cp'), + RgbInt8Color.rgbName(0xae, 0xd1, 0xb8, '2246 up'), + RgbInt8Color.rgbName(0xae, 0xd1, 0xca, 'p 127-10 c'), + RgbInt8Color.rgbName(0xaf, 0xd2, 0xc7, 'p 130-9 c'), + RgbInt8Color.rgbName(0xaa, 0xd1, 0xd5, 'p 121-10 c'), + RgbInt8Color.rgbName(0xac, 0xd1, 0xcf, 'p 121-10 u'), + RgbInt8Color.rgbName(0xa8, 0xce, 0xd9, '2204 up'), + RgbInt8Color.rgbName(0xad, 0xd3, 0xda, '9463 u'), + RgbInt8Color.rgbName(0xae, 0xcf, 0xe6, '545 u'), + RgbInt8Color.rgbName(0xb0, 0xd5, 0xe8, 'p 115-11 c'), + RgbInt8Color.rgbName(0xb3, 0xc1, 0x7d, 'p 158-4 c'), + RgbInt8Color.rgbName(0xb1, 0xd5, 0xb3, 'p 139-3 c'), + RgbInt8Color.rgbName(0xad, 0xd8, 0xd3, '317 up'), + RgbInt8Color.rgbName(0xae, 0xe0, 0xd5, '573 xgc'), + RgbInt8Color.rgbName(0xab, 0xd6, 0xd0, 'p 124-3 u'), + RgbInt8Color.rgbName(0xb4, 0xe0, 0xe6, '628 u'), + RgbInt8Color.rgbName(0xb4, 0xde, 0xe1, '628 xgc'), + RgbInt8Color.rgbName(0xca, 0xde, 0x66, '2296 xgc'), + RgbInt8Color.rgbName(0xb4, 0xcb, 0x95, 'p 154-9 u'), + RgbInt8Color.rgbName(0xb0, 0xc9, 0x9b, 'p 151-10 u'), + RgbInt8Color.rgbName(0xb3, 0xd5, 0xaf, 'p 136-2 u'), + RgbInt8Color.rgbName(0xb4, 0xe1, 0xd6, '566 u'), + RgbInt8Color.rgbName(0xcf, 0xb5, 0x0, '606 c'), + RgbInt8Color.rgbName(0xcf, 0xd6, 0x41, '389 cp'), + RgbInt8Color.rgbName(0xd0, 0xd7, 0x41, '584 cp'), + RgbInt8Color.rgbName(0xd2, 0xdf, 0x4d, '380 xgc'), + RgbInt8Color.rgbName(0xc2, 0xd9, 0x78, '2289 xgc'), + RgbInt8Color.rgbName(0xcb, 0xe8, 0x82, '2288 u'), + RgbInt8Color.rgbName(0xcd, 0xea, 0x80, '373 c'), + RgbInt8Color.rgbName(0xb4, 0xd8, 0xba, '344 cp'), + RgbInt8Color.rgbName(0xb0, 0xd6, 0xbb, '7478 up'), + RgbInt8Color.rgbName(0xaf, 0xd5, 0xb9, 'p 133-3 u'), + RgbInt8Color.rgbName(0xb1, 0xd7, 0xc3, '331 up'), + RgbInt8Color.rgbName(0xb1, 0xd7, 0xc4, '3375 cp'), + RgbInt8Color.rgbName(0xaf, 0xd4, 0xc4, '565 up'), + RgbInt8Color.rgbName(0xb4, 0xd8, 0xc7, '572 up'), + RgbInt8Color.rgbName(0xb2, 0xd8, 0xc4, 'p 133-3 c'), + RgbInt8Color.rgbName(0xb1, 0xd8, 0xcc, '332 cp'), + RgbInt8Color.rgbName(0xb3, 0xdb, 0xcb, '566 xgc'), + RgbInt8Color.rgbName(0xaf, 0xd5, 0xc9, 'p 127-2 u'), + RgbInt8Color.rgbName(0xad, 0xd6, 0xcf, '7464 cp'), + RgbInt8Color.rgbName(0xe1, 0xe0, 0x0, '396 c'), + RgbInt8Color.rgbName(0xce, 0xc7, 0x3a, 'p 166-15 c'), + RgbInt8Color.rgbName(0xc3, 0xd4, 0x68, '374 cp'), + RgbInt8Color.rgbName(0xc5, 0xd4, 0x67, 'p 160-6 u'), + RgbInt8Color.rgbName(0xb8, 0xcd, 0x78, '2298 up'), + RgbInt8Color.rgbName(0xc2, 0xe1, 0x89, '365 c'), + RgbInt8Color.rgbName(0xc0, 0xdf, 0x8f, '2275 xgc'), + RgbInt8Color.rgbName(0xd1, 0xf0, 0x8f, '372 u'), + RgbInt8Color.rgbName(0xc7, 0xe9, 0x95, '2282 c'), + RgbInt8Color.rgbName(0xc5, 0xf2, 0xe6, '9520 u'), + RgbInt8Color.rgbName(0xbf, 0xe3, 0xed, '7457 u'), + RgbInt8Color.rgbName(0xc1, 0xe6, 0xec, '9424 u'), + RgbInt8Color.rgbName(0xbe, 0xe9, 0xe7, '9500 c'), + RgbInt8Color.rgbName(0xd6, 0x0, 0x1c, '2035 c'), + RgbInt8Color.rgbName(0xd9, 0x0, 0x25, '2035 xgc'), + RgbInt8Color.rgbName(0xc5, 0x1c, 0x1f, '3517 cp'), + RgbInt8Color.rgbName(0xb8, 0x1c, 0x36, 'p 60-8 c'), + RgbInt8Color.rgbName(0xce, 0x0, 0x58, 'rubine red c'), + RgbInt8Color.rgbName(0xd2, 0x0, 0x5e, 'rubine red xgc'), + RgbInt8Color.rgbName(0xd4, 0x0, 0x73, '226 xgc'), + RgbInt8Color.rgbName(0xd5, 0x6, 0x6f, 'p 73-8 c'), + RgbInt8Color.rgbName(0xd8, 0x0, 0x76, '219 xgc'), + RgbInt8Color.rgbName(0xd9, 0x1, 0x7a, 'process magenta c'), + RgbInt8Color.rgbName(0xd7, 0xc, 0x7a, '226 cp'), + RgbInt8Color.rgbName(0xd6, 0xb, 0x7b, 'p 75-8 c'), + RgbInt8Color.rgbName(0xc4, 0x22, 0x7d, 'p 80-8 c'), + RgbInt8Color.rgbName(0xda, 0x18, 0x84, '219 c'), + RgbInt8Color.rgbName(0xd7, 0x11, 0x7d, 'rhodamine red xgc'), + RgbInt8Color.rgbName(0xd7, 0x37, 0x86, '219 cp'), + RgbInt8Color.rgbName(0xea, 0x27, 0xc2, '807 c'), + RgbInt8Color.rgbName(0xdf, 0x19, 0x95, '225 c'), + RgbInt8Color.rgbName(0xe8, 0x38, 0xbf, '807 u'), + RgbInt8Color.rgbName(0xf0, 0x4e, 0x98, '212 c'), + RgbInt8Color.rgbName(0xe9, 0x3c, 0xac, '232 c'), + RgbInt8Color.rgbName(0xc9, 0x1c, 0x1f, '3546 cp'), + RgbInt8Color.rgbName(0xb0, 0x24, 0x4a, '207 cp'), + RgbInt8Color.rgbName(0xb5, 0x25, 0x55, '7425 c'), + RgbInt8Color.rgbName(0xb8, 0x22, 0x58, '7425 xgc'), + RgbInt8Color.rgbName(0xb6, 0x21, 0x57, 'p 69-8 c'), + RgbInt8Color.rgbName(0xb7, 0x3f, 0x89, '240 xgc'), + RgbInt8Color.rgbName(0xd3, 0x46, 0x8f, '225 cp'), + RgbInt8Color.rgbName(0xbb, 0x53, 0x98, '2385 cp'), + RgbInt8Color.rgbName(0xbb, 0x56, 0x9d, '2405 u'), + RgbInt8Color.rgbName(0xb7, 0x31, 0x2c, '7620 c'), + RgbInt8Color.rgbName(0xbb, 0x2e, 0x31, '7620 xgc'), + RgbInt8Color.rgbName(0xb9, 0x2b, 0x5c, 'p 69-7 c'), + RgbInt8Color.rgbName(0xe4, 0x5d, 0xbf, '238 c'), + RgbInt8Color.rgbName(0xb6, 0x3c, 0x76, 'p 76-7 c'), + RgbInt8Color.rgbName(0xb6, 0x58, 0x97, '2353 xgc'), + RgbInt8Color.rgbName(0xc5, 0x5a, 0x9d, '239 cp'), + RgbInt8Color.rgbName(0xc1, 0x55, 0x98, '240 u'), + RgbInt8Color.rgbName(0xc3, 0x58, 0x99, '674 cp'), + RgbInt8Color.rgbName(0xbb, 0x46, 0x28, '7599 cp'), + RgbInt8Color.rgbName(0xb4, 0x29, 0x37, 'p 58-8 c'), + RgbInt8Color.rgbName(0xb2, 0x35, 0x50, 'p 63-7 c'), + RgbInt8Color.rgbName(0xb7, 0x2d, 0x54, '10171 c'), + RgbInt8Color.rgbName(0xb7, 0x35, 0x63, 'p 71-15 c'), + RgbInt8Color.rgbName(0xaf, 0x39, 0x6a, '7433 cp'), + RgbInt8Color.rgbName(0xb5, 0x46, 0x80, '10183 c'), + RgbInt8Color.rgbName(0xb8, 0x4a, 0x1f, '8923 c'), + RgbInt8Color.rgbName(0xb2, 0x37, 0x30, '7627 cp'), + RgbInt8Color.rgbName(0xb3, 0x37, 0x2d, 'p 49-7 c'), + RgbInt8Color.rgbName(0xb4, 0x37, 0x3c, '1805 cp'), + RgbInt8Color.rgbName(0xb8, 0x33, 0x3e, 'p 58-7 c'), + RgbInt8Color.rgbName(0xaa, 0x3f, 0x43, 'p 53-15 c'), + RgbInt8Color.rgbName(0xb1, 0x39, 0x5e, 'p 69-15 c'), + RgbInt8Color.rgbName(0xb4, 0x3d, 0x63, '10170 c'), + RgbInt8Color.rgbName(0xbd, 0x33, 0x62, '7425 cp'), + RgbInt8Color.rgbName(0xb6, 0x4b, 0x8f, '2062 xgc'), + RgbInt8Color.rgbName(0xbe, 0x53, 0x1c, '167 c'), + RgbInt8Color.rgbName(0xab, 0x49, 0x38, '7608 cp'), + RgbInt8Color.rgbName(0xac, 0x4b, 0x2f, 'p 49-14 c'), + RgbInt8Color.rgbName(0xaa, 0x4b, 0x40, '8445 c'), + RgbInt8Color.rgbName(0xb6, 0x3a, 0x40, 'p 53-7 c'), + RgbInt8Color.rgbName(0xb4, 0x3e, 0x47, 'p 60-14 c'), + RgbInt8Color.rgbName(0xb8, 0x3a, 0x52, '703 xgc'), + RgbInt8Color.rgbName(0xad, 0x48, 0x4e, 'p 58-7 u'), + RgbInt8Color.rgbName(0xaf, 0x48, 0x4f, 'p 60-8 u'), + RgbInt8Color.rgbName(0xb0, 0x4a, 0x5a, '7419 c'), + RgbInt8Color.rgbName(0xaf, 0x4c, 0x64, '207 u'), + RgbInt8Color.rgbName(0xbc, 0x3d, 0x63, 'p 69-6 c'), + RgbInt8Color.rgbName(0xad, 0x49, 0x62, 'p 71-16 u'), + RgbInt8Color.rgbName(0xaf, 0x48, 0x79, '227 u'), + RgbInt8Color.rgbName(0xaa, 0x4c, 0x7d, '234 u'), + RgbInt8Color.rgbName(0xba, 0x53, 0x90, '2353 cp'), + RgbInt8Color.rgbName(0xbd, 0x59, 0x8c, 'p 80-13 c'), + RgbInt8Color.rgbName(0xb8, 0x5e, 0x17, '8944 c'), + RgbInt8Color.rgbName(0xb1, 0x4e, 0x2b, 'p 35-8 c'), + RgbInt8Color.rgbName(0xb4, 0x4e, 0x2b, 'p 41-7 c'), + RgbInt8Color.rgbName(0xb8, 0x42, 0x33, '7599 xgc'), + RgbInt8Color.rgbName(0xa9, 0x55, 0x36, 'p 41-13 c'), + RgbInt8Color.rgbName(0xb5, 0x46, 0x34, 'p 46-7 c'), + RgbInt8Color.rgbName(0xa7, 0x53, 0x49, '2436 up'), + RgbInt8Color.rgbName(0xab, 0x52, 0x48, 'p 49-6 u'), + RgbInt8Color.rgbName(0xab, 0x4c, 0x4d, 'p 53-8 u'), + RgbInt8Color.rgbName(0xae, 0x4c, 0x59, 'p 63-7 u'), + RgbInt8Color.rgbName(0xaa, 0x53, 0x60, '1945 up'), + RgbInt8Color.rgbName(0xa8, 0x55, 0x66, '2343 c'), + RgbInt8Color.rgbName(0xad, 0x52, 0x63, '2343 cp'), + RgbInt8Color.rgbName(0xad, 0x54, 0x63, '7419 cp'), + RgbInt8Color.rgbName(0xa7, 0x55, 0x61, 'p 64-6 c'), + RgbInt8Color.rgbName(0xa8, 0x55, 0x61, 'p 65-14 u'), + RgbInt8Color.rgbName(0xb1, 0x4c, 0x62, 'p 69-8 u'), + RgbInt8Color.rgbName(0xa8, 0x53, 0x68, 'p 72-7 u'), + RgbInt8Color.rgbName(0xb4, 0x4b, 0x70, '10169 c'), + RgbInt8Color.rgbName(0xae, 0x51, 0x71, '215 u'), + RgbInt8Color.rgbName(0xae, 0x4c, 0x76, 'p 80-15 u'), + RgbInt8Color.rgbName(0xb0, 0x4c, 0x75, '220 u'), + RgbInt8Color.rgbName(0xae, 0x50, 0x7c, '234 up'), + RgbInt8Color.rgbName(0xb8, 0x47, 0x82, 'p 80-14 c'), + RgbInt8Color.rgbName(0xaf, 0x54, 0x8b, '241 u'), + RgbInt8Color.rgbName(0xb5, 0x64, 0x9b, '2352 cp'), + RgbInt8Color.rgbName(0xb5, 0x5b, 0x99, '2353 u'), + RgbInt8Color.rgbName(0xbe, 0x6a, 0x14, '153 c'), + RgbInt8Color.rgbName(0xbb, 0x6c, 0x17, '2020 cp'), + RgbInt8Color.rgbName(0xb3, 0x52, 0x29, '8921 c'), + RgbInt8Color.rgbName(0xb4, 0x4f, 0x2d, '8924 c'), + RgbInt8Color.rgbName(0xb1, 0x55, 0x33, '7592 c'), + RgbInt8Color.rgbName(0xaf, 0x54, 0x38, '8925 c'), + RgbInt8Color.rgbName(0xab, 0x5d, 0x35, 'p 35-15 c'), + RgbInt8Color.rgbName(0xb2, 0x4f, 0x41, '10159 c'), + RgbInt8Color.rgbName(0xb5, 0x50, 0x3c, '8901 c'), + RgbInt8Color.rgbName(0xac, 0x54, 0x4d, 'p 46-7 u'), + RgbInt8Color.rgbName(0xae, 0x53, 0x4c, '8444 c'), + RgbInt8Color.rgbName(0xa6, 0x5d, 0x4e, 'p 38-7 u'), + RgbInt8Color.rgbName(0xa9, 0x58, 0x4f, 'p 41-7 u'), + RgbInt8Color.rgbName(0xab, 0x55, 0x4e, 'p 41-8 u'), + RgbInt8Color.rgbName(0xaf, 0x51, 0x50, 'p 53-7 u'), + RgbInt8Color.rgbName(0xae, 0x53, 0x50, 'p 56-6 c'), + RgbInt8Color.rgbName(0xb1, 0x4f, 0x52, 'p 58-6 u'), + RgbInt8Color.rgbName(0xae, 0x53, 0x5c, '187 u'), + RgbInt8Color.rgbName(0xaa, 0x58, 0x56, '7622 up'), + RgbInt8Color.rgbName(0xab, 0x54, 0x57, 'p 60-14 u'), + RgbInt8Color.rgbName(0xb0, 0x54, 0x68, '1945 u'), + RgbInt8Color.rgbName(0xad, 0x57, 0x66, '207 up'), + RgbInt8Color.rgbName(0xac, 0x58, 0x61, '7427 up'), + RgbInt8Color.rgbName(0xb1, 0x4f, 0x60, 'p 65-14 c'), + RgbInt8Color.rgbName(0xb5, 0x4e, 0x65, 'p 69-7 u'), + RgbInt8Color.rgbName(0xb1, 0x55, 0x6a, '7426 u'), + RgbInt8Color.rgbName(0xb4, 0x50, 0x69, 'p 71-15 u'), + RgbInt8Color.rgbName(0xaa, 0x57, 0x70, 'p 72-14 c'), + RgbInt8Color.rgbName(0xb1, 0x51, 0x72, 'p 76-7 u'), + RgbInt8Color.rgbName(0xb3, 0x51, 0x78, '220 up'), + RgbInt8Color.rgbName(0xb2, 0x52, 0x77, 'p 74-6 c'), + RgbInt8Color.rgbName(0xb1, 0x54, 0x87, '10182 c'), + RgbInt8Color.rgbName(0xb2, 0x55, 0x7e, 'p 80-14 u'), + RgbInt8Color.rgbName(0xb2, 0x55, 0x86, 'p 81-4 c'), + RgbInt8Color.rgbName(0xb0, 0x5a, 0x8b, '2061 xgc'), + RgbInt8Color.rgbName(0xaf, 0x5b, 0x8a, '241 up'), + RgbInt8Color.rgbName(0xb5, 0x65, 0xa7, '2352 c'), + RgbInt8Color.rgbName(0xb7, 0x6d, 0xa6, '2352 xgc'), + RgbInt8Color.rgbName(0xb9, 0x70, 0x1d, '723 cp'), + RgbInt8Color.rgbName(0xb5, 0x70, 0x1e, '7511 cp'), + RgbInt8Color.rgbName(0xad, 0x5b, 0x2f, '8024 c'), + RgbInt8Color.rgbName(0xaf, 0x61, 0x2c, '8945 c'), + RgbInt8Color.rgbName(0xb1, 0x5a, 0x2e, 'p 31-8 c'), + RgbInt8Color.rgbName(0xaf, 0x5c, 0x37, '7585 c'), + RgbInt8Color.rgbName(0xb6, 0x5a, 0x30, '7592 cp'), + RgbInt8Color.rgbName(0xb6, 0x5b, 0x31, 'p 35-7 c'), + RgbInt8Color.rgbName(0xa5, 0x5f, 0x49, '8044 c'), + RgbInt8Color.rgbName(0xb0, 0x5b, 0x3b, 'p 38-7 c'), + RgbInt8Color.rgbName(0xad, 0x5e, 0x3e, 'p 41-12 c'), + RgbInt8Color.rgbName(0xab, 0x61, 0x4a, '1675 u'), + RgbInt8Color.rgbName(0xa7, 0x63, 0x4b, 'p 28-7 u'), + RgbInt8Color.rgbName(0xb0, 0x5d, 0x48, 'p 46-14 c'), + RgbInt8Color.rgbName(0xab, 0x5c, 0x57, '7523 c'), + RgbInt8Color.rgbName(0xa4, 0x69, 0x51, 'p 31-13 u'), + RgbInt8Color.rgbName(0xa5, 0x63, 0x55, 'p 41-12 u'), + RgbInt8Color.rgbName(0xa8, 0x62, 0x54, 'p 46-14 u'), + RgbInt8Color.rgbName(0xa7, 0x5f, 0x50, 'p 49-13 u'), + RgbInt8Color.rgbName(0xae, 0x5f, 0x5b, '1805 up'), + RgbInt8Color.rgbName(0xad, 0x58, 0x57, '7627 u'), + RgbInt8Color.rgbName(0xac, 0x5e, 0x56, 'p 53-14 u'), + RgbInt8Color.rgbName(0xae, 0x5c, 0x55, 'p 58-14 c'), + RgbInt8Color.rgbName(0xaf, 0x5b, 0x59, 'p 60-13 u'), + RgbInt8Color.rgbName(0xae, 0x58, 0x58, 'p 61-5 c'), + RgbInt8Color.rgbName(0xa8, 0x61, 0x61, '1807 up'), + RgbInt8Color.rgbName(0xb4, 0x5a, 0x65, '703 u'), + RgbInt8Color.rgbName(0xae, 0x57, 0x68, '7419 xgc'), + RgbInt8Color.rgbName(0xac, 0x5f, 0x64, 'p 63-11 u'), + RgbInt8Color.rgbName(0xaa, 0x5e, 0x68, 'p 66-6 c'), + RgbInt8Color.rgbName(0xb3, 0x5b, 0x6d, 'p 69-14 u'), + RgbInt8Color.rgbName(0xaf, 0x5b, 0x6e, 'p 70-5 c'), + RgbInt8Color.rgbName(0xad, 0x5e, 0x74, 'p 74-6 u'), + RgbInt8Color.rgbName(0xb4, 0x5a, 0x7c, '10168 c'), + RgbInt8Color.rgbName(0xb0, 0x58, 0x75, '215 up'), + RgbInt8Color.rgbName(0xac, 0x5f, 0x80, 'p 81-4 u'), + RgbInt8Color.rgbName(0xb3, 0x58, 0x7f, '676 up'), + RgbInt8Color.rgbName(0xb5, 0x5c, 0x80, '7432 c'), + RgbInt8Color.rgbName(0xb7, 0x5a, 0x80, '7432 xgc'), + RgbInt8Color.rgbName(0xa8, 0x67, 0x7d, '7434 u'), + RgbInt8Color.rgbName(0xaa, 0x5e, 0x87, 'p 81-12 c'), + RgbInt8Color.rgbName(0xb0, 0x62, 0x8f, '10181 c'), + RgbInt8Color.rgbName(0xb0, 0x5f, 0x8f, '2062 u'), + RgbInt8Color.rgbName(0xb1, 0x5f, 0x89, '2062 up'), + RgbInt8Color.rgbName(0xae, 0x61, 0x90, '2415 up'), + RgbInt8Color.rgbName(0xa8, 0x69, 0x8a, 'p 82-3 c'), + RgbInt8Color.rgbName(0xad, 0x62, 0x91, 'p 83-6 u'), + RgbInt8Color.rgbName(0xad, 0x68, 0x9c, '10187 c'), + RgbInt8Color.rgbName(0xb8, 0x76, 0xac, '252 cp'), + RgbInt8Color.rgbName(0xb9, 0x7a, 0x7, '2014 cp'), + RgbInt8Color.rgbName(0xb3, 0x69, 0x24, '723 c'), + RgbInt8Color.rgbName(0xb4, 0x65, 0x2a, '7566 cp'), + RgbInt8Color.rgbName(0xb5, 0x69, 0x29, 'p 28-8 c'), + RgbInt8Color.rgbName(0xaa, 0x64, 0x43, '8023 c'), + RgbInt8Color.rgbName(0xac, 0x6c, 0x39, 'p 28-15 c'), + RgbInt8Color.rgbName(0xa6, 0x69, 0x42, 'p 36-6 c'), + RgbInt8Color.rgbName(0xa8, 0x65, 0x4a, 'p 42-5 c'), + RgbInt8Color.rgbName(0xa7, 0x6c, 0x4c, '1605 u'), + RgbInt8Color.rgbName(0xaa, 0x68, 0x48, 'p 38-14 c'), + RgbInt8Color.rgbName(0xa2, 0x68, 0x55, 'p 38-14 u'), + RgbInt8Color.rgbName(0xb2, 0x66, 0x45, 'p 41-11 c'), + RgbInt8Color.rgbName(0xa7, 0x6b, 0x54, '1675 up'), + RgbInt8Color.rgbName(0xae, 0x65, 0x4e, 'p 31-7 u'), + RgbInt8Color.rgbName(0xa8, 0x69, 0x51, 'p 35-14 u'), + RgbInt8Color.rgbName(0xa9, 0x6c, 0x4d, 'p 39-5 c'), + RgbInt8Color.rgbName(0xa6, 0x68, 0x52, 'p 47-5 c'), + RgbInt8Color.rgbName(0xa5, 0x6c, 0x52, 'p 50-13 c'), + RgbInt8Color.rgbName(0xac, 0x68, 0x4d, 'p 50-5 c'), + RgbInt8Color.rgbName(0xab, 0x63, 0x62, '187 up'), + RgbInt8Color.rgbName(0xa9, 0x69, 0x58, '2441 cp'), + RgbInt8Color.rgbName(0xad, 0x65, 0x5f, '7523 cp'), + RgbInt8Color.rgbName(0xaa, 0x63, 0x5c, '7523 xgc'), + RgbInt8Color.rgbName(0xa9, 0x6d, 0x5d, '7593 up'), + RgbInt8Color.rgbName(0xaa, 0x61, 0x5f, '8443 c'), + RgbInt8Color.rgbName(0xac, 0x6a, 0x59, 'p 41-11 u'), + RgbInt8Color.rgbName(0xa8, 0x68, 0x5c, 'p 54-13 c'), + RgbInt8Color.rgbName(0xae, 0x63, 0x59, 'p 54-5 c'), + RgbInt8Color.rgbName(0xa2, 0x73, 0x60, '7600 up'), + RgbInt8Color.rgbName(0xad, 0x69, 0x61, 'p 58-13 u'), + RgbInt8Color.rgbName(0xaa, 0x6c, 0x66, 'p 61-13 u'), + RgbInt8Color.rgbName(0xaf, 0x67, 0x64, 'p 61-4 u'), + RgbInt8Color.rgbName(0xa8, 0x66, 0x69, 'p 64-5 u'), + RgbInt8Color.rgbName(0xae, 0x67, 0x72, '2447 cp'), + RgbInt8Color.rgbName(0xaf, 0x65, 0x6d, 'p 64-5 c'), + RgbInt8Color.rgbName(0xb2, 0x64, 0x6d, 'p 65-13 u'), + RgbInt8Color.rgbName(0xab, 0x6a, 0x70, 'p 66-5 u'), + RgbInt8Color.rgbName(0xa9, 0x69, 0x72, 'p 70-11 u'), + RgbInt8Color.rgbName(0xaf, 0x66, 0x72, 'p 70-4 u'), + RgbInt8Color.rgbName(0xaa, 0x6d, 0x73, 'p 66-13 c'), + RgbInt8Color.rgbName(0xac, 0x6c, 0x78, 'p 70-11 c'), + RgbInt8Color.rgbName(0xb0, 0x64, 0x7f, 'p 76-14 u'), + RgbInt8Color.rgbName(0xb0, 0x6b, 0x8a, '2061 up'), + RgbInt8Color.rgbName(0xb1, 0x68, 0x89, '7647 u'), + RgbInt8Color.rgbName(0xb5, 0x64, 0x88, 'p 76-14 c'), + RgbInt8Color.rgbName(0xaa, 0x6c, 0x99, '253 up'), + RgbInt8Color.rgbName(0xb0, 0x6c, 0x96, '681 c'), + RgbInt8Color.rgbName(0xab, 0x6d, 0x98, 'p 84-4 c'), + RgbInt8Color.rgbName(0xad, 0x6f, 0xa4, '2067 cp'), + RgbInt8Color.rgbName(0xb6, 0x6e, 0x23, '723 xgc'), + RgbInt8Color.rgbName(0xb5, 0x6f, 0x22, 'p 21-8 c'), + RgbInt8Color.rgbName(0xb4, 0x6a, 0x26, 'p 25-8 c'), + RgbInt8Color.rgbName(0xac, 0x72, 0x3b, '10133 c'), + RgbInt8Color.rgbName(0xb6, 0x72, 0x33, '7572 c'), + RgbInt8Color.rgbName(0xac, 0x6f, 0x42, '153 u'), + RgbInt8Color.rgbName(0xae, 0x75, 0x39, 'p 25-14 c'), + RgbInt8Color.rgbName(0xb0, 0x6e, 0x43, 'p 31-13 c'), + RgbInt8Color.rgbName(0xa9, 0x71, 0x4b, '2021 up'), + RgbInt8Color.rgbName(0xa8, 0x6d, 0x4c, 'p 25-7 u'), + RgbInt8Color.rgbName(0xa7, 0x71, 0x55, '1605 up'), + RgbInt8Color.rgbName(0xa6, 0x70, 0x53, 'p 28-14 u'), + RgbInt8Color.rgbName(0xae, 0x6d, 0x4f, 'p 28-6 u'), + RgbInt8Color.rgbName(0xa9, 0x6f, 0x54, 'p 31-12 u'), + RgbInt8Color.rgbName(0xa5, 0x71, 0x55, 'p 42-13 c'), + RgbInt8Color.rgbName(0xa5, 0x76, 0x56, '160 up'), + RgbInt8Color.rgbName(0xa7, 0x6e, 0x5e, '2441 c'), + RgbInt8Color.rgbName(0xa7, 0x73, 0x59, '7586 up'), + RgbInt8Color.rgbName(0xa8, 0x73, 0x57, '8022 c'), + RgbInt8Color.rgbName(0xa5, 0x72, 0x5f, 'p 42-4 u'), + RgbInt8Color.rgbName(0xab, 0x6e, 0x67, '7608 u'), + RgbInt8Color.rgbName(0xad, 0x6b, 0x60, '7608 up'), + RgbInt8Color.rgbName(0xa9, 0x78, 0x62, 'p 39-4 u'), + RgbInt8Color.rgbName(0xa6, 0x77, 0x67, 'p 43-6 c'), + RgbInt8Color.rgbName(0xa8, 0x73, 0x62, 'p 47-4 u'), + RgbInt8Color.rgbName(0xa8, 0x72, 0x60, 'p 50-4 u'), + RgbInt8Color.rgbName(0xa9, 0x76, 0x68, 'p 54-12 u'), + RgbInt8Color.rgbName(0xae, 0x70, 0x64, 'p 54-4 u'), + RgbInt8Color.rgbName(0xae, 0x6e, 0x66, 'p 61-13 c'), + RgbInt8Color.rgbName(0xaf, 0x6d, 0x73, '2342 u'), + RgbInt8Color.rgbName(0xa9, 0x77, 0x6b, 'p 56-12 u'), + RgbInt8Color.rgbName(0xac, 0x75, 0x75, '2341 u'), + RgbInt8Color.rgbName(0xae, 0x73, 0x74, '2341 up'), + RgbInt8Color.rgbName(0xb0, 0x6c, 0x73, '2342 up'), + RgbInt8Color.rgbName(0xb0, 0x6f, 0x76, '2447 c'), + RgbInt8Color.rgbName(0xa9, 0x75, 0x76, '7523 u'), + RgbInt8Color.rgbName(0xaf, 0x71, 0x7a, 'p 70-10 u'), + RgbInt8Color.rgbName(0xa7, 0x73, 0x87, '681 up'), + RgbInt8Color.rgbName(0xac, 0x76, 0x80, '695 u'), + RgbInt8Color.rgbName(0xb0, 0x6f, 0x81, '7434 up'), + RgbInt8Color.rgbName(0xb0, 0x74, 0x81, 'p 70-10 c'), + RgbInt8Color.rgbName(0xb4, 0x6e, 0x83, 'p 72-13 c'), + RgbInt8Color.rgbName(0xb2, 0x72, 0x80, 'p 72-13 u'), + RgbInt8Color.rgbName(0xae, 0x6f, 0x8b, 'p 81-11 u'), + RgbInt8Color.rgbName(0xab, 0x70, 0x90, '688 xgc'), + RgbInt8Color.rgbName(0xad, 0x76, 0x8a, '7646 cp'), + RgbInt8Color.rgbName(0xad, 0x78, 0x8c, 'p 74-11 c'), + RgbInt8Color.rgbName(0xaf, 0x73, 0x8a, 'p 77-5 u'), + RgbInt8Color.rgbName(0xb0, 0x70, 0x97, '10180 c'), + RgbInt8Color.rgbName(0xb3, 0x70, 0x93, '2061 u'), + RgbInt8Color.rgbName(0xb1, 0x6d, 0x97, '681 xgc'), + RgbInt8Color.rgbName(0xb5, 0x6f, 0x97, '688 cp'), + RgbInt8Color.rgbName(0xb3, 0x6f, 0x93, 'p 81-11 c'), + RgbInt8Color.rgbName(0xaf, 0x73, 0x93, 'p 82-2 c'), + RgbInt8Color.rgbName(0xab, 0x75, 0x9b, 'p 84-12 c'), + RgbInt8Color.rgbName(0xae, 0x6f, 0x9b, 'purple up'), + RgbInt8Color.rgbName(0xa5, 0x7d, 0x9c, '10172 c'), + RgbInt8Color.rgbName(0xad, 0x75, 0xa0, '10186 c'), + RgbInt8Color.rgbName(0xa4, 0x7e, 0x9c, 'p 85-4 c'), + RgbInt8Color.rgbName(0xab, 0x77, 0xa2, 'p 88-5 u'), + RgbInt8Color.rgbName(0xb2, 0x72, 0xa5, '2352 u'), + RgbInt8Color.rgbName(0xac, 0x7e, 0xb0, '3520 cp'), + RgbInt8Color.rgbName(0xba, 0x8c, 0xd, 'p 11-8 c'), + RgbInt8Color.rgbName(0xb7, 0x77, 0x29, '7511 c'), + RgbInt8Color.rgbName(0xba, 0x77, 0x2c, '7572 cp'), + RgbInt8Color.rgbName(0xb1, 0x78, 0x35, 'p 21-14 c'), + RgbInt8Color.rgbName(0xb8, 0x75, 0x31, 'p 25-7 c'), + RgbInt8Color.rgbName(0xac, 0x76, 0x44, '2314 c'), + RgbInt8Color.rgbName(0xad, 0x79, 0x47, 'p 18-8 u'), + RgbInt8Color.rgbName(0xa9, 0x79, 0x4d, '10139 c'), + RgbInt8Color.rgbName(0xad, 0x7e, 0x47, 'p 15-8 u'), + RgbInt8Color.rgbName(0xab, 0x78, 0x4c, 'p 21-14 u'), + RgbInt8Color.rgbName(0xa7, 0x7b, 0x57, '4645 xgc'), + RgbInt8Color.rgbName(0xa6, 0x7a, 0x59, '724 up'), + RgbInt8Color.rgbName(0xa8, 0x7c, 0x56, '7511 up'), + RgbInt8Color.rgbName(0xa9, 0x78, 0x54, 'p 25-13 u'), + RgbInt8Color.rgbName(0xa8, 0x7a, 0x56, 'p 32-12 c'), + RgbInt8Color.rgbName(0xb0, 0x77, 0x51, 'p 36-5 c'), + RgbInt8Color.rgbName(0xa7, 0x76, 0x56, 'p 39-13 c'), + RgbInt8Color.rgbName(0xad, 0x7c, 0x59, '4645 c'), + RgbInt8Color.rgbName(0xa8, 0x7b, 0x59, '7573 u'), + RgbInt8Color.rgbName(0xb0, 0x77, 0x5a, 'p 31-11 u'), + RgbInt8Color.rgbName(0xa6, 0x7d, 0x60, 'p 36-10 u'), + RgbInt8Color.rgbName(0xaa, 0x7b, 0x5e, 'p 36-4 u'), + RgbInt8Color.rgbName(0xa8, 0x80, 0x63, '2314 u'), + RgbInt8Color.rgbName(0xa5, 0x7e, 0x62, '730 u'), + RgbInt8Color.rgbName(0xa8, 0x81, 0x65, 'p 32-11 u'), + RgbInt8Color.rgbName(0xae, 0x77, 0x60, 'p 38-13 u'), + RgbInt8Color.rgbName(0xa7, 0x7e, 0x6a, 'p 42-12 u'), + RgbInt8Color.rgbName(0xaf, 0x79, 0x62, 'p 47-4 c'), + RgbInt8Color.rgbName(0xb0, 0x77, 0x6c, '10156 c'), + RgbInt8Color.rgbName(0xa9, 0x80, 0x6c, '479 xgc'), + RgbInt8Color.rgbName(0xaf, 0x78, 0x71, '7522 u'), + RgbInt8Color.rgbName(0xaa, 0x7c, 0x74, '7523 up'), + RgbInt8Color.rgbName(0xa3, 0x7f, 0x74, '7614 c'), + RgbInt8Color.rgbName(0xac, 0x79, 0x7e, '2447 u'), + RgbInt8Color.rgbName(0xad, 0x7a, 0x7f, '5005 cp'), + RgbInt8Color.rgbName(0xb1, 0x78, 0x7b, 'p 64-12 c'), + RgbInt8Color.rgbName(0xac, 0x78, 0x7a, 'p 66-12 u'), + RgbInt8Color.rgbName(0xb0, 0x7c, 0x83, '5005 c'), + RgbInt8Color.rgbName(0xaf, 0x7d, 0x80, '695 up'), + RgbInt8Color.rgbName(0xb3, 0x79, 0x81, 'p 70-9 u'), + RgbInt8Color.rgbName(0xab, 0x78, 0x86, 'p 74-11 u'), + RgbInt8Color.rgbName(0xac, 0x7b, 0x92, '7646 xgc'), + RgbInt8Color.rgbName(0xab, 0x82, 0x89, 'p 67-5 c'), + RgbInt8Color.rgbName(0xa7, 0x7e, 0x91, 'p 82-12 u'), + RgbInt8Color.rgbName(0xaf, 0x78, 0x9c, 'p 83-13 u'), + RgbInt8Color.rgbName(0xaf, 0x7d, 0x9d, '10179 c'), + RgbInt8Color.rgbName(0xb5, 0x78, 0xa2, '2352 up'), + RgbInt8Color.rgbName(0xa9, 0x84, 0x9f, 'p 84-11 u'), + RgbInt8Color.rgbName(0xaa, 0x7e, 0x9e, 'p 84-3 u'), + RgbInt8Color.rgbName(0xa8, 0x7f, 0xa4, 'p 88-12 u'), + RgbInt8Color.rgbName(0xaa, 0x83, 0xac, '7440 xgc'), + RgbInt8Color.rgbName(0xa9, 0x87, 0xb0, '3520 up'), + RgbInt8Color.rgbName(0xab, 0x86, 0xb0, '7441 up'), + RgbInt8Color.rgbName(0xb8, 0x96, 0xd4, '2072 c'), + RgbInt8Color.rgbName(0xa9, 0x93, 0xbf, '2073 cp'), + RgbInt8Color.rgbName(0xbc, 0x89, 0x1d, 'p 15-8 c'), + RgbInt8Color.rgbName(0xb8, 0x83, 0x22, '7551 cp'), + RgbInt8Color.rgbName(0xb9, 0x85, 0x24, '10129 c'), + RgbInt8Color.rgbName(0xb7, 0x8b, 0x20, '7556 c'), + RgbInt8Color.rgbName(0xb9, 0x7f, 0x26, 'p 18-8 c'), + RgbInt8Color.rgbName(0xba, 0x80, 0x32, '131 u'), + RgbInt8Color.rgbName(0xb3, 0x89, 0x33, 'p 15-15 c'), + RgbInt8Color.rgbName(0xb1, 0x80, 0x36, 'p 18-15 c'), + RgbInt8Color.rgbName(0xae, 0x86, 0x43, '7551 u'), + RgbInt8Color.rgbName(0xab, 0x87, 0x4e, 'p 15-14 u'), + RgbInt8Color.rgbName(0xb2, 0x83, 0x47, 'p 22-6 c'), + RgbInt8Color.rgbName(0xab, 0x86, 0x54, '125 up'), + RgbInt8Color.rgbName(0xb5, 0x81, 0x50, '729 c'), + RgbInt8Color.rgbName(0xb2, 0x82, 0x54, '729 xgc'), + RgbInt8Color.rgbName(0xb2, 0x81, 0x53, 'p 21-13 u'), + RgbInt8Color.rgbName(0xae, 0x86, 0x54, 'p 22-13 c'), + RgbInt8Color.rgbName(0xaf, 0x84, 0x52, 'p 26-5 c'), + RgbInt8Color.rgbName(0xac, 0x83, 0x5e, '10138 c'), + RgbInt8Color.rgbName(0xad, 0x85, 0x58, 'p 22-5 u'), + RgbInt8Color.rgbName(0xaf, 0x81, 0x58, 'p 29-5 c'), + RgbInt8Color.rgbName(0xad, 0x7f, 0x5d, 'p 36-11 c'), + RgbInt8Color.rgbName(0xaa, 0x80, 0x66, '479 c'), + RgbInt8Color.rgbName(0xa8, 0x86, 0x6b, 'p 23-8 c'), + RgbInt8Color.rgbName(0xaa, 0x85, 0x62, 'p 26-4 u'), + RgbInt8Color.rgbName(0xae, 0x80, 0x67, 'p 47-12 c'), + RgbInt8Color.rgbName(0xa7, 0x8a, 0x70, '10365 c'), + RgbInt8Color.rgbName(0xa5, 0x88, 0x76, '2471 c'), + RgbInt8Color.rgbName(0xa6, 0x87, 0x6e, '2471 cp'), + RgbInt8Color.rgbName(0xaa, 0x88, 0x6f, '4645 up'), + RgbInt8Color.rgbName(0xad, 0x85, 0x6d, '479 cp'), + RgbInt8Color.rgbName(0xab, 0x83, 0x6c, 'p 39-12 u'), + RgbInt8Color.rgbName(0xac, 0x84, 0x71, 'p 43-5 c'), + RgbInt8Color.rgbName(0xab, 0x83, 0x73, 'p 43-5 u'), + RgbInt8Color.rgbName(0xa9, 0x89, 0x77, '4725 cp'), + RgbInt8Color.rgbName(0xac, 0x87, 0x7a, '7614 cp'), + RgbInt8Color.rgbName(0xa7, 0x89, 0x78, 'p 33-6 c'), + RgbInt8Color.rgbName(0xaa, 0x8b, 0x79, 'p 44-4 c'), + RgbInt8Color.rgbName(0xab, 0x82, 0x7b, 'p 51-6 c'), + RgbInt8Color.rgbName(0xa7, 0x85, 0x87, '4995 up'), + RgbInt8Color.rgbName(0xb0, 0x82, 0x86, '5005 xgc'), + RgbInt8Color.rgbName(0xa7, 0x87, 0x84, '7639 up'), + RgbInt8Color.rgbName(0xaa, 0x84, 0x85, 'p 67-4 u'), + RgbInt8Color.rgbName(0xa7, 0x87, 0x87, 'p 79-4 u'), + RgbInt8Color.rgbName(0xa4, 0x92, 0x8e, 'p 171-4 u'), + RgbInt8Color.rgbName(0xae, 0x8a, 0x8b, 'p 78-4 u'), + RgbInt8Color.rgbName(0xad, 0x83, 0x8b, 'p 78-5 c'), + RgbInt8Color.rgbName(0xa7, 0x89, 0x94, 'p 86-6 c'), + RgbInt8Color.rgbName(0xaf, 0x80, 0x99, '2053 cp'), + RgbInt8Color.rgbName(0xb0, 0x87, 0x99, '7646 u'), + RgbInt8Color.rgbName(0xac, 0x82, 0xa2, '7654 cp'), + RgbInt8Color.rgbName(0xae, 0x83, 0xa6, '10185 c'), + RgbInt8Color.rgbName(0xb2, 0x83, 0xa1, '2058 up'), + RgbInt8Color.rgbName(0xaa, 0x8a, 0xa5, '7654 u'), + RgbInt8Color.rgbName(0xab, 0x88, 0xa5, '7654 xgc'), + RgbInt8Color.rgbName(0xa7, 0x91, 0xa1, 'p 87-4 c'), + RgbInt8Color.rgbName(0xa4, 0x90, 0xa6, '10196 c'), + RgbInt8Color.rgbName(0xae, 0x85, 0xb0, '258 up'), + RgbInt8Color.rgbName(0xac, 0x8b, 0xab, 'p 89-11 c'), + RgbInt8Color.rgbName(0xad, 0x8b, 0xa9, 'p 89-3 u'), + RgbInt8Color.rgbName(0xa9, 0x8c, 0xae, 'p 91-12 u'), + RgbInt8Color.rgbName(0xab, 0x86, 0xaf, 'p 91-4 u'), + RgbInt8Color.rgbName(0xa9, 0x91, 0xba, '2577 up'), + RgbInt8Color.rgbName(0xb2, 0x88, 0xb9, '7439 c'), + RgbInt8Color.rgbName(0xa9, 0x92, 0xbc, 'p 96-3 c'), + RgbInt8Color.rgbName(0xb9, 0x99, 0xd6, '2072 u'), + RgbInt8Color.rgbName(0xb6, 0x9c, 0xcd, '2072 xgc'), + RgbInt8Color.rgbName(0xb9, 0xa3, 0xe3, '2645 u'), + RgbInt8Color.rgbName(0xbb, 0x91, 0x21, '125 cp'), + RgbInt8Color.rgbName(0xbe, 0x92, 0x1f, '7556 cp'), + RgbInt8Color.rgbName(0xb7, 0x8c, 0x30, '117 u'), + RgbInt8Color.rgbName(0xae, 0x91, 0x42, '10127 c'), + RgbInt8Color.rgbName(0xb2, 0x8c, 0x49, 'p 11-7 u'), + RgbInt8Color.rgbName(0xb1, 0x93, 0x48, 'p 12-13 c'), + RgbInt8Color.rgbName(0xb0, 0x8f, 0x4c, 'p 16-6 c'), + RgbInt8Color.rgbName(0xb8, 0x8c, 0x48, 'p 18-14 c'), + RgbInt8Color.rgbName(0xaf, 0x90, 0x4a, 'p 8-8 u'), + RgbInt8Color.rgbName(0xab, 0x8d, 0x57, 'p 16-5 u'), + RgbInt8Color.rgbName(0xb3, 0x8c, 0x50, 'p 19-5 c'), + RgbInt8Color.rgbName(0xac, 0x92, 0x51, 'p 8-15 u'), + RgbInt8Color.rgbName(0xa9, 0x93, 0x5f, 'p 12-12 u'), + RgbInt8Color.rgbName(0xae, 0x8b, 0x60, 'p 26-12 c'), + RgbInt8Color.rgbName(0xb0, 0x8e, 0x62, 'p 22-12 u'), + RgbInt8Color.rgbName(0xab, 0x8c, 0x6d, 'p 26-11 u'), + RgbInt8Color.rgbName(0xb1, 0x8c, 0x67, 'p 29-11 c'), + RgbInt8Color.rgbName(0xb1, 0x8c, 0x71, '2317 u'), + RgbInt8Color.rgbName(0xad, 0x8c, 0x70, '2317 up'), + RgbInt8Color.rgbName(0xac, 0x93, 0x6e, '872 u'), + RgbInt8Color.rgbName(0xae, 0x90, 0x6f, '873 u'), + RgbInt8Color.rgbName(0xae, 0x8f, 0x6f, '874 u'), + RgbInt8Color.rgbName(0xad, 0x8d, 0x73, 'p 23-7 c'), + RgbInt8Color.rgbName(0xab, 0x90, 0x71, 'p 23-7 u'), + RgbInt8Color.rgbName(0xaf, 0x8a, 0x6d, 'p 32-10 u'), + RgbInt8Color.rgbName(0xa8, 0x93, 0x79, '10353 c'), + RgbInt8Color.rgbName(0xae, 0x8a, 0x79, '4725 c'), + RgbInt8Color.rgbName(0xab, 0x8b, 0x76, '479 up'), + RgbInt8Color.rgbName(0xaa, 0x8b, 0x7d, '7614 up'), + RgbInt8Color.rgbName(0xa5, 0x95, 0x7d, '10346 c'), + RgbInt8Color.rgbName(0xaa, 0x92, 0x85, '2471 u'), + RgbInt8Color.rgbName(0xae, 0x8c, 0x7d, '4725 xgc'), + RgbInt8Color.rgbName(0xac, 0x8c, 0x7e, '479 u'), + RgbInt8Color.rgbName(0xab, 0x8e, 0x7d, 'p 33-5 u'), + RgbInt8Color.rgbName(0xa8, 0x93, 0x8e, '2475 u'), + RgbInt8Color.rgbName(0xa9, 0x93, 0x8c, '2475 up'), + RgbInt8Color.rgbName(0xae, 0x8f, 0x8e, 'p 79-3 u'), + RgbInt8Color.rgbName(0xaf, 0x8b, 0x93, 'p 79-4 c'), + RgbInt8Color.rgbName(0xa9, 0x8f, 0x9a, 'p 86-5 u'), + RgbInt8Color.rgbName(0xb0, 0x8b, 0xa3, '10178 c'), + RgbInt8Color.rgbName(0xa9, 0x95, 0x9d, '5215 up'), + RgbInt8Color.rgbName(0xb1, 0x8d, 0xa3, '7654 up'), + RgbInt8Color.rgbName(0xae, 0x8f, 0xa4, 'p 85-3 u'), + RgbInt8Color.rgbName(0xa6, 0x8f, 0xa5, 'p 90-3 u'), + RgbInt8Color.rgbName(0xad, 0x90, 0xa9, '10184 c'), + RgbInt8Color.rgbName(0xb3, 0x8d, 0xa9, 'p 84-2 u'), + RgbInt8Color.rgbName(0xaa, 0x92, 0xab, 'p 90-11 c'), + RgbInt8Color.rgbName(0xb2, 0x8a, 0xb4, '2582 up'), + RgbInt8Color.rgbName(0xb4, 0x8d, 0xb4, 'p 88-4 u'), + RgbInt8Color.rgbName(0xad, 0x8e, 0xb5, 'p 91-12 c'), + RgbInt8Color.rgbName(0xb3, 0x91, 0xbd, '7439 xgc'), + RgbInt8Color.rgbName(0xa8, 0x9a, 0xc2, '2099 cp'), + RgbInt8Color.rgbName(0xb8, 0x9d, 0x18, '457 c'), + RgbInt8Color.rgbName(0xb6, 0x99, 0x20, '111 cp'), + RgbInt8Color.rgbName(0xbc, 0x93, 0x27, '7556 xgc'), + RgbInt8Color.rgbName(0xb4, 0x93, 0x37, 'p 12-6 c'), + RgbInt8Color.rgbName(0xba, 0x94, 0x3b, 'p 11-14 c'), + RgbInt8Color.rgbName(0xb2, 0x98, 0x44, 'p 9-6 c'), + RgbInt8Color.rgbName(0xb1, 0x9b, 0x4a, 'p 5-8 u'), + RgbInt8Color.rgbName(0xae, 0x98, 0x53, '457 up'), + RgbInt8Color.rgbName(0xb6, 0x96, 0x58, '7551 up'), + RgbInt8Color.rgbName(0xab, 0x94, 0x61, '7557 up'), + RgbInt8Color.rgbName(0xb7, 0x97, 0x5b, 'p 11-13 u'), + RgbInt8Color.rgbName(0xaf, 0x95, 0x5b, 'p 12-5 u'), + RgbInt8Color.rgbName(0xaf, 0x93, 0x5d, 'p 16-13 c'), + RgbInt8Color.rgbName(0xb1, 0x94, 0x67, 'p 19-12 u'), + RgbInt8Color.rgbName(0xb0, 0x94, 0x6f, '465 u'), + RgbInt8Color.rgbName(0xb1, 0x96, 0x6e, '465 up'), + RgbInt8Color.rgbName(0xad, 0x98, 0x6e, '871 u'), + RgbInt8Color.rgbName(0xaa, 0x97, 0x77, 'p 13-6 u'), + RgbInt8Color.rgbName(0xab, 0x94, 0x70, 'p 13-7 c'), + RgbInt8Color.rgbName(0xaa, 0x9b, 0x7b, '2324 up'), + RgbInt8Color.rgbName(0xaa, 0x98, 0x87, '10364 c'), + RgbInt8Color.rgbName(0xaa, 0x93, 0x85, '4725 up'), + RgbInt8Color.rgbName(0xa6, 0x9a, 0x88, 'p 169-7 u'), + RgbInt8Color.rgbName(0xaf, 0x94, 0x83, 'p 44-3 c'), + RgbInt8Color.rgbName(0xae, 0x92, 0x8c, '7614 u'), + RgbInt8Color.rgbName(0xa9, 0x9b, 0x8c, 'p 170-3 u'), + RgbInt8Color.rgbName(0xae, 0x95, 0x8e, 'p 44-2 u'), + RgbInt8Color.rgbName(0xa9, 0x9c, 0x95, '7530 u'), + RgbInt8Color.rgbName(0xa5, 0x9c, 0x94, 'warm gray 6 c'), + RgbInt8Color.rgbName(0xab, 0x98, 0x9d, '436 c'), + RgbInt8Color.rgbName(0xa9, 0x9b, 0x9f, '436 u'), + RgbInt8Color.rgbName(0xaa, 0x9c, 0x9e, '436 up'), + RgbInt8Color.rgbName(0xb0, 0x95, 0xa8, '5145 up'), + RgbInt8Color.rgbName(0xaf, 0x95, 0xa6, '5215 c'), + RgbInt8Color.rgbName(0xb1, 0x99, 0xa9, '5215 xgc'), + RgbInt8Color.rgbName(0xaf, 0x9c, 0xaa, 'p 87-3 c'), + RgbInt8Color.rgbName(0xb1, 0x96, 0xae, 'p 89-10 u'), + RgbInt8Color.rgbName(0xa8, 0x9c, 0xb1, 'p 95-10 u'), + RgbInt8Color.rgbName(0xb0, 0x98, 0xb1, 'p 90-3 c'), + RgbInt8Color.rgbName(0xac, 0x9a, 0xb5, 'p 92-11 c'), + RgbInt8Color.rgbName(0xaa, 0x96, 0xb7, 'p 93-11 u'), + RgbInt8Color.rgbName(0xa6, 0x9d, 0xba, 'p 97-9 c'), + RgbInt8Color.rgbName(0xb0, 0x97, 0xc1, '2072 cp'), + RgbInt8Color.rgbName(0xaf, 0x95, 0xbc, '521 up'), + RgbInt8Color.rgbName(0xaf, 0x98, 0xbc, 'p 93-11 c'), + RgbInt8Color.rgbName(0xac, 0x9c, 0xbc, 'p 96-10 u'), + RgbInt8Color.rgbName(0xaa, 0x9f, 0xbb, 'p 97-1 u'), + RgbInt8Color.rgbName(0xa7, 0xa2, 0xc3, '7445 c'), + RgbInt8Color.rgbName(0xa7, 0xb1, 0xd5, 'p 104-3 c'), + RgbInt8Color.rgbName(0xb8, 0xac, 0xd6, '2092 c'), + RgbInt8Color.rgbName(0xb8, 0xab, 0xd8, '2092 u'), + RgbInt8Color.rgbName(0xaf, 0xb2, 0xd9, '270 xgc'), + RgbInt8Color.rgbName(0xa9, 0xaf, 0xd2, '2716 up'), + RgbInt8Color.rgbName(0xbf, 0xa1, 0xe3, '264 u'), + RgbInt8Color.rgbName(0xbf, 0x9b, 0xde, 'violet 0631 c'), + RgbInt8Color.rgbName(0xba, 0xa3, 0x1f, '10117 c'), + RgbInt8Color.rgbName(0xb8, 0xa3, 0x26, 'p 5-15 c'), + RgbInt8Color.rgbName(0xb7, 0xab, 0x26, '10110 c'), + RgbInt8Color.rgbName(0xb5, 0xa5, 0x36, '10116 c'), + RgbInt8Color.rgbName(0xb6, 0xa7, 0x2d, '3975 u'), + RgbInt8Color.rgbName(0xba, 0x9b, 0x37, '10121 c'), + RgbInt8Color.rgbName(0xbc, 0xa1, 0x36, 'p 8-15 c'), + RgbInt8Color.rgbName(0xb7, 0xa7, 0x3f, '612 u'), + RgbInt8Color.rgbName(0xb5, 0x9f, 0x4a, '10120 c'), + RgbInt8Color.rgbName(0xb6, 0xa1, 0x50, 'p 5-7 u'), + RgbInt8Color.rgbName(0xae, 0xa7, 0x5c, '10114 c'), + RgbInt8Color.rgbName(0xb2, 0xa2, 0x5c, '10119 c'), + RgbInt8Color.rgbName(0xb4, 0xa1, 0x59, 'p 5-13 u'), + RgbInt8Color.rgbName(0xae, 0x9e, 0x60, 'p 6-5 u'), + RgbInt8Color.rgbName(0xb4, 0xa3, 0x65, '4515 cp'), + RgbInt8Color.rgbName(0xb2, 0x9e, 0x69, '7503 cp'), + RgbInt8Color.rgbName(0xb1, 0xa7, 0x63, '7767 u'), + RgbInt8Color.rgbName(0xad, 0xa4, 0x68, 'p 3-13 u'), + RgbInt8Color.rgbName(0xb6, 0xa0, 0x65, 'p 9-5 u'), + RgbInt8Color.rgbName(0xae, 0xa4, 0x6f, '10118 c'), + RgbInt8Color.rgbName(0xb3, 0x9e, 0x6c, 'p 12-11 u'), + RgbInt8Color.rgbName(0xb1, 0xa3, 0x6b, 'p 6-11 u'), + RgbInt8Color.rgbName(0xb3, 0xa0, 0x6b, 'p 9-12 u'), + RgbInt8Color.rgbName(0xaf, 0xa1, 0x7c, '2324 cp'), + RgbInt8Color.rgbName(0xa8, 0xa6, 0x87, '452 u'), + RgbInt8Color.rgbName(0xad, 0x9f, 0x8a, '7530 cp'), + RgbInt8Color.rgbName(0xaa, 0x9f, 0x8e, '10352 c'), + RgbInt8Color.rgbName(0xaf, 0xa1, 0x89, '2324 u'), + RgbInt8Color.rgbName(0xad, 0xa1, 0x90, '7530 up'), + RgbInt8Color.rgbName(0xac, 0xa1, 0x8e, 'p 170-3 c'), + RgbInt8Color.rgbName(0xa9, 0xa6, 0x8f, 'p 178-4 c'), + RgbInt8Color.rgbName(0xa7, 0x9f, 0x94, 'warm gray 6 up'), + RgbInt8Color.rgbName(0xa7, 0x9e, 0x99, '408 up'), + RgbInt8Color.rgbName(0xa7, 0x9e, 0x98, 'p 172-4 u'), + RgbInt8Color.rgbName(0xa7, 0xa5, 0x99, 'p 176-1 c'), + RgbInt8Color.rgbName(0xa3, 0xa3, 0x9a, 'p 176-1 u'), + RgbInt8Color.rgbName(0xa9, 0xa1, 0x9c, 'warm gray 5 u'), + RgbInt8Color.rgbName(0xac, 0xa2, 0x97, 'warm gray 6 xgc'), + RgbInt8Color.rgbName(0xab, 0xa2, 0xa0, '407 u'), + RgbInt8Color.rgbName(0xac, 0xa1, 0xa2, '436 xgc'), + RgbInt8Color.rgbName(0xaa, 0xa5, 0x9d, 'p 172-4 c'), + RgbInt8Color.rgbName(0xaa, 0xa2, 0xa1, 'p 173-2 u'), + RgbInt8Color.rgbName(0xa7, 0xa3, 0xa1, 'p 173-3 c'), + RgbInt8Color.rgbName(0xa5, 0xa5, 0xa6, 'p 179-6 c'), + RgbInt8Color.rgbName(0xb0, 0xa2, 0xaa, '436 cp'), + RgbInt8Color.rgbName(0xa8, 0xa7, 0xa8, 'p 174-2 u'), + RgbInt8Color.rgbName(0xb0, 0x9f, 0xaa, 'p 87-2 u'), + RgbInt8Color.rgbName(0xad, 0xa4, 0xae, '2358 c'), + RgbInt8Color.rgbName(0xae, 0xa1, 0xbc, '666 u'), + RgbInt8Color.rgbName(0xaa, 0xa4, 0xb9, 'p 101-9 u'), + RgbInt8Color.rgbName(0xaf, 0xa2, 0xb9, 'p 95-10 c'), + RgbInt8Color.rgbName(0xb0, 0x9c, 0xc0, '2073 up'), + RgbInt8Color.rgbName(0xaf, 0xa1, 0xc4, '2099 up'), + RgbInt8Color.rgbName(0xa8, 0xa6, 0xc1, 'p 101-2 c'), + RgbInt8Color.rgbName(0xb0, 0x9f, 0xbb, 'p 94-2 u'), + RgbInt8Color.rgbName(0xb1, 0x9f, 0xc1, 'p 96-10 c'), + RgbInt8Color.rgbName(0xb1, 0xa2, 0xca, '2099 c'), + RgbInt8Color.rgbName(0xac, 0xa8, 0xc7, '7445 u'), + RgbInt8Color.rgbName(0xab, 0xa5, 0xc8, 'p 102-2 u'), + RgbInt8Color.rgbName(0xac, 0xae, 0xd1, '270 up'), + RgbInt8Color.rgbName(0xac, 0xad, 0xd1, 'p 102-2 c'), + RgbInt8Color.rgbName(0xba, 0xb6, 0xe9, '2705 u'), + RgbInt8Color.rgbName(0xb6, 0xb8, 0xdc, '7444 c'), + RgbInt8Color.rgbName(0xbc, 0xbd, 0xe2, '7444 u'), + RgbInt8Color.rgbName(0xb5, 0xa7, 0x42, '618 cp'), + RgbInt8Color.rgbName(0xb7, 0xa9, 0x4d, '612 up'), + RgbInt8Color.rgbName(0xb6, 0xa6, 0x4d, 'p 6-6 c'), + RgbInt8Color.rgbName(0xb0, 0xad, 0x5f, 'p 167-13 u'), + RgbInt8Color.rgbName(0xb8, 0xab, 0x59, 'p 2-14 u'), + RgbInt8Color.rgbName(0xaf, 0xaa, 0x6b, '5845 cp'), + RgbInt8Color.rgbName(0xaf, 0xaa, 0x6a, '5845 xgc'), + RgbInt8Color.rgbName(0xb3, 0xab, 0x65, '7767 up'), + RgbInt8Color.rgbName(0xb0, 0xad, 0x65, 'p 168-4 c'), + RgbInt8Color.rgbName(0xb4, 0xaa, 0x67, 'p 3-5 u'), + RgbInt8Color.rgbName(0xb0, 0xaa, 0x7e, '452 c'), + RgbInt8Color.rgbName(0xae, 0xa8, 0x7b, '5845 up'), + RgbInt8Color.rgbName(0xae, 0xb1, 0x74, 'p 165-3 u'), + RgbInt8Color.rgbName(0xb0, 0xaf, 0x77, 'p 168-2 u'), + RgbInt8Color.rgbName(0xb3, 0xab, 0x7f, '452 cp'), + RgbInt8Color.rgbName(0xad, 0xa5, 0x89, '7536 cp'), + RgbInt8Color.rgbName(0xad, 0xa4, 0x90, 'p 169-6 u'), + RgbInt8Color.rgbName(0xa8, 0xa9, 0x9c, '414 xgc'), + RgbInt8Color.rgbName(0xb2, 0xad, 0x96, '7536 up'), + RgbInt8Color.rgbName(0xa9, 0xa7, 0x98, 'p 177-2 u'), + RgbInt8Color.rgbName(0xb0, 0xa8, 0x95, 'p 178-3 u'), + RgbInt8Color.rgbName(0xae, 0xa9, 0xa3, '2331 xgc'), + RgbInt8Color.rgbName(0xaf, 0xa9, 0xa0, '401 c'), + RgbInt8Color.rgbName(0xad, 0xa8, 0x9f, '401 cp'), + RgbInt8Color.rgbName(0xab, 0xac, 0xa5, '414 u'), + RgbInt8Color.rgbName(0xab, 0xb1, 0xa1, '7537 cp'), + RgbInt8Color.rgbName(0xad, 0xa7, 0x9e, '9084 c'), + RgbInt8Color.rgbName(0xb1, 0xaa, 0xa2, 'warm gray 4 cp'), + RgbInt8Color.rgbName(0xb0, 0xa9, 0xa0, 'warm gray 5 up'), + RgbInt8Color.rgbName(0xaa, 0xad, 0xae, '10105 c'), + RgbInt8Color.rgbName(0xb1, 0xac, 0xaa, '2331 u'), + RgbInt8Color.rgbName(0xad, 0xad, 0xac, 'cool gray 5 up'), + RgbInt8Color.rgbName(0xaf, 0xac, 0xa9, 'p 173-2 c'), + RgbInt8Color.rgbName(0xa8, 0xac, 0xae, 'p 174-2 c'), + RgbInt8Color.rgbName(0xac, 0xad, 0xa7, 'p 175-3 u'), + RgbInt8Color.rgbName(0xad, 0xb0, 0xb1, '10104 c'), + RgbInt8Color.rgbName(0xb2, 0xab, 0xb4, '2358 xgc'), + RgbInt8Color.rgbName(0xa9, 0xb0, 0xb7, '429 cp'), + RgbInt8Color.rgbName(0xad, 0xae, 0xb0, 'cool gray 5 u'), + RgbInt8Color.rgbName(0xb0, 0xab, 0xbb, '5295 up'), + RgbInt8Color.rgbName(0xaf, 0xac, 0xc3, 'p 101-9 c'), + RgbInt8Color.rgbName(0xa6, 0xaf, 0xc2, 'p 108-9 u'), + RgbInt8Color.rgbName(0xae, 0xaf, 0xc5, '5295 cp'), + RgbInt8Color.rgbName(0xb0, 0xa8, 0xc7, '7445 up'), + RgbInt8Color.rgbName(0xae, 0xac, 0xc9, '7445 xgc'), + RgbInt8Color.rgbName(0xb1, 0xad, 0xc9, 'p 102-9 u'), + RgbInt8Color.rgbName(0xab, 0xae, 0xc6, 'p 105-10 c'), + RgbInt8Color.rgbName(0xa9, 0xae, 0xca, 'p 105-2 u'), + RgbInt8Color.rgbName(0xb0, 0xa9, 0xc6, 'p 97-1 c'), + RgbInt8Color.rgbName(0xac, 0xab, 0xcc, 'p 99-11 c'), + RgbInt8Color.rgbName(0xb1, 0xa9, 0xc9, 'p 99-3 u'), + RgbInt8Color.rgbName(0xb0, 0xac, 0xcf, '2705 up'), + RgbInt8Color.rgbName(0xb7, 0xc3, 0xe1, '2120 xgc'), + RgbInt8Color.rgbName(0xb6, 0xc8, 0xe4, '2708 cp'), + RgbInt8Color.rgbName(0xb6, 0xc8, 0xe3, '2708 xgc'), + RgbInt8Color.rgbName(0xb8, 0xc3, 0xdc, 'p 106-10 c'), + RgbInt8Color.rgbName(0xb7, 0xb3, 0x4c, 'p 167-6 c'), + RgbInt8Color.rgbName(0xb5, 0xb9, 0x5b, '7745 up'), + RgbInt8Color.rgbName(0xb5, 0xb1, 0x59, 'p 167-6 u'), + RgbInt8Color.rgbName(0xb5, 0xb9, 0x66, 'p 164-5 u'), + RgbInt8Color.rgbName(0xb6, 0xb5, 0x6e, 'p 167-12 c'), + RgbInt8Color.rgbName(0xb7, 0xb4, 0x74, 'p 168-3 c'), + RgbInt8Color.rgbName(0xaf, 0xb3, 0x81, 'p 162-10 u'), + RgbInt8Color.rgbName(0xad, 0xb6, 0x80, 'p 162-4 c'), + RgbInt8Color.rgbName(0xb3, 0xb1, 0x78, 'p 168-12 c'), + RgbInt8Color.rgbName(0xb2, 0xb4, 0x86, '5777 up'), + RgbInt8Color.rgbName(0xae, 0xbb, 0x80, 'p 158-12 c'), + RgbInt8Color.rgbName(0xab, 0xba, 0x8f, 'p 156-1 c'), + RgbInt8Color.rgbName(0xae, 0xb9, 0x88, 'p 159-3 u'), + RgbInt8Color.rgbName(0xb3, 0xb6, 0x8a, 'p 165-10 c'), + RgbInt8Color.rgbName(0xb0, 0xb9, 0x94, '5793 xgc'), + RgbInt8Color.rgbName(0xac, 0xb9, 0x95, 'p 156-9 u'), + RgbInt8Color.rgbName(0xae, 0xaf, 0x9e, 'p 177-2 c'), + RgbInt8Color.rgbName(0xaa, 0xb3, 0xae, '442 up'), + RgbInt8Color.rgbName(0xaf, 0xb1, 0xac, 'p 175-3 c'), + RgbInt8Color.rgbName(0xb2, 0xb4, 0xb2, '421 c'), + RgbInt8Color.rgbName(0xaf, 0xb4, 0xb1, '421 up'), + RgbInt8Color.rgbName(0xac, 0xb3, 0xb8, '428 u'), + RgbInt8Color.rgbName(0xac, 0xb7, 0xb2, '442 cp'), + RgbInt8Color.rgbName(0xac, 0xb6, 0xb6, '442 u'), + RgbInt8Color.rgbName(0xa9, 0xba, 0xb7, '5517 u'), + RgbInt8Color.rgbName(0xb1, 0xb3, 0xb3, 'cool gray 5 c'), + RgbInt8Color.rgbName(0xb0, 0xb4, 0xb8, 'p 174-1 c'), + RgbInt8Color.rgbName(0xb4, 0xb4, 0xb4, 'p 179-5 c'), + RgbInt8Color.rgbName(0xae, 0xb8, 0xc0, '7543 u'), + RgbInt8Color.rgbName(0xb0, 0xba, 0xbf, '7543 up'), + RgbInt8Color.rgbName(0xae, 0xb7, 0xca, 'p 108-1 u'), + RgbInt8Color.rgbName(0xa6, 0xbb, 0xce, 'p 114-1 u'), + RgbInt8Color.rgbName(0xa7, 0xbc, 0xd6, '651 c'), + RgbInt8Color.rgbName(0xa8, 0xbd, 0xd4, 'p 110-2 u'), + RgbInt8Color.rgbName(0xb6, 0xbb, 0x54, 'p 163-15 u'), + RgbInt8Color.rgbName(0xb9, 0xbe, 0x56, '7744 u'), + RgbInt8Color.rgbName(0xb9, 0xc3, 0x5f, 'p 160-14 c'), + RgbInt8Color.rgbName(0xba, 0xbd, 0x6a, 'p 164-5 c'), + RgbInt8Color.rgbName(0xb7, 0xc0, 0x79, 'p 161-5 c'), + RgbInt8Color.rgbName(0xb6, 0xba, 0x79, 'p 164-12 c'), + RgbInt8Color.rgbName(0xb6, 0xba, 0x77, 'p 164-12 u'), + RgbInt8Color.rgbName(0xac, 0xc1, 0x91, 'p 155-1 u'), + RgbInt8Color.rgbName(0xad, 0xbd, 0x9e, '2404 cp'), + RgbInt8Color.rgbName(0xad, 0xc1, 0x9c, 'p 152-11 c'), + RgbInt8Color.rgbName(0xb0, 0xc0, 0x94, 'p 155-9 c'), + RgbInt8Color.rgbName(0xae, 0xc1, 0xa1, 'p 150-1 c'), + RgbInt8Color.rgbName(0xab, 0xbb, 0xae, '5645 cp'), + RgbInt8Color.rgbName(0xab, 0xc2, 0xa8, 'p 141-1 c'), + RgbInt8Color.rgbName(0xab, 0xc0, 0xbb, '5517 xgc'), + RgbInt8Color.rgbName(0xb0, 0xbd, 0xb0, '5655 c'), + RgbInt8Color.rgbName(0xaa, 0xc1, 0xb8, 'p 129-10 u'), + RgbInt8Color.rgbName(0xad, 0xbf, 0xc1, '2176 cp'), + RgbInt8Color.rgbName(0xb1, 0xc0, 0xbc, '5517 c'), + RgbInt8Color.rgbName(0xa8, 0xbd, 0xce, '2155 cp'), + RgbInt8Color.rgbName(0xa9, 0xbf, 0xd7, 'p 110-2 c'), + RgbInt8Color.rgbName(0xab, 0xba, 0xce, 'p 111-9 c'), + RgbInt8Color.rgbName(0xaa, 0xc2, 0xd6, 'p 113-9 u'), + RgbInt8Color.rgbName(0xa8, 0xc3, 0xd8, 'p 113-9 c'), + RgbInt8Color.rgbName(0xae, 0xcb, 0xe3, 'p 112-10 c'), + RgbInt8Color.rgbName(0xd4, 0xc3, 0x4, '7758 c'), + RgbInt8Color.rgbName(0xd3, 0xc0, 0x0, 'p 2-7 c'), + RgbInt8Color.rgbName(0xd3, 0xc6, 0xd, '7758 xgc'), + RgbInt8Color.rgbName(0xbc, 0xc8, 0x6f, 'p 160-13 u'), + RgbInt8Color.rgbName(0xb5, 0xc6, 0x7a, 'p 157-12 u'), + RgbInt8Color.rgbName(0xb8, 0xcd, 0x7a, '2291 up'), + RgbInt8Color.rgbName(0xb7, 0xc8, 0x80, 'p 157-12 c'), + RgbInt8Color.rgbName(0xb6, 0xc4, 0x88, 'p 158-3 u'), + RgbInt8Color.rgbName(0xb7, 0xc7, 0x96, 'p 155-1 c'), + RgbInt8Color.rgbName(0xad, 0xc4, 0xa6, 'p 141-1 u'), + RgbInt8Color.rgbName(0xaf, 0xc7, 0xa6, 'p 143-10 u'), + RgbInt8Color.rgbName(0xb1, 0xc9, 0xa3, 'p 152-3 u'), + RgbInt8Color.rgbName(0xac, 0xca, 0xaf, 'p 137-2 u'), + RgbInt8Color.rgbName(0xad, 0xc5, 0xac, 'p 138-1 u'), + RgbInt8Color.rgbName(0xaf, 0xc9, 0xab, 'p 143-10 c'), + RgbInt8Color.rgbName(0xad, 0xca, 0xb8, '559 c'), + RgbInt8Color.rgbName(0xaa, 0xcc, 0xba, 'p 130-9 u'), + RgbInt8Color.rgbName(0xae, 0xc6, 0xb8, 'p 138-1 c'), + RgbInt8Color.rgbName(0xad, 0xcc, 0xc3, 'p 125-2 u'), + RgbInt8Color.rgbName(0xb0, 0xc8, 0xc2, 'p 129-10 c'), + RgbInt8Color.rgbName(0xac, 0xca, 0xcd, '5513 u'), + RgbInt8Color.rgbName(0xaa, 0xca, 0xcb, '5513 xgc'), + RgbInt8Color.rgbName(0xaf, 0xc9, 0xc8, '7542 up'), + RgbInt8Color.rgbName(0xad, 0xcb, 0xc5, 'p 128-9 c'), + RgbInt8Color.rgbName(0xac, 0xcc, 0xd5, '2204 xgc'), + RgbInt8Color.rgbName(0xb4, 0xc7, 0xd3, '5445 u'), + RgbInt8Color.rgbName(0xac, 0xcd, 0xd1, '5513 cp'), + RgbInt8Color.rgbName(0xb1, 0xc7, 0xd6, '9423 u'), + RgbInt8Color.rgbName(0xac, 0xc9, 0xd9, 'p 117-2 c'), + RgbInt8Color.rgbName(0xa9, 0xc6, 0xd6, 'p 117-2 u'), + RgbInt8Color.rgbName(0xac, 0xce, 0xd9, '2204 u'), + RgbInt8Color.rgbName(0xb4, 0xc9, 0xe1, 'p 109-10 c'), + RgbInt8Color.rgbName(0xb8, 0xcc, 0xea, '2708 c'), + RgbInt8Color.rgbName(0xb8, 0xcf, 0xee, '658 u'), + RgbInt8Color.rgbName(0xb2, 0xcb, 0xe0, 'p 113-1 c'), + RgbInt8Color.rgbName(0xbe, 0xcf, 0x77, '2297 up'), + RgbInt8Color.rgbName(0xb9, 0xd1, 0x8e, '2284 cp'), + RgbInt8Color.rgbName(0xbe, 0xce, 0x82, '7492 xgc'), + RgbInt8Color.rgbName(0xb6, 0xd1, 0x91, 'p 154-4 u'), + RgbInt8Color.rgbName(0xbd, 0xd6, 0x8d, '366 cp'), + RgbInt8Color.rgbName(0xb9, 0xd2, 0x9a, '2283 up'), + RgbInt8Color.rgbName(0xb7, 0xce, 0x95, '578 c'), + RgbInt8Color.rgbName(0xb8, 0xcc, 0x97, '578 up'), + RgbInt8Color.rgbName(0xb9, 0xd2, 0x96, '578 xgc'), + RgbInt8Color.rgbName(0xb8, 0xd2, 0xa3, '2260 cp'), + RgbInt8Color.rgbName(0xb5, 0xd1, 0xa2, '2267 cp'), + RgbInt8Color.rgbName(0xba, 0xd2, 0x9e, '579 u'), + RgbInt8Color.rgbName(0xb7, 0xd0, 0xa6, 'p 145-9 u'), + RgbInt8Color.rgbName(0xb9, 0xd3, 0xa0, 'p 148-2 c'), + RgbInt8Color.rgbName(0xb7, 0xd3, 0xa3, 'p 151-3 u'), + RgbInt8Color.rgbName(0xb7, 0xd2, 0xaa, '2254 cp'), + RgbInt8Color.rgbName(0xb6, 0xcf, 0xae, '2260 c'), + RgbInt8Color.rgbName(0xb4, 0xd1, 0xb2, 'p 136-9 u'), + RgbInt8Color.rgbName(0xb5, 0xd2, 0xb0, 'p 139-10 u'), + RgbInt8Color.rgbName(0xb5, 0xd1, 0xad, 'p 142-9 c'), + RgbInt8Color.rgbName(0xb4, 0xcf, 0xb7, 'p 137-2 c'), + RgbInt8Color.rgbName(0xb3, 0xcd, 0xb4, 'p 140-9 c'), + RgbInt8Color.rgbName(0xb0, 0xcc, 0xba, '558 up'), + RgbInt8Color.rgbName(0xb2, 0xce, 0xc0, '559 cp'), + RgbInt8Color.rgbName(0xb5, 0xd1, 0xc0, '559 u'), + RgbInt8Color.rgbName(0xb3, 0xcf, 0xc0, '622 xgc'), + RgbInt8Color.rgbName(0xb5, 0xce, 0xc8, 'p 125-9 u'), + RgbInt8Color.rgbName(0xb3, 0xd3, 0xd2, '9483 u'), + RgbInt8Color.rgbName(0xb0, 0xd0, 0xdc, '552 u'), + RgbInt8Color.rgbName(0xb4, 0xd3, 0xdb, '552 up'), + RgbInt8Color.rgbName(0xb1, 0xd0, 0xe0, 'p 116-9 u'), + RgbInt8Color.rgbName(0xb3, 0xd3, 0xda, 'p 119-1 u'), + RgbInt8Color.rgbName(0xb5, 0xd2, 0xe7, '9421 u'), + RgbInt8Color.rgbName(0xb8, 0xd3, 0xeb, 'p 112-2 u'), + RgbInt8Color.rgbName(0xb8, 0xcf, 0xe7, '2127 cp'), + RgbInt8Color.rgbName(0xbc, 0xda, 0xf0, '9420 u'), + RgbInt8Color.rgbName(0xd7, 0xdf, 0x34, '388 xgc'), + RgbInt8Color.rgbName(0xbe, 0xc1, 0x77, 'p 164-4 u'), + RgbInt8Color.rgbName(0xba, 0xd8, 0xae, 'p 142-2 u'), + RgbInt8Color.rgbName(0xbe, 0xd8, 0xac, 'p 148-1 u'), + RgbInt8Color.rgbName(0xb9, 0xd9, 0xc0, 'p 136-2 c'), + RgbInt8Color.rgbName(0xb4, 0xd6, 0xcb, '565 cp'), + RgbInt8Color.rgbName(0xba, 0xda, 0xc7, 'p 130-2 u'), + RgbInt8Color.rgbName(0xb1, 0xd8, 0xd5, '324 cp'), + RgbInt8Color.rgbName(0xb9, 0xdc, 0xd2, '566 c'), + RgbInt8Color.rgbName(0xb4, 0xda, 0xd6, '9502 u'), + RgbInt8Color.rgbName(0xb0, 0xd8, 0xd7, 'p 121-3 u'), + RgbInt8Color.rgbName(0xb2, 0xd5, 0xd0, 'p 124-10 u'), + RgbInt8Color.rgbName(0xb8, 0xda, 0xd2, 'p 127-2 c'), + RgbInt8Color.rgbName(0xbb, 0xdc, 0xd2, 'p 130-2 c'), + RgbInt8Color.rgbName(0xb7, 0xdc, 0xdf, 'p 121-3 c'), + RgbInt8Color.rgbName(0xb8, 0xdb, 0xea, '290 xgc'), + RgbInt8Color.rgbName(0xb6, 0xdc, 0xe4, '635 cp'), + RgbInt8Color.rgbName(0xbb, 0xdd, 0xe6, '7457 c'), + RgbInt8Color.rgbName(0xb9, 0xda, 0xe5, '7457 xgc'), + RgbInt8Color.rgbName(0xb5, 0xdb, 0xe7, 'p 118-2 u'), + RgbInt8Color.rgbName(0xb9, 0xd9, 0xeb, '290 c'), + RgbInt8Color.rgbName(0xbc, 0xdd, 0xe9, 'p 118-2 c'), + RgbInt8Color.rgbName(0xba, 0xd7, 0xe9, '544 xgc'), + RgbInt8Color.rgbName(0xd5, 0xe7, 0x39, '388 u'), + RgbInt8Color.rgbName(0xdb, 0xe4, 0x42, '380 c'), + RgbInt8Color.rgbName(0xd9, 0xdf, 0x42, '387 xgc'), + RgbInt8Color.rgbName(0xd4, 0xe4, 0x58, '380 u'), + RgbInt8Color.rgbName(0xd6, 0xe8, 0x65, '2296 c'), + RgbInt8Color.rgbName(0xbc, 0xca, 0x87, '7492 u'), + RgbInt8Color.rgbName(0xbc, 0xd4, 0x9b, '579 xgc'), + RgbInt8Color.rgbName(0xb8, 0xcc, 0x94, 'p 154-10 c'), + RgbInt8Color.rgbName(0xbe, 0xd7, 0xac, 'p 145-2 c'), + RgbInt8Color.rgbName(0xbd, 0xe9, 0xc9, '2253 c'), + RgbInt8Color.rgbName(0xb5, 0xe3, 0xd8, '573 c'), + RgbInt8Color.rgbName(0xbb, 0xe9, 0xde, '573 u'), + RgbInt8Color.rgbName(0xb9, 0xe0, 0xdd, '9501 c'), + RgbInt8Color.rgbName(0xbe, 0xe2, 0xe7, '9461 c'), + RgbInt8Color.rgbName(0xd6, 0xbe, 0x0, '606 xgc'), + RgbInt8Color.rgbName(0xd9, 0xee, 0x70, '2296 u'), + RgbInt8Color.rgbName(0xbf, 0xd2, 0x75, '2297 cp'), + RgbInt8Color.rgbName(0xbf, 0xd5, 0x7b, 'p 157-5 u'), + RgbInt8Color.rgbName(0xb8, 0xd5, 0xb1, '2260 xgc'), + RgbInt8Color.rgbName(0xbe, 0xdb, 0xbf, '351 cp'), + RgbInt8Color.rgbName(0xb8, 0xdd, 0xe1, '628 c'), + RgbInt8Color.rgbName(0xbe, 0xdd, 0xe7, '9442 c'), + RgbInt8Color.rgbName(0xbd, 0xd6, 0xeb, 'p 112-2 c'), + RgbInt8Color.rgbName(0xb9, 0xd7, 0xe6, 'p 116-1 u'), + RgbInt8Color.rgbName(0xd9, 0xbe, 0x0, '606 cp'), + RgbInt8Color.rgbName(0xd7, 0xc8, 0x26, '611 c'), + RgbInt8Color.rgbName(0xd6, 0xca, 0x2b, '611 xgc'), + RgbInt8Color.rgbName(0xd2, 0xd9, 0x5b, '584 xgc'), + RgbInt8Color.rgbName(0xd7, 0xe1, 0x66, '379 xgc'), + RgbInt8Color.rgbName(0xce, 0xd6, 0x65, '584 u'), + RgbInt8Color.rgbName(0xc5, 0xd9, 0x7a, '2289 c'), + RgbInt8Color.rgbName(0xbd, 0xdd, 0xd2, '331 cp'), + RgbInt8Color.rgbName(0xbe, 0xdd, 0xce, '572 cp'), + RgbInt8Color.rgbName(0xbc, 0xdc, 0xd9, '628 up'), + RgbInt8Color.rgbName(0xbc, 0xdf, 0xdf, '9044 u'), + RgbInt8Color.rgbName(0xbf, 0xdf, 0xf0, 'p 115-3 c'), + RgbInt8Color.rgbName(0xc8, 0x10, 0x2e, '186 c'), + RgbInt8Color.rgbName(0xd5, 0x0, 0x32, '199 c'), + RgbInt8Color.rgbName(0xce, 0x0, 0x37, '206 c'), + RgbInt8Color.rgbName(0xe1, 0x6, 0x0, '2347 c'), + RgbInt8Color.rgbName(0xde, 0x19, 0x0, '2347 xgc'), + RgbInt8Color.rgbName(0xbf, 0xd, 0x3e, '193 c'), + RgbInt8Color.rgbName(0xc2, 0x1, 0x49, '193 xgc'), + RgbInt8Color.rgbName(0xc5, 0x2, 0x4d, '1935 xgc'), + RgbInt8Color.rgbName(0xc0, 0x18, 0x52, '7636 xgc'), + RgbInt8Color.rgbName(0xd8, 0x0, 0x57, '1925 xgc'), + RgbInt8Color.rgbName(0xd9, 0x0, 0x5c, '2040 xgc'), + RgbInt8Color.rgbName(0xce, 0xf, 0x69, '214 c'), + RgbInt8Color.rgbName(0xd1, 0x8, 0x69, '214 xgc'), + RgbInt8Color.rgbName(0xd5, 0x9, 0x65, 'p 71-8 c'), + RgbInt8Color.rgbName(0xe6, 0x38, 0x88, '2039 c'), + RgbInt8Color.rgbName(0xbf, 0x49, 0x94, '240 cp'), + RgbInt8Color.rgbName(0xf5, 0x41, 0xb7, '813 u'), + RgbInt8Color.rgbName(0xc3, 0x1f, 0x39, 'p 57-16 c'), + RgbInt8Color.rgbName(0xbc, 0x20, 0x4b, '7636 c'), + RgbInt8Color.rgbName(0xc0, 0x22, 0x50, '7636 cp'), + RgbInt8Color.rgbName(0xc0, 0x30, 0x2d, 'p 48-16 c'), + RgbInt8Color.rgbName(0xc6, 0x2b, 0x60, 'p 68-16 c'), + RgbInt8Color.rgbName(0xcb, 0x48, 0x91, 'rhodamine red cp'), + RgbInt8Color.rgbName(0xc6, 0x35, 0x27, '7626 c'), + RgbInt8Color.rgbName(0xc2, 0x21, 0x3f, 'p 55-16 c'), + RgbInt8Color.rgbName(0xc7, 0x1f, 0x4b, 'p 59-16 c'), + RgbInt8Color.rgbName(0xc2, 0x36, 0x6f, '2452 c'), + RgbInt8Color.rgbName(0xc7, 0x36, 0x72, '2452 cp'), + RgbInt8Color.rgbName(0xc6, 0x3a, 0x76, 'p 73-15 c'), + RgbInt8Color.rgbName(0xd0, 0x58, 0x96, '232 xgc'), + RgbInt8Color.rgbName(0xc6, 0x57, 0x9a, '674 c'), + RgbInt8Color.rgbName(0xf4, 0x69, 0xdb, '907 c'), + RgbInt8Color.rgbName(0xd1, 0x35, 0xf, '3516 c'), + RgbInt8Color.rgbName(0xc2, 0x27, 0x3d, 'p 52-16 c'), + RgbInt8Color.rgbName(0xbf, 0x2b, 0x45, '200 cp'), + RgbInt8Color.rgbName(0xc4, 0x2e, 0x51, 'p 62-16 c'), + RgbInt8Color.rgbName(0xb7, 0x42, 0x71, '2451 c'), + RgbInt8Color.rgbName(0xc8, 0x46, 0x87, '233 u'), + RgbInt8Color.rgbName(0xc6, 0x42, 0x81, 'p 75-15 c'), + RgbInt8Color.rgbName(0xe6, 0x35, 0x0, '2028 xgc'), + RgbInt8Color.rgbName(0xc7, 0x49, 0x28, '7598 cp'), + RgbInt8Color.rgbName(0xc0, 0x3c, 0x2a, 'p 45-16 c'), + RgbInt8Color.rgbName(0xbe, 0x3a, 0x34, '180 c'), + RgbInt8Color.rgbName(0xb8, 0x3a, 0x4b, '703 c'), + RgbInt8Color.rgbName(0xbe, 0x3b, 0x46, 'p 60-7 c'), + RgbInt8Color.rgbName(0xc6, 0x36, 0x63, '7635 c'), + RgbInt8Color.rgbName(0xe5, 0x6d, 0xb1, '218 c'), + RgbInt8Color.rgbName(0xdc, 0x44, 0x5, '1665 c'), + RgbInt8Color.rgbName(0xba, 0x58, 0x26, '7584 c'), + RgbInt8Color.rgbName(0xbe, 0x43, 0x2c, 'p 40-16 c'), + RgbInt8Color.rgbName(0xbd, 0x47, 0x2a, '7598 c'), + RgbInt8Color.rgbName(0xc2, 0x3a, 0x36, 'p 48-15 c'), + RgbInt8Color.rgbName(0xc1, 0x43, 0x3c, '180 cp'), + RgbInt8Color.rgbName(0xc0, 0x40, 0x3d, '180 xgc'), + RgbInt8Color.rgbName(0xc0, 0x43, 0x3b, '2033 cp'), + RgbInt8Color.rgbName(0xbb, 0x3d, 0x43, '3517 u'), + RgbInt8Color.rgbName(0xba, 0x44, 0x58, '703 cp'), + RgbInt8Color.rgbName(0xb6, 0x4a, 0x6a, '2451 up'), + RgbInt8Color.rgbName(0xbd, 0x44, 0x74, '2451 cp'), + RgbInt8Color.rgbName(0xc0, 0x58, 0x95, '2385 xgc'), + RgbInt8Color.rgbName(0xc5, 0x57, 0x95, '239 xgc'), + RgbInt8Color.rgbName(0xe2, 0x77, 0xcd, '2375 c'), + RgbInt8Color.rgbName(0xe0, 0x6f, 0xc2, '2385 u'), + RgbInt8Color.rgbName(0xc2, 0x5e, 0x1c, '2429 c'), + RgbInt8Color.rgbName(0xc7, 0x44, 0x2a, '2349 cp'), + RgbInt8Color.rgbName(0xb5, 0x54, 0x35, '7592 xgc'), + RgbInt8Color.rgbName(0xb9, 0x4d, 0x36, 'p 49-6 c'), + RgbInt8Color.rgbName(0xb6, 0x52, 0x3d, '2436 c'), + RgbInt8Color.rgbName(0xbe, 0x4b, 0x3d, '2436 cp'), + RgbInt8Color.rgbName(0xbd, 0x46, 0x49, '8903 c'), + RgbInt8Color.rgbName(0xbb, 0x47, 0x4b, 'p 55-16 u'), + RgbInt8Color.rgbName(0xb7, 0x50, 0x4f, '8902 c'), + RgbInt8Color.rgbName(0xbd, 0x4a, 0x4d, 'p 52-16 u'), + RgbInt8Color.rgbName(0xbe, 0x48, 0x4f, 'p 57-16 u'), + RgbInt8Color.rgbName(0xb8, 0x4d, 0x51, 'p 60-13 c'), + RgbInt8Color.rgbName(0xb5, 0x52, 0x5d, '8905 c'), + RgbInt8Color.rgbName(0xb6, 0x53, 0x58, 'p 60-7 u'), + RgbInt8Color.rgbName(0xaf, 0x55, 0x5e, 'p 63-12 c'), + RgbInt8Color.rgbName(0xb9, 0x50, 0x5c, 'p 63-6 c'), + RgbInt8Color.rgbName(0xc1, 0x45, 0x6b, '2452 up'), + RgbInt8Color.rgbName(0xb8, 0x53, 0x6e, 'p 69-14 c'), + RgbInt8Color.rgbName(0xbf, 0x4a, 0x6b, 'p 69-5 c'), + RgbInt8Color.rgbName(0xbf, 0x4b, 0x74, 'p 75-16 u'), + RgbInt8Color.rgbName(0xc1, 0x61, 0x98, '2060 cp'), + RgbInt8Color.rgbName(0xc6, 0x5b, 0x98, '674 xgc'), + RgbInt8Color.rgbName(0xdd, 0x7f, 0xd3, '245 c'), + RgbInt8Color.rgbName(0xe0, 0x7f, 0xd0, '245 u'), + RgbInt8Color.rgbName(0xc1, 0x6c, 0x18, '7414 c'), + RgbInt8Color.rgbName(0xc0, 0x51, 0x31, '7580 c'), + RgbInt8Color.rgbName(0xb7, 0x5c, 0x2f, '7585 cp'), + RgbInt8Color.rgbName(0xbe, 0x52, 0x31, 'p 37-16 c'), + RgbInt8Color.rgbName(0xc2, 0x51, 0x35, 'p 40-15 c'), + RgbInt8Color.rgbName(0xb9, 0x55, 0x41, 'p 46-6 c'), + RgbInt8Color.rgbName(0xb3, 0x5d, 0x3e, 'p 49-13 c'), + RgbInt8Color.rgbName(0xad, 0x5f, 0x4b, 'p 35-7 u'), + RgbInt8Color.rgbName(0xb0, 0x5b, 0x4d, '10158 c'), + RgbInt8Color.rgbName(0xb6, 0x59, 0x4e, 'p 37-16 u'), + RgbInt8Color.rgbName(0xba, 0x53, 0x4c, 'p 40-16 u'), + RgbInt8Color.rgbName(0xbd, 0x51, 0x4f, 'p 45-16 u'), + RgbInt8Color.rgbName(0xb2, 0x5c, 0x51, 'p 46-6 u'), + RgbInt8Color.rgbName(0xb3, 0x5e, 0x50, 'p 49-5 u'), + RgbInt8Color.rgbName(0xbe, 0x4f, 0x50, 'p 55-15 u'), + RgbInt8Color.rgbName(0xb4, 0x58, 0x58, '1805 u'), + RgbInt8Color.rgbName(0xbd, 0x4f, 0x5c, '200 u'), + RgbInt8Color.rgbName(0xb4, 0x55, 0x60, 'p 63-6 u'), + RgbInt8Color.rgbName(0xb6, 0x5a, 0x65, '2342 c'), + RgbInt8Color.rgbName(0xb8, 0x52, 0x68, 'p 69-6 u'), + RgbInt8Color.rgbName(0xb8, 0x59, 0x70, '7426 up'), + RgbInt8Color.rgbName(0xbf, 0x51, 0x74, 'p 71-14 c'), + RgbInt8Color.rgbName(0xb5, 0x58, 0x74, 'p 72-6 c'), + RgbInt8Color.rgbName(0xb7, 0x5d, 0x84, 'p 80-13 u'), + RgbInt8Color.rgbName(0xc8, 0x6b, 0xa8, '2060 c'), + RgbInt8Color.rgbName(0xd4, 0x8b, 0xc8, '514 c'), + RgbInt8Color.rgbName(0xce, 0x89, 0xc3, '514 u'), + RgbInt8Color.rgbName(0xd4, 0x5d, 0x0, '717 c'), + RgbInt8Color.rgbName(0xb8, 0x61, 0x25, '471 c'), + RgbInt8Color.rgbName(0xbb, 0x5d, 0x29, '167 cp'), + RgbInt8Color.rgbName(0xba, 0x5f, 0x28, '471 xgc'), + RgbInt8Color.rgbName(0xc0, 0x5d, 0x26, '7584 cp'), + RgbInt8Color.rgbName(0xba, 0x5f, 0x3a, 'p 41-6 c'), + RgbInt8Color.rgbName(0xba, 0x5a, 0x4b, 'p 34-16 u'), + RgbInt8Color.rgbName(0xb9, 0x5f, 0x50, 'p 30-16 u'), + RgbInt8Color.rgbName(0xb5, 0x5a, 0x53, 'p 53-14 c'), + RgbInt8Color.rgbName(0xb6, 0x5c, 0x56, 'p 53-6 u'), + RgbInt8Color.rgbName(0xba, 0x5d, 0x5a, '7621 u'), + RgbInt8Color.rgbName(0xb1, 0x62, 0x5f, '7627 up'), + RgbInt8Color.rgbName(0xb0, 0x63, 0x5f, '7628 up'), + RgbInt8Color.rgbName(0xb7, 0x58, 0x58, 'p 58-5 u'), + RgbInt8Color.rgbName(0xbc, 0x5a, 0x63, '193 up'), + RgbInt8Color.rgbName(0xbc, 0x5b, 0x66, '2342 cp'), + RgbInt8Color.rgbName(0xb4, 0x62, 0x66, 'p 63-11 c'), + RgbInt8Color.rgbName(0xb8, 0x5e, 0x6e, '2342 xgc'), + RgbInt8Color.rgbName(0xbb, 0x5a, 0x73, '7425 u'), + RgbInt8Color.rgbName(0xbb, 0x5b, 0x73, '7425 up'), + RgbInt8Color.rgbName(0xbb, 0x59, 0x6d, 'p 69-5 u'), + RgbInt8Color.rgbName(0xb1, 0x61, 0x73, 'p 72-6 u'), + RgbInt8Color.rgbName(0xb4, 0x5e, 0x7b, '2451 u'), + RgbInt8Color.rgbName(0xbc, 0x5d, 0x87, '227 up'), + RgbInt8Color.rgbName(0xbc, 0x5c, 0x84, '7432 cp'), + RgbInt8Color.rgbName(0xb9, 0x60, 0x80, 'p 76-6 u'), + RgbInt8Color.rgbName(0xbd, 0x61, 0x8e, '675 u'), + RgbInt8Color.rgbName(0xbe, 0x5d, 0x88, 'p 76-6 c'), + RgbInt8Color.rgbName(0xb3, 0x6a, 0x8a, 'p 81-3 u'), + RgbInt8Color.rgbName(0xb6, 0x6a, 0x97, '2353 up'), + RgbInt8Color.rgbName(0xb7, 0x68, 0x95, '247 up'), + RgbInt8Color.rgbName(0xb4, 0x75, 0xa4, 'p 83-13 c'), + RgbInt8Color.rgbName(0xcd, 0x90, 0xde, '2572 u'), + RgbInt8Color.rgbName(0xba, 0x6a, 0x23, '7414 cp'), + RgbInt8Color.rgbName(0xbd, 0x64, 0x39, '1525 u'), + RgbInt8Color.rgbName(0xba, 0x6a, 0x2f, '471 cp'), + RgbInt8Color.rgbName(0xb4, 0x65, 0x47, '167 u'), + RgbInt8Color.rgbName(0xb2, 0x69, 0x43, '7566 xgc'), + RgbInt8Color.rgbName(0xc0, 0x62, 0x3d, '7584 xgc'), + RgbInt8Color.rgbName(0xba, 0x6a, 0x3b, 'p 31-7 c'), + RgbInt8Color.rgbName(0xb4, 0x6a, 0x44, 'p 35-14 c'), + RgbInt8Color.rgbName(0xb7, 0x65, 0x48, '7585 xgc'), + RgbInt8Color.rgbName(0xb0, 0x72, 0x49, 'p 21-8 u'), + RgbInt8Color.rgbName(0xb9, 0x65, 0x4a, 'p 27-16 u'), + RgbInt8Color.rgbName(0xb4, 0x6a, 0x51, 'p 35-6 u'), + RgbInt8Color.rgbName(0xb0, 0x6b, 0x55, 'p 38-6 u'), + RgbInt8Color.rgbName(0xb2, 0x65, 0x55, 'p 41-6 u'), + RgbInt8Color.rgbName(0xaf, 0x69, 0x5b, '10157 c'), + RgbInt8Color.rgbName(0xb1, 0x67, 0x5d, '180 up'), + RgbInt8Color.rgbName(0xb1, 0x68, 0x5d, '2436 u'), + RgbInt8Color.rgbName(0xb4, 0x6a, 0x55, '7522 c'), + RgbInt8Color.rgbName(0xb5, 0x6c, 0x5a, '7522 xgc'), + RgbInt8Color.rgbName(0xaf, 0x71, 0x5d, 'p 41-10 u'), + RgbInt8Color.rgbName(0xb5, 0x63, 0x60, 'p 60-12 u'), + RgbInt8Color.rgbName(0xb1, 0x6c, 0x61, 'p 56-5 u'), + RgbInt8Color.rgbName(0xb6, 0x6c, 0x6d, '2341 c'), + RgbInt8Color.rgbName(0xb3, 0x6a, 0x6c, 'p 63-10 u'), + RgbInt8Color.rgbName(0xb9, 0x65, 0x6f, 'p 65-13 c'), + RgbInt8Color.rgbName(0xb4, 0x6b, 0x7a, '695 c'), + RgbInt8Color.rgbName(0xb6, 0x71, 0x78, 'p 64-4 c'), + RgbInt8Color.rgbName(0xbb, 0x6a, 0x78, 'p 69-13 u'), + RgbInt8Color.rgbName(0xb4, 0x69, 0x79, 'p 70-4 c'), + RgbInt8Color.rgbName(0xb4, 0x6c, 0x7f, 'p 74-5 u'), + RgbInt8Color.rgbName(0xb3, 0x6b, 0x88, '10167 c'), + RgbInt8Color.rgbName(0xb7, 0x67, 0x89, '7647 up'), + RgbInt8Color.rgbName(0xb8, 0x68, 0x85, 'p 74-5 c'), + RgbInt8Color.rgbName(0xbf, 0x69, 0x97, '240 up'), + RgbInt8Color.rgbName(0xbd, 0x69, 0x95, '246 up'), + RgbInt8Color.rgbName(0xb9, 0x69, 0x93, 'p 81-3 c'), + RgbInt8Color.rgbName(0xb9, 0x73, 0xa0, '681 cp'), + RgbInt8Color.rgbName(0xbd, 0x7a, 0xb3, '2351 c'), + RgbInt8Color.rgbName(0xb6, 0x7b, 0xb0, '252 xgc'), + RgbInt8Color.rgbName(0xb2, 0x7f, 0xad, 'p 88-5 c'), + RgbInt8Color.rgbName(0xbd, 0x82, 0xb3, '2351 u'), + RgbInt8Color.rgbName(0xc0, 0x72, 0x20, '153 xgc'), + RgbInt8Color.rgbName(0xba, 0x71, 0x34, 'p 28-7 c'), + RgbInt8Color.rgbName(0xbb, 0x6f, 0x46, '2429 up'), + RgbInt8Color.rgbName(0xb8, 0x6d, 0x49, 'p 38-6 c'), + RgbInt8Color.rgbName(0xb6, 0x70, 0x4c, 'p 41-10 c'), + RgbInt8Color.rgbName(0xb2, 0x70, 0x55, '167 up'), + RgbInt8Color.rgbName(0xaf, 0x7b, 0x52, 'p 32-5 c'), + RgbInt8Color.rgbName(0xaf, 0x75, 0x58, 'p 42-4 c'), + RgbInt8Color.rgbName(0xb8, 0x70, 0x5b, '7522 cp'), + RgbInt8Color.rgbName(0xb3, 0x6f, 0x5d, 'p 49-12 u'), + RgbInt8Color.rgbName(0xb4, 0x72, 0x60, '7592 u'), + RgbInt8Color.rgbName(0xb5, 0x72, 0x5f, 'p 46-13 u'), + RgbInt8Color.rgbName(0xb9, 0x72, 0x64, 'p 53-13 u'), + RgbInt8Color.rgbName(0xb5, 0x71, 0x65, 'p 54-4 c'), + RgbInt8Color.rgbName(0xb9, 0x6c, 0x61, 'p 56-5 c'), + RgbInt8Color.rgbName(0xb7, 0x6b, 0x66, 'p 61-4 c'), + RgbInt8Color.rgbName(0xbb, 0x6c, 0x6b, '2341 cp'), + RgbInt8Color.rgbName(0xba, 0x6c, 0x6e, '703 up'), + RgbInt8Color.rgbName(0xb6, 0x73, 0x6d, 'p 61-3 u'), + RgbInt8Color.rgbName(0xb9, 0x6f, 0x70, 'p 63-10 c'), + RgbInt8Color.rgbName(0xb7, 0x71, 0x7f, '695 xgc'), + RgbInt8Color.rgbName(0xb5, 0x73, 0x79, 'p 66-5 c'), + RgbInt8Color.rgbName(0xb7, 0x71, 0x7c, 'p 70-3 u'), + RgbInt8Color.rgbName(0xbb, 0x6f, 0x82, '10161 c'), + RgbInt8Color.rgbName(0xb7, 0x77, 0x83, '695 cp'), + RgbInt8Color.rgbName(0xb9, 0x6f, 0x89, '7433 u'), + RgbInt8Color.rgbName(0xbc, 0x72, 0x82, 'p 72-5 u'), + RgbInt8Color.rgbName(0xb6, 0x75, 0x87, '7433 up'), + RgbInt8Color.rgbName(0xb2, 0x74, 0x91, 'p 77-5 c'), + RgbInt8Color.rgbName(0xb2, 0x7b, 0x93, '10166 c'), + RgbInt8Color.rgbName(0xba, 0x6e, 0x9b, '2405 up'), + RgbInt8Color.rgbName(0xb9, 0x75, 0x93, 'p 81-2 u'), + RgbInt8Color.rgbName(0xbe, 0x73, 0xa8, 'p 83-5 c'), + RgbInt8Color.rgbName(0xb3, 0x7d, 0xa4, 'p 84-3 c'), + RgbInt8Color.rgbName(0xbc, 0x83, 0xb4, '2351 xgc'), + RgbInt8Color.rgbName(0xb6, 0x88, 0xb7, '2572 cp'), + RgbInt8Color.rgbName(0xc8, 0x94, 0x3, '10123 c'), + RgbInt8Color.rgbName(0xc1, 0x77, 0x23, '153 cp'), + RgbInt8Color.rgbName(0xc4, 0x75, 0x27, '7414 xgc'), + RgbInt8Color.rgbName(0xbd, 0x7d, 0x2e, 'p 21-7 c'), + RgbInt8Color.rgbName(0xb0, 0x7c, 0x4c, '10132 c'), + RgbInt8Color.rgbName(0xb8, 0x7a, 0x40, '7572 xgc'), + RgbInt8Color.rgbName(0xb7, 0x79, 0x4a, 'p 21-7 u'), + RgbInt8Color.rgbName(0xb6, 0x80, 0x48, 'p 25-13 c'), + RgbInt8Color.rgbName(0xb2, 0x78, 0x52, 'p 25-6 u'), + RgbInt8Color.rgbName(0xb7, 0x77, 0x4c, 'p 31-12 c'), + RgbInt8Color.rgbName(0xb4, 0x79, 0x55, '153 up'), + RgbInt8Color.rgbName(0xaf, 0x7f, 0x55, '7573 up'), + RgbInt8Color.rgbName(0xb7, 0x79, 0x54, 'p 28-5 u'), + RgbInt8Color.rgbName(0xb3, 0x79, 0x57, 'p 38-13 c'), + RgbInt8Color.rgbName(0xb0, 0x7b, 0x5a, 'p 39-4 c'), + RgbInt8Color.rgbName(0xbb, 0x78, 0x52, 'p 41-9 c'), + RgbInt8Color.rgbName(0xae, 0x7b, 0x5e, '7566 u'), + RgbInt8Color.rgbName(0xb6, 0x7b, 0x57, '7566 up'), + RgbInt8Color.rgbName(0xb1, 0x7f, 0x5b, '7572 u'), + RgbInt8Color.rgbName(0xb3, 0x7e, 0x5d, 'p 28-13 u'), + RgbInt8Color.rgbName(0xb4, 0x79, 0x5a, 'p 35-13 u'), + RgbInt8Color.rgbName(0xb8, 0x77, 0x5e, 'p 38-5 u'), + RgbInt8Color.rgbName(0xb7, 0x7a, 0x5c, 'p 50-4 c'), + RgbInt8Color.rgbName(0xb6, 0x79, 0x65, '7585 u'), + RgbInt8Color.rgbName(0xb5, 0x77, 0x62, 'p 41-9 u'), + RgbInt8Color.rgbName(0xae, 0x7e, 0x67, 'p 42-3 u'), + RgbInt8Color.rgbName(0xb1, 0x7e, 0x6e, '7522 up'), + RgbInt8Color.rgbName(0xb4, 0x7b, 0x6c, 'p 54-12 c'), + RgbInt8Color.rgbName(0xb1, 0x7c, 0x71, 'p 56-12 c'), + RgbInt8Color.rgbName(0xb4, 0x7c, 0x73, 'p 61-12 u'), + RgbInt8Color.rgbName(0xb8, 0x79, 0x79, '2341 xgc'), + RgbInt8Color.rgbName(0xba, 0x75, 0x75, 'p 63-9 u'), + RgbInt8Color.rgbName(0xb0, 0x7f, 0x7c, 'p 64-12 u'), + RgbInt8Color.rgbName(0xb5, 0x7a, 0x79, 'p 64-4 u'), + RgbInt8Color.rgbName(0xb8, 0x7f, 0x80, 'p 66-4 u'), + RgbInt8Color.rgbName(0xbb, 0x77, 0x85, 'p 70-3 c'), + RgbInt8Color.rgbName(0xb5, 0x7e, 0x89, 'p 70-9 c'), + RgbInt8Color.rgbName(0xb4, 0x83, 0x8f, 'p 74-10 u'), + RgbInt8Color.rgbName(0xbd, 0x7a, 0x8c, 'p 74-4 u'), + RgbInt8Color.rgbName(0xbb, 0x77, 0x91, 'p 76-13 u'), + RgbInt8Color.rgbName(0xb2, 0x7f, 0x92, 'p 77-12 u'), + RgbInt8Color.rgbName(0xb3, 0x80, 0x9d, '2053 c'), + RgbInt8Color.rgbName(0xb7, 0x77, 0x9a, '2059 cp'), + RgbInt8Color.rgbName(0xb4, 0x7d, 0x97, 'p 81-10 u'), + RgbInt8Color.rgbName(0xb4, 0x7f, 0x9c, 'p 82-1 c'), + RgbInt8Color.rgbName(0xb8, 0x7b, 0xa1, '2059 c'), + RgbInt8Color.rgbName(0xb9, 0x7c, 0x9e, 'p 81-10 c'), + RgbInt8Color.rgbName(0xba, 0x79, 0xa2, 'p 83-5 u'), + RgbInt8Color.rgbName(0xb2, 0x85, 0xa6, '2058 u'), + RgbInt8Color.rgbName(0xb6, 0x84, 0xac, '2067 up'), + RgbInt8Color.rgbName(0xb1, 0x88, 0xb0, 'p 88-12 c'), + RgbInt8Color.rgbName(0xb8, 0x96, 0xc3, '2453 c'), + RgbInt8Color.rgbName(0xb4, 0x92, 0xc0, '2453 u'), + RgbInt8Color.rgbName(0xbd, 0x96, 0xc5, '2572 xgc'), + RgbInt8Color.rgbName(0xb8, 0x94, 0xc2, '2573 xgc'), + RgbInt8Color.rgbName(0xc0, 0x9f, 0xdb, '2567 u'), + RgbInt8Color.rgbName(0xc6, 0x92, 0x14, '1245 c'), + RgbInt8Color.rgbName(0xc1, 0x87, 0x22, '3547 c'), + RgbInt8Color.rgbName(0xc3, 0x87, 0x26, '3547 cp'), + RgbInt8Color.rgbName(0xc8, 0x81, 0x27, '7571 cp'), + RgbInt8Color.rgbName(0xbb, 0x82, 0x3f, '2014 u'), + RgbInt8Color.rgbName(0xbc, 0x81, 0x37, '7511 xgc'), + RgbInt8Color.rgbName(0xb9, 0x83, 0x46, 'p 21-13 c'), + RgbInt8Color.rgbName(0xb4, 0x88, 0x4a, 'p 15-7 u'), + RgbInt8Color.rgbName(0xb8, 0x86, 0x4c, 'p 18-7 u'), + RgbInt8Color.rgbName(0xc0, 0x84, 0x45, 'p 25-6 c'), + RgbInt8Color.rgbName(0xb7, 0x7e, 0x4e, 'p 28-14 c'), + RgbInt8Color.rgbName(0xb0, 0x85, 0x5c, '10131 c'), + RgbInt8Color.rgbName(0xb4, 0x87, 0x5e, '2317 c'), + RgbInt8Color.rgbName(0xaf, 0x86, 0x61, '4645 cp'), + RgbInt8Color.rgbName(0xb9, 0x82, 0x5f, '723 u'), + RgbInt8Color.rgbName(0xb2, 0x83, 0x5e, 'p 25-12 u'), + RgbInt8Color.rgbName(0xb4, 0x83, 0x62, 'p 50-12 c'), + RgbInt8Color.rgbName(0xb1, 0x89, 0x62, '2317 xgc'), + RgbInt8Color.rgbName(0xb1, 0x89, 0x68, 'p 29-4 u'), + RgbInt8Color.rgbName(0xb6, 0x81, 0x61, 'p 31-10 u'), + RgbInt8Color.rgbName(0xb2, 0x88, 0x64, 'p 32-11 c'), + RgbInt8Color.rgbName(0xb1, 0x85, 0x68, 'p 32-4 u'), + RgbInt8Color.rgbName(0xaf, 0x89, 0x6b, 'p 36-9 u'), + RgbInt8Color.rgbName(0xb2, 0x84, 0x6c, 'p 39-3 u'), + RgbInt8Color.rgbName(0xb1, 0x84, 0x67, 'p 42-12 c'), + RgbInt8Color.rgbName(0xb8, 0x83, 0x65, 'p 42-3 c'), + RgbInt8Color.rgbName(0xb0, 0x87, 0x70, '876 u'), + RgbInt8Color.rgbName(0xb6, 0x83, 0x6e, 'p 47-3 u'), + RgbInt8Color.rgbName(0xb5, 0x83, 0x6f, 'p 50-3 u'), + RgbInt8Color.rgbName(0xaf, 0x86, 0x7c, '10155 c'), + RgbInt8Color.rgbName(0xb1, 0x8b, 0x74, '875 u'), + RgbInt8Color.rgbName(0xb5, 0x8a, 0x78, 'p 50-11 u'), + RgbInt8Color.rgbName(0xb6, 0x85, 0x74, 'p 54-11 u'), + RgbInt8Color.rgbName(0xb3, 0x8d, 0x80, 'p 43-4 u'), + RgbInt8Color.rgbName(0xb6, 0x82, 0x85, 'p 66-12 c'), + RgbInt8Color.rgbName(0xb9, 0x7e, 0x90, '10160 c'), + RgbInt8Color.rgbName(0xae, 0x91, 0x88, '4725 u'), + RgbInt8Color.rgbName(0xb2, 0x8a, 0x90, '5005 u'), + RgbInt8Color.rgbName(0xb3, 0x86, 0x98, '7646 up'), + RgbInt8Color.rgbName(0xb2, 0x8e, 0x91, 'p 67-4 c'), + RgbInt8Color.rgbName(0xbd, 0x84, 0x90, 'p 72-12 u'), + RgbInt8Color.rgbName(0xbd, 0x81, 0x92, 'p 72-12 c'), + RgbInt8Color.rgbName(0xb6, 0x89, 0x98, 'p 74-10 c'), + RgbInt8Color.rgbName(0xb4, 0x84, 0x9b, 'p 77-12 c'), + RgbInt8Color.rgbName(0xb7, 0x86, 0xa1, '2053 up'), + RgbInt8Color.rgbName(0xb4, 0x88, 0xa1, '2053 xgc'), + RgbInt8Color.rgbName(0xb7, 0x83, 0xa7, '2058 cp'), + RgbInt8Color.rgbName(0xb9, 0x85, 0xa3, '2059 u'), + RgbInt8Color.rgbName(0xb9, 0x81, 0x9f, '2059 up'), + RgbInt8Color.rgbName(0xb3, 0x88, 0xa1, 'p 82-12 c'), + RgbInt8Color.rgbName(0xbb, 0x85, 0xab, '2058 c'), + RgbInt8Color.rgbName(0xb4, 0x88, 0xa9, 'p 84-11 c'), + RgbInt8Color.rgbName(0xb3, 0x90, 0xb2, 'p 89-3 c'), + RgbInt8Color.rgbName(0xb9, 0x8d, 0xbc, '7439 cp'), + RgbInt8Color.rgbName(0xc1, 0xa0, 0xda, '2567 c'), + RgbInt8Color.rgbName(0xc2, 0x9b, 0xcb, '257 u'), + RgbInt8Color.rgbName(0xc3, 0xa2, 0x9, 'p 8-8 c'), + RgbInt8Color.rgbName(0xc0, 0x8f, 0x23, '1245 cp'), + RgbInt8Color.rgbName(0xc0, 0x94, 0x20, 'p 11-7 c'), + RgbInt8Color.rgbName(0xbb, 0x8b, 0x41, '1245 u'), + RgbInt8Color.rgbName(0xc1, 0x8f, 0x46, '3547 up'), + RgbInt8Color.rgbName(0xba, 0x93, 0x49, 'p 15-14 c'), + RgbInt8Color.rgbName(0xb3, 0x8d, 0x56, 'p 18-13 u'), + RgbInt8Color.rgbName(0xb6, 0x92, 0x56, '1245 up'), + RgbInt8Color.rgbName(0xbf, 0x8e, 0x51, '3547 u'), + RgbInt8Color.rgbName(0xb9, 0x93, 0x52, 'p 11-6 u'), + RgbInt8Color.rgbName(0xb1, 0x8f, 0x5e, 'p 19-4 u'), + RgbInt8Color.rgbName(0xb7, 0x94, 0x5b, 'p 15-13 u'), + RgbInt8Color.rgbName(0xbc, 0x8b, 0x5a, 'p 21-12 u'), + RgbInt8Color.rgbName(0xba, 0x8f, 0x5b, 'p 22-5 c'), + RgbInt8Color.rgbName(0xbd, 0x8d, 0x59, 'p 25-12 c'), + RgbInt8Color.rgbName(0xb8, 0x8a, 0x64, 'p 32-4 c'), + RgbInt8Color.rgbName(0xb4, 0x8a, 0x69, 'p 36-10 c'), + RgbInt8Color.rgbName(0xb4, 0x8a, 0x6a, 'p 39-12 c'), + RgbInt8Color.rgbName(0xb2, 0x90, 0x70, '10130 c'), + RgbInt8Color.rgbName(0xae, 0x8f, 0x72, '10137 c'), + RgbInt8Color.rgbName(0xb7, 0x8e, 0x6c, '10142 c'), + RgbInt8Color.rgbName(0xb1, 0x8e, 0x6f, 'p 29-10 u'), + RgbInt8Color.rgbName(0xb2, 0x8e, 0x7b, '4655 u'), + RgbInt8Color.rgbName(0xb2, 0x91, 0x77, '4655 up'), + RgbInt8Color.rgbName(0xb4, 0x90, 0x7c, 'p 43-4 c'), + RgbInt8Color.rgbName(0xb6, 0x8a, 0x76, 'p 47-11 u'), + RgbInt8Color.rgbName(0xb1, 0x93, 0x82, 'p 33-5 c'), + RgbInt8Color.rgbName(0xb1, 0x93, 0x88, 'p 51-5 u'), + RgbInt8Color.rgbName(0xae, 0x9b, 0x89, '10136 c'), + RgbInt8Color.rgbName(0xae, 0x96, 0x90, '10154 c'), + RgbInt8Color.rgbName(0xb4, 0x92, 0x89, '2440 c'), + RgbInt8Color.rgbName(0xb4, 0x92, 0x8b, '2440 u'), + RgbInt8Color.rgbName(0xb5, 0x91, 0x92, '5005 up'), + RgbInt8Color.rgbName(0xaa, 0x9a, 0x93, 'p 171-4 c'), + RgbInt8Color.rgbName(0xb4, 0x95, 0x8d, 'p 51-5 c'), + RgbInt8Color.rgbName(0xbb, 0x8b, 0x8d, 'p 66-11 u'), + RgbInt8Color.rgbName(0xb5, 0x8f, 0x8f, 'p 67-3 u'), + RgbInt8Color.rgbName(0xad, 0x9c, 0x98, 'p 171-3 u'), + RgbInt8Color.rgbName(0xb4, 0x90, 0x98, 'p 78-4 c'), + RgbInt8Color.rgbName(0xb8, 0x8c, 0xa4, '2053 u'), + RgbInt8Color.rgbName(0xb1, 0x99, 0xa1, 'p 86-5 c'), + RgbInt8Color.rgbName(0xb3, 0x98, 0xa9, '5215 cp'), + RgbInt8Color.rgbName(0xbd, 0x8c, 0xa6, '687 u'), + RgbInt8Color.rgbName(0xba, 0x8d, 0xb0, 'p 84-2 c'), + RgbInt8Color.rgbName(0xb4, 0x92, 0xb2, 'p 88-11 u'), + RgbInt8Color.rgbName(0xb4, 0x99, 0xbe, '2072 up'), + RgbInt8Color.rgbName(0xb6, 0x93, 0xba, '2573 up'), + RgbInt8Color.rgbName(0xb5, 0x94, 0xba, '528 up'), + RgbInt8Color.rgbName(0xb2, 0xa6, 0xca, '2092 cp'), + RgbInt8Color.rgbName(0xc1, 0xa7, 0xe2, '264 c'), + RgbInt8Color.rgbName(0xb3, 0xa5, 0xc9, '2645 up'), + RgbInt8Color.rgbName(0xbf, 0x97, 0x24, '10122 c'), + RgbInt8Color.rgbName(0xc1, 0xa0, 0x1e, '7753 c'), + RgbInt8Color.rgbName(0xc3, 0x96, 0x38, 'p 15-7 c'), + RgbInt8Color.rgbName(0xb1, 0x9a, 0x55, 'p 9-13 c'), + RgbInt8Color.rgbName(0xbe, 0x99, 0x53, '117 up'), + RgbInt8Color.rgbName(0xb9, 0x97, 0x5b, '465 c'), + RgbInt8Color.rgbName(0xbb, 0x99, 0x59, '465 cp'), + RgbInt8Color.rgbName(0xbc, 0x99, 0x5d, '7556 u'), + RgbInt8Color.rgbName(0xb8, 0x9a, 0x5f, 'p 16-5 c'), + RgbInt8Color.rgbName(0xbf, 0x98, 0x59, 'p 18-13 c'), + RgbInt8Color.rgbName(0xb7, 0x92, 0x65, '2317 cp'), + RgbInt8Color.rgbName(0xbc, 0x92, 0x64, '2467 cp'), + RgbInt8Color.rgbName(0xb4, 0x9c, 0x67, 'p 12-4 u'), + RgbInt8Color.rgbName(0xb2, 0x99, 0x6b, 'p 16-12 u'), + RgbInt8Color.rgbName(0xb6, 0x99, 0x66, 'p 16-4 u'), + RgbInt8Color.rgbName(0xb9, 0x99, 0x69, 'p 19-3 u'), + RgbInt8Color.rgbName(0xb9, 0x95, 0x67, 'p 22-12 c'), + RgbInt8Color.rgbName(0xbc, 0x96, 0x69, 'p 22-4 u'), + RgbInt8Color.rgbName(0xb8, 0x92, 0x64, 'p 26-4 c'), + RgbInt8Color.rgbName(0xb7, 0x91, 0x6c, '2467 c'), + RgbInt8Color.rgbName(0xb8, 0x98, 0x71, 'p 26-11 c'), + RgbInt8Color.rgbName(0xb7, 0x95, 0x71, 'p 26-3 u'), + RgbInt8Color.rgbName(0xb8, 0x93, 0x70, 'p 32-10 c'), + RgbInt8Color.rgbName(0xb1, 0x98, 0x7d, '2312 xgc'), + RgbInt8Color.rgbName(0xb3, 0x97, 0x7c, 'p 23-6 c'), + RgbInt8Color.rgbName(0xb4, 0x9a, 0x7a, 'p 23-6 u'), + RgbInt8Color.rgbName(0xb8, 0x99, 0x77, 'p 26-10 u'), + RgbInt8Color.rgbName(0xb7, 0x9a, 0x81, '2312 c'), + RgbInt8Color.rgbName(0xae, 0x9b, 0x88, '2471 up'), + RgbInt8Color.rgbName(0xb4, 0x9d, 0x8c, 'p 44-2 c'), + RgbInt8Color.rgbName(0xb0, 0xa0, 0x98, '2474 c'), + RgbInt8Color.rgbName(0xb9, 0x95, 0x94, 'p 78-3 u'), + RgbInt8Color.rgbName(0xb8, 0x9a, 0x97, 'p 79-2 u'), + RgbInt8Color.rgbName(0xb6, 0x97, 0x9c, 'p 79-3 c'), + RgbInt8Color.rgbName(0xac, 0xa3, 0x9a, 'warm gray 5 c'), + RgbInt8Color.rgbName(0xac, 0xa5, 0x9c, 'warm gray 5 cp'), + RgbInt8Color.rgbName(0xb8, 0x9a, 0xad, '5155 up'), + RgbInt8Color.rgbName(0xb9, 0x95, 0xa6, 'p 82-11 u'), + RgbInt8Color.rgbName(0xb6, 0x95, 0xae, 'p 84-10 u'), + RgbInt8Color.rgbName(0xb3, 0x9c, 0xae, 'p 85-10 u'), + RgbInt8Color.rgbName(0xb3, 0x96, 0xae, 'p 85-3 c'), + RgbInt8Color.rgbName(0xaf, 0x9d, 0xaf, 'p 90-10 u'), + RgbInt8Color.rgbName(0xb7, 0x97, 0xbb, '2453 up'), + RgbInt8Color.rgbName(0xb7, 0x96, 0xba, '7440 u'), + RgbInt8Color.rgbName(0xbb, 0x98, 0xb8, '7440 up'), + RgbInt8Color.rgbName(0xb5, 0x9d, 0xbb, '2078 c'), + RgbInt8Color.rgbName(0xb4, 0x9b, 0xc0, '2078 cp'), + RgbInt8Color.rgbName(0xb6, 0x9b, 0xc4, '2567 cp'), + RgbInt8Color.rgbName(0xba, 0x95, 0xbc, '257 up'), + RgbInt8Color.rgbName(0xbc, 0x99, 0xbe, '2572 up'), + RgbInt8Color.rgbName(0xbd, 0x98, 0xbe, 'p 88-4 c'), + RgbInt8Color.rgbName(0xb8, 0x98, 0xbc, 'p 91-3 u'), + RgbInt8Color.rgbName(0xb3, 0x9e, 0xc2, 'p 93-3 u'), + RgbInt8Color.rgbName(0xba, 0x9c, 0xc5, '522 c'), + RgbInt8Color.rgbName(0xc0, 0xae, 0xe7, '942 c'), + RgbInt8Color.rgbName(0xc7, 0xb2, 0xde, '2071 c'), + RgbInt8Color.rgbName(0xc2, 0xb3, 0xd7, '2071 xgc'), + RgbInt8Color.rgbName(0xbb, 0xb1, 0xd7, '2092 xgc'), + RgbInt8Color.rgbName(0xc5, 0xb4, 0xe3, '2635 c'), + RgbInt8Color.rgbName(0xbf, 0xaf, 0xd6, '2635 xgc'), + RgbInt8Color.rgbName(0xc0, 0xb0, 0xd5, '264 xgc'), + RgbInt8Color.rgbName(0xb5, 0xb3, 0xd3, 'p 99-3 c'), + RgbInt8Color.rgbName(0xc4, 0xa2, 0x29, '7753 cp'), + RgbInt8Color.rgbName(0xc6, 0x9c, 0x3d, 'p 11-6 c'), + RgbInt8Color.rgbName(0xbf, 0xaa, 0x3e, 'p 5-14 c'), + RgbInt8Color.rgbName(0xbe, 0x9f, 0x4f, 'p 12-5 c'), + RgbInt8Color.rgbName(0xc2, 0xa1, 0x50, 'p 11-13 c'), + RgbInt8Color.rgbName(0xbf, 0xa1, 0x55, 'p 8-7 u'), + RgbInt8Color.rgbName(0xbb, 0xa2, 0x5f, 'p 8-14 u'), + RgbInt8Color.rgbName(0xb3, 0xa3, 0x69, '4515 c'), + RgbInt8Color.rgbName(0xbd, 0xa3, 0x63, 'p 12-12 c'), + RgbInt8Color.rgbName(0xb6, 0xa6, 0x69, 'p 6-4 u'), + RgbInt8Color.rgbName(0xb8, 0xa8, 0x6d, '4515 xgc'), + RgbInt8Color.rgbName(0xbb, 0x9d, 0x6f, 'p 19-12 c'), + RgbInt8Color.rgbName(0xbb, 0x9b, 0x6f, 'p 22-11 u'), + RgbInt8Color.rgbName(0xb2, 0xa3, 0x84, '2324 c'), + RgbInt8Color.rgbName(0xb1, 0xa5, 0x7e, '4515 u'), + RgbInt8Color.rgbName(0xbd, 0xa0, 0x78, '7562 u'), + RgbInt8Color.rgbName(0xb4, 0xa2, 0x81, 'p 13-5 u'), + RgbInt8Color.rgbName(0xb3, 0x9e, 0x7b, 'p 13-6 c'), + RgbInt8Color.rgbName(0xb7, 0xa0, 0x88, '2312 up'), + RgbInt8Color.rgbName(0xba, 0xa1, 0x8d, '2312 u'), + RgbInt8Color.rgbName(0xb2, 0xa4, 0x94, 'p 170-2 u'), + RgbInt8Color.rgbName(0xb7, 0x9e, 0x94, 'p 44-1 u'), + RgbInt8Color.rgbName(0xae, 0xa8, 0xa5, '2331 c'), + RgbInt8Color.rgbName(0xb1, 0xa6, 0x9d, '407 up'), + RgbInt8Color.rgbName(0xb1, 0xa7, 0xa0, '407 xgc'), + RgbInt8Color.rgbName(0xaf, 0xa8, 0x9d, '7536 u'), + RgbInt8Color.rgbName(0xb2, 0xa5, 0x9f, 'p 171-3 c'), + RgbInt8Color.rgbName(0xb0, 0xa8, 0xae, '2358 cp'), + RgbInt8Color.rgbName(0xb5, 0x9f, 0xa7, 'p 86-4 u'), + RgbInt8Color.rgbName(0xb9, 0x9e, 0xb2, '5155 u'), + RgbInt8Color.rgbName(0xb7, 0xa2, 0xb6, 'p 85-10 c'), + RgbInt8Color.rgbName(0xb8, 0xa9, 0xb4, 'p 87-2 c'), + RgbInt8Color.rgbName(0xb8, 0x9f, 0xba, 'p 89-10 c'), + RgbInt8Color.rgbName(0xb9, 0x9f, 0xb8, 'p 89-2 u'), + RgbInt8Color.rgbName(0xb7, 0xa0, 0xbd, 'p 91-11 u'), + RgbInt8Color.rgbName(0xb0, 0xa3, 0xb9, 'p 95-2 u'), + RgbInt8Color.rgbName(0xb8, 0xa0, 0xc5, '522 xgc'), + RgbInt8Color.rgbName(0xbd, 0x9e, 0xbe, 'p 88-11 c'), + RgbInt8Color.rgbName(0xb8, 0xa7, 0xbc, 'p 90-10 c'), + RgbInt8Color.rgbName(0xb7, 0xa0, 0xc5, 'p 93-3 c'), + RgbInt8Color.rgbName(0xb6, 0xa8, 0xc1, 'p 95-2 c'), + RgbInt8Color.rgbName(0xb8, 0xa2, 0xc7, '264 up'), + RgbInt8Color.rgbName(0xbe, 0xa0, 0xc7, '522 cp'), + RgbInt8Color.rgbName(0xbc, 0x9f, 0xc6, '522 u'), + RgbInt8Color.rgbName(0xbb, 0x9e, 0xc4, 'p 91-3 c'), + RgbInt8Color.rgbName(0xb7, 0xa7, 0xc8, 'p 96-2 u'), + RgbInt8Color.rgbName(0xb5, 0xa9, 0xcc, '2099 xgc'), + RgbInt8Color.rgbName(0xbb, 0xa5, 0xcc, '264 cp'), + RgbInt8Color.rgbName(0xb5, 0xb7, 0xd7, '270 cp'), + RgbInt8Color.rgbName(0xb6, 0xb9, 0xdb, '7444 xgc'), + RgbInt8Color.rgbName(0xc6, 0xb5, 0xed, '942 u'), + RgbInt8Color.rgbName(0xc6, 0xa7, 0x25, '7753 xgc'), + RgbInt8Color.rgbName(0xc2, 0xb3, 0x2d, 'p 2-15 c'), + RgbInt8Color.rgbName(0xb8, 0xad, 0x53, 'p 3-6 c'), + RgbInt8Color.rgbName(0xc0, 0xad, 0x51, '103 up'), + RgbInt8Color.rgbName(0xba, 0xb1, 0x54, '3975 up'), + RgbInt8Color.rgbName(0xbc, 0xaa, 0x64, 'p 5-12 u'), + RgbInt8Color.rgbName(0xb9, 0xab, 0x65, 'p 6-12 c'), + RgbInt8Color.rgbName(0xbd, 0xa9, 0x6b, 'p 9-12 c'), + RgbInt8Color.rgbName(0xbf, 0xaa, 0x70, 'p 9-4 u'), + RgbInt8Color.rgbName(0xba, 0xab, 0x7d, '4515 up'), + RgbInt8Color.rgbName(0xbf, 0xa8, 0x77, 'p 12-3 u'), + RgbInt8Color.rgbName(0xb6, 0xa8, 0x88, '2324 xgc'), + RgbInt8Color.rgbName(0xb3, 0xaf, 0x85, '452 xgc'), + RgbInt8Color.rgbName(0xbc, 0xa9, 0x86, 'p 13-5 c'), + RgbInt8Color.rgbName(0xb5, 0xa9, 0x95, '7529 xgc'), + RgbInt8Color.rgbName(0xb7, 0xa9, 0x9a, '7529 c'), + RgbInt8Color.rgbName(0xb4, 0xaa, 0x98, 'p 170-2 c'), + RgbInt8Color.rgbName(0xb1, 0xae, 0x99, 'p 178-3 c'), + RgbInt8Color.rgbName(0xb3, 0xaa, 0x9f, 'warm gray 5 xgc'), + RgbInt8Color.rgbName(0xb0, 0xac, 0xa5, '2331 cp'), + RgbInt8Color.rgbName(0xb7, 0xa8, 0x9f, '2474 cp'), + RgbInt8Color.rgbName(0xb7, 0xa8, 0xa1, '2474 u'), + RgbInt8Color.rgbName(0xb3, 0xad, 0xa1, '401 xgc'), + RgbInt8Color.rgbName(0xb2, 0xa8, 0xa2, '407 c'), + RgbInt8Color.rgbName(0xb3, 0xaa, 0xa4, '407 cp'), + RgbInt8Color.rgbName(0xaf, 0xaf, 0xa3, '414 cp'), + RgbInt8Color.rgbName(0xb1, 0xb0, 0xa4, '414 up'), + RgbInt8Color.rgbName(0xb4, 0xab, 0xa6, 'p 172-3 u'), + RgbInt8Color.rgbName(0xb3, 0xb0, 0xa1, 'p 177-1 u'), + RgbInt8Color.rgbName(0xaf, 0xaf, 0xac, '2331 up'), + RgbInt8Color.rgbName(0xb4, 0xae, 0xa7, '401 u'), + RgbInt8Color.rgbName(0xb7, 0xa9, 0xad, '435 u'), + RgbInt8Color.rgbName(0xae, 0xae, 0xae, 'cool gray 6 cp'), + RgbInt8Color.rgbName(0xb4, 0xad, 0xac, 'p 173-1 u'), + RgbInt8Color.rgbName(0xb4, 0xac, 0xa6, 'warm gray 4 u'), + RgbInt8Color.rgbName(0xb1, 0xb1, 0xb0, 'cool gray 5 xgc'), + RgbInt8Color.rgbName(0xb1, 0xb0, 0xb2, 'p 174-1 u'), + RgbInt8Color.rgbName(0xb1, 0xb0, 0xae, 'p 179-5 u'), + RgbInt8Color.rgbName(0xb8, 0xac, 0xb5, 'p 87-1 u'), + RgbInt8Color.rgbName(0xba, 0xa8, 0xc0, '2078 xgc'), + RgbInt8Color.rgbName(0xb3, 0xb0, 0xc4, '5295 c'), + RgbInt8Color.rgbName(0xb1, 0xaf, 0xc3, '5295 u'), + RgbInt8Color.rgbName(0xb7, 0xaa, 0xbf, '666 up'), + RgbInt8Color.rgbName(0xb1, 0xac, 0xc3, 'p 100-10 u'), + RgbInt8Color.rgbName(0xbf, 0xaa, 0xbf, 'p 89-9 u'), + RgbInt8Color.rgbName(0xbb, 0xad, 0xbf, 'p 92-10 u'), + RgbInt8Color.rgbName(0xb6, 0xa8, 0xc4, 'p 94-2 c'), + RgbInt8Color.rgbName(0xbd, 0xa9, 0xc6, 'p 91-11 c'), + RgbInt8Color.rgbName(0xba, 0xac, 0xc8, 'p 93-10 u'), + RgbInt8Color.rgbName(0xb9, 0xa9, 0xca, 'p 96-2 c'), + RgbInt8Color.rgbName(0xb8, 0xb2, 0xd0, '2092 up'), + RgbInt8Color.rgbName(0xb1, 0xb5, 0xce, '2106 c'), + RgbInt8Color.rgbName(0xb2, 0xb7, 0xd1, '2106 xgc'), + RgbInt8Color.rgbName(0xbe, 0xa8, 0xd1, '2567 xgc'), + RgbInt8Color.rgbName(0xb6, 0xb5, 0xd2, 'p 102-9 c'), + RgbInt8Color.rgbName(0xb4, 0xb6, 0xd1, 'p 104-10 u'), + RgbInt8Color.rgbName(0xc1, 0xc6, 0xde, '9383 u'), + RgbInt8Color.rgbName(0xc2, 0xc3, 0xdd, 'p 104-2 u'), + RgbInt8Color.rgbName(0xbf, 0xaf, 0x4c, 'p 2-7 u'), + RgbInt8Color.rgbName(0xc4, 0xb1, 0x51, 'p 5-13 c'), + RgbInt8Color.rgbName(0xc0, 0xb5, 0x61, '617 c'), + RgbInt8Color.rgbName(0xbb, 0xb3, 0x5f, '7766 u'), + RgbInt8Color.rgbName(0xb8, 0xb5, 0x6a, 'p 167-12 u'), + RgbInt8Color.rgbName(0xbf, 0xb8, 0x63, '617 xgc'), + RgbInt8Color.rgbName(0xbc, 0xb3, 0x6c, 'p 3-13 c'), + RgbInt8Color.rgbName(0xbb, 0xb2, 0x75, '617 u'), + RgbInt8Color.rgbName(0xbf, 0xb5, 0x7b, '617 up'), + RgbInt8Color.rgbName(0xb8, 0xb6, 0x82, 'p 168-11 u'), + RgbInt8Color.rgbName(0xbc, 0xb3, 0x79, 'p 3-12 u'), + RgbInt8Color.rgbName(0xc1, 0xb7, 0x77, 'p 3-4 u'), + RgbInt8Color.rgbName(0xbd, 0xaf, 0x77, 'p 6-10 u'), + RgbInt8Color.rgbName(0xc2, 0xb5, 0x76, 'p 6-11 c'), + RgbInt8Color.rgbName(0xc0, 0xb1, 0x83, '4525 up'), + RgbInt8Color.rgbName(0xb3, 0xb9, 0x8a, 'p 162-10 c'), + RgbInt8Color.rgbName(0xb4, 0xb9, 0x88, 'p 165-2 c'), + RgbInt8Color.rgbName(0xc1, 0xb5, 0x8c, '4525 u'), + RgbInt8Color.rgbName(0xb3, 0xb9, 0x95, '5793 c'), + RgbInt8Color.rgbName(0xb3, 0xbc, 0x92, 'p 159-10 u'), + RgbInt8Color.rgbName(0xb8, 0xb2, 0x98, '2323 c'), + RgbInt8Color.rgbName(0xb4, 0xb0, 0x9b, '7535 xgc'), + RgbInt8Color.rgbName(0xb5, 0xbb, 0x9f, '5783 u'), + RgbInt8Color.rgbName(0xb3, 0xb3, 0xa3, 'p 169-5 c'), + RgbInt8Color.rgbName(0xb3, 0xb8, 0xa8, '7537 up'), + RgbInt8Color.rgbName(0xb3, 0xb3, 0xb0, 'cool gray 5 cp'), + RgbInt8Color.rgbName(0xb7, 0xb3, 0xab, 'p 172-3 c'), + RgbInt8Color.rgbName(0xb7, 0xb7, 0xa8, 'p 177-1 c'), + RgbInt8Color.rgbName(0xb3, 0xb5, 0xb5, '421 u'), + RgbInt8Color.rgbName(0xb5, 0xb8, 0xb4, '421 xgc'), + RgbInt8Color.rgbName(0xb4, 0xb8, 0xb6, '7537 u'), + RgbInt8Color.rgbName(0xb4, 0xb7, 0xb9, '877 u'), + RgbInt8Color.rgbName(0xb9, 0xb7, 0xb6, 'p 173-1 c'), + RgbInt8Color.rgbName(0xb0, 0xba, 0xc4, '536 up'), + RgbInt8Color.rgbName(0xb3, 0xb9, 0xcc, '2106 up'), + RgbInt8Color.rgbName(0xb9, 0xb6, 0xc8, '5295 xgc'), + RgbInt8Color.rgbName(0xb2, 0xbb, 0xce, 'p 108-9 c'), + RgbInt8Color.rgbName(0xb4, 0xba, 0xd1, '2106 u'), + RgbInt8Color.rgbName(0xb7, 0xb7, 0xcf, 'p 100-10 c'), + RgbInt8Color.rgbName(0xb4, 0xb9, 0xd1, 'p 105-2 c'), + RgbInt8Color.rgbName(0xb1, 0xbf, 0xd1, 'p 111-1 u'), + RgbInt8Color.rgbName(0xb8, 0xbb, 0xda, '7444 cp'), + RgbInt8Color.rgbName(0xb3, 0xbd, 0xd6, 'p 106-10 u'), + RgbInt8Color.rgbName(0xbe, 0xca, 0xea, '2120 c'), + RgbInt8Color.rgbName(0xc1, 0xbe, 0x49, 'p 166-15 u'), + RgbInt8Color.rgbName(0xc6, 0xb7, 0x4b, '611 up'), + RgbInt8Color.rgbName(0xc8, 0xb9, 0x4e, '611 u'), + RgbInt8Color.rgbName(0xc8, 0xb8, 0x52, '7759 u'), + RgbInt8Color.rgbName(0xc1, 0xc6, 0x58, '7744 up'), + RgbInt8Color.rgbName(0xc0, 0xba, 0x5e, '7765 u'), + RgbInt8Color.rgbName(0xbe, 0xbb, 0x61, 'p 167-5 c'), + RgbInt8Color.rgbName(0xc3, 0xb9, 0x61, '7766 up'), + RgbInt8Color.rgbName(0xc1, 0xc5, 0x65, 'p 163-14 u'), + RgbInt8Color.rgbName(0xbf, 0xbb, 0x66, 'p 167-5 u'), + RgbInt8Color.rgbName(0xb8, 0xbf, 0x80, 'p 161-11 u'), + RgbInt8Color.rgbName(0xbf, 0xbd, 0x79, 'p 167-11 c'), + RgbInt8Color.rgbName(0xc2, 0xbe, 0x76, 'p 167-11 u'), + RgbInt8Color.rgbName(0xba, 0xbd, 0x8b, '5787 c'), + RgbInt8Color.rgbName(0xc1, 0xbd, 0x83, '5855 xgc'), + RgbInt8Color.rgbName(0xb4, 0xbf, 0x91, 'p 159-3 c'), + RgbInt8Color.rgbName(0xbb, 0xc2, 0x87, 'p 161-11 c'), + RgbInt8Color.rgbName(0xba, 0xbb, 0x88, 'p 165-10 u'), + RgbInt8Color.rgbName(0xbc, 0xbe, 0x85, 'p 165-2 u'), + RgbInt8Color.rgbName(0xc0, 0xbd, 0x81, 'p 168-2 c'), + RgbInt8Color.rgbName(0xba, 0xbe, 0x8f, '5787 u'), + RgbInt8Color.rgbName(0xb7, 0xc1, 0x94, '7493 u'), + RgbInt8Color.rgbName(0xb8, 0xc4, 0x8f, 'p 158-11 u'), + RgbInt8Color.rgbName(0xbc, 0xc1, 0x8d, 'p 162-3 u'), + RgbInt8Color.rgbName(0xb7, 0xbb, 0x9d, '5783 up'), + RgbInt8Color.rgbName(0xbb, 0xbe, 0x9e, '5793 cp'), + RgbInt8Color.rgbName(0xb5, 0xc1, 0xa1, 'p 156-9 c'), + RgbInt8Color.rgbName(0xb8, 0xba, 0xad, '413 xgc'), + RgbInt8Color.rgbName(0xb0, 0xc0, 0xb8, '5517 up'), + RgbInt8Color.rgbName(0xb2, 0xc1, 0xb1, '5655 xgc'), + RgbInt8Color.rgbName(0xbc, 0xbd, 0xb4, '413 u'), + RgbInt8Color.rgbName(0xb3, 0xc0, 0xb6, '5655 u'), + RgbInt8Color.rgbName(0xbd, 0xbe, 0xbd, '420 u'), + RgbInt8Color.rgbName(0xb6, 0xc1, 0xba, '441 up'), + RgbInt8Color.rgbName(0xbb, 0xbc, 0xbc, 'cool gray 4 c'), + RgbInt8Color.rgbName(0xb3, 0xc4, 0xcc, '2176 u'), + RgbInt8Color.rgbName(0xb5, 0xc5, 0xca, '2176 up'), + RgbInt8Color.rgbName(0xb0, 0xc5, 0xcc, '7542 u'), + RgbInt8Color.rgbName(0xb7, 0xc0, 0xd3, '2106 cp'), + RgbInt8Color.rgbName(0xb4, 0xc3, 0xd5, 'p 111-1 c'), + RgbInt8Color.rgbName(0xbf, 0xbe, 0xda, 'p 102-1 c'), + RgbInt8Color.rgbName(0xb8, 0xc9, 0xe1, '2127 c'), + RgbInt8Color.rgbName(0xb4, 0xca, 0xde, 'p 113-1 u'), + RgbInt8Color.rgbName(0xc4, 0xc7, 0x67, 'p 163-14 c'), + RgbInt8Color.rgbName(0xbf, 0xcc, 0x80, '7492 c'), + RgbInt8Color.rgbName(0xc3, 0xcc, 0x79, 'p 160-13 c'), + RgbInt8Color.rgbName(0xbf, 0xc7, 0x83, 'p 161-4 u'), + RgbInt8Color.rgbName(0xc1, 0xc3, 0x7a, 'p 164-4 c'), + RgbInt8Color.rgbName(0xbd, 0xc3, 0x8e, '5787 xgc'), + RgbInt8Color.rgbName(0xc4, 0xc9, 0x8c, '7492 up'), + RgbInt8Color.rgbName(0xbb, 0xc5, 0x92, '7493 c'), + RgbInt8Color.rgbName(0xbb, 0xc7, 0x93, '7493 xgc'), + RgbInt8Color.rgbName(0xc1, 0xc9, 0x8b, 'p 161-4 c'), + RgbInt8Color.rgbName(0xb6, 0xc9, 0xa6, 'p 149-9 c'), + RgbInt8Color.rgbName(0xb7, 0xc8, 0xa5, 'p 153-2 u'), + RgbInt8Color.rgbName(0xba, 0xc3, 0x9e, 'p 159-10 c'), + RgbInt8Color.rgbName(0xb8, 0xc5, 0xb7, '5655 cp'), + RgbInt8Color.rgbName(0xba, 0xc8, 0xb9, '5665 xgc'), + RgbInt8Color.rgbName(0xb2, 0xca, 0xb8, 'p 135-1 u'), + RgbInt8Color.rgbName(0xb6, 0xcd, 0xb1, 'p 140-9 u'), + RgbInt8Color.rgbName(0xb5, 0xc5, 0xc1, '441 xgc'), + RgbInt8Color.rgbName(0xb8, 0xc7, 0xc4, '5527 u'), + RgbInt8Color.rgbName(0xb5, 0xc9, 0xc4, '5527 xgc'), + RgbInt8Color.rgbName(0xb8, 0xcc, 0xbc, '5585 up'), + RgbInt8Color.rgbName(0xbc, 0xc8, 0xbd, '5665 u'), + RgbInt8Color.rgbName(0xb3, 0xcb, 0xc1, '622 u'), + RgbInt8Color.rgbName(0xb9, 0xcd, 0xbe, '9543 u'), + RgbInt8Color.rgbName(0xb4, 0xcf, 0xc2, 'p 134-1 c'), + RgbInt8Color.rgbName(0xb5, 0xc7, 0xcf, '5445 xgc'), + RgbInt8Color.rgbName(0xbb, 0xc9, 0xc4, '5517 cp'), + RgbInt8Color.rgbName(0xbc, 0xc9, 0xc5, '5527 c'), + RgbInt8Color.rgbName(0xaf, 0xcc, 0xd5, 'p 119-9 c'), + RgbInt8Color.rgbName(0xb1, 0xcd, 0xcd, 'p 122-10 u'), + RgbInt8Color.rgbName(0xb4, 0xcb, 0xcc, 'p 126-10 c'), + RgbInt8Color.rgbName(0xaf, 0xcd, 0xd7, '2204 c'), + RgbInt8Color.rgbName(0xb0, 0xcc, 0xd8, '2204 cp'), + RgbInt8Color.rgbName(0xb7, 0xc9, 0xd3, '5445 c'), + RgbInt8Color.rgbName(0xb4, 0xcf, 0xd0, '5523 xgc'), + RgbInt8Color.rgbName(0xb3, 0xcf, 0xcf, 'p 122-10 c'), + RgbInt8Color.rgbName(0xb8, 0xca, 0xdf, '9403 u'), + RgbInt8Color.rgbName(0xb6, 0xca, 0xdf, 'p 109-10 u'), + RgbInt8Color.rgbName(0xb9, 0xc9, 0xdb, 'p 110-9 c'), + RgbInt8Color.rgbName(0xb9, 0xc8, 0xd8, 'p 110-9 u'), + RgbInt8Color.rgbName(0xbc, 0xce, 0xe6, '2120 up'), + RgbInt8Color.rgbName(0xba, 0xcd, 0xe6, '2127 u'), + RgbInt8Color.rgbName(0xba, 0xd0, 0xe7, '2127 up'), + RgbInt8Color.rgbName(0xb9, 0xce, 0xe3, '2127 xgc'), + RgbInt8Color.rgbName(0xe1, 0xcd, 0x0, '605 c'), + RgbInt8Color.rgbName(0xe6, 0xd4, 0x0, '605 xgc'), + RgbInt8Color.rgbName(0xdf, 0xcb, 0x0, 'p 1-16 c'), + RgbInt8Color.rgbName(0xde, 0xcc, 0x8, '7758 cp'), + RgbInt8Color.rgbName(0xc0, 0xd6, 0x89, '373 up'), + RgbInt8Color.rgbName(0xc0, 0xcf, 0x85, 'p 157-11 u'), + RgbInt8Color.rgbName(0xc3, 0xd5, 0x85, 'p 157-5 c'), + RgbInt8Color.rgbName(0xc5, 0xcf, 0x81, 'p 160-12 u'), + RgbInt8Color.rgbName(0xc2, 0xcf, 0x8d, 'p 157-11 c'), + RgbInt8Color.rgbName(0xc1, 0xcb, 0x8d, 'p 158-3 c'), + RgbInt8Color.rgbName(0xbc, 0xd1, 0x9b, '579 c'), + RgbInt8Color.rgbName(0xba, 0xd0, 0xa7, 'p 148-9 c'), + RgbInt8Color.rgbName(0xba, 0xcf, 0xa3, 'p 151-10 c'), + RgbInt8Color.rgbName(0xc1, 0xd2, 0xa3, 'p 154-9 c'), + RgbInt8Color.rgbName(0xbf, 0xd0, 0xac, 'p 152-3 c'), + RgbInt8Color.rgbName(0xb9, 0xcd, 0xb7, 'p 141-10 u'), + RgbInt8Color.rgbName(0xba, 0xd1, 0xbe, '559 up'), + RgbInt8Color.rgbName(0xb7, 0xcd, 0xc2, '622 c'), + RgbInt8Color.rgbName(0xbb, 0xd1, 0xc2, '622 cp'), + RgbInt8Color.rgbName(0xbb, 0xd0, 0xbf, '622 up'), + RgbInt8Color.rgbName(0xb4, 0xd0, 0xc4, 'p 128-1 u'), + RgbInt8Color.rgbName(0xb5, 0xd2, 0xce, '9503 u'), + RgbInt8Color.rgbName(0xb4, 0xd1, 0xcf, '9504 u'), + RgbInt8Color.rgbName(0xb5, 0xcf, 0xce, 'p 125-9 c'), + RgbInt8Color.rgbName(0xb6, 0xd3, 0xcc, 'p 128-1 c'), + RgbInt8Color.rgbName(0xb9, 0xce, 0xc5, 'p 135-1 c'), + RgbInt8Color.rgbName(0xb6, 0xcf, 0xd0, '5523 c'), + RgbInt8Color.rgbName(0xb9, 0xd5, 0xd4, 'p 122-2 u'), + RgbInt8Color.rgbName(0xb9, 0xd1, 0xd5, 'p 123-2 c'), + RgbInt8Color.rgbName(0xbb, 0xd0, 0xd0, 'p 123-2 u'), + RgbInt8Color.rgbName(0xb9, 0xd3, 0xdc, '552 c'), + RgbInt8Color.rgbName(0xbb, 0xd3, 0xde, '552 xgc'), + RgbInt8Color.rgbName(0xb8, 0xcf, 0xdf, '9422 u'), + RgbInt8Color.rgbName(0xb9, 0xd5, 0xde, '9443 c'), + RgbInt8Color.rgbName(0xbe, 0xd2, 0xdc, 'p 117-9 u'), + RgbInt8Color.rgbName(0xba, 0xd5, 0xdd, 'p 119-1 c'), + RgbInt8Color.rgbName(0xbd, 0xcf, 0xe6, '2707 xgc'), + RgbInt8Color.rgbName(0xbd, 0xd6, 0xe6, '544 c'), + RgbInt8Color.rgbName(0xbf, 0xd2, 0xe4, '643 u'), + RgbInt8Color.rgbName(0xbe, 0xd1, 0xe8, '9402 u'), + RgbInt8Color.rgbName(0xbe, 0xd3, 0xe6, 'p 112-9 u'), + RgbInt8Color.rgbName(0xb9, 0xd5, 0xe3, 'p 116-9 c'), + RgbInt8Color.rgbName(0xbe, 0xd4, 0xe8, '2707 up'), + RgbInt8Color.rgbName(0xc3, 0xd7, 0xee, '2707 c'), + RgbInt8Color.rgbName(0xbd, 0xd6, 0xe7, '544 cp'), + RgbInt8Color.rgbName(0xe6, 0xdd, 0x1, '396 cp'), + RgbInt8Color.rgbName(0xe1, 0xe0, 0x0, '396 xgc'), + RgbInt8Color.rgbName(0xe5, 0xdc, 0x0, 'p 166-8 c'), + RgbInt8Color.rgbName(0xde, 0xd9, 0x3a, 'p 166-8 u'), + RgbInt8Color.rgbName(0xc8, 0xdf, 0x87, '372 xgc'), + RgbInt8Color.rgbName(0xc3, 0xdc, 0x93, '2275 c'), + RgbInt8Color.rgbName(0xc2, 0xd8, 0x9a, '578 cp'), + RgbInt8Color.rgbName(0xc4, 0xd8, 0x99, '7486 cp'), + RgbInt8Color.rgbName(0xc4, 0xda, 0x9e, '365 up'), + RgbInt8Color.rgbName(0xc7, 0xda, 0xa0, '579 cp'), + RgbInt8Color.rgbName(0xc3, 0xd5, 0xa2, '579 up'), + RgbInt8Color.rgbName(0xc2, 0xd9, 0xa0, '7486 up'), + RgbInt8Color.rgbName(0xc1, 0xd6, 0x9e, 'p 154-4 c'), + RgbInt8Color.rgbName(0xbf, 0xd4, 0xae, 'p 145-9 c'), + RgbInt8Color.rgbName(0xc2, 0xd8, 0xad, 'p 151-3 c'), + RgbInt8Color.rgbName(0xc0, 0xd9, 0xbd, '2253 up'), + RgbInt8Color.rgbName(0xc3, 0xdb, 0xbc, '2260 u'), + RgbInt8Color.rgbName(0xba, 0xd6, 0xc2, 'p 136-9 c'), + RgbInt8Color.rgbName(0xbe, 0xd7, 0xbe, 'p 139-10 c'), + RgbInt8Color.rgbName(0xc1, 0xdd, 0xbe, 'p 139-2 u'), + RgbInt8Color.rgbName(0xbc, 0xdb, 0xcb, '566 up'), + RgbInt8Color.rgbName(0xbe, 0xda, 0xc5, '7478 cp'), + RgbInt8Color.rgbName(0xba, 0xd7, 0xd5, '5513 up'), + RgbInt8Color.rgbName(0xb8, 0xdb, 0xd5, '7464 up'), + RgbInt8Color.rgbName(0xb9, 0xd9, 0xd5, '9045 u'), + RgbInt8Color.rgbName(0xb5, 0xd9, 0xd8, 'p 124-3 c'), + RgbInt8Color.rgbName(0xb9, 0xdb, 0xe0, '9462 c'), + RgbInt8Color.rgbName(0xbd, 0xda, 0xdd, '9463 c'), + RgbInt8Color.rgbName(0xc1, 0xdb, 0xe8, 'p 116-1 c'), + RgbInt8Color.rgbName(0xbc, 0xda, 0xe2, 'p 118-10 u'), + RgbInt8Color.rgbName(0xc0, 0xe1, 0xed, '290 cp'), + RgbInt8Color.rgbName(0xc4, 0xdc, 0xea, '545 xgc'), + RgbInt8Color.rgbName(0xc1, 0xe0, 0xea, '9440 c'), + RgbInt8Color.rgbName(0xc0, 0xe0, 0xec, '9441 c'), + RgbInt8Color.rgbName(0xc7, 0xdb, 0xf4, '2707 u'), + RgbInt8Color.rgbName(0xe0, 0xe7, 0x21, '388 c'), + RgbInt8Color.rgbName(0xe3, 0xe8, 0x29, '809 c'), + RgbInt8Color.rgbName(0xe4, 0xe2, 0x2b, '395 xgc'), + RgbInt8Color.rgbName(0xe3, 0xe9, 0x35, '387 c'), + RgbInt8Color.rgbName(0xe4, 0xe8, 0x3b, '809 u'), + RgbInt8Color.rgbName(0xe5, 0xe3, 0x47, '394 xgc'), + RgbInt8Color.rgbName(0xd7, 0xdb, 0x54, '380 cp'), + RgbInt8Color.rgbName(0xdb, 0xdc, 0x4f, '388 cp'), + RgbInt8Color.rgbName(0xd2, 0xd7, 0x55, '584 c'), + RgbInt8Color.rgbName(0xd1, 0xd8, 0x56, 'p 163-7 u'), + RgbInt8Color.rgbName(0xc8, 0xcc, 0x75, 'p 163-13 u'), + RgbInt8Color.rgbName(0xc7, 0xe2, 0x99, '2275 u'), + RgbInt8Color.rgbName(0xc4, 0xdd, 0xbc, 'p 142-2 c'), + RgbInt8Color.rgbName(0xc3, 0xe3, 0xe7, '9424 c'), + RgbInt8Color.rgbName(0xc1, 0xe3, 0xe4, '9482 c'), + RgbInt8Color.rgbName(0xc5, 0xe9, 0xea, '9481 c'), + RgbInt8Color.rgbName(0xe6, 0xcf, 0x0, '605 cp'), + RgbInt8Color.rgbName(0xe3, 0xed, 0x55, '387 u'), + RgbInt8Color.rgbName(0xd7, 0xda, 0x5b, 'p 163-7 c'), + RgbInt8Color.rgbName(0xcf, 0xd6, 0x62, '388 up'), + RgbInt8Color.rgbName(0xc6, 0xd7, 0x9b, '2275 cp'), + RgbInt8Color.rgbName(0xc4, 0xd6, 0xa4, '580 c'), + RgbInt8Color.rgbName(0xc7, 0xdc, 0xa6, 'p 154-3 u'), + RgbInt8Color.rgbName(0xc3, 0xd6, 0xae, 'p 151-9 u'), + RgbInt8Color.rgbName(0xc3, 0xf1, 0xcf, '2253 u'), + RgbInt8Color.rgbName(0xc2, 0xda, 0xba, '2260 up'), + RgbInt8Color.rgbName(0xc1, 0xd6, 0xc0, 'p 140-1 c'), + RgbInt8Color.rgbName(0xc3, 0xd7, 0xbe, 'p 140-1 u'), + RgbInt8Color.rgbName(0xc8, 0xe9, 0xe9, '9480 c'), + RgbInt8Color.rgbName(0xde, 0xc3, 0x0, 'p 4-16 c'), + RgbInt8Color.rgbName(0xd8, 0xcc, 0x2d, '611 cp'), + RgbInt8Color.rgbName(0xe5, 0xde, 0x45, 'p 166-7 u'), + RgbInt8Color.rgbName(0xd5, 0xd7, 0x54, '396 up'), + RgbInt8Color.rgbName(0xde, 0xe3, 0x66, '386 xgc'), + RgbInt8Color.rgbName(0xc9, 0xdd, 0x84, '2289 u'), + RgbInt8Color.rgbName(0xd4, 0xeb, 0x8e, '372 c'), + RgbInt8Color.rgbName(0xcf, 0xe2, 0x96, '2281 xgc'), + RgbInt8Color.rgbName(0xc7, 0xe0, 0xc5, 'p 136-1 u'), + RgbInt8Color.rgbName(0xbf, 0xdd, 0xce, '573 up'), + RgbInt8Color.rgbName(0xc8, 0xde, 0xda, '9045 c'), + RgbInt8Color.rgbName(0xc6, 0xdc, 0xda, '9483 c'), + RgbInt8Color.rgbName(0xc4, 0xe1, 0xd7, '9522 u'), + RgbInt8Color.rgbName(0xc8, 0xdc, 0xd3, '9523 u'), + RgbInt8Color.rgbName(0xc8, 0xe2, 0xd7, 'p 127-1 u'), + RgbInt8Color.rgbName(0xc5, 0xdc, 0xd7, 'p 127-9 c'), + RgbInt8Color.rgbName(0xc4, 0xe1, 0xde, '317 cp'), + RgbInt8Color.rgbName(0xc5, 0xe2, 0xdd, 'p 124-2 u'), + RgbInt8Color.rgbName(0xc8, 0xe3, 0xe2, '628 cp'), + RgbInt8Color.rgbName(0xc4, 0xdd, 0xe6, 'p 118-10 c'), + RgbInt8Color.rgbName(0xe4, 0x0, 0x2b, '185 c'), + RgbInt8Color.rgbName(0xda, 0x0, 0x39, '185 xgc'), + RgbInt8Color.rgbName(0xce, 0x0, 0x3d, '186 xgc'), + RgbInt8Color.rgbName(0xcc, 0x0, 0x45, '206 xgc'), + RgbInt8Color.rgbName(0xd8, 0x0, 0x4d, '192 xgc'), + RgbInt8Color.rgbName(0xdb, 0xa, 0x5b, '2040 c'), + RgbInt8Color.rgbName(0xe3, 0x1c, 0x79, '213 c'), + RgbInt8Color.rgbName(0xfb, 0x48, 0xc4, '813 c'), + RgbInt8Color.rgbName(0xff, 0x3e, 0xb5, '806 c'), + RgbInt8Color.rgbName(0xff, 0x48, 0xb0, '806 u'), + RgbInt8Color.rgbName(0xd2, 0x26, 0x30, '1795 c'), + RgbInt8Color.rgbName(0xce, 0x23, 0x2a, '711 xgc'), + RgbInt8Color.rgbName(0xcf, 0x23, 0x66, '214 cp'), + RgbInt8Color.rgbName(0xd1, 0x23, 0x68, 'rubine red cp'), + RgbInt8Color.rgbName(0xd1, 0x2e, 0x28, '2035 cp'), + RgbInt8Color.rgbName(0xcb, 0x2c, 0x30, '711 c'), + RgbInt8Color.rgbName(0xc3, 0x2e, 0x4c, '193 cp'), + RgbInt8Color.rgbName(0xeb, 0x33, 0x0, '2028 c'), + RgbInt8Color.rgbName(0xda, 0x29, 0x1c, '485 c'), + RgbInt8Color.rgbName(0xd8, 0x25, 0x20, '485 xgc'), + RgbInt8Color.rgbName(0xcf, 0x45, 0x20, '173 c'), + RgbInt8Color.rgbName(0xd1, 0x41, 0x24, '7597 c'), + RgbInt8Color.rgbName(0xc9, 0x2a, 0x39, '186 cp'), + RgbInt8Color.rgbName(0xca, 0x2d, 0x51, 'p 59-15 c'), + RgbInt8Color.rgbName(0xcc, 0x30, 0x57, '1935 cp'), + RgbInt8Color.rgbName(0xca, 0x35, 0x68, '7635 xgc'), + RgbInt8Color.rgbName(0xef, 0x60, 0xa3, '2038 c'), + RgbInt8Color.rgbName(0xea, 0x60, 0xa7, '225 u'), + RgbInt8Color.rgbName(0xd1, 0x48, 0x25, '7597 cp'), + RgbInt8Color.rgbName(0xcb, 0x33, 0x3b, '1797 c'), + RgbInt8Color.rgbName(0xca, 0x36, 0x39, '1797 cp'), + RgbInt8Color.rgbName(0xcb, 0x36, 0x45, '1797 xgc'), + RgbInt8Color.rgbName(0xc5, 0x3c, 0x4a, 'p 55-15 c'), + RgbInt8Color.rgbName(0xc6, 0x38, 0x43, 'p 57-15 c'), + RgbInt8Color.rgbName(0xc9, 0x3e, 0x66, 'p 68-15 c'), + RgbInt8Color.rgbName(0xc9, 0x3e, 0x6b, '7635 cp'), + RgbInt8Color.rgbName(0xc1, 0x4d, 0x7f, 'p 80-8 u'), + RgbInt8Color.rgbName(0xc0, 0x4c, 0x36, '7619 c'), + RgbInt8Color.rgbName(0xc2, 0x43, 0x42, '3546 u'), + RgbInt8Color.rgbName(0xc9, 0x41, 0x3e, '7626 xgc'), + RgbInt8Color.rgbName(0xc5, 0x41, 0x49, '10165 c'), + RgbInt8Color.rgbName(0xc5, 0x46, 0x44, '2033 c'), + RgbInt8Color.rgbName(0xc6, 0x43, 0x47, '2033 xgc'), + RgbInt8Color.rgbName(0xc5, 0x42, 0x46, '3517 up'), + RgbInt8Color.rgbName(0xca, 0x40, 0x46, '3546 up'), + RgbInt8Color.rgbName(0xc6, 0x42, 0x48, 'p 52-15 c'), + RgbInt8Color.rgbName(0xbd, 0x4c, 0x4a, 'p 58-6 c'), + RgbInt8Color.rgbName(0xbc, 0x4e, 0x4c, 'p 48-16 u'), + RgbInt8Color.rgbName(0xc3, 0x45, 0x52, 'p 59-16 u'), + RgbInt8Color.rgbName(0xc1, 0x4b, 0x58, '10164 c'), + RgbInt8Color.rgbName(0xbc, 0x4e, 0x57, '8904 c'), + RgbInt8Color.rgbName(0xcb, 0x3f, 0x58, 'p 59-14 c'), + RgbInt8Color.rgbName(0xc7, 0x42, 0x58, 'p 62-15 c'), + RgbInt8Color.rgbName(0xbf, 0x4c, 0x5b, 'p 62-16 u'), + RgbInt8Color.rgbName(0xc2, 0x4c, 0x70, 'p 73-16 u'), + RgbInt8Color.rgbName(0xc9, 0x52, 0x8f, 'p 80-6 c'), + RgbInt8Color.rgbName(0xd0, 0x53, 0x94, '3527 u'), + RgbInt8Color.rgbName(0xeb, 0x6f, 0xbd, '224 c'), + RgbInt8Color.rgbName(0xe9, 0x71, 0xc0, '238 u'), + RgbInt8Color.rgbName(0xc9, 0x61, 0x15, '10147 c'), + RgbInt8Color.rgbName(0xcb, 0x60, 0x15, '159 c'), + RgbInt8Color.rgbName(0xc0, 0x4e, 0x37, '2349 u'), + RgbInt8Color.rgbName(0xc4, 0x50, 0x36, 'p 45-15 c'), + RgbInt8Color.rgbName(0xc3, 0x51, 0x3b, '7598 xgc'), + RgbInt8Color.rgbName(0xc4, 0x4b, 0x3f, '7619 xgc'), + RgbInt8Color.rgbName(0xbf, 0x52, 0x4e, 'p 48-15 u'), + RgbInt8Color.rgbName(0xc2, 0x52, 0x51, 'p 52-15 u'), + RgbInt8Color.rgbName(0xbd, 0x55, 0x50, 'p 53-6 c'), + RgbInt8Color.rgbName(0xc5, 0x47, 0x55, 'p 59-15 u'), + RgbInt8Color.rgbName(0xbe, 0x54, 0x66, '10163 c'), + RgbInt8Color.rgbName(0xc9, 0x4c, 0x63, '1935 u'), + RgbInt8Color.rgbName(0xc4, 0x4e, 0x68, 'p 68-16 u'), + RgbInt8Color.rgbName(0xc0, 0x55, 0x78, '2452 u'), + RgbInt8Color.rgbName(0xca, 0x48, 0x79, '3527 up'), + RgbInt8Color.rgbName(0xc4, 0x52, 0x84, 'p 80-7 u'), + RgbInt8Color.rgbName(0xd0, 0x65, 0x1e, '159 cp'), + RgbInt8Color.rgbName(0xd4, 0x60, 0x0, '717 xgc'), + RgbInt8Color.rgbName(0xc9, 0x52, 0x2a, '10153 c'), + RgbInt8Color.rgbName(0xc4, 0x57, 0x29, '7580 cp'), + RgbInt8Color.rgbName(0xc1, 0x5c, 0x2f, '167 xgc'), + RgbInt8Color.rgbName(0xc0, 0x56, 0x3a, '7580 xgc'), + RgbInt8Color.rgbName(0xc8, 0x55, 0x34, '7619 cp'), + RgbInt8Color.rgbName(0xc7, 0x4f, 0x41, 'p 48-14 c'), + RgbInt8Color.rgbName(0xbe, 0x5e, 0x47, 'p 49-5 c'), + RgbInt8Color.rgbName(0xbf, 0x5a, 0x50, 'p 40-15 u'), + RgbInt8Color.rgbName(0xc3, 0x50, 0x56, 'p 57-15 u'), + RgbInt8Color.rgbName(0xc3, 0x51, 0x60, '1935 up'), + RgbInt8Color.rgbName(0xc5, 0x50, 0x58, '7418 cp'), + RgbInt8Color.rgbName(0xbe, 0x5c, 0x58, '7621 up'), + RgbInt8Color.rgbName(0xc8, 0x50, 0x5b, 'p 59-14 u'), + RgbInt8Color.rgbName(0xbe, 0x5c, 0x5a, 'p 60-12 c'), + RgbInt8Color.rgbName(0xc1, 0x52, 0x5e, 'p 62-15 u'), + RgbInt8Color.rgbName(0xc5, 0x52, 0x65, '193 u'), + RgbInt8Color.rgbName(0xbc, 0x5c, 0x61, '200 up'), + RgbInt8Color.rgbName(0xc3, 0x56, 0x6d, '7636 u'), + RgbInt8Color.rgbName(0xc7, 0x51, 0x6c, 'p 68-15 u'), + RgbInt8Color.rgbName(0xc3, 0x5a, 0x75, 'p 69-4 c'), + RgbInt8Color.rgbName(0xbd, 0x5e, 0x76, 'p 71-14 u'), + RgbInt8Color.rgbName(0xc6, 0x55, 0x77, 'p 73-15 u'), + RgbInt8Color.rgbName(0xc5, 0x52, 0x7d, 'p 75-15 u'), + RgbInt8Color.rgbName(0xc6, 0x58, 0x8a, '233 up'), + RgbInt8Color.rgbName(0xcc, 0x6c, 0xa6, '238 cp'), + RgbInt8Color.rgbName(0xca, 0x6a, 0xa1, '238 xgc'), + RgbInt8Color.rgbName(0xec, 0x86, 0xd0, '237 c'), + RgbInt8Color.rgbName(0xea, 0x88, 0xd2, '2375 u'), + RgbInt8Color.rgbName(0xc4, 0x62, 0x2d, '7583 c'), + RgbInt8Color.rgbName(0xc3, 0x62, 0x2d, 'p 30-16 c'), + RgbInt8Color.rgbName(0xc4, 0x5b, 0x39, '10152 c'), + RgbInt8Color.rgbName(0xc9, 0x5c, 0x31, '2429 cp'), + RgbInt8Color.rgbName(0xc7, 0x5f, 0x2f, 'p 34-16 c'), + RgbInt8Color.rgbName(0xc3, 0x63, 0x3d, 'p 37-15 c'), + RgbInt8Color.rgbName(0xc0, 0x64, 0x48, '10151 c'), + RgbInt8Color.rgbName(0xbf, 0x62, 0x4e, 'p 34-15 u'), + RgbInt8Color.rgbName(0xc0, 0x59, 0x53, 'p 45-15 u'), + RgbInt8Color.rgbName(0xc3, 0x5a, 0x51, 'p 48-14 u'), + RgbInt8Color.rgbName(0xc1, 0x59, 0x56, 'p 55-14 u'), + RgbInt8Color.rgbName(0xbf, 0x60, 0x59, '180 u'), + RgbInt8Color.rgbName(0xc0, 0x61, 0x5b, '7620 u'), + RgbInt8Color.rgbName(0xc2, 0x5c, 0x58, '7620 up'), + RgbInt8Color.rgbName(0xc7, 0x5b, 0x5a, 'p 60-6 c'), + RgbInt8Color.rgbName(0xbf, 0x63, 0x66, '7418 u'), + RgbInt8Color.rgbName(0xc7, 0x5b, 0x65, 'p 62-14 u'), + RgbInt8Color.rgbName(0xbc, 0x63, 0x69, 'p 63-5 u'), + RgbInt8Color.rgbName(0xbd, 0x60, 0x74, '10162 c'), + RgbInt8Color.rgbName(0xc8, 0x5b, 0x73, '7636 up'), + RgbInt8Color.rgbName(0xbf, 0x62, 0x74, 'p 69-4 u'), + RgbInt8Color.rgbName(0xc1, 0x67, 0x84, '7634 c'), + RgbInt8Color.rgbName(0xcb, 0x5a, 0x86, 'p 73-14 c'), + RgbInt8Color.rgbName(0xc7, 0x5c, 0x8c, 'p 80-6 u'), + RgbInt8Color.rgbName(0xc5, 0x70, 0xa4, '2060 xgc'), + RgbInt8Color.rgbName(0xc5, 0x78, 0xa3, '2395 up'), + RgbInt8Color.rgbName(0xcd, 0x72, 0xa1, '674 u'), + RgbInt8Color.rgbName(0xd2, 0x8d, 0xd3, '2066 c'), + RgbInt8Color.rgbName(0xcf, 0x7f, 0x0, '145 c'), + RgbInt8Color.rgbName(0xcb, 0x64, 0x23, '1525 cp'), + RgbInt8Color.rgbName(0xc8, 0x64, 0x26, '7583 cp'), + RgbInt8Color.rgbName(0xc5, 0x69, 0x26, '10146 c'), + RgbInt8Color.rgbName(0xc6, 0x6d, 0x29, 'p 27-16 c'), + RgbInt8Color.rgbName(0xbe, 0x69, 0x40, 'p 35-6 c'), + RgbInt8Color.rgbName(0xc4, 0x62, 0x4c, '2349 up'), + RgbInt8Color.rgbName(0xc0, 0x70, 0x46, 'p 24-16 u'), + RgbInt8Color.rgbName(0xbc, 0x65, 0x54, 'p 37-15 u'), + RgbInt8Color.rgbName(0xc7, 0x63, 0x45, 'p 40-14 c'), + RgbInt8Color.rgbName(0xbf, 0x6a, 0x53, 'p 30-15 u'), + RgbInt8Color.rgbName(0xc2, 0x6a, 0x52, 'p 46-5 c'), + RgbInt8Color.rgbName(0xbd, 0x69, 0x5a, '7599 u'), + RgbInt8Color.rgbName(0xba, 0x6b, 0x5f, '7599 up'), + RgbInt8Color.rgbName(0xbc, 0x6b, 0x5a, 'p 46-5 u'), + RgbInt8Color.rgbName(0xbe, 0x69, 0x6b, '7418 up'), + RgbInt8Color.rgbName(0xc1, 0x69, 0x64, 'p 58-4 u'), + RgbInt8Color.rgbName(0xbb, 0x6d, 0x68, 'p 60-11 u'), + RgbInt8Color.rgbName(0xc1, 0x62, 0x62, 'p 60-6 u'), + RgbInt8Color.rgbName(0xc1, 0x68, 0x6c, 'p 63-5 c'), + RgbInt8Color.rgbName(0xbc, 0x74, 0x7a, 'p 65-12 u'), + RgbInt8Color.rgbName(0xbf, 0x6a, 0x7d, 'p 69-13 c'), + RgbInt8Color.rgbName(0xc4, 0x66, 0x85, '7634 xgc'), + RgbInt8Color.rgbName(0xcc, 0x64, 0x83, 'p 73-14 u'), + RgbInt8Color.rgbName(0xc5, 0x68, 0x91, '675 up'), + RgbInt8Color.rgbName(0xcb, 0x66, 0x8a, 'p 75-14 u'), + RgbInt8Color.rgbName(0xbe, 0x6a, 0x90, 'p 80-12 u'), + RgbInt8Color.rgbName(0xc8, 0x68, 0x9a, '3582 c'), + RgbInt8Color.rgbName(0xcc, 0x67, 0x94, 'p 75-14 c'), + RgbInt8Color.rgbName(0xc4, 0x70, 0x9d, '239 up'), + RgbInt8Color.rgbName(0xbe, 0x76, 0x9d, 'p 81-2 c'), + RgbInt8Color.rgbName(0xbd, 0x7e, 0xa8, '252 up'), + RgbInt8Color.rgbName(0xbf, 0x80, 0xae, '2351 cp'), + RgbInt8Color.rgbName(0xca, 0x7a, 0xab, '2060 u'), + RgbInt8Color.rgbName(0xc7, 0x81, 0xaa, '245 up'), + RgbInt8Color.rgbName(0xcc, 0x8a, 0x0, '131 c'), + RgbInt8Color.rgbName(0xca, 0x74, 0x1f, 'p 24-16 c'), + RgbInt8Color.rgbName(0xc2, 0x72, 0x37, '10145 c'), + RgbInt8Color.rgbName(0xc8, 0x71, 0x38, 'p 30-15 c'), + RgbInt8Color.rgbName(0xc8, 0x71, 0x3d, '2020 u'), + RgbInt8Color.rgbName(0xc7, 0x6c, 0x3d, '718 u'), + RgbInt8Color.rgbName(0xcb, 0x6e, 0x3d, 'p 34-15 c'), + RgbInt8Color.rgbName(0xbe, 0x7a, 0x47, '10144 c'), + RgbInt8Color.rgbName(0xc9, 0x71, 0x46, '159 u'), + RgbInt8Color.rgbName(0xbf, 0x71, 0x50, '2429 u'), + RgbInt8Color.rgbName(0xc6, 0x6d, 0x46, '2433 up'), + RgbInt8Color.rgbName(0xca, 0x6e, 0x48, '7583 xgc'), + RgbInt8Color.rgbName(0xc0, 0x6e, 0x4c, 'p 41-5 c'), + RgbInt8Color.rgbName(0xbc, 0x72, 0x52, 'p 49-12 c'), + RgbInt8Color.rgbName(0xbe, 0x6e, 0x58, '10150 c'), + RgbInt8Color.rgbName(0xc6, 0x6e, 0x4e, '7618 c'), + RgbInt8Color.rgbName(0xc2, 0x71, 0x50, 'p 27-15 u'), + RgbInt8Color.rgbName(0xb8, 0x76, 0x55, 'p 31-6 u'), + RgbInt8Color.rgbName(0xc1, 0x6f, 0x58, '2435 c'), + RgbInt8Color.rgbName(0xba, 0x73, 0x60, '2435 up'), + RgbInt8Color.rgbName(0xc0, 0x6d, 0x59, '7580 u'), + RgbInt8Color.rgbName(0xc3, 0x6d, 0x5c, '7598 u'), + RgbInt8Color.rgbName(0xc2, 0x6e, 0x60, '7607 c'), + RgbInt8Color.rgbName(0xbb, 0x73, 0x60, 'p 41-5 u'), + RgbInt8Color.rgbName(0xbb, 0x72, 0x5c, 'p 46-13 c'), + RgbInt8Color.rgbName(0xbe, 0x6f, 0x5b, 'p 49-4 u'), + RgbInt8Color.rgbName(0xc3, 0x71, 0x65, 'p 53-5 u'), + RgbInt8Color.rgbName(0xbb, 0x73, 0x69, 'p 58-13 c'), + RgbInt8Color.rgbName(0xc4, 0x6d, 0x68, 'p 60-11 c'), + RgbInt8Color.rgbName(0xb9, 0x7f, 0x6d, 'p 54-3 u'), + RgbInt8Color.rgbName(0xc1, 0x77, 0x6f, 'p 60-10 u'), + RgbInt8Color.rgbName(0xc6, 0x6e, 0x7d, 'p 69-3 u'), + RgbInt8Color.rgbName(0xc9, 0x6c, 0x81, 'p 69-3 c'), + RgbInt8Color.rgbName(0xc0, 0x73, 0x88, 'p 72-5 c'), + RgbInt8Color.rgbName(0xc8, 0x6e, 0x8e, '3582 up'), + RgbInt8Color.rgbName(0xc7, 0x73, 0x8a, '7634 cp'), + RgbInt8Color.rgbName(0xc9, 0x71, 0x8a, 'p 71-13 c'), + RgbInt8Color.rgbName(0xc3, 0x6f, 0x9a, 'p 80-12 c'), + RgbInt8Color.rgbName(0xca, 0x85, 0xb4, '2375 cp'), + RgbInt8Color.rgbName(0xc9, 0x87, 0xb5, '245 cp'), + RgbInt8Color.rgbName(0xc5, 0x87, 0xb7, '245 xgc'), + RgbInt8Color.rgbName(0xd1, 0x90, 0x0, '7550 c'), + RgbInt8Color.rgbName(0xcd, 0x79, 0x25, '7565 c'), + RgbInt8Color.rgbName(0xc6, 0x7d, 0x30, '7571 c'), + RgbInt8Color.rgbName(0xcc, 0x7b, 0x3d, 'p 27-15 c'), + RgbInt8Color.rgbName(0xbe, 0x7c, 0x45, 'p 28-6 c'), + RgbInt8Color.rgbName(0xc6, 0x7d, 0x48, 'p 20-16 u'), + RgbInt8Color.rgbName(0xbe, 0x7b, 0x54, '471 u'), + RgbInt8Color.rgbName(0xc0, 0x7f, 0x53, '7414 u'), + RgbInt8Color.rgbName(0xc0, 0x77, 0x59, '7584 u'), + RgbInt8Color.rgbName(0xc2, 0x7e, 0x50, 'p 31-6 c'), + RgbInt8Color.rgbName(0xbe, 0x7a, 0x59, 'p 35-5 u'), + RgbInt8Color.rgbName(0xbe, 0x7a, 0x57, 'p 38-5 c'), + RgbInt8Color.rgbName(0xbb, 0x84, 0x59, '10143 c'), + RgbInt8Color.rgbName(0xc0, 0x7c, 0x59, '1525 up'), + RgbInt8Color.rgbName(0xba, 0x83, 0x56, '7572 up'), + RgbInt8Color.rgbName(0xc0, 0x7d, 0x59, '7591 c'), + RgbInt8Color.rgbName(0xbd, 0x7e, 0x58, 'p 35-13 c'), + RgbInt8Color.rgbName(0xb8, 0x84, 0x5f, 'p 36-4 c'), + RgbInt8Color.rgbName(0xbc, 0x7b, 0x6a, '10149 c'), + RgbInt8Color.rgbName(0xbb, 0x7a, 0x69, '2435 u'), + RgbInt8Color.rgbName(0xb4, 0x87, 0x69, 'p 36-3 u'), + RgbInt8Color.rgbName(0xc5, 0x7a, 0x66, 'p 46-4 u'), + RgbInt8Color.rgbName(0xbd, 0x7e, 0x66, 'p 49-11 u'), + RgbInt8Color.rgbName(0xc0, 0x75, 0x68, 'p 53-13 c'), + RgbInt8Color.rgbName(0xbb, 0x82, 0x6c, '7585 up'), + RgbInt8Color.rgbName(0xbe, 0x82, 0x6f, '7592 up'), + RgbInt8Color.rgbName(0xbc, 0x7e, 0x6f, 'p 56-4 u'), + RgbInt8Color.rgbName(0xba, 0x7e, 0x72, 'p 58-12 u'), + RgbInt8Color.rgbName(0xbe, 0x7b, 0x72, 'p 61-3 c'), + RgbInt8Color.rgbName(0xb9, 0x87, 0x7b, '10148 c'), + RgbInt8Color.rgbName(0xb6, 0x88, 0x7a, 'p 56-11 u'), + RgbInt8Color.rgbName(0xbb, 0x84, 0x7b, 'p 61-12 c'), + RgbInt8Color.rgbName(0xbd, 0x7e, 0x75, 'p 61-2 u'), + RgbInt8Color.rgbName(0xc5, 0x74, 0x77, 'p 63-4 u'), + RgbInt8Color.rgbName(0xbf, 0x7b, 0x7b, 'p 63-9 c'), + RgbInt8Color.rgbName(0xc1, 0x79, 0x80, 'p 65-12 c'), + RgbInt8Color.rgbName(0xbd, 0x7c, 0x86, 'p 70-2 u'), + RgbInt8Color.rgbName(0xc0, 0x7b, 0x94, 'p 74-4 c'), + RgbInt8Color.rgbName(0xbf, 0x86, 0x96, '7432 up'), + RgbInt8Color.rgbName(0xc0, 0x7c, 0x9b, 'p 76-13 c'), + RgbInt8Color.rgbName(0xc4, 0x76, 0x93, 'p 76-5 u'), + RgbInt8Color.rgbName(0xc5, 0x77, 0x9a, 'p 80-11 u'), + RgbInt8Color.rgbName(0xbe, 0x80, 0x9d, 'p 81-1 u'), + RgbInt8Color.rgbName(0xba, 0x85, 0xa5, '2059 xgc'), + RgbInt8Color.rgbName(0xc7, 0x7a, 0xa0, '2060 up'), + RgbInt8Color.rgbName(0xbe, 0x84, 0xa3, '687 c'), + RgbInt8Color.rgbName(0xbe, 0x87, 0xad, '2351 up'), + RgbInt8Color.rgbName(0xc2, 0x84, 0xa7, 'p 81-1 c'), + RgbInt8Color.rgbName(0xc6, 0x95, 0xbf, '2066 xgc'), + RgbInt8Color.rgbName(0xcd, 0x95, 0xc0, '514 cp'), + RgbInt8Color.rgbName(0xc9, 0x97, 0x0, '117 c'), + RgbInt8Color.rgbName(0xd0, 0x9f, 0x0, '117 xgc'), + RgbInt8Color.rgbName(0xd2, 0x81, 0x22, '7565 cp'), + RgbInt8Color.rgbName(0xcc, 0x82, 0x26, 'p 20-16 c'), + RgbInt8Color.rgbName(0xcd, 0x88, 0x27, 'p 17-16 c'), + RgbInt8Color.rgbName(0xc9, 0x7f, 0x3a, '145 u'), + RgbInt8Color.rgbName(0xd0, 0x82, 0x2f, '7565 xgc'), + RgbInt8Color.rgbName(0xc2, 0x86, 0x40, 'p 21-6 c'), + RgbInt8Color.rgbName(0xbc, 0x86, 0x4c, '2014 up'), + RgbInt8Color.rgbName(0xc8, 0x82, 0x42, '722 c'), + RgbInt8Color.rgbName(0xbb, 0x85, 0x4d, '729 cp'), + RgbInt8Color.rgbName(0xc6, 0x89, 0x3f, '7510 c'), + RgbInt8Color.rgbName(0xc8, 0x87, 0x3e, '7571 xgc'), + RgbInt8Color.rgbName(0xc5, 0x83, 0x48, 'p 17-16 u'), + RgbInt8Color.rgbName(0xbf, 0x85, 0x51, 'p 21-6 u'), + RgbInt8Color.rgbName(0xc1, 0x80, 0x55, '7591 cp'), + RgbInt8Color.rgbName(0xc4, 0x86, 0x4f, 'p 28-5 c'), + RgbInt8Color.rgbName(0xbd, 0x84, 0x57, 'p 31-11 c'), + RgbInt8Color.rgbName(0xbf, 0x84, 0x5e, '471 up'), + RgbInt8Color.rgbName(0xbd, 0x85, 0x5c, 'p 25-5 u'), + RgbInt8Color.rgbName(0xbe, 0x81, 0x5d, 'p 28-4 u'), + RgbInt8Color.rgbName(0xbb, 0x88, 0x64, 'p 31-9 u'), + RgbInt8Color.rgbName(0xb9, 0x87, 0x68, 'p 39-3 c'), + RgbInt8Color.rgbName(0xbb, 0x88, 0x71, 'p 38-12 u'), + RgbInt8Color.rgbName(0xba, 0x8b, 0x70, 'p 47-3 c'), + RgbInt8Color.rgbName(0xbf, 0x82, 0x73, 'p 54-3 c'), + RgbInt8Color.rgbName(0xc1, 0x86, 0x77, '2439 u'), + RgbInt8Color.rgbName(0xc3, 0x83, 0x75, 'p 56-4 c'), + RgbInt8Color.rgbName(0xc5, 0x81, 0x76, 'p 60-9 u'), + RgbInt8Color.rgbName(0xbc, 0x8a, 0x7e, '7613 c'), + RgbInt8Color.rgbName(0xbd, 0x8e, 0x81, '7613 xgc'), + RgbInt8Color.rgbName(0xc3, 0x86, 0x7e, 'p 61-2 c'), + RgbInt8Color.rgbName(0xc5, 0x84, 0x8c, '493 up'), + RgbInt8Color.rgbName(0xc6, 0x85, 0x8f, '500 c'), + RgbInt8Color.rgbName(0xbd, 0x89, 0x8f, '500 u'), + RgbInt8Color.rgbName(0xc4, 0x84, 0x90, '694 c'), + RgbInt8Color.rgbName(0xc9, 0x80, 0x8a, '7634 up'), + RgbInt8Color.rgbName(0xc1, 0x88, 0x8b, 'p 64-3 c'), + RgbInt8Color.rgbName(0xc0, 0x89, 0x8c, 'p 66-4 c'), + RgbInt8Color.rgbName(0xc7, 0x7f, 0x8e, 'p 69-12 c'), + RgbInt8Color.rgbName(0xc1, 0x84, 0x91, 'p 70-2 c'), + RgbInt8Color.rgbName(0xc5, 0x85, 0x91, 'p 72-4 u'), + RgbInt8Color.rgbName(0xc5, 0x81, 0x9a, '7432 u'), + RgbInt8Color.rgbName(0xbc, 0x87, 0x9b, 'p 77-4 u'), + RgbInt8Color.rgbName(0xc9, 0x80, 0x9e, '7431 c'), + RgbInt8Color.rgbName(0xbd, 0x8a, 0xa2, 'p 81-9 u'), + RgbInt8Color.rgbName(0xc0, 0x8b, 0xa9, '680 u'), + RgbInt8Color.rgbName(0xc4, 0x89, 0xab, '687 cp'), + RgbInt8Color.rgbName(0xba, 0x8f, 0xaf, '2058 xgc'), + RgbInt8Color.rgbName(0xbd, 0x90, 0xb0, 'p 83-12 u'), + RgbInt8Color.rgbName(0xbf, 0x91, 0xba, '2066 cp'), + RgbInt8Color.rgbName(0xd3, 0x8d, 0xd2, '2066 u'), + RgbInt8Color.rgbName(0xd0, 0x89, 0x21, '145 cp'), + RgbInt8Color.rgbName(0xd0, 0x8c, 0x35, 'p 20-15 c'), + RgbInt8Color.rgbName(0xc5, 0x91, 0x3e, 'p 18-7 c'), + RgbInt8Color.rgbName(0xca, 0x8f, 0x44, '7510 cp'), + RgbInt8Color.rgbName(0xc8, 0x8d, 0x45, 'p 14-16 u'), + RgbInt8Color.rgbName(0xc0, 0x8f, 0x56, 'p 21-12 c'), + RgbInt8Color.rgbName(0xbe, 0x8b, 0x60, '7510 u'), + RgbInt8Color.rgbName(0xc3, 0x89, 0x5d, '7571 u'), + RgbInt8Color.rgbName(0xc0, 0x8d, 0x5f, 'p 28-13 c'), + RgbInt8Color.rgbName(0xc1, 0x8c, 0x61, 'p 31-10 c'), + RgbInt8Color.rgbName(0xbc, 0x8e, 0x6a, '723 up'), + RgbInt8Color.rgbName(0xbc, 0x8f, 0x68, 'p 25-11 u'), + RgbInt8Color.rgbName(0xc5, 0x8c, 0x66, 'p 28-3 u'), + RgbInt8Color.rgbName(0xc1, 0x8c, 0x6a, 'p 35-12 u'), + RgbInt8Color.rgbName(0xbe, 0x8c, 0x67, 'p 38-12 c'), + RgbInt8Color.rgbName(0xc0, 0x8d, 0x67, 'p 50-3 c'), + RgbInt8Color.rgbName(0xba, 0x8d, 0x74, 'p 42-2 u'), + RgbInt8Color.rgbName(0xbb, 0x92, 0x75, '729 u'), + RgbInt8Color.rgbName(0xbb, 0x93, 0x7d, '7515 up'), + RgbInt8Color.rgbName(0xc6, 0x8d, 0x78, '7591 u'), + RgbInt8Color.rgbName(0xbd, 0x93, 0x79, 'p 39-2 u'), + RgbInt8Color.rgbName(0xb8, 0x92, 0x7b, 'p 42-11 u'), + RgbInt8Color.rgbName(0xba, 0x94, 0x7a, 'p 47-11 c'), + RgbInt8Color.rgbName(0xc2, 0x8d, 0x7a, 'p 54-2 u'), + RgbInt8Color.rgbName(0xb8, 0x99, 0x80, '2312 cp'), + RgbInt8Color.rgbName(0xc1, 0x8f, 0x7e, '7613 cp'), + RgbInt8Color.rgbName(0xbf, 0x8e, 0x7e, 'p 54-11 c'), + RgbInt8Color.rgbName(0xbd, 0x91, 0x85, 'p 56-11 c'), + RgbInt8Color.rgbName(0xc2, 0x90, 0x84, 'p 61-11 u'), + RgbInt8Color.rgbName(0xc1, 0x8b, 0x88, 'p 64-3 u'), + RgbInt8Color.rgbName(0xb7, 0x9b, 0x87, 'p 33-4 u'), + RgbInt8Color.rgbName(0xc5, 0x8b, 0x93, '500 cp'), + RgbInt8Color.rgbName(0xc1, 0x93, 0x95, '500 up'), + RgbInt8Color.rgbName(0xc6, 0x8f, 0x96, '500 xgc'), + RgbInt8Color.rgbName(0xc3, 0x8d, 0x96, '694 u'), + RgbInt8Color.rgbName(0xc6, 0x8d, 0x96, '694 xgc'), + RgbInt8Color.rgbName(0xc0, 0x93, 0x94, 'p 64-11 c'), + RgbInt8Color.rgbName(0xbd, 0x90, 0x9a, 'p 74-9 u'), + RgbInt8Color.rgbName(0xc1, 0x8f, 0xa4, '680 up'), + RgbInt8Color.rgbName(0xbe, 0x96, 0xa3, 'p 74-9 c'), + RgbInt8Color.rgbName(0xbf, 0x8d, 0xa5, 'p 77-4 c'), + RgbInt8Color.rgbName(0xc2, 0x91, 0xab, '687 xgc'), + RgbInt8Color.rgbName(0xc1, 0x8e, 0xab, 'p 81-9 c'), + RgbInt8Color.rgbName(0xc5, 0x8f, 0xb5, '514 up'), + RgbInt8Color.rgbName(0xc5, 0x8f, 0xb4, 'p 83-4 u'), + RgbInt8Color.rgbName(0xbd, 0x99, 0xb6, 'p 84-10 c'), + RgbInt8Color.rgbName(0xbd, 0x9a, 0xc0, '2453 cp'), + RgbInt8Color.rgbName(0xc5, 0x8e, 0xbb, '514 xgc'), + RgbInt8Color.rgbName(0xc2, 0x93, 0xb8, 'p 83-12 c'), + RgbInt8Color.rgbName(0xc8, 0x8e, 0xba, 'p 83-4 c'), + RgbInt8Color.rgbName(0xc0, 0x9c, 0xc6, '7439 u'), + RgbInt8Color.rgbName(0xca, 0xa2, 0xdd, '529 c'), + RgbInt8Color.rgbName(0xcb, 0xa3, 0xd8, '2563 c'), + RgbInt8Color.rgbName(0xcd, 0xa2, 0xd9, '2563 u'), + RgbInt8Color.rgbName(0xc6, 0xa1, 0xcf, '257 c'), + RgbInt8Color.rgbName(0xc0, 0xa2, 0xca, '529 cp'), + RgbInt8Color.rgbName(0xce, 0xa5, 0xe1, '529 u'), + RgbInt8Color.rgbName(0xd1, 0x96, 0x15, 'p 14-16 c'), + RgbInt8Color.rgbName(0xd2, 0x9f, 0x13, '7555 c'), + RgbInt8Color.rgbName(0xcc, 0x9b, 0x22, '1245 xgc'), + RgbInt8Color.rgbName(0xd0, 0x94, 0x1f, '131 cp'), + RgbInt8Color.rgbName(0xce, 0x97, 0x3d, '7550 u'), + RgbInt8Color.rgbName(0xc7, 0x95, 0x47, 'p 10-16 u'), + RgbInt8Color.rgbName(0xbe, 0x9a, 0x54, '7562 cp'), + RgbInt8Color.rgbName(0xc2, 0x98, 0x56, 'p 15-6 u'), + RgbInt8Color.rgbName(0xc3, 0x94, 0x56, 'p 18-6 u'), + RgbInt8Color.rgbName(0xbf, 0x9b, 0x5f, '465 xgc'), + RgbInt8Color.rgbName(0xbd, 0x9b, 0x60, '7562 c'), + RgbInt8Color.rgbName(0xbf, 0x9a, 0x62, 'p 18-12 u'), + RgbInt8Color.rgbName(0xbe, 0x99, 0x61, 'p 19-4 c'), + RgbInt8Color.rgbName(0xc3, 0x93, 0x67, '2313 c'), + RgbInt8Color.rgbName(0xc2, 0x96, 0x69, '2313 cp'), + RgbInt8Color.rgbName(0xbe, 0x95, 0x68, '2313 xgc'), + RgbInt8Color.rgbName(0xc3, 0x93, 0x65, '7510 up'), + RgbInt8Color.rgbName(0xc4, 0x97, 0x64, 'p 21-11 u'), + RgbInt8Color.rgbName(0xbc, 0x94, 0x6c, 'p 29-4 c'), + RgbInt8Color.rgbName(0xbe, 0x96, 0x71, '2313 up'), + RgbInt8Color.rgbName(0xbf, 0x94, 0x74, '4655 c'), + RgbInt8Color.rgbName(0xbd, 0x95, 0x75, '4655 xgc'), + RgbInt8Color.rgbName(0xc1, 0x95, 0x6f, '722 up'), + RgbInt8Color.rgbName(0xc1, 0x92, 0x6f, 'p 28-12 u'), + RgbInt8Color.rgbName(0xbb, 0x9a, 0x76, 'p 29-10 c'), + RgbInt8Color.rgbName(0xbe, 0x95, 0x76, 'p 32-3 u'), + RgbInt8Color.rgbName(0xc1, 0x93, 0x6f, 'p 36-3 c'), + RgbInt8Color.rgbName(0xbc, 0x95, 0x75, 'p 36-9 c'), + RgbInt8Color.rgbName(0xbe, 0x94, 0x73, 'p 50-11 c'), + RgbInt8Color.rgbName(0xc1, 0x96, 0x76, '2313 u'), + RgbInt8Color.rgbName(0xbd, 0x9a, 0x7a, '2316 c'), + RgbInt8Color.rgbName(0xba, 0x9c, 0x7e, '2316 up'), + RgbInt8Color.rgbName(0xba, 0x9a, 0x7b, '2316 xgc'), + RgbInt8Color.rgbName(0xc0, 0x95, 0x79, '4655 cp'), + RgbInt8Color.rgbName(0xbb, 0x98, 0x7a, 'p 32-9 u'), + RgbInt8Color.rgbName(0xc1, 0x99, 0x78, 'p 36-2 u'), + RgbInt8Color.rgbName(0xc3, 0x98, 0x79, 'p 39-2 c'), + RgbInt8Color.rgbName(0xbc, 0x9b, 0x7f, '2467 u'), + RgbInt8Color.rgbName(0xc0, 0x9c, 0x83, '7521 c'), + RgbInt8Color.rgbName(0xbd, 0x9a, 0x82, 'p 39-11 u'), + RgbInt8Color.rgbName(0xbf, 0x9a, 0x7f, 'p 42-11 c'), + RgbInt8Color.rgbName(0xbb, 0x9c, 0x86, 'p 43-3 c'), + RgbInt8Color.rgbName(0xbd, 0x99, 0x87, 'p 43-3 u'), + RgbInt8Color.rgbName(0xc3, 0x95, 0x80, 'p 47-2 u'), + RgbInt8Color.rgbName(0xc2, 0x98, 0x82, 'p 54-10 u'), + RgbInt8Color.rgbName(0xbd, 0x98, 0x91, '2440 cp'), + RgbInt8Color.rgbName(0xbd, 0x9b, 0x90, '2440 up'), + RgbInt8Color.rgbName(0xba, 0x9f, 0x8f, 'p 33-4 c'), + RgbInt8Color.rgbName(0xc0, 0x95, 0x92, 'p 64-11 u'), + RgbInt8Color.rgbName(0xbd, 0xa1, 0x95, '4735 u'), + RgbInt8Color.rgbName(0xbd, 0xa3, 0x96, '4735 up'), + RgbInt8Color.rgbName(0xc2, 0x97, 0x9a, 'p 66-11 c'), + RgbInt8Color.rgbName(0xbc, 0x9a, 0x98, 'p 67-2 u'), + RgbInt8Color.rgbName(0xbb, 0x9b, 0x9c, 'p 67-3 c'), + RgbInt8Color.rgbName(0xc8, 0x96, 0x9f, 'p 72-11 u'), + RgbInt8Color.rgbName(0xc0, 0x94, 0xa5, 'p 77-11 u'), + RgbInt8Color.rgbName(0xbd, 0x9d, 0xa4, 'p 78-3 c'), + RgbInt8Color.rgbName(0xc5, 0x97, 0xa9, '687 up'), + RgbInt8Color.rgbName(0xc2, 0x9c, 0xae, 'p 77-11 c'), + RgbInt8Color.rgbName(0xc9, 0x96, 0xb6, '680 c'), + RgbInt8Color.rgbName(0xc0, 0x9f, 0xb2, 'p 82-11 c'), + RgbInt8Color.rgbName(0xbe, 0x9c, 0xb5, 'p 84-1 u'), + RgbInt8Color.rgbName(0xbd, 0xa5, 0xc7, '2567 up'), + RgbInt8Color.rgbName(0xbd, 0xa2, 0xc4, '522 up'), + RgbInt8Color.rgbName(0xcb, 0xb4, 0xe2, '2071 u'), + RgbInt8Color.rgbName(0xcc, 0x9f, 0x26, '110 u'), + RgbInt8Color.rgbName(0xcd, 0xa3, 0x1f, '117 cp'), + RgbInt8Color.rgbName(0xc9, 0xa0, 0x45, 'p 7-16 u'), + RgbInt8Color.rgbName(0xcb, 0xa0, 0x52, '7407 c'), + RgbInt8Color.rgbName(0xc0, 0xa1, 0x66, '7562 xgc'), + RgbInt8Color.rgbName(0xc2, 0x9f, 0x5d, 'p 15-13 c'), + RgbInt8Color.rgbName(0xbf, 0xa7, 0x5f, 'p 9-5 c'), + RgbInt8Color.rgbName(0xc0, 0xa3, 0x66, 'p 11-12 u'), + RgbInt8Color.rgbName(0xc3, 0xa0, 0x67, 'p 15-12 u'), + RgbInt8Color.rgbName(0xbc, 0xa3, 0x74, 'p 16-12 c'), + RgbInt8Color.rgbName(0xc1, 0xa5, 0x71, 'p 16-4 c'), + RgbInt8Color.rgbName(0xbe, 0xa2, 0x77, 'p 19-11 u'), + RgbInt8Color.rgbName(0xc2, 0xa3, 0x70, 'p 19-2 u'), + RgbInt8Color.rgbName(0xc3, 0xa2, 0x6d, 'p 19-3 c'), + RgbInt8Color.rgbName(0xc1, 0xa0, 0x75, 'p 22-11 c'), + RgbInt8Color.rgbName(0xc4, 0x9e, 0x6e, 'p 22-4 c'), + RgbInt8Color.rgbName(0xbc, 0x9c, 0x7d, '2316 cp'), + RgbInt8Color.rgbName(0xbb, 0xa1, 0x85, 'p 23-5 c'), + RgbInt8Color.rgbName(0xbb, 0xa3, 0x81, 'p 23-5 u'), + RgbInt8Color.rgbName(0xc3, 0xa1, 0x76, 'p 26-3 c'), + RgbInt8Color.rgbName(0xc2, 0x9d, 0x7a, 'p 29-3 u'), + RgbInt8Color.rgbName(0xc5, 0x9e, 0x78, 'p 32-3 c'), + RgbInt8Color.rgbName(0xc2, 0xa0, 0x7e, 'p 32-9 c'), + RgbInt8Color.rgbName(0xc6, 0x9d, 0x78, 'p 38-11 c'), + RgbInt8Color.rgbName(0xbf, 0xa0, 0x86, '2316 u'), + RgbInt8Color.rgbName(0xc1, 0xa1, 0x81, '2467 up'), + RgbInt8Color.rgbName(0xc1, 0x9d, 0x81, '729 up'), + RgbInt8Color.rgbName(0xbe, 0x9e, 0x81, 'p 29-9 u'), + RgbInt8Color.rgbName(0xc3, 0x9f, 0x84, 'p 39-11 c'), + RgbInt8Color.rgbName(0xc0, 0xa3, 0x92, '4735 c'), + RgbInt8Color.rgbName(0xc4, 0xa1, 0x95, '7521 u'), + RgbInt8Color.rgbName(0xbb, 0xa5, 0x95, 'p 44-1 c'), + RgbInt8Color.rgbName(0xbf, 0xa5, 0x98, 'p 51-4 u'), + RgbInt8Color.rgbName(0xc1, 0xa2, 0x9f, 'p 78-2 u'), + RgbInt8Color.rgbName(0xbf, 0xa5, 0x9f, 'p 79-1 u'), + RgbInt8Color.rgbName(0xbd, 0xa2, 0xa6, 'p 79-2 c'), + RgbInt8Color.rgbName(0xb6, 0xad, 0xa5, 'warm gray 4 c'), + RgbInt8Color.rgbName(0xbd, 0xa6, 0xae, '5225 up'), + RgbInt8Color.rgbName(0xc8, 0x9f, 0xb6, '2052 c'), + RgbInt8Color.rgbName(0xc7, 0xa1, 0xb2, '2052 cp'), + RgbInt8Color.rgbName(0xbf, 0xa5, 0xb8, '5155 c'), + RgbInt8Color.rgbName(0xbc, 0xa4, 0xb6, 'p 85-2 u'), + RgbInt8Color.rgbName(0xb9, 0xa6, 0xb9, 'p 90-2 u'), + RgbInt8Color.rgbName(0xbd, 0xa6, 0xc2, '2078 u'), + RgbInt8Color.rgbName(0xc2, 0x9e, 0xc0, '7439 up'), + RgbInt8Color.rgbName(0xc3, 0x9e, 0xbc, 'p 84-1 c'), + RgbInt8Color.rgbName(0xc2, 0xa2, 0xc3, 'p 88-3 u'), + RgbInt8Color.rgbName(0xbf, 0xa6, 0xc1, 'p 89-2 c'), + RgbInt8Color.rgbName(0xbf, 0xa5, 0xc5, '2078 up'), + RgbInt8Color.rgbName(0xc3, 0xa2, 0xca, '257 xgc'), + RgbInt8Color.rgbName(0xc0, 0xb5, 0xd5, '2635 cp'), + RgbInt8Color.rgbName(0xc9, 0xb7, 0xe8, '2635 u'), + RgbInt8Color.rgbName(0xc1, 0xb6, 0xd5, '2635 up'), + RgbInt8Color.rgbName(0xbc, 0xb7, 0xd4, '7444 up'), + RgbInt8Color.rgbName(0xbc, 0xb8, 0xd5, 'p 102-1 u'), + RgbInt8Color.rgbName(0xd1, 0xb6, 0xe4, '9344 c'), + RgbInt8Color.rgbName(0xcf, 0xb0, 0x23, '7752 c'), + RgbInt8Color.rgbName(0xce, 0xb8, 0x29, '606 u'), + RgbInt8Color.rgbName(0xcb, 0xb4, 0x31, 'p 5-7 c'), + RgbInt8Color.rgbName(0xcb, 0xac, 0x32, 'p 8-7 c'), + RgbInt8Color.rgbName(0xc4, 0xab, 0x56, 'p 8-14 c'), + RgbInt8Color.rgbName(0xc2, 0xac, 0x58, 'p 5-6 u'), + RgbInt8Color.rgbName(0xc6, 0xaa, 0x5d, '7753 u'), + RgbInt8Color.rgbName(0xc6, 0xac, 0x5c, '7753 up'), + RgbInt8Color.rgbName(0xc0, 0xb0, 0x60, 'p 6-5 c'), + RgbInt8Color.rgbName(0xc6, 0xac, 0x69, 'p 12-4 c'), + RgbInt8Color.rgbName(0xc2, 0xaf, 0x6a, 'p 5-11 u'), + RgbInt8Color.rgbName(0xbe, 0xaf, 0x71, 'p 6-3 u'), + RgbInt8Color.rgbName(0xc6, 0xaa, 0x76, '466 c'), + RgbInt8Color.rgbName(0xc3, 0xab, 0x7e, 'p 16-11 u'), + RgbInt8Color.rgbName(0xc5, 0xa8, 0x76, 'p 16-3 u'), + RgbInt8Color.rgbName(0xbe, 0xad, 0x7b, 'p 9-11 u'), + RgbInt8Color.rgbName(0xc1, 0xa6, 0x7f, '466 u'), + RgbInt8Color.rgbName(0xc5, 0xaa, 0x85, '466 up'), + RgbInt8Color.rgbName(0xc5, 0xaa, 0x80, '7562 up'), + RgbInt8Color.rgbName(0xc2, 0xae, 0x7f, 'p 12-10 u'), + RgbInt8Color.rgbName(0xc0, 0xa9, 0x87, 'p 23-4 u'), + RgbInt8Color.rgbName(0xbd, 0xae, 0x8e, 'p 13-4 u'), + RgbInt8Color.rgbName(0xc1, 0xa9, 0x8e, 'p 23-4 c'), + RgbInt8Color.rgbName(0xb7, 0xb0, 0x9c, '7535 c'), + RgbInt8Color.rgbName(0xb7, 0xae, 0x9a, 'p 169-5 u'), + RgbInt8Color.rgbName(0xc1, 0xa8, 0x94, 'p 33-3 u'), + RgbInt8Color.rgbName(0xc2, 0xa8, 0x94, 'p 43-2 c'), + RgbInt8Color.rgbName(0xb7, 0xb0, 0xa4, '401 up'), + RgbInt8Color.rgbName(0xbe, 0xb0, 0xa0, '7529 up'), + RgbInt8Color.rgbName(0xbd, 0xaf, 0xa0, 'p 170-1 u'), + RgbInt8Color.rgbName(0xba, 0xac, 0xa6, 'p 171-2 u'), + RgbInt8Color.rgbName(0xc1, 0xa9, 0xa1, 'p 51-4 c'), + RgbInt8Color.rgbName(0xbb, 0xaf, 0xa9, '7529 u'), + RgbInt8Color.rgbName(0xbd, 0xaa, 0xb0, 'p 86-4 c'), + RgbInt8Color.rgbName(0xba, 0xb2, 0xa8, 'warm gray 4 up'), + RgbInt8Color.rgbName(0xc5, 0xad, 0xbd, '5155 xgc'), + RgbInt8Color.rgbName(0xc2, 0xac, 0xb9, '5225 u'), + RgbInt8Color.rgbName(0xc2, 0xa8, 0xbd, 'p 84-9 u'), + RgbInt8Color.rgbName(0xc1, 0xad, 0xc0, 'p 85-2 c'), + RgbInt8Color.rgbName(0xbe, 0xb3, 0xbd, 'p 87-1 c'), + RgbInt8Color.rgbName(0xc3, 0xa9, 0xc3, 'p 88-10 u'), + RgbInt8Color.rgbName(0xc3, 0xa8, 0xcb, '2563 cp'), + RgbInt8Color.rgbName(0xc4, 0xa7, 0xc7, '2563 up'), + RgbInt8Color.rgbName(0xc0, 0xaf, 0xc4, 'p 90-2 c'), + RgbInt8Color.rgbName(0xc6, 0xaa, 0xcd, '2563 xgc'), + RgbInt8Color.rgbName(0xc5, 0xa9, 0xcf, '529 xgc'), + RgbInt8Color.rgbName(0xd1, 0xc4, 0xe1, '9362 u'), + RgbInt8Color.rgbName(0xc9, 0xc7, 0xdd, 'p 99-10 c'), + RgbInt8Color.rgbName(0xd1, 0xbc, 0x36, 'p 1-16 u'), + RgbInt8Color.rgbName(0xca, 0xb6, 0x4b, '7751 c'), + RgbInt8Color.rgbName(0xcf, 0xb3, 0x44, 'p 4-16 u'), + RgbInt8Color.rgbName(0xc2, 0xb6, 0x67, 'p 2-13 u'), + RgbInt8Color.rgbName(0xc3, 0xb8, 0x6d, 'p 3-5 c'), + RgbInt8Color.rgbName(0xc6, 0xb5, 0x75, 'p 5-10 u'), + RgbInt8Color.rgbName(0xc4, 0xb5, 0x70, 'p 6-4 c'), + RgbInt8Color.rgbName(0xc7, 0xb0, 0x6f, 'p 8-13 u'), + RgbInt8Color.rgbName(0xc6, 0xaf, 0x75, 'p 12-11 c'), + RgbInt8Color.rgbName(0xc5, 0xb7, 0x83, '4525 c'), + RgbInt8Color.rgbName(0xc5, 0xb7, 0x84, '4525 cp'), + RgbInt8Color.rgbName(0xc0, 0xbb, 0x87, '5855 c'), + RgbInt8Color.rgbName(0xbd, 0xb8, 0x89, '5855 u'), + RgbInt8Color.rgbName(0xbf, 0xbc, 0x87, 'p 168-1 u'), + RgbInt8Color.rgbName(0xc8, 0xb7, 0x80, 'p 9-11 c'), + RgbInt8Color.rgbName(0xbf, 0xba, 0x9b, '2323 cp'), + RgbInt8Color.rgbName(0xbe, 0xb8, 0x9d, '2323 xgc'), + RgbInt8Color.rgbName(0xbf, 0xbb, 0x98, '453 c'), + RgbInt8Color.rgbName(0xbc, 0xb9, 0x99, '453 u'), + RgbInt8Color.rgbName(0xc0, 0xbc, 0x97, '453 up'), + RgbInt8Color.rgbName(0xc3, 0xb5, 0x96, 'p 13-4 c'), + RgbInt8Color.rgbName(0xba, 0xb2, 0x9d, 'p 178-2 u'), + RgbInt8Color.rgbName(0xbd, 0xb0, 0xa5, '2474 up'), + RgbInt8Color.rgbName(0xbf, 0xb1, 0x9f, '7529 cp'), + RgbInt8Color.rgbName(0xbe, 0xb7, 0xa0, '7535 cp'), + RgbInt8Color.rgbName(0xbe, 0xb5, 0xa4, 'p 170-1 c'), + RgbInt8Color.rgbName(0xbb, 0xb8, 0xa4, 'p 178-2 c'), + RgbInt8Color.rgbName(0xbe, 0xb3, 0xad, 'p 171-2 c'), + RgbInt8Color.rgbName(0xbc, 0xb4, 0xac, 'warm gray 3 cp'), + RgbInt8Color.rgbName(0xbe, 0xb6, 0xaf, 'warm gray 3 u'), + RgbInt8Color.rgbName(0xbe, 0xb6, 0xab, 'warm gray 4 xgc'), + RgbInt8Color.rgbName(0xb9, 0xbb, 0xbb, '10103 c'), + RgbInt8Color.rgbName(0xc0, 0xb8, 0xb1, '406 up'), + RgbInt8Color.rgbName(0xba, 0xbb, 0xb1, '413 c'), + RgbInt8Color.rgbName(0xb8, 0xb9, 0xb7, '421 cp'), + RgbInt8Color.rgbName(0xc1, 0xb2, 0xb6, '435 c'), + RgbInt8Color.rgbName(0xbf, 0xb1, 0xaf, '435 up'), + RgbInt8Color.rgbName(0xbd, 0xb7, 0xb1, '9084 u'), + RgbInt8Color.rgbName(0xb9, 0xb9, 0xb7, 'cool gray 4 cp'), + RgbInt8Color.rgbName(0xb7, 0xb8, 0xb9, 'cool gray 4 u'), + RgbInt8Color.rgbName(0xc1, 0xb9, 0xb3, 'p 172-2 u'), + RgbInt8Color.rgbName(0xbb, 0xbc, 0xb5, 'p 175-2 u'), + RgbInt8Color.rgbName(0xbb, 0xba, 0xb8, 'p 179-4 u'), + RgbInt8Color.rgbName(0xc1, 0xb1, 0xb7, 'p 86-3 u'), + RgbInt8Color.rgbName(0xc3, 0xb7, 0xbc, '2473 c'), + RgbInt8Color.rgbName(0xc1, 0xb7, 0xbb, '435 cp'), + RgbInt8Color.rgbName(0xc6, 0xb4, 0xc9, 'p 89-9 c'), + RgbInt8Color.rgbName(0xc0, 0xb2, 0xc6, 'p 92-10 c'), + RgbInt8Color.rgbName(0xc0, 0xb1, 0xcc, 'p 93-10 c'), + RgbInt8Color.rgbName(0xc4, 0xb5, 0xcc, 'p 94-1 u'), + RgbInt8Color.rgbName(0xbf, 0xb7, 0xc8, 'p 95-9 u'), + RgbInt8Color.rgbName(0xc1, 0xb5, 0xcf, 'p 96-9 c'), + RgbInt8Color.rgbName(0xbf, 0xb2, 0xcc, 'p 96-9 u'), + RgbInt8Color.rgbName(0xc4, 0xb1, 0xcf, '2071 cp'), + RgbInt8Color.rgbName(0xbf, 0xb9, 0xcf, 'p 100-2 u'), + RgbInt8Color.rgbName(0xba, 0xc2, 0xd4, 'p 108-1 c'), + RgbInt8Color.rgbName(0xc6, 0xb3, 0xd0, 'p 91-2 u'), + RgbInt8Color.rgbName(0xc5, 0xb6, 0xd3, 'p 93-2 u'), + RgbInt8Color.rgbName(0xbd, 0xc5, 0xdb, '7450 c'), + RgbInt8Color.rgbName(0xbd, 0xc4, 0xdb, 'p 104-10 c'), + RgbInt8Color.rgbName(0xca, 0xbd, 0x52, 'p 2-14 c'), + RgbInt8Color.rgbName(0xce, 0xbb, 0x52, '7751 xgc'), + RgbInt8Color.rgbName(0xd0, 0xbc, 0x5a, '7751 cp'), + RgbInt8Color.rgbName(0xcd, 0xbf, 0x5c, '7759 up'), + RgbInt8Color.rgbName(0xc9, 0xbe, 0x62, '7765 up'), + RgbInt8Color.rgbName(0xcc, 0xbd, 0x5f, 'p 2-6 u'), + RgbInt8Color.rgbName(0xc9, 0xb8, 0x60, 'p 5-12 c'), + RgbInt8Color.rgbName(0xce, 0xb9, 0x64, '458 u'), + RgbInt8Color.rgbName(0xcd, 0xc2, 0x6c, '617 cp'), + RgbInt8Color.rgbName(0xd0, 0xbf, 0x6f, 'p 5-11 c'), + RgbInt8Color.rgbName(0xc9, 0xbe, 0x78, 'p 2-12 u'), + RgbInt8Color.rgbName(0xc9, 0xbd, 0x83, '616 up'), + RgbInt8Color.rgbName(0xc8, 0xc0, 0x82, 'p 3-12 c'), + RgbInt8Color.rgbName(0xca, 0xbe, 0x85, 'p 6-10 c'), + RgbInt8Color.rgbName(0xca, 0xbc, 0x80, 'p 6-2 u'), + RgbInt8Color.rgbName(0xbd, 0xc2, 0x93, '5787 cp'), + RgbInt8Color.rgbName(0xc1, 0xc1, 0x95, '5787 up'), + RgbInt8Color.rgbName(0xc4, 0xc1, 0x8e, '5855 cp'), + RgbInt8Color.rgbName(0xc3, 0xc5, 0x8d, 'p 164-11 c'), + RgbInt8Color.rgbName(0xc2, 0xc0, 0x90, 'p 168-11 c'), + RgbInt8Color.rgbName(0xca, 0xbe, 0x96, '4535 u'), + RgbInt8Color.rgbName(0xc0, 0xc4, 0x98, 'p 162-9 u'), + RgbInt8Color.rgbName(0xc3, 0xc1, 0x9e, '453 xgc'), + RgbInt8Color.rgbName(0xc7, 0xc0, 0xaa, '2323 u'), + RgbInt8Color.rgbName(0xbf, 0xbd, 0xb0, 'p 169-4 c'), + RgbInt8Color.rgbName(0xc4, 0xbd, 0xac, 'p 178-1 u'), + RgbInt8Color.rgbName(0xc4, 0xbf, 0xb6, '400 c'), + RgbInt8Color.rgbName(0xc4, 0xbd, 0xb5, '406 xgc'), + RgbInt8Color.rgbName(0xba, 0xc5, 0xb9, '5665 c'), + RgbInt8Color.rgbName(0xbe, 0xbe, 0xba, 'cool gray 4 up'), + RgbInt8Color.rgbName(0xb9, 0xc2, 0xc1, '441 u'), + RgbInt8Color.rgbName(0xbe, 0xbe, 0xbd, 'cool gray 4 xgc'), + RgbInt8Color.rgbName(0xbe, 0xbf, 0xbc, 'p 175-2 c'), + RgbInt8Color.rgbName(0xbf, 0xbf, 0xc0, 'p 179-4 c'), + RgbInt8Color.rgbName(0xc1, 0xc6, 0xc8, '428 c'), + RgbInt8Color.rgbName(0xc1, 0xbd, 0xce, 'p 101-1 u'), + RgbInt8Color.rgbName(0xc2, 0xc2, 0xd2, '5305 cp'), + RgbInt8Color.rgbName(0xc5, 0xc2, 0xd2, '5305 u'), + RgbInt8Color.rgbName(0xbb, 0xc7, 0xd6, '537 c'), + RgbInt8Color.rgbName(0xb9, 0xc6, 0xd7, '537 xgc'), + RgbInt8Color.rgbName(0xc6, 0xbd, 0xd2, '665 xgc'), + RgbInt8Color.rgbName(0xbf, 0xc3, 0xd6, 'p 105-9 u'), + RgbInt8Color.rgbName(0xc8, 0xbe, 0xd3, 'p 94-1 c'), + RgbInt8Color.rgbName(0xc0, 0xcb, 0xe3, '7450 cp'), + RgbInt8Color.rgbName(0xce, 0xc8, 0x56, 'p 166-14 u'), + RgbInt8Color.rgbName(0xd2, 0xcd, 0x65, 'p 166-13 u'), + RgbInt8Color.rgbName(0xc9, 0xc5, 0x74, 'p 167-4 c'), + RgbInt8Color.rgbName(0xca, 0xc4, 0x72, 'p 167-4 u'), + RgbInt8Color.rgbName(0xce, 0xc8, 0x83, '616 xgc'), + RgbInt8Color.rgbName(0xc3, 0xc4, 0x87, 'p 164-11 u'), + RgbInt8Color.rgbName(0xc7, 0xc4, 0x86, 'p 167-10 c'), + RgbInt8Color.rgbName(0xca, 0xc6, 0x82, 'p 167-10 u'), + RgbInt8Color.rgbName(0xc2, 0xca, 0x95, '7493 cp'), + RgbInt8Color.rgbName(0xc4, 0xca, 0x91, 'p 161-10 u'), + RgbInt8Color.rgbName(0xc6, 0xc8, 0x9b, '5797 c'), + RgbInt8Color.rgbName(0xc5, 0xc7, 0x9a, '5797 cp'), + RgbInt8Color.rgbName(0xc1, 0xc9, 0x9c, '7493 up'), + RgbInt8Color.rgbName(0xc2, 0xca, 0x97, 'p 158-11 c'), + RgbInt8Color.rgbName(0xc0, 0xc6, 0x9b, 'p 162-3 c'), + RgbInt8Color.rgbName(0xc2, 0xc4, 0x9b, 'p 165-1 c'), + RgbInt8Color.rgbName(0xc7, 0xc7, 0x94, 'p 165-1 u'), + RgbInt8Color.rgbName(0xc0, 0xc7, 0xa4, '5803 xgc'), + RgbInt8Color.rgbName(0xc3, 0xcb, 0xa1, 'p 159-2 u'), + RgbInt8Color.rgbName(0xc2, 0xc8, 0xa1, 'p 162-9 c'), + RgbInt8Color.rgbName(0xc4, 0xc6, 0xa5, 'p 165-9 c'), + RgbInt8Color.rgbName(0xc7, 0xc8, 0x9d, 'p 165-9 u'), + RgbInt8Color.rgbName(0xbb, 0xc7, 0xb8, '5655 up'), + RgbInt8Color.rgbName(0xc5, 0xc8, 0xae, '5793 up'), + RgbInt8Color.rgbName(0xc3, 0xc6, 0xa8, '5803 c'), + RgbInt8Color.rgbName(0xbc, 0xcb, 0xb0, 'p 153-2 c'), + RgbInt8Color.rgbName(0xc2, 0xc5, 0xbf, '420 up'), + RgbInt8Color.rgbName(0xbe, 0xc6, 0xc4, '441 c'), + RgbInt8Color.rgbName(0xbd, 0xcc, 0xbf, '5585 cp'), + RgbInt8Color.rgbName(0xbd, 0xcd, 0xba, 'p 141-10 c'), + RgbInt8Color.rgbName(0xc2, 0xc7, 0xca, '427 u'), + RgbInt8Color.rgbName(0xc3, 0xc9, 0xc4, '427 up'), + RgbInt8Color.rgbName(0xbf, 0xcd, 0xc8, '441 cp'), + RgbInt8Color.rgbName(0xba, 0xce, 0xca, 'p 126-10 u'), + RgbInt8Color.rgbName(0xba, 0xcf, 0xc5, 'p 129-1 u'), + RgbInt8Color.rgbName(0xbd, 0xca, 0xda, '537 u'), + RgbInt8Color.rgbName(0xbb, 0xca, 0xd6, '5445 cp'), + RgbInt8Color.rgbName(0xbc, 0xcc, 0xd3, '5455 xgc'), + RgbInt8Color.rgbName(0xc0, 0xcb, 0xe0, '7450 xgc'), + RgbInt8Color.rgbName(0xc1, 0xd1, 0xe7, '2120 cp'), + RgbInt8Color.rgbName(0xc6, 0xcc, 0xe7, '9382 u'), + RgbInt8Color.rgbName(0xd1, 0xd0, 0x65, '584 up'), + RgbInt8Color.rgbName(0xcb, 0xd5, 0x71, 'p 160-6 c'), + RgbInt8Color.rgbName(0xcb, 0xce, 0x7e, 'p 163-13 c'), + RgbInt8Color.rgbName(0xcb, 0xd2, 0x89, 'p 160-12 c'), + RgbInt8Color.rgbName(0xd0, 0xd2, 0x80, 'p 163-12 u'), + RgbInt8Color.rgbName(0xcc, 0xd2, 0x96, 'p 161-3 u'), + RgbInt8Color.rgbName(0xc7, 0xd1, 0x9d, 'p 158-2 u'), + RgbInt8Color.rgbName(0xbe, 0xd0, 0xb1, 'p 152-10 u'), + RgbInt8Color.rgbName(0xc9, 0xd3, 0xa9, 'p 158-10 u'), + RgbInt8Color.rgbName(0xc7, 0xcf, 0xac, 'p 159-2 c'), + RgbInt8Color.rgbName(0xbf, 0xce, 0xc2, '5595 c'), + RgbInt8Color.rgbName(0xbe, 0xd2, 0xc2, '5595 xgc'), + RgbInt8Color.rgbName(0xbf, 0xd6, 0xc3, 'p 133-10 u'), + RgbInt8Color.rgbName(0xc1, 0xd2, 0xc7, '5595 u'), + RgbInt8Color.rgbName(0xbc, 0xd3, 0xcc, 'p 129-1 c'), + RgbInt8Color.rgbName(0xc0, 0xd5, 0xc4, 'p 137-9 u'), + RgbInt8Color.rgbName(0xbf, 0xce, 0xd6, '5455 c'), + RgbInt8Color.rgbName(0xbc, 0xd5, 0xd6, '5523 u'), + RgbInt8Color.rgbName(0xbc, 0xd6, 0xd6, 'p 122-2 c'), + RgbInt8Color.rgbName(0xc1, 0xcf, 0xdd, '537 cp'), + RgbInt8Color.rgbName(0xbc, 0xd5, 0xe0, '545 up'), + RgbInt8Color.rgbName(0xbf, 0xd5, 0xdd, '552 cp'), + RgbInt8Color.rgbName(0xbe, 0xd0, 0xe1, '643 up'), + RgbInt8Color.rgbName(0xc0, 0xd1, 0xda, '9423 c'), + RgbInt8Color.rgbName(0xc1, 0xd4, 0xdf, 'p 117-9 c'), + RgbInt8Color.rgbName(0xc6, 0xd3, 0xe9, '2706 cp'), + RgbInt8Color.rgbName(0xc3, 0xd2, 0xe7, '657 xgc'), + RgbInt8Color.rgbName(0xc8, 0xd1, 0xe6, 'p 106-2 u'), + RgbInt8Color.rgbName(0xcc, 0xd4, 0xf1, '2706 u'), + RgbInt8Color.rgbName(0xc6, 0xd8, 0xec, '2707 cp'), + RgbInt8Color.rgbName(0xc6, 0xd6, 0xeb, '657 cp'), + RgbInt8Color.rgbName(0xc9, 0xd2, 0xe9, '9381 u'), + RgbInt8Color.rgbName(0xc6, 0xd7, 0xeb, 'p 109-2 u'), + RgbInt8Color.rgbName(0xef, 0xdf, 0x0, '3955 c'), + RgbInt8Color.rgbName(0xee, 0xdc, 0x0, '3965 c'), + RgbInt8Color.rgbName(0xec, 0xdf, 0x0, '3965 cp'), + RgbInt8Color.rgbName(0xea, 0xda, 0x24, '604 c'), + RgbInt8Color.rgbName(0xe8, 0xdf, 0x2f, '395 cp'), + RgbInt8Color.rgbName(0xd0, 0xdc, 0x7f, 'p 160-5 u'), + RgbInt8Color.rgbName(0xca, 0xdb, 0x89, 'p 157-4 u'), + RgbInt8Color.rgbName(0xcb, 0xd9, 0x8e, '2288 cp'), + RgbInt8Color.rgbName(0xcb, 0xd9, 0x8a, '2289 cp'), + RgbInt8Color.rgbName(0xca, 0xd9, 0x92, '2289 up'), + RgbInt8Color.rgbName(0xd1, 0xdd, 0x8d, '373 cp'), + RgbInt8Color.rgbName(0xca, 0xdc, 0x9d, '365 cp'), + RgbInt8Color.rgbName(0xcc, 0xd7, 0x94, 'p 157-10 u'), + RgbInt8Color.rgbName(0xcd, 0xdb, 0x96, 'p 157-4 c'), + RgbInt8Color.rgbName(0xca, 0xdb, 0xa5, '2275 up'), + RgbInt8Color.rgbName(0xc9, 0xdb, 0xa7, '580 xgc'), + RgbInt8Color.rgbName(0xcc, 0xdd, 0xaf, '2282 cp'), + RgbInt8Color.rgbName(0xcd, 0xde, 0xad, '580 cp'), + RgbInt8Color.rgbName(0xc9, 0xdc, 0xac, '580 u'), + RgbInt8Color.rgbName(0xcb, 0xda, 0xaf, '580 up'), + RgbInt8Color.rgbName(0xc9, 0xdd, 0xb7, 'p 148-1 c'), + RgbInt8Color.rgbName(0xce, 0xde, 0xb4, 'p 154-3 c'), + RgbInt8Color.rgbName(0xc7, 0xd7, 0xc9, '9543 c'), + RgbInt8Color.rgbName(0xbe, 0xd9, 0xcd, 'p 127-9 u'), + RgbInt8Color.rgbName(0xc2, 0xd9, 0xcd, 'p 133-10 c'), + RgbInt8Color.rgbName(0xca, 0xdb, 0xc7, 'p 143-9 u'), + RgbInt8Color.rgbName(0xc1, 0xdb, 0xd9, 'p 121-9 u'), + RgbInt8Color.rgbName(0xbc, 0xd9, 0xd8, 'p 124-10 c'), + RgbInt8Color.rgbName(0xc3, 0xda, 0xd5, 'p 125-1 u'), + RgbInt8Color.rgbName(0xc3, 0xda, 0xdb, '5523 cp'), + RgbInt8Color.rgbName(0xc1, 0xdb, 0xdd, 'p 121-9 c'), + RgbInt8Color.rgbName(0xc3, 0xda, 0xda, 'p 125-1 c'), + RgbInt8Color.rgbName(0xc6, 0xda, 0xe7, '545 c'), + RgbInt8Color.rgbName(0xc6, 0xdb, 0xe9, '643 xgc'), + RgbInt8Color.rgbName(0xc4, 0xd7, 0xe7, 'p 112-9 c'), + RgbInt8Color.rgbName(0xc7, 0xdb, 0xe4, 'p 117-1 u'), + RgbInt8Color.rgbName(0xc9, 0xdf, 0xee, '545 cp'), + RgbInt8Color.rgbName(0xc8, 0xd8, 0xeb, '657 c'), + RgbInt8Color.rgbName(0xcd, 0xdc, 0xee, '657 up'), + RgbInt8Color.rgbName(0xcb, 0xdd, 0xf3, '9401 u'), + RgbInt8Color.rgbName(0xc9, 0xe3, 0xef, 'p 115-10 u'), + RgbInt8Color.rgbName(0xee, 0xe2, 0x0, '3965 xgc'), + RgbInt8Color.rgbName(0xec, 0xe8, 0x1a, '395 c'), + RgbInt8Color.rgbName(0xef, 0xe3, 0x2a, '604 cp'), + RgbInt8Color.rgbName(0xed, 0xe9, 0x39, '394 c'), + RgbInt8Color.rgbName(0xed, 0xde, 0x34, '604 xgc'), + RgbInt8Color.rgbName(0xed, 0xec, 0x3f, '395 u'), + RgbInt8Color.rgbName(0xe1, 0xde, 0x50, '387 cp'), + RgbInt8Color.rgbName(0xcf, 0xde, 0x9a, '372 up'), + RgbInt8Color.rgbName(0xd2, 0xde, 0xa0, '2282 up'), + RgbInt8Color.rgbName(0xce, 0xdf, 0xb1, '2274 xgc'), + RgbInt8Color.rgbName(0xca, 0xe0, 0xb9, 'p 145-1 u'), + RgbInt8Color.rgbName(0xce, 0xe2, 0xbc, 'p 151-2 u'), + RgbInt8Color.rgbName(0xcb, 0xe1, 0xcb, 'p 139-2 c'), + RgbInt8Color.rgbName(0xd0, 0xe6, 0xd2, 'p 133-2 u'), + RgbInt8Color.rgbName(0xcb, 0xe2, 0xd2, 'p 136-1 c'), + RgbInt8Color.rgbName(0xce, 0xe6, 0xe6, '7457 up'), + RgbInt8Color.rgbName(0xce, 0xe6, 0xe7, 'p 121-2 c'), + RgbInt8Color.rgbName(0xd1, 0xe1, 0xf0, 'p 112-1 u'), + RgbInt8Color.rgbName(0xcc, 0xe2, 0xee, 'p 115-10 c'), + RgbInt8Color.rgbName(0xce, 0xe7, 0xee, 'p 118-1 u'), + RgbInt8Color.rgbName(0xe2, 0xe8, 0x68, '379 c'), + RgbInt8Color.rgbName(0xd1, 0xd3, 0x8b, 'p 163-12 c'), + RgbInt8Color.rgbName(0xcf, 0xdc, 0xb1, '2274 c'), + RgbInt8Color.rgbName(0xc9, 0xdd, 0xc3, '2253 cp'), + RgbInt8Color.rgbName(0xcb, 0xde, 0xca, 'p 137-1 u'), + RgbInt8Color.rgbName(0xcc, 0xeb, 0xe0, '9521 u'), + RgbInt8Color.rgbName(0xd2, 0xed, 0xdc, '9541 u'), + RgbInt8Color.rgbName(0xea, 0xe0, 0x43, 'p 166-7 c'), + RgbInt8Color.rgbName(0xec, 0xf1, 0x66, '923 c'), + RgbInt8Color.rgbName(0xd4, 0xda, 0x70, '380 up'), + RgbInt8Color.rgbName(0xe9, 0xec, 0x6b, '386 c'), + RgbInt8Color.rgbName(0xdb, 0xde, 0x70, '585 c'), + RgbInt8Color.rgbName(0xd9, 0xdd, 0x70, '585 xgc'), + RgbInt8Color.rgbName(0xd9, 0xde, 0x6e, 'p 163-6 u'), + RgbInt8Color.rgbName(0xd3, 0xe2, 0x7f, '2295 xgc'), + RgbInt8Color.rgbName(0xe6, 0xf2, 0x8c, '2295 u'), + RgbInt8Color.rgbName(0xdb, 0xef, 0x99, '2281 u'), + RgbInt8Color.rgbName(0xd0, 0xde, 0xbb, '7485 c'), + RgbInt8Color.rgbName(0xd1, 0xe0, 0xbc, '7485 xgc'), + RgbInt8Color.rgbName(0xd1, 0xe1, 0xc1, 'p 145-1 c'), + RgbInt8Color.rgbName(0xcd, 0xde, 0xc4, 'p 152-2 u'), + RgbInt8Color.rgbName(0xd1, 0xdd, 0xc8, 'p 153-1 u'), + RgbInt8Color.rgbName(0xd0, 0xe0, 0xc9, '9562 u'), + RgbInt8Color.rgbName(0xcf, 0xdf, 0xd0, 'p 137-1 c'), + RgbInt8Color.rgbName(0xd2, 0xe4, 0xd0, 'p 139-9 u'), + RgbInt8Color.rgbName(0xd2, 0xdd, 0xd0, 'p 153-1 c'), + RgbInt8Color.rgbName(0xca, 0xe2, 0xd6, '573 cp'), + RgbInt8Color.rgbName(0xca, 0xdf, 0xd4, '621 u'), + RgbInt8Color.rgbName(0xca, 0xe0, 0xdd, '5523 up'), + RgbInt8Color.rgbName(0xc9, 0xe2, 0xe0, '9044 c'), + RgbInt8Color.rgbName(0xcc, 0xe3, 0xde, 'p 124-9 u'), + RgbInt8Color.rgbName(0xd2, 0xe7, 0xdc, 'p 130-1 u'), + RgbInt8Color.rgbName(0xd0, 0xe6, 0xe8, '7457 cp'), + RgbInt8Color.rgbName(0xcd, 0xe6, 0xe3, 'p 121-2 u'), + RgbInt8Color.rgbName(0xd1, 0xe2, 0xec, '9420 c'), + RgbInt8Color.rgbName(0xd0, 0xe1, 0xeb, '642 xgc'), + RgbInt8Color.rgbName(0xcd, 0xdd, 0xea, '650 xgc'), + RgbInt8Color.rgbName(0xce, 0xdf, 0xe9, '9421 c'), + RgbInt8Color.rgbName(0xd3, 0x16, 0x3b, 'p 57-8 c'), + RgbInt8Color.rgbName(0xda, 0x0, 0x45, '199 xgc'), + RgbInt8Color.rgbName(0xd6, 0x1d, 0x58, 'p 65-8 c'), + RgbInt8Color.rgbName(0xe0, 0x0, 0x4d, '1925 c'), + RgbInt8Color.rgbName(0xd9, 0x4d, 0x8f, 'p 75-7 c'), + RgbInt8Color.rgbName(0xd5, 0x1f, 0x47, 'p 55-8 c'), + RgbInt8Color.rgbName(0xd6, 0x1f, 0x50, 'p 59-8 c'), + RgbInt8Color.rgbName(0xd8, 0x24, 0x55, '206 cp'), + RgbInt8Color.rgbName(0xd6, 0x27, 0x66, 'p 68-8 c'), + RgbInt8Color.rgbName(0xdc, 0x43, 0x86, '2039 xgc'), + RgbInt8Color.rgbName(0xdc, 0x45, 0x88, '226 u'), + RgbInt8Color.rgbName(0xd6, 0x43, 0x88, '2450 c'), + RgbInt8Color.rgbName(0xd9, 0x3d, 0x85, '2450 cp'), + RgbInt8Color.rgbName(0xd6, 0x2e, 0x2f, 'p 48-8 c'), + RgbInt8Color.rgbName(0xda, 0x2a, 0x74, '213 xgc'), + RgbInt8Color.rgbName(0xd7, 0x35, 0x71, 'p 71-7 c'), + RgbInt8Color.rgbName(0xf1, 0x6a, 0xb7, '232 u'), + RgbInt8Color.rgbName(0xd9, 0x3d, 0x1f, '3516 cp'), + RgbInt8Color.rgbName(0xda, 0x3e, 0x1f, '3556 cp'), + RgbInt8Color.rgbName(0xd3, 0x2a, 0x37, '1795 xgc'), + RgbInt8Color.rgbName(0xd5, 0x2a, 0x3f, 'p 52-8 c'), + RgbInt8Color.rgbName(0xd4, 0x29, 0x42, 'p 57-7 c'), + RgbInt8Color.rgbName(0xd8, 0x29, 0x49, '199 cp'), + RgbInt8Color.rgbName(0xd8, 0x2f, 0x4f, '2040 cp'), + RgbInt8Color.rgbName(0xd8, 0x29, 0x53, 'p 62-8 c'), + RgbInt8Color.rgbName(0xd5, 0x3f, 0x77, 'process magenta u'), + RgbInt8Color.rgbName(0xd8, 0x3e, 0x7f, 'p 73-7 c'), + RgbInt8Color.rgbName(0xdb, 0x3e, 0x79, '213 cp'), + RgbInt8Color.rgbName(0xf2, 0x71, 0xd9, '907 u'), + RgbInt8Color.rgbName(0xfc, 0x76, 0xd9, '927 c'), + RgbInt8Color.rgbName(0xd7, 0x39, 0x29, '2347 cp'), + RgbInt8Color.rgbName(0xd5, 0x3c, 0x2b, '7626 cp'), + RgbInt8Color.rgbName(0xd8, 0x36, 0x58, 'p 59-7 c'), + RgbInt8Color.rgbName(0xdb, 0x37, 0x62, '1925 cp'), + RgbInt8Color.rgbName(0xd2, 0x49, 0x7f, '2046 cp'), + RgbInt8Color.rgbName(0xdc, 0x4b, 0x89, '7424 cp'), + RgbInt8Color.rgbName(0xe3, 0x52, 0x5, '166 c'), + RgbInt8Color.rgbName(0xdf, 0x49, 0x11, '1665 xgc'), + RgbInt8Color.rgbName(0xdc, 0x5a, 0x22, '7579 xgc'), + RgbInt8Color.rgbName(0xd6, 0x3d, 0x36, '1795 cp'), + RgbInt8Color.rgbName(0xd5, 0x46, 0x32, '7597 xgc'), + RgbInt8Color.rgbName(0xd8, 0x40, 0x2f, 'p 45-8 c'), + RgbInt8Color.rgbName(0xd7, 0x3c, 0x50, 'p 55-7 c'), + RgbInt8Color.rgbName(0xd8, 0x42, 0x65, 'p 65-7 c'), + RgbInt8Color.rgbName(0xd8, 0x40, 0x6d, 'p 68-7 c'), + RgbInt8Color.rgbName(0xd0, 0x4a, 0x78, '2450 up'), + RgbInt8Color.rgbName(0xcf, 0x57, 0x8a, '2046 c'), + RgbInt8Color.rgbName(0xdb, 0x55, 0x8f, '2039 cp'), + RgbInt8Color.rgbName(0xf2, 0x77, 0xc6, '231 c'), + RgbInt8Color.rgbName(0xd8, 0x60, 0x18, '1595 c'), + RgbInt8Color.rgbName(0xd4, 0x4b, 0x2e, '173 xgc'), + RgbInt8Color.rgbName(0xd9, 0x45, 0x3c, 'p 48-7 c'), + RgbInt8Color.rgbName(0xcb, 0x4f, 0x53, '1797 u'), + RgbInt8Color.rgbName(0xc8, 0x54, 0x54, 'p 55-14 c'), + RgbInt8Color.rgbName(0xd9, 0x47, 0x50, 'p 55-8 u'), + RgbInt8Color.rgbName(0xd7, 0x48, 0x50, 'p 57-6 c'), + RgbInt8Color.rgbName(0xcd, 0x54, 0x5b, '7418 c'), + RgbInt8Color.rgbName(0xd8, 0x44, 0x65, '206 u'), + RgbInt8Color.rgbName(0xd9, 0x47, 0x64, 'p 65-8 u'), + RgbInt8Color.rgbName(0xcd, 0x53, 0x71, 'p 68-14 c'), + RgbInt8Color.rgbName(0xda, 0x48, 0x6f, 'p 71-8 u'), + RgbInt8Color.rgbName(0xd1, 0x51, 0x7a, '214 u'), + RgbInt8Color.rgbName(0xcf, 0x5f, 0x92, '2046 xgc'), + RgbInt8Color.rgbName(0xf5, 0x7f, 0xe0, '914 c'), + RgbInt8Color.rgbName(0xe2, 0x5a, 0x6, '166 xgc'), + RgbInt8Color.rgbName(0xd7, 0x6b, 0x0, '2019 c'), + RgbInt8Color.rgbName(0xd1, 0x4e, 0x39, '3516 u'), + RgbInt8Color.rgbName(0xce, 0x51, 0x48, '2032 cp'), + RgbInt8Color.rgbName(0xce, 0x50, 0x55, '711 u'), + RgbInt8Color.rgbName(0xcb, 0x55, 0x54, 'p 57-14 c'), + RgbInt8Color.rgbName(0xc8, 0x5b, 0x59, '1795 up'), + RgbInt8Color.rgbName(0xd2, 0x51, 0x5e, '186 u'), + RgbInt8Color.rgbName(0xc4, 0x5d, 0x57, 'p 58-5 c'), + RgbInt8Color.rgbName(0xd3, 0x54, 0x65, '206 up'), + RgbInt8Color.rgbName(0xd0, 0x55, 0x62, 'p 59-13 c'), + RgbInt8Color.rgbName(0xcb, 0x58, 0x62, 'p 62-14 c'), + RgbInt8Color.rgbName(0xca, 0x68, 0x9a, '3582 cp'), + RgbInt8Color.rgbName(0xcb, 0x6e, 0x9a, '674 up'), + RgbInt8Color.rgbName(0xcf, 0x6b, 0x9c, 'p 80-5 c'), + RgbInt8Color.rgbName(0xce, 0x6b, 0x96, 'p 80-5 u'), + RgbInt8Color.rgbName(0xf6, 0x86, 0xe1, '914 u'), + RgbInt8Color.rgbName(0xd5, 0x78, 0x0, '1385 c'), + RgbInt8Color.rgbName(0xd7, 0x57, 0x2b, '173 cp'), + RgbInt8Color.rgbName(0xc9, 0x5e, 0x59, '1797 up'), + RgbInt8Color.rgbName(0xcc, 0x60, 0x4d, 'p 48-13 c'), + RgbInt8Color.rgbName(0xcb, 0x5b, 0x55, 'p 52-14 c'), + RgbInt8Color.rgbName(0xc8, 0x5e, 0x58, 'p 52-14 u'), + RgbInt8Color.rgbName(0xd0, 0x5a, 0x57, '2032 c'), + RgbInt8Color.rgbName(0xd1, 0x57, 0x59, '2032 xgc'), + RgbInt8Color.rgbName(0xcc, 0x5c, 0x5c, '2033 up'), + RgbInt8Color.rgbName(0xc9, 0x5e, 0x5f, 'p 57-14 u'), + RgbInt8Color.rgbName(0xcd, 0x59, 0x60, 'p 59-13 u'), + RgbInt8Color.rgbName(0xcd, 0x5e, 0x5f, '186 up'), + RgbInt8Color.rgbName(0xd1, 0x60, 0x64, '711 up'), + RgbInt8Color.rgbName(0xd2, 0x5b, 0x73, '702 c'), + RgbInt8Color.rgbName(0xd1, 0x58, 0x74, '702 xgc'), + RgbInt8Color.rgbName(0xce, 0x60, 0x6e, '7418 xgc'), + RgbInt8Color.rgbName(0xcc, 0x5b, 0x73, 'p 68-14 u'), + RgbInt8Color.rgbName(0xd3, 0x59, 0x7e, '7424 up'), + RgbInt8Color.rgbName(0xcd, 0x62, 0x7d, '7635 u'), + RgbInt8Color.rgbName(0xd2, 0x5f, 0x85, '214 up'), + RgbInt8Color.rgbName(0xd5, 0x60, 0x8d, '2450 u'), + RgbInt8Color.rgbName(0xd8, 0x74, 0xa4, '218 xgc'), + RgbInt8Color.rgbName(0xd9, 0x77, 0xa9, '224 cp'), + RgbInt8Color.rgbName(0xd7, 0x76, 0xa9, '224 xgc'), + RgbInt8Color.rgbName(0xd8, 0x77, 0xa2, '225 up'), + RgbInt8Color.rgbName(0xd5, 0x76, 0xaa, '232 cp'), + RgbInt8Color.rgbName(0xe0, 0x96, 0xdf, '251 u'), + RgbInt8Color.rgbName(0xda, 0x82, 0xb, '1385 xgc'), + RgbInt8Color.rgbName(0xd3, 0x67, 0x2b, '159 xgc'), + RgbInt8Color.rgbName(0xd1, 0x69, 0x2e, '718 cp'), + RgbInt8Color.rgbName(0xcb, 0x67, 0x48, 'p 45-14 c'), + RgbInt8Color.rgbName(0xce, 0x61, 0x4a, '173 u'), + RgbInt8Color.rgbName(0xc7, 0x6f, 0x52, 'p 34-14 u'), + RgbInt8Color.rgbName(0xc5, 0x6a, 0x58, 'p 40-14 u'), + RgbInt8Color.rgbName(0xc9, 0x63, 0x55, 'p 48-13 u'), + RgbInt8Color.rgbName(0xc5, 0x6c, 0x5f, '7607 cp'), + RgbInt8Color.rgbName(0xc7, 0x69, 0x5b, '7619 up'), + RgbInt8Color.rgbName(0xc4, 0x72, 0x59, 'p 37-14 u'), + RgbInt8Color.rgbName(0xc9, 0x67, 0x5b, 'p 45-14 u'), + RgbInt8Color.rgbName(0xc9, 0x68, 0x67, '2033 u'), + RgbInt8Color.rgbName(0xc8, 0x71, 0x64, '7619 u'), + RgbInt8Color.rgbName(0xcb, 0x66, 0x6b, 'p 62-13 u'), + RgbInt8Color.rgbName(0xd4, 0x68, 0x6f, 'p 59-12 c'), + RgbInt8Color.rgbName(0xd2, 0x66, 0x68, 'p 59-12 u'), + RgbInt8Color.rgbName(0xd0, 0x6b, 0x6d, 'p 62-13 c'), + RgbInt8Color.rgbName(0xd2, 0x64, 0x7b, '7635 up'), + RgbInt8Color.rgbName(0xd1, 0x67, 0x7e, 'p 68-13 c'), + RgbInt8Color.rgbName(0xd1, 0x66, 0x7b, 'p 68-13 u'), + RgbInt8Color.rgbName(0xd3, 0x69, 0x7f, '702 cp'), + RgbInt8Color.rgbName(0xcd, 0x6c, 0x8f, '2046 u'), + RgbInt8Color.rgbName(0xc6, 0x73, 0x9a, '3582 u'), + RgbInt8Color.rgbName(0xd5, 0x87, 0x0, '145 xgc'), + RgbInt8Color.rgbName(0xdb, 0x8a, 0x6, '7564 c'), + RgbInt8Color.rgbName(0xda, 0x70, 0x28, '1595 cp'), + RgbInt8Color.rgbName(0xd3, 0x70, 0x46, '1595 u'), + RgbInt8Color.rgbName(0xcb, 0x73, 0x4f, '7618 cp'), + RgbInt8Color.rgbName(0xc9, 0x73, 0x4d, 'p 37-14 c'), + RgbInt8Color.rgbName(0xc7, 0x71, 0x58, '7618 xgc'), + RgbInt8Color.rgbName(0xc8, 0x72, 0x5c, '7580 up'), + RgbInt8Color.rgbName(0xcf, 0x6f, 0x5d, '7598 up'), + RgbInt8Color.rgbName(0xc8, 0x78, 0x5b, 'p 30-14 u'), + RgbInt8Color.rgbName(0xc7, 0x76, 0x5c, 'p 49-4 c'), + RgbInt8Color.rgbName(0xca, 0x76, 0x61, '2435 cp'), + RgbInt8Color.rgbName(0xd1, 0x72, 0x65, 'p 52-13 c'), + RgbInt8Color.rgbName(0xce, 0x6e, 0x62, 'p 52-13 u'), + RgbInt8Color.rgbName(0xc8, 0x73, 0x65, 'p 53-5 c'), + RgbInt8Color.rgbName(0xce, 0x6f, 0x67, 'p 55-13 u'), + RgbInt8Color.rgbName(0xca, 0x78, 0x6f, 'p 58-3 u'), + RgbInt8Color.rgbName(0xcb, 0x75, 0x69, 'p 58-4 c'), + RgbInt8Color.rgbName(0xcf, 0x6f, 0x77, '2340 c'), + RgbInt8Color.rgbName(0xd3, 0x6d, 0x77, '2340 cp'), + RgbInt8Color.rgbName(0xc8, 0x79, 0x73, 'p 60-10 c'), + RgbInt8Color.rgbName(0xc9, 0x7a, 0x7f, '2340 u'), + RgbInt8Color.rgbName(0xc9, 0x7c, 0x7e, 'p 63-4 c'), + RgbInt8Color.rgbName(0xc5, 0x7d, 0x88, 'p 69-12 u'), + RgbInt8Color.rgbName(0xca, 0x79, 0x86, 'p 69-2 u'), + RgbInt8Color.rgbName(0xc8, 0x74, 0x86, 'p 71-13 u'), + RgbInt8Color.rgbName(0xc7, 0x7c, 0x89, '493 u'), + RgbInt8Color.rgbName(0xd2, 0x6b, 0x93, '2046 up'), + RgbInt8Color.rgbName(0xc7, 0x7d, 0x92, '7634 u'), + RgbInt8Color.rgbName(0xc7, 0x7b, 0x9c, 'p 76-5 c'), + RgbInt8Color.rgbName(0xcf, 0x70, 0x9c, 'rhodamine red up'), + RgbInt8Color.rgbName(0xcd, 0x7e, 0xa7, '238 up'), + RgbInt8Color.rgbName(0xcb, 0x7e, 0xa7, '2385 up'), + RgbInt8Color.rgbName(0xc9, 0x80, 0xa6, 'p 80-11 c'), + RgbInt8Color.rgbName(0xca, 0x87, 0xb2, '2375 xgc'), + RgbInt8Color.rgbName(0xdc, 0x8a, 0xb6, '231 cp'), + RgbInt8Color.rgbName(0xd9, 0x86, 0xba, '673 c'), + RgbInt8Color.rgbName(0xd4, 0x8c, 0xb5, '673 xgc'), + RgbInt8Color.rgbName(0xd3, 0x91, 0x0, '131 xgc'), + RgbInt8Color.rgbName(0xcf, 0x7e, 0x24, '7412 cp'), + RgbInt8Color.rgbName(0xd3, 0x7c, 0x32, '138 u'), + RgbInt8Color.rgbName(0xcd, 0x7e, 0x3e, '1385 u'), + RgbInt8Color.rgbName(0xc9, 0x7d, 0x49, 'p 24-15 u'), + RgbInt8Color.rgbName(0xc9, 0x7d, 0x4f, '2020 up'), + RgbInt8Color.rgbName(0xc6, 0x7c, 0x52, 'p 35-5 c'), + RgbInt8Color.rgbName(0xc8, 0x7f, 0x56, 'p 27-14 u'), + RgbInt8Color.rgbName(0xc8, 0x7e, 0x5c, '7584 up'), + RgbInt8Color.rgbName(0xc2, 0x80, 0x60, '7591 xgc'), + RgbInt8Color.rgbName(0xcd, 0x7c, 0x5b, 'p 34-13 u'), + RgbInt8Color.rgbName(0xc9, 0x7a, 0x60, 'p 46-4 c'), + RgbInt8Color.rgbName(0xc2, 0x83, 0x6a, '2439 up'), + RgbInt8Color.rgbName(0xca, 0x7d, 0x5f, '7583 u'), + RgbInt8Color.rgbName(0xc5, 0x87, 0x64, 'p 31-5 u'), + RgbInt8Color.rgbName(0xcc, 0x7e, 0x63, 'p 37-13 u'), + RgbInt8Color.rgbName(0xce, 0x77, 0x61, 'p 40-13 u'), + RgbInt8Color.rgbName(0xc7, 0x80, 0x67, 'p 49-3 u'), + RgbInt8Color.rgbName(0xc4, 0x85, 0x71, '2439 c'), + RgbInt8Color.rgbName(0xca, 0x7c, 0x74, '7607 xgc'), + RgbInt8Color.rgbName(0xc3, 0x88, 0x6b, 'p 38-4 u'), + RgbInt8Color.rgbName(0xc7, 0x83, 0x6c, 'p 41-4 u'), + RgbInt8Color.rgbName(0xc2, 0x88, 0x71, 'p 46-12 u'), + RgbInt8Color.rgbName(0xd2, 0x75, 0x6c, 'p 55-13 c'), + RgbInt8Color.rgbName(0xd4, 0x75, 0x6e, 'p 57-13 u'), + RgbInt8Color.rgbName(0xcf, 0x7a, 0x74, 'p 60-5 c'), + RgbInt8Color.rgbName(0xcb, 0x79, 0x71, 'p 60-5 u'), + RgbInt8Color.rgbName(0xcf, 0x78, 0x7f, '2340 up'), + RgbInt8Color.rgbName(0xd2, 0x76, 0x77, 'p 62-12 u'), + RgbInt8Color.rgbName(0xd2, 0x78, 0x82, '2340 xgc'), + RgbInt8Color.rgbName(0xce, 0x7f, 0x83, '702 up'), + RgbInt8Color.rgbName(0xc4, 0x88, 0x7f, 'p 61-1 u'), + RgbInt8Color.rgbName(0xc7, 0x88, 0x8a, 'p 65-11 u'), + RgbInt8Color.rgbName(0xcd, 0x7d, 0x8e, 'p 69-2 c'), + RgbInt8Color.rgbName(0xc7, 0x86, 0x98, 'p 72-4 c'), + RgbInt8Color.rgbName(0xd4, 0x77, 0x98, 'p 73-13 c'), + RgbInt8Color.rgbName(0xce, 0x80, 0xa2, '7431 cp'), + RgbInt8Color.rgbName(0xca, 0x83, 0xa3, '7431 xgc'), + RgbInt8Color.rgbName(0xda, 0x9d, 0x0, '7550 xgc'), + RgbInt8Color.rgbName(0xda, 0x80, 0x20, '7413 cp'), + RgbInt8Color.rgbName(0xd3, 0x83, 0x2b, '7570 c'), + RgbInt8Color.rgbName(0xd3, 0x82, 0x35, '7412 c'), + RgbInt8Color.rgbName(0xd7, 0x88, 0x25, '7569 c'), + RgbInt8Color.rgbName(0xd6, 0x8a, 0x28, '7570 cp'), + RgbInt8Color.rgbName(0xd0, 0x85, 0x37, 'p 24-15 c'), + RgbInt8Color.rgbName(0xcb, 0x86, 0x44, '722 cp'), + RgbInt8Color.rgbName(0xd4, 0x82, 0x46, '2431 up'), + RgbInt8Color.rgbName(0xcb, 0x85, 0x4b, 'p 20-15 u'), + RgbInt8Color.rgbName(0xcf, 0x81, 0x4c, 'p 30-14 c'), + RgbInt8Color.rgbName(0xd1, 0x7f, 0x4a, 'p 34-14 c'), + RgbInt8Color.rgbName(0xcc, 0x7f, 0x57, '1595 up'), + RgbInt8Color.rgbName(0xcd, 0x80, 0x53, '718 up'), + RgbInt8Color.rgbName(0xc9, 0x86, 0x59, '7565 u'), + RgbInt8Color.rgbName(0xcc, 0x86, 0x5c, '159 up'), + RgbInt8Color.rgbName(0xce, 0x81, 0x5c, 'p 37-13 c'), + RgbInt8Color.rgbName(0xcb, 0x84, 0x5c, 'p 41-4 c'), + RgbInt8Color.rgbName(0xc5, 0x87, 0x62, 'p 49-11 c'), + RgbInt8Color.rgbName(0xc5, 0x8b, 0x68, '7515 c'), + RgbInt8Color.rgbName(0xc3, 0x8c, 0x6a, '7515 xgc'), + RgbInt8Color.rgbName(0xc7, 0x8a, 0x67, 'p 35-4 u'), + RgbInt8Color.rgbName(0xc6, 0x8c, 0x66, 'p 38-4 c'), + RgbInt8Color.rgbName(0xca, 0x87, 0x72, '2439 cp'), + RgbInt8Color.rgbName(0xc6, 0x8c, 0x6f, 'p 46-12 c'), + RgbInt8Color.rgbName(0xc6, 0x87, 0x74, 'p 53-12 u'), + RgbInt8Color.rgbName(0xcd, 0x83, 0x73, 'p 53-4 u'), + RgbInt8Color.rgbName(0xce, 0x85, 0x78, 'p 58-2 u'), + RgbInt8Color.rgbName(0xd1, 0x83, 0x77, 'p 58-3 c'), + RgbInt8Color.rgbName(0xcc, 0x82, 0x7d, 'p 60-9 c'), + RgbInt8Color.rgbName(0xc2, 0x90, 0x7f, '7515 u'), + RgbInt8Color.rgbName(0xcb, 0x86, 0x7f, '7607 u'), + RgbInt8Color.rgbName(0xc5, 0x8b, 0x7f, 'p 58-12 c'), + RgbInt8Color.rgbName(0xce, 0x85, 0x83, 'p 63-3 u'), + RgbInt8Color.rgbName(0xd0, 0x85, 0x8a, '2446 c'), + RgbInt8Color.rgbName(0xcf, 0x86, 0x8c, '2446 u'), + RgbInt8Color.rgbName(0xc5, 0x89, 0x90, 'p 70-1 u'), + RgbInt8Color.rgbName(0xc7, 0x8b, 0x9a, 'p 74-3 u'), + RgbInt8Color.rgbName(0xcc, 0x86, 0xa7, 'p 80-10 u'), + RgbInt8Color.rgbName(0xd4, 0x83, 0xac, 'p 80-4 c'), + RgbInt8Color.rgbName(0xce, 0x8d, 0xb3, '2375 up'), + RgbInt8Color.rgbName(0xd5, 0x9e, 0xd7, '7438 c'), + RgbInt8Color.rgbName(0xd7, 0x9b, 0xd7, '7438 u'), + RgbInt8Color.rgbName(0xda, 0xaa, 0x0, '110 c'), + RgbInt8Color.rgbName(0xd7, 0x91, 0x33, '124 u'), + RgbInt8Color.rgbName(0xd4, 0x8b, 0x40, '7412 xgc'), + RgbInt8Color.rgbName(0xc5, 0x8f, 0x56, '131 up'), + RgbInt8Color.rgbName(0xcd, 0x8d, 0x50, '722 xgc'), + RgbInt8Color.rgbName(0xcb, 0x93, 0x4c, '7510 xgc'), + RgbInt8Color.rgbName(0xcd, 0x8f, 0x4d, 'p 17-15 u'), + RgbInt8Color.rgbName(0xcb, 0x8a, 0x58, '1385 up'), + RgbInt8Color.rgbName(0xcc, 0x8a, 0x59, '145 up'), + RgbInt8Color.rgbName(0xc9, 0x8e, 0x59, '7565 up'), + RgbInt8Color.rgbName(0xc9, 0x8b, 0x57, '7571 up'), + RgbInt8Color.rgbName(0xc9, 0x91, 0x58, 'p 25-5 c'), + RgbInt8Color.rgbName(0xd1, 0x8b, 0x51, 'p 27-14 c'), + RgbInt8Color.rgbName(0xcc, 0x90, 0x58, '138 up'), + RgbInt8Color.rgbName(0xc8, 0x8a, 0x5f, '7414 up'), + RgbInt8Color.rgbName(0xd1, 0x8d, 0x5b, '7570 u'), + RgbInt8Color.rgbName(0xc8, 0x91, 0x5b, 'p 21-5 u'), + RgbInt8Color.rgbName(0xc9, 0x91, 0x5d, 'p 28-4 c'), + RgbInt8Color.rgbName(0xc6, 0x94, 0x68, 'p 25-4 u'), + RgbInt8Color.rgbName(0xc7, 0x91, 0x6a, 'p 35-12 c'), + RgbInt8Color.rgbName(0xcd, 0x8f, 0x64, 'p 35-4 c'), + RgbInt8Color.rgbName(0xcd, 0x8c, 0x65, 'p 41-3 c'), + RgbInt8Color.rgbName(0xc7, 0x91, 0x71, '7515 cp'), + RgbInt8Color.rgbName(0xc5, 0x95, 0x6c, 'p 31-9 c'), + RgbInt8Color.rgbName(0xcb, 0x8a, 0x71, 'p 41-3 u'), + RgbInt8Color.rgbName(0xc1, 0x93, 0x74, 'p 42-2 c'), + RgbInt8Color.rgbName(0xc8, 0x92, 0x75, '7591 up'), + RgbInt8Color.rgbName(0xc7, 0x8f, 0x76, 'p 49-10 u'), + RgbInt8Color.rgbName(0xc3, 0x95, 0x7c, 'p 50-2 u'), + RgbInt8Color.rgbName(0xca, 0x8d, 0x7c, 'p 53-12 c'), + RgbInt8Color.rgbName(0xc7, 0x93, 0x82, 'p 54-2 c'), + RgbInt8Color.rgbName(0xc9, 0x91, 0x81, 'p 56-3 u'), + RgbInt8Color.rgbName(0xca, 0x94, 0x8a, 'p 61-1 c'), + RgbInt8Color.rgbName(0xc5, 0x93, 0x93, 'p 66-3 u'), + RgbInt8Color.rgbName(0xc9, 0x8f, 0x9c, '694 cp'), + RgbInt8Color.rgbName(0xc5, 0x94, 0x9a, '694 up'), + RgbInt8Color.rgbName(0xcb, 0x91, 0x95, 'p 65-11 c'), + RgbInt8Color.rgbName(0xd1, 0x89, 0x98, 'p 69-1 c'), + RgbInt8Color.rgbName(0xce, 0x90, 0x97, 'p 69-11 u'), + RgbInt8Color.rgbName(0xc7, 0x92, 0x9c, 'p 70-1 c'), + RgbInt8Color.rgbName(0xcf, 0x8f, 0xa4, '507 u'), + RgbInt8Color.rgbName(0xcd, 0x94, 0xa1, '507 up'), + RgbInt8Color.rgbName(0xd2, 0x8d, 0xa1, 'p 71-12 c'), + RgbInt8Color.rgbName(0xc8, 0x97, 0xa4, 'p 72-11 c'), + RgbInt8Color.rgbName(0xc9, 0x90, 0xa4, 'p 74-3 c'), + RgbInt8Color.rgbName(0xc8, 0x8e, 0xa4, 'p 76-12 u'), + RgbInt8Color.rgbName(0xd0, 0x8d, 0xa7, 'p 76-4 u'), + RgbInt8Color.rgbName(0xce, 0x8d, 0xb0, 'p 80-10 c'), + RgbInt8Color.rgbName(0xcf, 0x92, 0xb7, '2057 c'), + RgbInt8Color.rgbName(0xd3, 0x8e, 0xb3, '237 up'), + RgbInt8Color.rgbName(0xc7, 0x98, 0xba, '2066 up'), + RgbInt8Color.rgbName(0xcb, 0x96, 0xb9, '680 cp'), + RgbInt8Color.rgbName(0xc8, 0x99, 0xc1, '7438 cp'), + RgbInt8Color.rgbName(0xcc, 0xa5, 0xc9, '251 cp'), + RgbInt8Color.rgbName(0xd7, 0xa9, 0xe3, '2562 c'), + RgbInt8Color.rgbName(0xdd, 0x9c, 0xdf, '251 c'), + RgbInt8Color.rgbName(0xd5, 0xa6, 0x15, '7555 xgc'), + RgbInt8Color.rgbName(0xd4, 0xa5, 0x16, 'p 10-16 c'), + RgbInt8Color.rgbName(0xd6, 0x9d, 0x2a, '7550 cp'), + RgbInt8Color.rgbName(0xd6, 0x9a, 0x2d, '7563 c'), + RgbInt8Color.rgbName(0xd0, 0x98, 0x48, 'p 14-15 u'), + RgbInt8Color.rgbName(0xd3, 0x96, 0x3f, 'p 17-15 c'), + RgbInt8Color.rgbName(0xcd, 0x9e, 0x4a, '7407 cp'), + RgbInt8Color.rgbName(0xd6, 0x97, 0x48, 'p 20-14 c'), + RgbInt8Color.rgbName(0xcf, 0x97, 0x57, '124 up'), + RgbInt8Color.rgbName(0xcb, 0x9d, 0x54, 'p 18-6 c'), + RgbInt8Color.rgbName(0xca, 0x95, 0x57, 'p 21-5 c'), + RgbInt8Color.rgbName(0xc8, 0x9c, 0x66, 'p 21-11 c'), + RgbInt8Color.rgbName(0xc5, 0x9a, 0x68, 'p 25-11 c'), + RgbInt8Color.rgbName(0xca, 0x91, 0x6c, '722 u'), + RgbInt8Color.rgbName(0xc8, 0x94, 0x6f, 'p 28-2 u'), + RgbInt8Color.rgbName(0xc5, 0x9d, 0x75, 'p 25-10 u'), + RgbInt8Color.rgbName(0xc5, 0x98, 0x7d, 'p 38-11 u'), + RgbInt8Color.rgbName(0xcc, 0x95, 0x79, 'p 38-3 u'), + RgbInt8Color.rgbName(0xc4, 0x9e, 0x85, '7521 xgc'), + RgbInt8Color.rgbName(0xc5, 0x9b, 0x81, 'p 42-1 u'), + RgbInt8Color.rgbName(0xc9, 0x95, 0x87, 'p 58-11 u'), + RgbInt8Color.rgbName(0xca, 0x9a, 0x8e, '7612 c'), + RgbInt8Color.rgbName(0xc9, 0x9e, 0x8c, '7613 up'), + RgbInt8Color.rgbName(0xc4, 0x9f, 0x87, 'p 50-10 u'), + RgbInt8Color.rgbName(0xc6, 0x9e, 0x8f, 'p 56-10 u'), + RgbInt8Color.rgbName(0xc3, 0xa4, 0x92, '480 u'), + RgbInt8Color.rgbName(0xc8, 0x9f, 0x97, '7613 u'), + RgbInt8Color.rgbName(0xc8, 0x9c, 0x91, 'p 61-11 c'), + RgbInt8Color.rgbName(0xcc, 0x9f, 0x9f, 'p 64-2 c'), + RgbInt8Color.rgbName(0xca, 0xa2, 0x9f, 'p 66-10 u'), + RgbInt8Color.rgbName(0xcb, 0x9f, 0xa1, 'p 66-3 c'), + RgbInt8Color.rgbName(0xc4, 0xa6, 0xa1, 'p 67-1 u'), + RgbInt8Color.rgbName(0xc1, 0xa6, 0xa6, 'p 67-2 c'), + RgbInt8Color.rgbName(0xd0, 0x96, 0xa0, 'p 69-11 c'), + RgbInt8Color.rgbName(0xce, 0x97, 0xa4, 'p 74-2 u'), + RgbInt8Color.rgbName(0xc4, 0xa4, 0xa7, '7633 c'), + RgbInt8Color.rgbName(0xcb, 0x99, 0xb0, 'p 76-12 c'), + RgbInt8Color.rgbName(0xce, 0x96, 0xba, '251 up'), + RgbInt8Color.rgbName(0xc9, 0x99, 0xb8, '680 xgc'), + RgbInt8Color.rgbName(0xcf, 0x98, 0xbb, '2057 xgc'), + RgbInt8Color.rgbName(0xcf, 0x9a, 0xbf, '2064 cp'), + RgbInt8Color.rgbName(0xc9, 0x9d, 0xbf, '7438 up'), + RgbInt8Color.rgbName(0xcd, 0x9c, 0xc4, '244 xgc'), + RgbInt8Color.rgbName(0xd4, 0xb4, 0xda, '256 u'), + RgbInt8Color.rgbName(0xdb, 0xa8, 0x10, '7555 cp'), + RgbInt8Color.rgbName(0xd6, 0xa1, 0x34, 'p 14-15 c'), + RgbInt8Color.rgbName(0xcd, 0xa4, 0x4f, '7407 xgc'), + RgbInt8Color.rgbName(0xd0, 0x9f, 0x4e, 'p 10-15 u'), + RgbInt8Color.rgbName(0xcf, 0xa6, 0x52, '110 up'), + RgbInt8Color.rgbName(0xc7, 0xa2, 0x5f, 'p 11-5 u'), + RgbInt8Color.rgbName(0xcd, 0xa5, 0x55, 'p 15-6 c'), + RgbInt8Color.rgbName(0xc4, 0xa4, 0x69, '7556 up'), + RgbInt8Color.rgbName(0xcb, 0xa3, 0x64, 'p 15-5 u'), + RgbInt8Color.rgbName(0xc9, 0x9e, 0x61, 'p 18-5 u'), + RgbInt8Color.rgbName(0xcb, 0x9c, 0x69, '7509 up'), + RgbInt8Color.rgbName(0xc7, 0xa3, 0x6b, 'p 18-12 c'), + RgbInt8Color.rgbName(0xca, 0x9f, 0x75, '728 cp'), + RgbInt8Color.rgbName(0xcc, 0xa3, 0x6e, '7407 u'), + RgbInt8Color.rgbName(0xc8, 0xa4, 0x6d, 'p 18-11 u'), + RgbInt8Color.rgbName(0xcc, 0xa2, 0x6d, 'p 21-10 u'), + RgbInt8Color.rgbName(0xce, 0xa0, 0x6c, 'p 25-4 c'), + RgbInt8Color.rgbName(0xca, 0xa0, 0x76, 'p 28-12 c'), + RgbInt8Color.rgbName(0xcd, 0xa0, 0x77, '728 c'), + RgbInt8Color.rgbName(0xcc, 0xa3, 0x79, '728 xgc'), + RgbInt8Color.rgbName(0xc8, 0xa4, 0x76, 'p 22-3 u'), + RgbInt8Color.rgbName(0xc3, 0xa6, 0x7e, 'p 26-10 c'), + RgbInt8Color.rgbName(0xc3, 0xa3, 0x80, 'p 26-2 u'), + RgbInt8Color.rgbName(0xcd, 0xa1, 0x7b, 'p 50-2 c'), + RgbInt8Color.rgbName(0xca, 0xa1, 0x82, '728 u'), + RgbInt8Color.rgbName(0xca, 0xa3, 0x83, 'p 36-2 c'), + RgbInt8Color.rgbName(0xc7, 0xa0, 0x87, 'p 47-2 c'), + RgbInt8Color.rgbName(0xc6, 0xa4, 0x89, '4665 up'), + RgbInt8Color.rgbName(0xc7, 0xa3, 0x8e, '7521 cp'), + RgbInt8Color.rgbName(0xc5, 0xa6, 0x89, 'p 29-9 c'), + RgbInt8Color.rgbName(0xc9, 0xa5, 0x8c, 'p 39-1 u'), + RgbInt8Color.rgbName(0xc8, 0xa2, 0x8e, 'p 47-10 u'), + RgbInt8Color.rgbName(0xc9, 0xa1, 0x90, 'p 54-10 c'), + RgbInt8Color.rgbName(0xc4, 0xa7, 0x96, '4735 xgc'), + RgbInt8Color.rgbName(0xcd, 0xa1, 0x93, '7612 xgc'), + RgbInt8Color.rgbName(0xc6, 0xa5, 0x92, 'p 43-2 u'), + RgbInt8Color.rgbName(0xd0, 0xa1, 0x96, 'p 58-11 c'), + RgbInt8Color.rgbName(0xc5, 0xaa, 0x9c, '4735 cp'), + RgbInt8Color.rgbName(0xcc, 0xa1, 0xa6, '5015 c'), + RgbInt8Color.rgbName(0xca, 0xa1, 0xa6, '5015 u'), + RgbInt8Color.rgbName(0xc3, 0xad, 0x9e, 'p 33-3 c'), + RgbInt8Color.rgbName(0xce, 0xa1, 0x9d, 'p 64-2 u'), + RgbInt8Color.rgbName(0xcd, 0xa6, 0xa8, '5015 up'), + RgbInt8Color.rgbName(0xcd, 0xa7, 0xa9, '5015 xgc'), + RgbInt8Color.rgbName(0xc7, 0xa8, 0xab, '7633 xgc'), + RgbInt8Color.rgbName(0xcf, 0xa0, 0xaf, 'p 74-2 c'), + RgbInt8Color.rgbName(0xcb, 0x9f, 0xb0, 'p 77-3 u'), + RgbInt8Color.rgbName(0xcd, 0xa3, 0xb4, '2052 up'), + RgbInt8Color.rgbName(0xc9, 0xa6, 0xb5, '2052 xgc'), + RgbInt8Color.rgbName(0xc5, 0xab, 0xb0, 'p 78-2 c'), + RgbInt8Color.rgbName(0xcd, 0xa3, 0xc7, '251 xgc'), + RgbInt8Color.rgbName(0xcd, 0xa6, 0xc8, '7438 xgc'), + RgbInt8Color.rgbName(0xc9, 0xb8, 0xd3, '2071 up'), + RgbInt8Color.rgbName(0xcb, 0xb9, 0xd5, '263 up'), + RgbInt8Color.rgbName(0xce, 0xb6, 0xd4, '523 cp'), + RgbInt8Color.rgbName(0xd7, 0xb9, 0xe4, '530 c'), + RgbInt8Color.rgbName(0xdb, 0xb9, 0xe8, '530 u'), + RgbInt8Color.rgbName(0xd6, 0xba, 0xeb, '9344 u'), + RgbInt8Color.rgbName(0xdb, 0xb2, 0x16, '110 cp'), + RgbInt8Color.rgbName(0xd6, 0xaf, 0x23, 'p 7-16 c'), + RgbInt8Color.rgbName(0xd4, 0xb5, 0x28, '7752 xgc'), + RgbInt8Color.rgbName(0xd8, 0xad, 0x3f, 'p 10-15 c'), + RgbInt8Color.rgbName(0xce, 0xa9, 0x57, 'p 11-5 c'), + RgbInt8Color.rgbName(0xd3, 0xad, 0x4f, 'p 7-15 u'), + RgbInt8Color.rgbName(0xd7, 0xa9, 0x5a, '7555 u'), + RgbInt8Color.rgbName(0xcb, 0xad, 0x60, 'p 8-6 u'), + RgbInt8Color.rgbName(0xcc, 0xa7, 0x6b, '7407 up'), + RgbInt8Color.rgbName(0xcb, 0xae, 0x65, 'p 11-12 c'), + RgbInt8Color.rgbName(0xcc, 0xab, 0x6e, 'p 15-12 c'), + RgbInt8Color.rgbName(0xc9, 0xad, 0x73, 'p 11-11 u'), + RgbInt8Color.rgbName(0xcd, 0xac, 0x74, 'p 15-11 u'), + RgbInt8Color.rgbName(0xd1, 0xaa, 0x71, 'p 18-4 u'), + RgbInt8Color.rgbName(0xd2, 0xaa, 0x6c, 'p 18-5 c'), + RgbInt8Color.rgbName(0xc9, 0xac, 0x7a, '466 cp'), + RgbInt8Color.rgbName(0xca, 0xad, 0x7e, '7502 up'), + RgbInt8Color.rgbName(0xce, 0xad, 0x7a, 'p 18-11 c'), + RgbInt8Color.rgbName(0xc7, 0xad, 0x81, 'p 19-11 c'), + RgbInt8Color.rgbName(0xca, 0xac, 0x7b, 'p 19-2 c'), + RgbInt8Color.rgbName(0xc9, 0xab, 0x81, 'p 22-10 u'), + RgbInt8Color.rgbName(0xcd, 0xab, 0x7e, 'p 22-3 c'), + RgbInt8Color.rgbName(0xcc, 0xa6, 0x77, 'p 25-10 c'), + RgbInt8Color.rgbName(0xca, 0xa9, 0x81, 'p 29-3 c'), + RgbInt8Color.rgbName(0xcb, 0xa7, 0x85, '2311 up'), + RgbInt8Color.rgbName(0xc9, 0xa8, 0x86, '2311 xgc'), + RgbInt8Color.rgbName(0xc7, 0xaf, 0x87, '7502 u'), + RgbInt8Color.rgbName(0xcf, 0xaa, 0x82, 'p 25-9 u'), + RgbInt8Color.rgbName(0xcb, 0xad, 0x84, 'p 26-2 c'), + RgbInt8Color.rgbName(0xc4, 0xa7, 0x87, 'p 26-9 u'), + RgbInt8Color.rgbName(0xcc, 0xa8, 0x8b, '2311 u'), + RgbInt8Color.rgbName(0xc6, 0xa9, 0x92, '480 c'), + RgbInt8Color.rgbName(0xcd, 0xaa, 0x8e, 'p 39-1 c'), + RgbInt8Color.rgbName(0xc9, 0xa9, 0x90, 'p 42-10 u'), + RgbInt8Color.rgbName(0xc8, 0xab, 0x99, '480 cp'), + RgbInt8Color.rgbName(0xcc, 0xad, 0x96, '480 xgc'), + RgbInt8Color.rgbName(0xca, 0xab, 0x96, 'p 47-10 c'), + RgbInt8Color.rgbName(0xcb, 0xa7, 0x9d, 'p 56-10 c'), + RgbInt8Color.rgbName(0xcb, 0xa9, 0xad, '7633 cp'), + RgbInt8Color.rgbName(0xc9, 0xaa, 0xae, '7633 u'), + RgbInt8Color.rgbName(0xc1, 0xb8, 0xa7, 'p 169-4 u'), + RgbInt8Color.rgbName(0xc5, 0xae, 0xb1, 'p 79-1 c'), + RgbInt8Color.rgbName(0xbf, 0xb8, 0xaf, 'warm gray 3 c'), + RgbInt8Color.rgbName(0xbf, 0xb8, 0xae, 'warm gray 3 up'), + RgbInt8Color.rgbName(0xc9, 0xb1, 0xb2, 'p 67-1 c'), + RgbInt8Color.rgbName(0xc7, 0xae, 0xc3, '5155 cp'), + RgbInt8Color.rgbName(0xc6, 0xb0, 0xbc, '5225 c'), + RgbInt8Color.rgbName(0xc7, 0xb5, 0xbd, '5225 xgc'), + RgbInt8Color.rgbName(0xcd, 0xa8, 0xba, 'p 77-3 c'), + RgbInt8Color.rgbName(0xcc, 0xaf, 0xbd, 'p 82-10 u'), + RgbInt8Color.rgbName(0xc7, 0xac, 0xc3, 'p 84-9 c'), + RgbInt8Color.rgbName(0xc6, 0xb2, 0xc0, 'p 85-9 u'), + RgbInt8Color.rgbName(0xc9, 0xac, 0xcd, '257 cp'), + RgbInt8Color.rgbName(0xcd, 0xac, 0xc5, 'p 83-11 u'), + RgbInt8Color.rgbName(0xc9, 0xaf, 0xcf, '2562 cp'), + RgbInt8Color.rgbName(0xcc, 0xae, 0xd1, '2562 xgc'), + RgbInt8Color.rgbName(0xc9, 0xb1, 0xd0, '523 c'), + RgbInt8Color.rgbName(0xc7, 0xb5, 0xcf, '523 xgc'), + RgbInt8Color.rgbName(0xcc, 0xae, 0xd0, '7437 c'), + RgbInt8Color.rgbName(0xca, 0xaf, 0xcc, 'p 88-3 c'), + RgbInt8Color.rgbName(0xc3, 0xc2, 0xd8, 'p 100-2 c'), + RgbInt8Color.rgbName(0xd6, 0xbf, 0xdd, '256 c'), + RgbInt8Color.rgbName(0xdc, 0xc8, 0xdd, '256 cp'), + RgbInt8Color.rgbName(0xd7, 0xc6, 0xe6, '263 c'), + RgbInt8Color.rgbName(0xdc, 0xc6, 0xea, '263 u'), + RgbInt8Color.rgbName(0xd4, 0xc7, 0xde, '263 xgc'), + RgbInt8Color.rgbName(0xdb, 0xc7, 0xdd, '524 cp'), + RgbInt8Color.rgbName(0xda, 0xc5, 0xdc, '524 u'), + RgbInt8Color.rgbName(0xe0, 0xb2, 0x0, '110 xgc'), + RgbInt8Color.rgbName(0xd4, 0xb6, 0x40, '7752 cp'), + RgbInt8Color.rgbName(0xd5, 0xc1, 0x46, '606 up'), + RgbInt8Color.rgbName(0xd3, 0xbd, 0x4c, 'p 5-6 c'), + RgbInt8Color.rgbName(0xcf, 0xb6, 0x58, '458 up'), + RgbInt8Color.rgbName(0xcd, 0xb4, 0x67, '7752 up'), + RgbInt8Color.rgbName(0xcc, 0xb7, 0x66, 'p 5-5 u'), + RgbInt8Color.rgbName(0xd4, 0xb8, 0x57, 'p 8-6 c'), + RgbInt8Color.rgbName(0xd0, 0xb0, 0x6c, 'p 11-4 u'), + RgbInt8Color.rgbName(0xce, 0xb8, 0x6e, 'p 8-13 c'), + RgbInt8Color.rgbName(0xd1, 0xb6, 0x70, 'p 8-5 u'), + RgbInt8Color.rgbName(0xca, 0xb5, 0x74, 'p 9-4 c'), + RgbInt8Color.rgbName(0xce, 0xaf, 0x7a, '466 xgc'), + RgbInt8Color.rgbName(0xcc, 0xb2, 0x7f, 'p 16-3 c'), + RgbInt8Color.rgbName(0xd0, 0xb0, 0x79, 'p 18-10 u'), + RgbInt8Color.rgbName(0xcb, 0xaf, 0x7e, 'p 19-1 u'), + RgbInt8Color.rgbName(0xca, 0xb4, 0x89, 'p 16-11 c'), + RgbInt8Color.rgbName(0xc9, 0xbb, 0x86, 'p 6-9 u'), + RgbInt8Color.rgbName(0xce, 0xb7, 0x8d, 'p 19-10 u'), + RgbInt8Color.rgbName(0xcc, 0xae, 0x8b, 'p 22-10 c'), + RgbInt8Color.rgbName(0xca, 0xba, 0x8d, 'p 9-10 u'), + RgbInt8Color.rgbName(0xc8, 0xb7, 0x98, 'p 13-3 u'), + RgbInt8Color.rgbName(0xc7, 0xb5, 0x9e, 'p 23-3 c'), + RgbInt8Color.rgbName(0xce, 0xb6, 0x95, 'p 23-3 u'), + RgbInt8Color.rgbName(0xcb, 0xb1, 0x93, 'p 26-9 c'), + RgbInt8Color.rgbName(0xcb, 0xb6, 0xa2, 'p 33-2 u'), + RgbInt8Color.rgbName(0xcb, 0xb5, 0xa1, 'p 43-1 c'), + RgbInt8Color.rgbName(0xcd, 0xb5, 0xa7, '4745 c'), + RgbInt8Color.rgbName(0xcc, 0xb5, 0xa6, '4745 cp'), + RgbInt8Color.rgbName(0xce, 0xb4, 0xa9, '4745 u'), + RgbInt8Color.rgbName(0xc5, 0xb9, 0xac, '7528 c'), + RgbInt8Color.rgbName(0xc4, 0xba, 0xa9, '7528 xgc'), + RgbInt8Color.rgbName(0xc0, 0xba, 0xb0, '7535 u'), + RgbInt8Color.rgbName(0xcb, 0xb9, 0xab, 'p 33-2 c'), + RgbInt8Color.rgbName(0xc4, 0xbc, 0xb7, '406 c'), + RgbInt8Color.rgbName(0xc4, 0xba, 0xba, '435 xgc'), + RgbInt8Color.rgbName(0xc7, 0xbb, 0xb5, 'p 171-1 u'), + RgbInt8Color.rgbName(0xc6, 0xbb, 0xbc, '2473 cp'), + RgbInt8Color.rgbName(0xc7, 0xba, 0xbf, '2473 u'), + RgbInt8Color.rgbName(0xca, 0xb5, 0xc1, '5225 cp'), + RgbInt8Color.rgbName(0xc7, 0xba, 0xbf, 'p 86-3 c'), + RgbInt8Color.rgbName(0xcc, 0xb4, 0xc4, '5165 u'), + RgbInt8Color.rgbName(0xc5, 0xb8, 0xce, '665 u'), + RgbInt8Color.rgbName(0xc7, 0xbb, 0xcc, '665 up'), + RgbInt8Color.rgbName(0xca, 0xba, 0xc8, 'p 85-9 c'), + RgbInt8Color.rgbName(0xca, 0xb6, 0xce, 'p 88-10 c'), + RgbInt8Color.rgbName(0xc9, 0xb5, 0xca, 'p 89-1 u'), + RgbInt8Color.rgbName(0xc8, 0xb8, 0xc6, 'p 90-9 u'), + RgbInt8Color.rgbName(0xc3, 0xbb, 0xcd, 'p 95-9 c'), + RgbInt8Color.rgbName(0xcb, 0xb0, 0xcd, '523 up'), + RgbInt8Color.rgbName(0xc6, 0xbc, 0xd0, '665 c'), + RgbInt8Color.rgbName(0xd0, 0xb6, 0xd3, '7437 xgc'), + RgbInt8Color.rgbName(0xc8, 0xbf, 0xd8, '665 cp'), + RgbInt8Color.rgbName(0xc5, 0xc2, 0xd8, 'p 99-10 u'), + RgbInt8Color.rgbName(0xc4, 0xcb, 0xe2, 'p 104-2 c'), + RgbInt8Color.rgbName(0xc5, 0xcd, 0xe3, '2706 xgc'), + RgbInt8Color.rgbName(0xc3, 0xcb, 0xe0, '7450 u'), + RgbInt8Color.rgbName(0xc3, 0xd0, 0xe1, 'p 110-1 c'), + RgbInt8Color.rgbName(0xda, 0xc5, 0x45, 'p 1-15 u'), + RgbInt8Color.rgbName(0xd8, 0xbb, 0x4f, 'p 4-15 u'), + RgbInt8Color.rgbName(0xd4, 0xbe, 0x6c, '7751 up'), + RgbInt8Color.rgbName(0xd5, 0xb9, 0x61, '7752 u'), + RgbInt8Color.rgbName(0xd0, 0xc4, 0x69, 'p 2-13 c'), + RgbInt8Color.rgbName(0xd7, 0xc3, 0x64, 'p 5-5 c'), + RgbInt8Color.rgbName(0xd1, 0xbd, 0x71, '7751 u'), + RgbInt8Color.rgbName(0xd2, 0xc4, 0x6c, 'p 2-5 u'), + RgbInt8Color.rgbName(0xd8, 0xbf, 0x6b, 'p 8-5 c'), + RgbInt8Color.rgbName(0xce, 0xbd, 0x7e, 'p 5-9 u'), + RgbInt8Color.rgbName(0xcc, 0xbf, 0x7f, 'p 6-3 c'), + RgbInt8Color.rgbName(0xcb, 0xbd, 0x86, '4525 xgc'), + RgbInt8Color.rgbName(0xce, 0xc4, 0x81, 'p 3-4 c'), + RgbInt8Color.rgbName(0xcf, 0xba, 0x82, 'p 8-12 u'), + RgbInt8Color.rgbName(0xcc, 0xba, 0x85, 'p 9-3 u'), + RgbInt8Color.rgbName(0xd3, 0xbc, 0x8d, '467 c'), + RgbInt8Color.rgbName(0xc9, 0xc4, 0x93, '5855 up'), + RgbInt8Color.rgbName(0xcf, 0xbb, 0x8e, 'p 12-10 c'), + RgbInt8Color.rgbName(0xce, 0xba, 0x8a, 'p 12-2 u'), + RgbInt8Color.rgbName(0xc7, 0xc4, 0x90, 'p 168-1 c'), + RgbInt8Color.rgbName(0xcb, 0xc2, 0x91, 'p 3-11 u'), + RgbInt8Color.rgbName(0xce, 0xc4, 0x8c, 'p 3-3 u'), + RgbInt8Color.rgbName(0xc8, 0xc0, 0x9a, '453 cp'), + RgbInt8Color.rgbName(0xd3, 0xbe, 0x96, 'p 16-10 u'), + RgbInt8Color.rgbName(0xc9, 0xc2, 0xa5, '2323 up'), + RgbInt8Color.rgbName(0xcd, 0xbe, 0xa2, 'p 13-3 c'), + RgbInt8Color.rgbName(0xc4, 0xbe, 0xb0, '400 up'), + RgbInt8Color.rgbName(0xca, 0xbf, 0xad, '7528 cp'), + RgbInt8Color.rgbName(0xc8, 0xc1, 0xab, '7535 up'), + RgbInt8Color.rgbName(0xc4, 0xc1, 0xb2, 'p 178-1 c'), + RgbInt8Color.rgbName(0xcf, 0xbe, 0xa8, 'p 23-2 c'), + RgbInt8Color.rgbName(0xc6, 0xc0, 0xb6, '400 cp'), + RgbInt8Color.rgbName(0xc7, 0xbe, 0xba, '406 u'), + RgbInt8Color.rgbName(0xc4, 0xc2, 0xb4, '413 up'), + RgbInt8Color.rgbName(0xc4, 0xbf, 0xb8, '9083 u'), + RgbInt8Color.rgbName(0xc4, 0xc0, 0xba, 'p 172-2 c'), + RgbInt8Color.rgbName(0xc8, 0xbf, 0xb3, 'warm gray 3 xgc'), + RgbInt8Color.rgbName(0xc3, 0xc5, 0xc4, '10102 c'), + RgbInt8Color.rgbName(0xc7, 0xc1, 0xba, '400 u'), + RgbInt8Color.rgbName(0xc4, 0xc4, 0xc0, 'cool gray 3 up'), + RgbInt8Color.rgbName(0xc9, 0xc0, 0xbd, 'p 171-1 c'), + RgbInt8Color.rgbName(0xd0, 0xbe, 0xc7, '5235 c'), + RgbInt8Color.rgbName(0xc3, 0xc7, 0xc3, '9103 u'), + RgbInt8Color.rgbName(0xc5, 0xc5, 0xc5, 'cool gray 3 u'), + RgbInt8Color.rgbName(0xc6, 0xc0, 0xd0, 'p 95-1 u'), + RgbInt8Color.rgbName(0xc6, 0xc4, 0xd2, '5305 c'), + RgbInt8Color.rgbName(0xc4, 0xc2, 0xd4, 'p 101-1 c'), + RgbInt8Color.rgbName(0xcd, 0xbc, 0xd1, 'p 89-1 c'), + RgbInt8Color.rgbName(0xcc, 0xbd, 0xd2, 'p 91-10 u'), + RgbInt8Color.rgbName(0xca, 0xbb, 0xd5, 'p 93-2 c'), + RgbInt8Color.rgbName(0xca, 0xc3, 0xd4, 'p 95-1 c'), + RgbInt8Color.rgbName(0xcc, 0xbf, 0xd9, '9363 u'), + RgbInt8Color.rgbName(0xcc, 0xc1, 0xd9, 'p 96-1 c'), + RgbInt8Color.rgbName(0xcb, 0xbf, 0xd8, 'p 96-1 u'), + RgbInt8Color.rgbName(0xcb, 0xd3, 0xeb, '2706 c'), + RgbInt8Color.rgbName(0xda, 0xc9, 0x44, 'p 2-6 c'), + RgbInt8Color.rgbName(0xd9, 0xc7, 0x56, '458 c'), + RgbInt8Color.rgbName(0xda, 0xc9, 0x55, '458 xgc'), + RgbInt8Color.rgbName(0xd5, 0xce, 0x58, 'p 166-14 c'), + RgbInt8Color.rgbName(0xda, 0xc9, 0x58, '7758 u'), + RgbInt8Color.rgbName(0xd0, 0xc8, 0x83, '616 c'), + RgbInt8Color.rgbName(0xc9, 0xcb, 0x86, 'p 164-3 u'), + RgbInt8Color.rgbName(0xd0, 0xcb, 0x7e, 'p 167-3 u'), + RgbInt8Color.rgbName(0xd3, 0xc4, 0x7b, 'p 5-10 c'), + RgbInt8Color.rgbName(0xcd, 0xc5, 0x88, '616 u'), + RgbInt8Color.rgbName(0xca, 0xcc, 0x8a, 'p 164-3 c'), + RgbInt8Color.rgbName(0xd0, 0xcb, 0x81, 'p 167-3 c'), + RgbInt8Color.rgbName(0xcb, 0xc7, 0x93, '5865 c'), + RgbInt8Color.rgbName(0xcc, 0xc8, 0x95, '5865 u'), + RgbInt8Color.rgbName(0xcc, 0xc8, 0x90, '5865 xgc'), + RgbInt8Color.rgbName(0xd2, 0xc8, 0x89, 'p 2-11 u'), + RgbInt8Color.rgbName(0xd3, 0xc7, 0x8d, 'p 6-2 c'), + RgbInt8Color.rgbName(0xc7, 0xca, 0x9c, '5797 u'), + RgbInt8Color.rgbName(0xc8, 0xcc, 0x9c, '5797 xgc'), + RgbInt8Color.rgbName(0xc6, 0xcc, 0x9c, 'p 161-10 c'), + RgbInt8Color.rgbName(0xcd, 0xcb, 0x95, 'p 167-9 c'), + RgbInt8Color.rgbName(0xcb, 0xc9, 0x9e, 'p 168-10 u'), + RgbInt8Color.rgbName(0xd2, 0xc7, 0x97, 'p 6-9 c'), + RgbInt8Color.rgbName(0xca, 0xc7, 0xa7, '454 c'), + RgbInt8Color.rgbName(0xca, 0xc8, 0xac, '454 u'), + RgbInt8Color.rgbName(0xcc, 0xca, 0xac, '454 xgc'), + RgbInt8Color.rgbName(0xc5, 0xca, 0xaf, '5793 u'), + RgbInt8Color.rgbName(0xc8, 0xc5, 0xb8, '400 xgc'), + RgbInt8Color.rgbName(0xc7, 0xc6, 0xbb, '413 cp'), + RgbInt8Color.rgbName(0xcc, 0xc8, 0xbf, '9083 c'), + RgbInt8Color.rgbName(0xcc, 0xca, 0xbe, 'p 169-3 c'), + RgbInt8Color.rgbName(0xc7, 0xc9, 0xc7, '420 c'), + RgbInt8Color.rgbName(0xc7, 0xcc, 0xca, '428 xgc'), + RgbInt8Color.rgbName(0xc6, 0xce, 0xc6, '5527 up'), + RgbInt8Color.rgbName(0xca, 0xca, 0xc8, 'cool gray 2 u'), + RgbInt8Color.rgbName(0xc8, 0xc9, 0xc7, 'cool gray 3 c'), + RgbInt8Color.rgbName(0xca, 0xca, 0xc7, 'cool gray 3 cp'), + RgbInt8Color.rgbName(0xca, 0xcb, 0xca, 'cool gray 3 xgc'), + RgbInt8Color.rgbName(0xcb, 0xcb, 0xc8, 'p 179-3 u'), + RgbInt8Color.rgbName(0xc9, 0xce, 0xd1, '428 cp'), + RgbInt8Color.rgbName(0xcb, 0xc7, 0xd4, '5305 up'), + RgbInt8Color.rgbName(0xc6, 0xcd, 0xd2, '537 up'), + RgbInt8Color.rgbName(0xc2, 0xcf, 0xd8, '538 xgc'), + RgbInt8Color.rgbName(0xc7, 0xc9, 0xd9, 'p 105-9 c'), + RgbInt8Color.rgbName(0xc5, 0xcf, 0xda, '538 c'), + RgbInt8Color.rgbName(0xc9, 0xcd, 0xdb, '7450 up'), + RgbInt8Color.rgbName(0xc8, 0xcd, 0xde, 'p 105-1 u'), + RgbInt8Color.rgbName(0xc3, 0xd0, 0xdf, 'p 110-1 u'), + RgbInt8Color.rgbName(0xcd, 0xca, 0xde, 'p 99-2 u'), + RgbInt8Color.rgbName(0xc7, 0xd7, 0xea, 'p 109-2 c'), + RgbInt8Color.rgbName(0xd8, 0xd1, 0x6c, 'p 166-13 c'), + RgbInt8Color.rgbName(0xd9, 0xd3, 0x74, 'p 166-12 u'), + RgbInt8Color.rgbName(0xd0, 0xd1, 0x9b, 'p 164-10 u'), + RgbInt8Color.rgbName(0xd2, 0xd3, 0x95, 'p 164-2 u'), + RgbInt8Color.rgbName(0xd0, 0xce, 0x9e, '5865 cp'), + RgbInt8Color.rgbName(0xcc, 0xd6, 0x9d, 'p 157-10 c'), + RgbInt8Color.rgbName(0xcd, 0xd3, 0xa0, 'p 161-3 c'), + RgbInt8Color.rgbName(0xd0, 0xd1, 0xa4, 'p 164-10 c'), + RgbInt8Color.rgbName(0xd0, 0xd1, 0xab, '5807 c'), + RgbInt8Color.rgbName(0xd1, 0xd3, 0xa9, '5807 u'), + RgbInt8Color.rgbName(0xd0, 0xd4, 0xaa, '5807 xgc'), + RgbInt8Color.rgbName(0xc8, 0xd0, 0xaf, 'p 159-9 u'), + RgbInt8Color.rgbName(0xcf, 0xce, 0xab, 'p 168-10 c'), + RgbInt8Color.rgbName(0xcb, 0xd0, 0xb3, '5803 cp'), + RgbInt8Color.rgbName(0xcd, 0xd2, 0xba, '9583 c'), + RgbInt8Color.rgbName(0xc5, 0xd3, 0xba, 'p 152-10 c'), + RgbInt8Color.rgbName(0xc6, 0xd1, 0xc5, '5665 cp'), + RgbInt8Color.rgbName(0xc5, 0xd3, 0xc5, '5665 up'), + RgbInt8Color.rgbName(0xc4, 0xd5, 0xc6, '9542 u'), + RgbInt8Color.rgbName(0xc8, 0xd4, 0xc1, '9563 u'), + RgbInt8Color.rgbName(0xcd, 0xd2, 0xbb, '9583 u'), + RgbInt8Color.rgbName(0xc9, 0xd5, 0xc8, '5595 cp'), + RgbInt8Color.rgbName(0xc7, 0xd5, 0xc6, '5595 up'), + RgbInt8Color.rgbName(0xc7, 0xd6, 0xc5, '621 up'), + RgbInt8Color.rgbName(0xc7, 0xd8, 0xcb, 'p 134-10 u'), + RgbInt8Color.rgbName(0xc7, 0xd8, 0xca, 'p 137-9 c'), + RgbInt8Color.rgbName(0xcb, 0xce, 0xc7, 'p 175-1 u'), + RgbInt8Color.rgbName(0xc9, 0xd5, 0xda, '5455 cp'), + RgbInt8Color.rgbName(0xc7, 0xd7, 0xe0, '5455 u'), + RgbInt8Color.rgbName(0xca, 0xd3, 0xe1, '9385 u'), + RgbInt8Color.rgbName(0xc6, 0xd6, 0xe3, '643 c'), + RgbInt8Color.rgbName(0xc7, 0xd9, 0xe7, '643 cp'), + RgbInt8Color.rgbName(0xca, 0xd5, 0xe4, '650 cp'), + RgbInt8Color.rgbName(0xcd, 0xd2, 0xe6, '9382 c'), + RgbInt8Color.rgbName(0xca, 0xd4, 0xe8, 'p 106-2 c'), + RgbInt8Color.rgbName(0xe0, 0xcc, 0x39, '605 u'), + RgbInt8Color.rgbName(0xdc, 0xde, 0x7c, 'p 163-6 c'), + RgbInt8Color.rgbName(0xd4, 0xdc, 0x8d, '2296 up'), + RgbInt8Color.rgbName(0xd4, 0xdc, 0x89, 'p 160-5 c'), + RgbInt8Color.rgbName(0xcf, 0xd7, 0x92, 'p 160-11 u'), + RgbInt8Color.rgbName(0xd6, 0xdf, 0x98, '2296 cp'), + RgbInt8Color.rgbName(0xd5, 0xe0, 0xa1, '2288 up'), + RgbInt8Color.rgbName(0xd6, 0xdf, 0xa9, 'p 157-9 u'), + RgbInt8Color.rgbName(0xcf, 0xd6, 0xa7, 'p 158-2 c'), + RgbInt8Color.rgbName(0xca, 0xd9, 0xbb, 'p 151-9 c'), + RgbInt8Color.rgbName(0xd6, 0xde, 0xb4, 'p 157-9 c'), + RgbInt8Color.rgbName(0xd0, 0xd6, 0xb3, 'p 158-10 c'), + RgbInt8Color.rgbName(0xcb, 0xdb, 0xc9, 'p 143-9 c'), + RgbInt8Color.rgbName(0xcd, 0xda, 0xcd, '9542 c'), + RgbInt8Color.rgbName(0xc6, 0xda, 0xd7, '9504 c'), + RgbInt8Color.rgbName(0xcc, 0xdb, 0xd5, 'p 129-9 u'), + RgbInt8Color.rgbName(0xcc, 0xdb, 0xd2, 'p 134-10 c'), + RgbInt8Color.rgbName(0xcb, 0xde, 0xda, '9503 c'), + RgbInt8Color.rgbName(0xcc, 0xdd, 0xdc, 'p 122-9 c'), + RgbInt8Color.rgbName(0xcb, 0xde, 0xdc, 'p 122-9 u'), + RgbInt8Color.rgbName(0xca, 0xd9, 0xe3, '9422 c'), + RgbInt8Color.rgbName(0xc9, 0xdb, 0xe5, 'p 117-1 c'), + RgbInt8Color.rgbName(0xd6, 0xdd, 0xf1, '9384 u'), + RgbInt8Color.rgbName(0xd7, 0xdb, 0xf2, '9380 u'), + RgbInt8Color.rgbName(0xf6, 0xe5, 0x0, '102 xgc'), + RgbInt8Color.rgbName(0xf3, 0xe5, 0x0, '3945 c'), + RgbInt8Color.rgbName(0xf4, 0xe4, 0x0, '3945 xgc'), + RgbInt8Color.rgbName(0xf3, 0xe2, 0x0, '3955 cp'), + RgbInt8Color.rgbName(0xf1, 0xe3, 0x0, '3955 xgc'), + RgbInt8Color.rgbName(0xf6, 0xe5, 0x0, 'process yellow c'), + RgbInt8Color.rgbName(0xf7, 0xe3, 0x0, 'yellow xgc'), + RgbInt8Color.rgbName(0xf8, 0xe8, 0x15, '3965 u'), + RgbInt8Color.rgbName(0xf4, 0xe4, 0x2c, '3945 cp'), + RgbInt8Color.rgbName(0xf7, 0xe1, 0x38, '107 xgc'), + RgbInt8Color.rgbName(0xd9, 0xea, 0x9a, '2281 c'), + RgbInt8Color.rgbName(0xd5, 0xe2, 0x9b, 'p 157-3 u'), + RgbInt8Color.rgbName(0xdb, 0xe3, 0x94, 'p 160-4 u'), + RgbInt8Color.rgbName(0xda, 0xe2, 0xa3, '2281 up'), + RgbInt8Color.rgbName(0xd9, 0xe2, 0x9d, '372 cp'), + RgbInt8Color.rgbName(0xd9, 0xe1, 0xa9, '2281 cp'), + RgbInt8Color.rgbName(0xd7, 0xe1, 0xa9, 'p 157-3 c'), + RgbInt8Color.rgbName(0xd9, 0xe2, 0xb4, '2274 cp'), + RgbInt8Color.rgbName(0xd5, 0xe1, 0xb5, '2274 u'), + RgbInt8Color.rgbName(0xdb, 0xe5, 0xb8, '2274 up'), + RgbInt8Color.rgbName(0xd6, 0xdf, 0xb7, 'p 158-1 u'), + RgbInt8Color.rgbName(0xd5, 0xe4, 0xc0, '7485 u'), + RgbInt8Color.rgbName(0xd4, 0xe3, 0xc5, 'p 151-2 c'), + RgbInt8Color.rgbName(0xcd, 0xe3, 0xe0, '9502 c'), + RgbInt8Color.rgbName(0xcd, 0xe4, 0xe1, 'p 124-2 c'), + RgbInt8Color.rgbName(0xd5, 0xe3, 0xef, 'p 112-1 c'), + RgbInt8Color.rgbName(0xd3, 0xe7, 0xee, 'p 118-1 c'), + RgbInt8Color.rgbName(0xd6, 0xe2, 0xf2, '657 u'), + RgbInt8Color.rgbName(0xd9, 0xe6, 0xf4, '9400 u'), + RgbInt8Color.rgbName(0xd9, 0xea, 0xf3, 'p 115-2 c'), + RgbInt8Color.rgbName(0xd8, 0xed, 0xf5, 'p 115-2 u'), + RgbInt8Color.rgbName(0xf3, 0xd6, 0x0, '7405 xgc'), + RgbInt8Color.rgbName(0xfa, 0xeb, 0x37, '3955 u'), + RgbInt8Color.rgbName(0xf7, 0xea, 0x48, '101 c'), + RgbInt8Color.rgbName(0xed, 0xe0, 0x4b, '603 c'), + RgbInt8Color.rgbName(0xf2, 0xee, 0x56, '394 u'), + RgbInt8Color.rgbName(0xe9, 0xe2, 0x5a, 'p 166-6 u'), + RgbInt8Color.rgbName(0xdb, 0xd7, 0x80, 'p 166-11 u'), + RgbInt8Color.rgbName(0xdc, 0xd6, 0x7e, 'p 166-12 c'), + RgbInt8Color.rgbName(0xda, 0xe0, 0xa4, 'p 160-10 u'), + RgbInt8Color.rgbName(0xda, 0xe8, 0xc4, 'p 154-2 u'), + RgbInt8Color.rgbName(0xd5, 0xeb, 0xd1, '9561 u'), + RgbInt8Color.rgbName(0xd4, 0xe8, 0xce, 'p 142-1 u'), + RgbInt8Color.rgbName(0xd7, 0xe8, 0xd2, '9561 c'), + RgbInt8Color.rgbName(0xd7, 0xef, 0xe7, '9520 c'), + RgbInt8Color.rgbName(0xda, 0xef, 0xf1, '9040 u'), + RgbInt8Color.rgbName(0xd5, 0xeb, 0xee, '9460 c'), + RgbInt8Color.rgbName(0xd7, 0xe9, 0xec, 'p 118-9 u'), + RgbInt8Color.rgbName(0xf9, 0xda, 0x0, '108 cp'), + RgbInt8Color.rgbName(0xfa, 0xd9, 0x0, '108 xgc'), + RgbInt8Color.rgbName(0xf8, 0xd5, 0x0, '109 cp'), + RgbInt8Color.rgbName(0xf1, 0xcd, 0x0, '7406 xgc'), + RgbInt8Color.rgbName(0xe4, 0xd2, 0x45, 'p 1-15 c'), + RgbInt8Color.rgbName(0xed, 0xe4, 0x57, '603 cp'), + RgbInt8Color.rgbName(0xe4, 0xd9, 0x55, '610 cp'), + RgbInt8Color.rgbName(0xf3, 0xea, 0x5d, '3935 c'), + RgbInt8Color.rgbName(0xe8, 0xe2, 0x64, '395 up'), + RgbInt8Color.rgbName(0xe7, 0xe3, 0x6d, '386 cp'), + RgbInt8Color.rgbName(0xdd, 0xdf, 0x73, '585 cp'), + RgbInt8Color.rgbName(0xf0, 0xf3, 0x73, '923 u'), + RgbInt8Color.rgbName(0xe7, 0xee, 0x7b, '379 u'), + RgbInt8Color.rgbName(0xef, 0xf1, 0x78, '386 u'), + RgbInt8Color.rgbName(0xdb, 0xdc, 0x90, 'p 163-11 u'), + RgbInt8Color.rgbName(0xdc, 0xdd, 0xa8, 'p 163-10 c'), + RgbInt8Color.rgbName(0xdc, 0xe0, 0xb0, 'p 160-10 c'), + RgbInt8Color.rgbName(0xdc, 0xe0, 0xaf, 'p 161-2 u'), + RgbInt8Color.rgbName(0xda, 0xde, 0xb8, 'p 161-2 c'), + RgbInt8Color.rgbName(0xda, 0xe0, 0xc1, 'p 158-1 c'), + RgbInt8Color.rgbName(0xd7, 0xdd, 0xc0, 'p 159-1 u'), + RgbInt8Color.rgbName(0xdb, 0xdd, 0xc0, 'p 164-9 c'), + RgbInt8Color.rgbName(0xd3, 0xdf, 0xcb, 'p 152-2 c'), + RgbInt8Color.rgbName(0xd2, 0xe3, 0xd7, '566 cp'), + RgbInt8Color.rgbName(0xd5, 0xf4, 0xe1, '9540 u'), + RgbInt8Color.rgbName(0xd1, 0xe5, 0xd9, 'p 133-2 c'), + RgbInt8Color.rgbName(0xd2, 0xe7, 0xe2, 'p 130-1 c'), + RgbInt8Color.rgbName(0xdc, 0xeb, 0xec, '9040 c'), + RgbInt8Color.rgbName(0xdc, 0xea, 0xed, 'p 118-9 c'), + RgbInt8Color.rgbName(0xe4, 0x0, 0x46, '192 c'), + RgbInt8Color.rgbName(0xe2, 0x45, 0x85, '7424 c'), + RgbInt8Color.rgbName(0xff, 0x5f, 0xa2, '812 c'), + RgbInt8Color.rgbName(0xe6, 0x34, 0x22, '3556 c'), + RgbInt8Color.rgbName(0xda, 0x32, 0x48, '711 cp'), + RgbInt8Color.rgbName(0xe0, 0x45, 0x7b, '205 c'), + RgbInt8Color.rgbName(0xd9, 0x37, 0x40, '185 cp'), + RgbInt8Color.rgbName(0xdb, 0x3b, 0x50, '192 cp'), + RgbInt8Color.rgbName(0xdd, 0x42, 0x6a, '2040 u'), + RgbInt8Color.rgbName(0xda, 0x49, 0x77, 'p 73-8 u'), + RgbInt8Color.rgbName(0xda, 0x47, 0x7d, 'p 75-8 u'), + RgbInt8Color.rgbName(0xdd, 0x4a, 0x7d, '205 xgc'), + RgbInt8Color.rgbName(0xde, 0x4b, 0x84, '7424 xgc'), + RgbInt8Color.rgbName(0xdb, 0x48, 0x7e, 'rubine red u'), + RgbInt8Color.rgbName(0xde, 0x57, 0x22, '2028 cp'), + RgbInt8Color.rgbName(0xe0, 0x3c, 0x31, '179 c'), + RgbInt8Color.rgbName(0xda, 0x47, 0x2f, '2034 cp'), + RgbInt8Color.rgbName(0xdc, 0x3f, 0x34, '179 xgc'), + RgbInt8Color.rgbName(0xdc, 0x42, 0x34, '485 cp'), + RgbInt8Color.rgbName(0xe1, 0x3c, 0x42, '1788 xgc'), + RgbInt8Color.rgbName(0xde, 0x43, 0x43, '2035 u'), + RgbInt8Color.rgbName(0xe0, 0x3e, 0x52, '710 c'), + RgbInt8Color.rgbName(0xd9, 0x44, 0x52, 'p 57-8 u'), + RgbInt8Color.rgbName(0xd9, 0x46, 0x56, 'p 59-8 u'), + RgbInt8Color.rgbName(0xda, 0x45, 0x5d, 'p 62-7 c'), + RgbInt8Color.rgbName(0xd9, 0x48, 0x5c, 'p 62-8 u'), + RgbInt8Color.rgbName(0xdf, 0x42, 0x5f, '710 xgc'), + RgbInt8Color.rgbName(0xdb, 0x4d, 0x6e, 'p 68-8 u'), + RgbInt8Color.rgbName(0xd9, 0x53, 0x87, '226 up'), + RgbInt8Color.rgbName(0xd9, 0x54, 0x85, 'rubine red up'), + RgbInt8Color.rgbName(0xfc, 0x4c, 0x2, '1655 c'), + RgbInt8Color.rgbName(0xdf, 0x64, 0x26, '1665 cp'), + RgbInt8Color.rgbName(0xde, 0x62, 0x25, '7579 cp'), + RgbInt8Color.rgbName(0xd9, 0x4e, 0x33, 'p 40-8 c'), + RgbInt8Color.rgbName(0xd9, 0x4d, 0x35, 'p 45-7 c'), + RgbInt8Color.rgbName(0xd9, 0x4e, 0x45, '3556 up'), + RgbInt8Color.rgbName(0xda, 0x50, 0x4f, '2035 up'), + RgbInt8Color.rgbName(0xda, 0x4b, 0x4f, 'p 48-8 u'), + RgbInt8Color.rgbName(0xd9, 0x51, 0x4e, 'p 52-7 c'), + RgbInt8Color.rgbName(0xdb, 0x4b, 0x52, 'p 52-8 u'), + RgbInt8Color.rgbName(0xda, 0x4d, 0x52, 'p 55-7 u'), + RgbInt8Color.rgbName(0xd9, 0x49, 0x55, 'p 57-7 u'), + RgbInt8Color.rgbName(0xdf, 0x46, 0x61, '198 c'), + RgbInt8Color.rgbName(0xd8, 0x4e, 0x5a, '199 up'), + RgbInt8Color.rgbName(0xda, 0x4c, 0x5b, 'p 59-7 u'), + RgbInt8Color.rgbName(0xda, 0x4f, 0x62, 'p 59-6 c'), + RgbInt8Color.rgbName(0xe0, 0x4a, 0x6e, '198 xgc'), + RgbInt8Color.rgbName(0xda, 0x53, 0x80, 'p 71-6 c'), + RgbInt8Color.rgbName(0xdd, 0x5c, 0x92, '212 xgc'), + RgbInt8Color.rgbName(0xe4, 0x5c, 0x96, '219 u'), + RgbInt8Color.rgbName(0xdb, 0x60, 0x8f, 'p 73-6 c'), + RgbInt8Color.rgbName(0xff, 0x7c, 0xd6, '906 c'), + RgbInt8Color.rgbName(0xff, 0x80, 0xd4, '906 u'), + RgbInt8Color.rgbName(0xff, 0x82, 0xdb, '927 u'), + RgbInt8Color.rgbName(0xe0, 0x6e, 0x1e, '7578 cp'), + RgbInt8Color.rgbName(0xfe, 0x50, 0x0, 'orange 021 c'), + RgbInt8Color.rgbName(0xf9, 0x57, 0x0, 'orange 021 xgc'), + RgbInt8Color.rgbName(0xdc, 0x58, 0x2a, '7579 c'), + RgbInt8Color.rgbName(0xdd, 0x51, 0x43, '179 cp'), + RgbInt8Color.rgbName(0xe0, 0x4e, 0x39, '7417 c'), + RgbInt8Color.rgbName(0xda, 0x57, 0x3c, '7417 cp'), + RgbInt8Color.rgbName(0xe1, 0x52, 0x3d, '7625 c'), + RgbInt8Color.rgbName(0xdd, 0x58, 0x3d, '7625 cp'), + RgbInt8Color.rgbName(0xde, 0x53, 0x46, '1788 cp'), + RgbInt8Color.rgbName(0xdb, 0x54, 0x4f, 'p 40-8 u'), + RgbInt8Color.rgbName(0xda, 0x50, 0x53, 'p 45-8 u'), + RgbInt8Color.rgbName(0xda, 0x59, 0x59, '1795 u'), + RgbInt8Color.rgbName(0xdd, 0x50, 0x61, '199 u'), + RgbInt8Color.rgbName(0xda, 0x57, 0x5a, '2348 cp'), + RgbInt8Color.rgbName(0xdb, 0x56, 0x5d, 'p 57-6 u'), + RgbInt8Color.rgbName(0xdb, 0x56, 0x63, '1925 up'), + RgbInt8Color.rgbName(0xdc, 0x57, 0x62, 'p 59-6 u'), + RgbInt8Color.rgbName(0xdb, 0x52, 0x62, 'p 62-7 u'), + RgbInt8Color.rgbName(0xdb, 0x50, 0x6a, 'p 65-7 u'), + RgbInt8Color.rgbName(0xdc, 0x56, 0x72, '198 cp'), + RgbInt8Color.rgbName(0xdb, 0x50, 0x75, 'p 71-7 u'), + RgbInt8Color.rgbName(0xdf, 0x52, 0x76, '191 xgc'), + RgbInt8Color.rgbName(0xd9, 0x57, 0x7d, '7424 u'), + RgbInt8Color.rgbName(0xdb, 0x5b, 0x79, 'p 68-6 c'), + RgbInt8Color.rgbName(0xdd, 0x54, 0x74, 'p 68-7 u'), + RgbInt8Color.rgbName(0xdd, 0x54, 0x84, '205 cp'), + RgbInt8Color.rgbName(0xdc, 0x56, 0x7f, 'p 73-7 u'), + RgbInt8Color.rgbName(0xdd, 0x56, 0x87, 'p 75-7 u'), + RgbInt8Color.rgbName(0xdf, 0x6b, 0x9f, '2038 xgc'), + RgbInt8Color.rgbName(0xdd, 0x6d, 0x98, '2045 cp'), + RgbInt8Color.rgbName(0xdf, 0x67, 0x97, '212 cp'), + RgbInt8Color.rgbName(0xda, 0x6d, 0x9c, '219 up'), + RgbInt8Color.rgbName(0xe1, 0x6e, 0x97, 'p 75-6 u'), + RgbInt8Color.rgbName(0xf5, 0x87, 0xc7, '224 u'), + RgbInt8Color.rgbName(0xf9, 0x84, 0xca, '231 u'), + RgbInt8Color.rgbName(0xe5, 0x72, 0x0, '152 c'), + RgbInt8Color.rgbName(0xdd, 0x76, 0x2, '2019 xgc'), + RgbInt8Color.rgbName(0xf0, 0x64, 0x0, '3564 c'), + RgbInt8Color.rgbName(0xdc, 0x5d, 0x34, 'p 37-8 c'), + RgbInt8Color.rgbName(0xd9, 0x59, 0x41, '2448 cp'), + RgbInt8Color.rgbName(0xdc, 0x5c, 0x45, '3516 up'), + RgbInt8Color.rgbName(0xde, 0x5a, 0x4a, 'warm red cp'), + RgbInt8Color.rgbName(0xdd, 0x5c, 0x50, 'p 37-8 u'), + RgbInt8Color.rgbName(0xd5, 0x63, 0x57, '2031 cp'), + RgbInt8Color.rgbName(0xd2, 0x62, 0x5f, '7626 u'), + RgbInt8Color.rgbName(0xda, 0x5a, 0x5b, 'p 55-6 c'), + RgbInt8Color.rgbName(0xdd, 0x5b, 0x57, 'p 55-6 u'), + RgbInt8Color.rgbName(0xdd, 0x5b, 0x61, '1787 cp'), + RgbInt8Color.rgbName(0xdd, 0x59, 0x73, '2040 up'), + RgbInt8Color.rgbName(0xde, 0x5a, 0x6c, '710 cp'), + RgbInt8Color.rgbName(0xdd, 0x5e, 0x72, 'p 65-6 u'), + RgbInt8Color.rgbName(0xdc, 0x60, 0x75, 'p 65-6 c'), + RgbInt8Color.rgbName(0xdf, 0x5b, 0x84, '1915 xgc'), + RgbInt8Color.rgbName(0xde, 0x5e, 0x7f, 'p 71-6 u'), + RgbInt8Color.rgbName(0xdf, 0x78, 0xa8, '2038 cp'), + RgbInt8Color.rgbName(0xdd, 0x74, 0xa1, '2045 c'), + RgbInt8Color.rgbName(0xe0, 0x77, 0xa4, '2045 xgc'), + RgbInt8Color.rgbName(0xde, 0x76, 0xa4, 'p 75-6 c'), + RgbInt8Color.rgbName(0xe0, 0x94, 0xcc, '2064 u'), + RgbInt8Color.rgbName(0xde, 0x7c, 0x0, '138 c'), + RgbInt8Color.rgbName(0xe4, 0x7e, 0x1a, '158 cp'), + RgbInt8Color.rgbName(0xe1, 0x7c, 0xf, '2019 cp'), + RgbInt8Color.rgbName(0xe5, 0x80, 0x1c, 'orange 021 cp'), + RgbInt8Color.rgbName(0xde, 0x65, 0x2b, '3564 cp'), + RgbInt8Color.rgbName(0xe0, 0x6c, 0x2a, '166 cp'), + RgbInt8Color.rgbName(0xdc, 0x6b, 0x2f, '7578 c'), + RgbInt8Color.rgbName(0xdd, 0x67, 0x31, 'p 34-8 c'), + RgbInt8Color.rgbName(0xde, 0x6a, 0x2f, '1595 xgc'), + RgbInt8Color.rgbName(0xdc, 0x64, 0x42, 'p 40-7 c'), + RgbInt8Color.rgbName(0xdc, 0x62, 0x43, 'p 45-6 c'), + RgbInt8Color.rgbName(0xd1, 0x6b, 0x59, '173 up'), + RgbInt8Color.rgbName(0xda, 0x62, 0x53, '2448 c'), + RgbInt8Color.rgbName(0xd6, 0x67, 0x59, '2448 up'), + RgbInt8Color.rgbName(0xd6, 0x67, 0x56, '7597 u'), + RgbInt8Color.rgbName(0xdd, 0x64, 0x52, 'p 30-8 u'), + RgbInt8Color.rgbName(0xd3, 0x6b, 0x59, '179 up'), + RgbInt8Color.rgbName(0xde, 0x66, 0x5a, '2348 up'), + RgbInt8Color.rgbName(0xd2, 0x6a, 0x62, '7626 up'), + RgbInt8Color.rgbName(0xde, 0x60, 0x64, '192 up'), + RgbInt8Color.rgbName(0xd6, 0x69, 0x65, '2031 c'), + RgbInt8Color.rgbName(0xcf, 0x71, 0x5f, 'p 48-12 u'), + RgbInt8Color.rgbName(0xde, 0x64, 0x65, 'p 57-5 u'), + RgbInt8Color.rgbName(0xdd, 0x63, 0x68, 'p 62-6 c'), + RgbInt8Color.rgbName(0xd8, 0x6d, 0x6c, '2031 xgc'), + RgbInt8Color.rgbName(0xd4, 0x72, 0x71, '2032 u'), + RgbInt8Color.rgbName(0xd9, 0x6c, 0x6a, '2032 up'), + RgbInt8Color.rgbName(0xde, 0x62, 0x6a, 'p 62-6 u'), + RgbInt8Color.rgbName(0xde, 0x62, 0x76, '191 cp'), + RgbInt8Color.rgbName(0xdf, 0x61, 0x7b, 'p 68-6 u'), + RgbInt8Color.rgbName(0xe0, 0x62, 0x87, '7423 c'), + RgbInt8Color.rgbName(0xdf, 0x65, 0x89, 'p 73-6 u'), + RgbInt8Color.rgbName(0xdf, 0x68, 0x88, '7423 xgc'), + RgbInt8Color.rgbName(0xdd, 0x81, 0xaf, '218 cp'), + RgbInt8Color.rgbName(0xd3, 0x7d, 0xa5, 'p 80-4 u'), + RgbInt8Color.rgbName(0xe1, 0x81, 0xab, '211 xgc'), + RgbInt8Color.rgbName(0xe3, 0x87, 0x0, '138 xgc'), + RgbInt8Color.rgbName(0xe1, 0x70, 0x25, '1655 cp'), + RgbInt8Color.rgbName(0xdd, 0x6e, 0x2d, 'p 30-8 c'), + RgbInt8Color.rgbName(0xe0, 0x6e, 0x37, '172 cp'), + RgbInt8Color.rgbName(0xd7, 0x75, 0x40, '717 u'), + RgbInt8Color.rgbName(0xdd, 0x72, 0x40, '7578 xgc'), + RgbInt8Color.rgbName(0xdf, 0x70, 0x46, 'p 37-7 c'), + RgbInt8Color.rgbName(0xcf, 0x75, 0x55, 'p 40-13 c'), + RgbInt8Color.rgbName(0xdb, 0x6c, 0x5b, '485 up'), + RgbInt8Color.rgbName(0xd1, 0x73, 0x5c, 'p 48-12 c'), + RgbInt8Color.rgbName(0xe0, 0x6e, 0x64, '1788 up'), + RgbInt8Color.rgbName(0xdd, 0x71, 0x65, 'p 52-6 c'), + RgbInt8Color.rgbName(0xd4, 0x74, 0x6b, 'p 57-13 c'), + RgbInt8Color.rgbName(0xe0, 0x6b, 0x6c, '185 up'), + RgbInt8Color.rgbName(0xdd, 0x6d, 0x72, '2346 cp'), + RgbInt8Color.rgbName(0xd8, 0x75, 0x6b, '2448 u'), + RgbInt8Color.rgbName(0xde, 0x71, 0x6b, 'p 55-5 c'), + RgbInt8Color.rgbName(0xd6, 0x75, 0x73, 'p 59-11 u'), + RgbInt8Color.rgbName(0xde, 0x6a, 0x70, 'p 59-5 c'), + RgbInt8Color.rgbName(0xdd, 0x6f, 0x82, '205 up'), + RgbInt8Color.rgbName(0xd7, 0x76, 0x87, 'p 68-12 u'), + RgbInt8Color.rgbName(0xe2, 0x70, 0x84, 'p 68-5 u'), + RgbInt8Color.rgbName(0xe1, 0x6f, 0x8f, '1915 cp'), + RgbInt8Color.rgbName(0xd5, 0x78, 0x92, 'p 73-13 u'), + RgbInt8Color.rgbName(0xd9, 0x83, 0xb0, '231 xgc'), + RgbInt8Color.rgbName(0xd8, 0x86, 0xac, '232 up'), + RgbInt8Color.rgbName(0xdf, 0x8c, 0xba, '673 u'), + RgbInt8Color.rgbName(0xd6, 0x8b, 0xaf, '673 up'), + RgbInt8Color.rgbName(0xd5, 0x87, 0xaa, 'p 75-13 c'), + RgbInt8Color.rgbName(0xe3, 0x78, 0x28, '165 cp'), + RgbInt8Color.rgbName(0xe2, 0x7f, 0x20, 'p 24-8 c'), + RgbInt8Color.rgbName(0xe0, 0x7a, 0x29, 'p 27-8 c'), + RgbInt8Color.rgbName(0xd9, 0x85, 0x2d, '1385 cp'), + RgbInt8Color.rgbName(0xe3, 0x7a, 0x33, '717 cp'), + RgbInt8Color.rgbName(0xe0, 0x7a, 0x3f, '152 u'), + RgbInt8Color.rgbName(0xe0, 0x7e, 0x3c, '7577 c'), + RgbInt8Color.rgbName(0xdb, 0x7a, 0x51, '2433 c'), + RgbInt8Color.rgbName(0xd0, 0x80, 0x5d, '7583 up'), + RgbInt8Color.rgbName(0xd1, 0x7d, 0x5d, 'p 45-13 c'), + RgbInt8Color.rgbName(0xd1, 0x7e, 0x66, '7618 up'), + RgbInt8Color.rgbName(0xce, 0x87, 0x65, 'p 30-13 u'), + RgbInt8Color.rgbName(0xd2, 0x7c, 0x68, 'p 45-13 u'), + RgbInt8Color.rgbName(0xce, 0x89, 0x70, 'p 46-3 u'), + RgbInt8Color.rgbName(0xd6, 0x7e, 0x69, 'p 48-11 u'), + RgbInt8Color.rgbName(0xd6, 0x80, 0x70, 'p 52-12 u'), + RgbInt8Color.rgbName(0xd6, 0x7e, 0x70, 'p 55-12 u'), + RgbInt8Color.rgbName(0xdd, 0x79, 0x75, '2030 c'), + RgbInt8Color.rgbName(0xd0, 0x87, 0x76, 'p 53-4 c'), + RgbInt8Color.rgbName(0xd7, 0x7b, 0x7d, 'p 59-11 c'), + RgbInt8Color.rgbName(0xd5, 0x80, 0x7d, 'p 62-12 c'), + RgbInt8Color.rgbName(0xd8, 0x79, 0x87, '702 u'), + RgbInt8Color.rgbName(0xd8, 0x83, 0x82, 'p 62-11 u'), + RgbInt8Color.rgbName(0xe2, 0x77, 0x83, 'p 65-5 u'), + RgbInt8Color.rgbName(0xde, 0x7c, 0x8e, '7423 up'), + RgbInt8Color.rgbName(0xd6, 0x7e, 0x8e, 'p 68-12 c'), + RgbInt8Color.rgbName(0xd0, 0x85, 0x91, 'p 69-1 u'), + RgbInt8Color.rgbName(0xe3, 0x77, 0x96, '190 xgc'), + RgbInt8Color.rgbName(0xdf, 0x79, 0x96, 'p 71-5 c'), + RgbInt8Color.rgbName(0xdd, 0x7c, 0xa0, '2045 u'), + RgbInt8Color.rgbName(0xe0, 0x7b, 0xa1, '2045 up'), + RgbInt8Color.rgbName(0xd5, 0x81, 0xa1, 'p 75-13 u'), + RgbInt8Color.rgbName(0xd3, 0x8f, 0xb8, '237 xgc'), + RgbInt8Color.rgbName(0xd4, 0x92, 0xbb, '673 cp'), + RgbInt8Color.rgbName(0xd3, 0x91, 0xb7, '2057 cp'), + RgbInt8Color.rgbName(0xda, 0x93, 0xbd, '237 cp'), + RgbInt8Color.rgbName(0xdd, 0xae, 0xe9, '2562 u'), + RgbInt8Color.rgbName(0xe0, 0x95, 0x17, '7564 cp'), + RgbInt8Color.rgbName(0xdf, 0x94, 0x19, '7564 xgc'), + RgbInt8Color.rgbName(0xe6, 0x85, 0x23, '152 cp'), + RgbInt8Color.rgbName(0xdd, 0x85, 0x2b, '2428 cp'), + RgbInt8Color.rgbName(0xe5, 0x84, 0x26, '1585 cp'), + RgbInt8Color.rgbName(0xdd, 0x87, 0x2c, '2428 c'), + RgbInt8Color.rgbName(0xdc, 0x86, 0x33, '7413 c'), + RgbInt8Color.rgbName(0xd7, 0x87, 0x43, '2428 up'), + RgbInt8Color.rgbName(0xe1, 0x81, 0x3e, 'p 30-7 c'), + RgbInt8Color.rgbName(0xd8, 0x82, 0x4e, '2432 up'), + RgbInt8Color.rgbName(0xd5, 0x84, 0x54, '717 up'), + RgbInt8Color.rgbName(0xd8, 0x83, 0x65, '2433 u'), + RgbInt8Color.rgbName(0xd0, 0x8c, 0x60, '7412 u'), + RgbInt8Color.rgbName(0xd1, 0x8c, 0x62, 'p 27-13 u'), + RgbInt8Color.rgbName(0xd4, 0x85, 0x63, 'p 40-12 c'), + RgbInt8Color.rgbName(0xd6, 0x81, 0x68, 'p 48-11 c'), + RgbInt8Color.rgbName(0xce, 0x89, 0x6a, 'p 49-3 c'), + RgbInt8Color.rgbName(0xd5, 0x84, 0x6c, 'p 40-12 u'), + RgbInt8Color.rgbName(0xcf, 0x8d, 0x70, 'p 46-3 c'), + RgbInt8Color.rgbName(0xd0, 0x8a, 0x77, '7618 u'), + RgbInt8Color.rgbName(0xd7, 0x88, 0x76, 'p 52-12 c'), + RgbInt8Color.rgbName(0xd8, 0x84, 0x78, 'p 55-12 c'), + RgbInt8Color.rgbName(0xd1, 0x90, 0x82, '7607 up'), + RgbInt8Color.rgbName(0xdc, 0x87, 0x8b, '2445 up'), + RgbInt8Color.rgbName(0xd5, 0x88, 0x90, '2446 cp'), + RgbInt8Color.rgbName(0xd3, 0x89, 0x8f, '2446 up'), + RgbInt8Color.rgbName(0xd0, 0x90, 0x8e, 'p 63-3 c'), + RgbInt8Color.rgbName(0xe1, 0x81, 0x8b, 'p 65-5 c'), + RgbInt8Color.rgbName(0xd3, 0x8c, 0x9b, 'p 71-12 u'), + RgbInt8Color.rgbName(0xdf, 0xa0, 0xdb, '2065 u'), + RgbInt8Color.rgbName(0xe5, 0x9b, 0xdc, '244 c'), + RgbInt8Color.rgbName(0xdf, 0xa0, 0xc9, '672 c'), + RgbInt8Color.rgbName(0xdd, 0x92, 0x24, '7569 cp'), + RgbInt8Color.rgbName(0xe6, 0x8c, 0x28, '138 cp'), + RgbInt8Color.rgbName(0xe6, 0x8e, 0x27, 'p 20-8 c'), + RgbInt8Color.rgbName(0xdb, 0x93, 0x36, '7569 xgc'), + RgbInt8Color.rgbName(0xd9, 0x8e, 0x38, '7570 xgc'), + RgbInt8Color.rgbName(0xdb, 0x8d, 0x4c, '7576 cp'), + RgbInt8Color.rgbName(0xd3, 0x90, 0x51, 'p 20-14 u'), + RgbInt8Color.rgbName(0xd6, 0x8a, 0x57, '152 up'), + RgbInt8Color.rgbName(0xd2, 0x8e, 0x56, '7569 u'), + RgbInt8Color.rgbName(0xd2, 0x8e, 0x55, 'p 24-14 u'), + RgbInt8Color.rgbName(0xcf, 0x90, 0x62, '2430 up'), + RgbInt8Color.rgbName(0xdd, 0x8c, 0x59, '2432 c'), + RgbInt8Color.rgbName(0xd3, 0x90, 0x5c, 'p 30-13 c'), + RgbInt8Color.rgbName(0xd5, 0x8b, 0x5b, 'p 34-13 c'), + RgbInt8Color.rgbName(0xd1, 0x92, 0x68, '7412 up'), + RgbInt8Color.rgbName(0xcc, 0x92, 0x69, 'p 31-5 c'), + RgbInt8Color.rgbName(0xd5, 0x8b, 0x66, 'p 34-12 u'), + RgbInt8Color.rgbName(0xd4, 0x95, 0x6d, 'p 37-12 c'), + RgbInt8Color.rgbName(0xd3, 0x8f, 0x70, 'p 37-12 u'), + RgbInt8Color.rgbName(0xd8, 0x8b, 0x72, 'p 48-10 u'), + RgbInt8Color.rgbName(0xd0, 0x90, 0x74, 'p 49-2 u'), + RgbInt8Color.rgbName(0xcc, 0x9a, 0x74, 'p 38-3 c'), + RgbInt8Color.rgbName(0xda, 0x8f, 0x77, 'p 45-12 u'), + RgbInt8Color.rgbName(0xcd, 0x99, 0x76, 'p 49-10 c'), + RgbInt8Color.rgbName(0xd5, 0x96, 0x83, 'p 53-3 u'), + RgbInt8Color.rgbName(0xd9, 0x8a, 0x81, 'p 57-12 c'), + RgbInt8Color.rgbName(0xd5, 0x91, 0x85, 'p 58-2 c'), + RgbInt8Color.rgbName(0xd6, 0x91, 0x85, 'p 60-4 u'), + RgbInt8Color.rgbName(0xd6, 0x93, 0x8a, '7606 c'), + RgbInt8Color.rgbName(0xce, 0x9a, 0x8d, 'p 56-3 c'), + RgbInt8Color.rgbName(0xdc, 0x8c, 0x8a, 'p 59-10 c'), + RgbInt8Color.rgbName(0xda, 0x8f, 0x8c, 'p 62-11 c'), + RgbInt8Color.rgbName(0xda, 0x8e, 0xa0, '493 cp'), + RgbInt8Color.rgbName(0xdc, 0x8f, 0x9d, '493 xgc'), + RgbInt8Color.rgbName(0xdb, 0x8f, 0x9c, 'p 68-11 c'), + RgbInt8Color.rgbName(0xd9, 0x8d, 0xa8, 'p 73-12 c'), + RgbInt8Color.rgbName(0xdb, 0x8b, 0xa0, 'p 73-12 u'), + RgbInt8Color.rgbName(0xd5, 0x92, 0xaa, '507 c'), + RgbInt8Color.rgbName(0xd1, 0x95, 0xb0, 'p 76-4 c'), + RgbInt8Color.rgbName(0xd8, 0x95, 0xb5, '2057 up'), + RgbInt8Color.rgbName(0xd4, 0x96, 0xb7, '2064 up'), + RgbInt8Color.rgbName(0xd4, 0x97, 0xb0, '507 cp'), + RgbInt8Color.rgbName(0xd9, 0x8e, 0xb1, 'p 80-3 u'), + RgbInt8Color.rgbName(0xd2, 0x95, 0xb1, 'p 80-9 u'), + RgbInt8Color.rgbName(0xd3, 0x99, 0xbb, '244 up'), + RgbInt8Color.rgbName(0xce, 0xa5, 0xc5, '2065 cp'), + RgbInt8Color.rgbName(0xde, 0xa8, 0xdd, '2065 c'), + RgbInt8Color.rgbName(0xe0, 0xa2, 0xd4, '2064 c'), + RgbInt8Color.rgbName(0xe2, 0xa5, 0xd4, '515 u'), + RgbInt8Color.rgbName(0xd2, 0xa9, 0xca, 'p 83-3 c'), + RgbInt8Color.rgbName(0xeb, 0x9a, 0xde, '244 u'), + RgbInt8Color.rgbName(0xd4, 0x9d, 0x56, '7550 up'), + RgbInt8Color.rgbName(0xd8, 0x91, 0x54, '7569 up'), + RgbInt8Color.rgbName(0xd7, 0x91, 0x55, '7570 up'), + RgbInt8Color.rgbName(0xd2, 0x9a, 0x56, 'p 17-14 u'), + RgbInt8Color.rgbName(0xd7, 0x97, 0x53, 'p 24-14 c'), + RgbInt8Color.rgbName(0xd7, 0x99, 0x5a, 'p 20-13 u'), + RgbInt8Color.rgbName(0xd8, 0x9b, 0x65, 'p 27-13 c'), + RgbInt8Color.rgbName(0xcf, 0x9c, 0x6a, 'p 28-3 c'), + RgbInt8Color.rgbName(0xd4, 0x99, 0x73, '2430 cp'), + RgbInt8Color.rgbName(0xd6, 0x93, 0x70, 'p 30-12 u'), + RgbInt8Color.rgbName(0xd0, 0xa1, 0x7a, 'p 28-1 u'), + RgbInt8Color.rgbName(0xd1, 0x9b, 0x78, 'p 31-4 u'), + RgbInt8Color.rgbName(0xd3, 0x9c, 0x76, 'p 35-3 u'), + RgbInt8Color.rgbName(0xd9, 0x96, 0x73, 'p 40-11 c'), + RgbInt8Color.rgbName(0xdb, 0x93, 0x78, 'p 40-11 u'), + RgbInt8Color.rgbName(0xd4, 0x9f, 0x77, 'p 41-2 c'), + RgbInt8Color.rgbName(0xd4, 0x9c, 0x81, 'p 41-2 u'), + RgbInt8Color.rgbName(0xd6, 0x99, 0x7f, 'p 46-2 u'), + RgbInt8Color.rgbName(0xca, 0xa5, 0x8e, '4665 u'), + RgbInt8Color.rgbName(0xcb, 0xa7, 0x8a, 'p 32-2 u'), + RgbInt8Color.rgbName(0xcc, 0xa4, 0x89, 'p 42-1 c'), + RgbInt8Color.rgbName(0xd3, 0x9c, 0x88, 'p 53-11 u'), + RgbInt8Color.rgbName(0xce, 0xa0, 0x8b, 'p 54-1 u'), + RgbInt8Color.rgbName(0xd8, 0x95, 0x8b, 'p 60-4 c'), + RgbInt8Color.rgbName(0xd5, 0x97, 0x93, 'p 63-2 u'), + RgbInt8Color.rgbName(0xd4, 0x9d, 0x9e, 'p 65-10 u'), + RgbInt8Color.rgbName(0xdf, 0x96, 0xa1, 'p 68-10 u'), + RgbInt8Color.rgbName(0xd1, 0x9b, 0xa5, 'p 72-3 u'), + RgbInt8Color.rgbName(0xcf, 0xa6, 0xa9, '5015 cp'), + RgbInt8Color.rgbName(0xd2, 0x9f, 0xad, 'p 72-3 c'), + RgbInt8Color.rgbName(0xd0, 0xa1, 0xba, '686 c'), + RgbInt8Color.rgbName(0xd9, 0x97, 0xba, 'p 80-3 c'), + RgbInt8Color.rgbName(0xd4, 0x9c, 0xba, 'p 80-9 c'), + RgbInt8Color.rgbName(0xce, 0xa5, 0xbb, '2052 u'), + RgbInt8Color.rgbName(0xd9, 0x9f, 0xbf, '2057 u'), + RgbInt8Color.rgbName(0xd0, 0xa3, 0xc1, '2065 up'), + RgbInt8Color.rgbName(0xd2, 0xa6, 0xc7, '2064 xgc'), + RgbInt8Color.rgbName(0xd7, 0xa2, 0xc6, '244 cp'), + RgbInt8Color.rgbName(0xe2, 0xac, 0xd7, '515 c'), + RgbInt8Color.rgbName(0xe0, 0xa5, 0x26, '2007 c'), + RgbInt8Color.rgbName(0xde, 0xa5, 0x31, '7563 cp'), + RgbInt8Color.rgbName(0xdb, 0xa3, 0x39, '7563 xgc'), + RgbInt8Color.rgbName(0xd7, 0xa3, 0x54, 'p 14-14 u'), + RgbInt8Color.rgbName(0xd8, 0xa4, 0x56, 'p 17-14 c'), + RgbInt8Color.rgbName(0xd6, 0xa4, 0x61, '7509 c'), + RgbInt8Color.rgbName(0xd9, 0xa2, 0x5b, 'p 20-13 c'), + RgbInt8Color.rgbName(0xd1, 0xa0, 0x68, 'p 21-4 u'), + RgbInt8Color.rgbName(0xda, 0xa5, 0x63, '7563 u'), + RgbInt8Color.rgbName(0xdc, 0xa0, 0x63, 'p 24-13 u'), + RgbInt8Color.rgbName(0xd2, 0xa2, 0x73, '7509 u'), + RgbInt8Color.rgbName(0xcf, 0xa7, 0x73, 'p 21-10 c'), + RgbInt8Color.rgbName(0xd3, 0xa5, 0x6d, 'p 21-4 c'), + RgbInt8Color.rgbName(0xd1, 0xa3, 0x76, 'p 25-3 u'), + RgbInt8Color.rgbName(0xd9, 0x9c, 0x6d, 'p 30-12 c'), + RgbInt8Color.rgbName(0xd5, 0xa0, 0x75, 'p 35-3 c'), + RgbInt8Color.rgbName(0xd7, 0xa1, 0x79, '2430 c'), + RgbInt8Color.rgbName(0xd3, 0xa5, 0x77, 'p 28-2 c'), + RgbInt8Color.rgbName(0xce, 0xa2, 0x7e, 'p 35-11 u'), + RgbInt8Color.rgbName(0xd5, 0x9d, 0x7c, 'p 49-2 c'), + RgbInt8Color.rgbName(0xcd, 0xa7, 0x86, '2311 c'), + RgbInt8Color.rgbName(0xcd, 0xa7, 0x88, '4665 c'), + RgbInt8Color.rgbName(0xd1, 0xa6, 0x83, 'p 35-11 c'), + RgbInt8Color.rgbName(0xd3, 0xa3, 0x84, 'p 38-2 u'), + RgbInt8Color.rgbName(0xd1, 0x9f, 0x85, 'p 46-11 u'), + RgbInt8Color.rgbName(0xd7, 0xa0, 0x83, 'p 46-2 c'), + RgbInt8Color.rgbName(0xd2, 0xa2, 0x86, 'p 49-9 u'), + RgbInt8Color.rgbName(0xce, 0xa8, 0x8a, '2311 cp'), + RgbInt8Color.rgbName(0xcf, 0xa7, 0x90, '7521 up'), + RgbInt8Color.rgbName(0xd0, 0xa3, 0x92, '7612 cp'), + RgbInt8Color.rgbName(0xd2, 0xa3, 0x89, 'p 46-11 c'), + RgbInt8Color.rgbName(0xce, 0xa4, 0x8a, 'p 50-1 u'), + RgbInt8Color.rgbName(0xd5, 0xa5, 0x95, 'p 53-11 c'), + RgbInt8Color.rgbName(0xd0, 0xa7, 0x97, 'p 54-1 c'), + RgbInt8Color.rgbName(0xd2, 0xa4, 0xa2, '693 up'), + RgbInt8Color.rgbName(0xd4, 0xaa, 0xa0, '7612 u'), + RgbInt8Color.rgbName(0xd2, 0xa8, 0x9d, 'p 61-10 u'), + RgbInt8Color.rgbName(0xd7, 0xa4, 0xa0, 'p 63-2 c'), + RgbInt8Color.rgbName(0xd8, 0xa5, 0xac, '501 u'), + RgbInt8Color.rgbName(0xd7, 0x9f, 0xb0, '507 xgc'), + RgbInt8Color.rgbName(0xd7, 0xa3, 0xab, '693 c'), + RgbInt8Color.rgbName(0xd5, 0xa7, 0xa9, 'p 65-10 c'), + RgbInt8Color.rgbName(0xd4, 0xac, 0xaa, 'p 66-2 u'), + RgbInt8Color.rgbName(0xde, 0xa0, 0xab, 'p 68-10 c'), + RgbInt8Color.rgbName(0xd8, 0xa6, 0xab, 'p 69-10 u'), + RgbInt8Color.rgbName(0xd8, 0xa7, 0xb4, '693 cp'), + RgbInt8Color.rgbName(0xd9, 0xa3, 0xb1, '7431 up'), + RgbInt8Color.rgbName(0xda, 0xa2, 0xb7, 'p 76-3 u'), + RgbInt8Color.rgbName(0xd5, 0xa6, 0xbe, '686 u'), + RgbInt8Color.rgbName(0xd1, 0xa7, 0xc4, 'p 83-3 u'), + RgbInt8Color.rgbName(0xd8, 0xa2, 0xc4, '236 xgc'), + RgbInt8Color.rgbName(0xd2, 0xad, 0xcd, '2065 xgc'), + RgbInt8Color.rgbName(0xd0, 0xaf, 0xce, '7437 cp'), + RgbInt8Color.rgbName(0xce, 0xb0, 0xcb, 'p 83-11 c'), + RgbInt8Color.rgbName(0xd0, 0xbc, 0xd8, '256 xgc'), + RgbInt8Color.rgbName(0xd0, 0xb7, 0xd5, '523 u'), + RgbInt8Color.rgbName(0xd1, 0xb8, 0xd5, '530 cp'), + RgbInt8Color.rgbName(0xd1, 0xbc, 0xd8, '530 xgc'), + RgbInt8Color.rgbName(0xd4, 0xb6, 0xd6, '7437 u'), + RgbInt8Color.rgbName(0xcc, 0xbb, 0xd5, 'p 91-2 c'), + RgbInt8Color.rgbName(0xe6, 0xbe, 0xdd, '516 c'), + RgbInt8Color.rgbName(0xe6, 0xb1, 0xe, '7405 u'), + RgbInt8Color.rgbName(0xe4, 0xad, 0x36, '2007 xgc'), + RgbInt8Color.rgbName(0xdc, 0xab, 0x58, '7555 up'), + RgbInt8Color.rgbName(0xd9, 0xab, 0x5b, 'p 10-14 u'), + RgbInt8Color.rgbName(0xdb, 0xad, 0x56, 'p 14-14 c'), + RgbInt8Color.rgbName(0xdb, 0xac, 0x60, 'p 14-13 u'), + RgbInt8Color.rgbName(0xda, 0xab, 0x68, '7509 cp'), + RgbInt8Color.rgbName(0xd3, 0xaf, 0x6d, 'p 15-5 c'), + RgbInt8Color.rgbName(0xdb, 0xa7, 0x64, 'p 17-13 u'), + RgbInt8Color.rgbName(0xd1, 0xab, 0x7a, 'p 21-9 u'), + RgbInt8Color.rgbName(0xce, 0xab, 0x88, '4665 xgc'), + RgbInt8Color.rgbName(0xd3, 0xb0, 0x80, 'p 21-9 c'), + RgbInt8Color.rgbName(0xcf, 0xa8, 0x86, 'p 28-11 u'), + RgbInt8Color.rgbName(0xd4, 0xa9, 0x84, 'p 38-2 c'), + RgbInt8Color.rgbName(0xcd, 0xaa, 0x89, 'p 50-10 c'), + RgbInt8Color.rgbName(0xd0, 0xad, 0x91, '728 up'), + RgbInt8Color.rgbName(0xcf, 0xae, 0x8f, 'p 29-2 u'), + RgbInt8Color.rgbName(0xd0, 0xaf, 0x8f, 'p 32-2 c'), + RgbInt8Color.rgbName(0xd3, 0xab, 0x8e, 'p 38-10 u'), + RgbInt8Color.rgbName(0xd0, 0xad, 0x94, '4665 cp'), + RgbInt8Color.rgbName(0xd0, 0xac, 0x94, '480 up'), + RgbInt8Color.rgbName(0xd2, 0xac, 0x98, 'p 47-1 u'), + RgbInt8Color.rgbName(0xd7, 0xa9, 0x98, 'p 56-2 u'), + RgbInt8Color.rgbName(0xcf, 0xb1, 0x9b, 'p 42-10 c'), + RgbInt8Color.rgbName(0xce, 0xb3, 0x9d, 'p 43-1 u'), + RgbInt8Color.rgbName(0xd9, 0xa8, 0xad, '693 xgc'), + RgbInt8Color.rgbName(0xd4, 0xb2, 0xa9, 'p 61-10 c'), + RgbInt8Color.rgbName(0xd1, 0xb0, 0xb0, 'p 64-10 c'), + RgbInt8Color.rgbName(0xd2, 0xaf, 0xa9, 'p 64-10 u'), + RgbInt8Color.rgbName(0xcf, 0xaf, 0xaf, 'p 66-10 c'), + RgbInt8Color.rgbName(0xd5, 0xac, 0xb1, 'p 72-10 u'), + RgbInt8Color.rgbName(0xce, 0xb3, 0xb1, 'p 78-1 u'), + RgbInt8Color.rgbName(0xda, 0xab, 0xb0, '501 xgc'), + RgbInt8Color.rgbName(0xdb, 0xa9, 0xb4, '508 up'), + RgbInt8Color.rgbName(0xd4, 0xab, 0xbc, '686 xgc'), + RgbInt8Color.rgbName(0xd0, 0xb1, 0xb2, '7633 up'), + RgbInt8Color.rgbName(0xd9, 0xad, 0xb5, 'p 69-10 c'), + RgbInt8Color.rgbName(0xda, 0xa8, 0xb6, 'p 71-11 c'), + RgbInt8Color.rgbName(0xd5, 0xaf, 0xb8, 'p 72-10 c'), + RgbInt8Color.rgbName(0xd5, 0xad, 0xba, 'p 74-1 c'), + RgbInt8Color.rgbName(0xd7, 0xa8, 0xb1, 'p 74-1 u'), + RgbInt8Color.rgbName(0xd6, 0xa9, 0xba, 'p 76-11 u'), + RgbInt8Color.rgbName(0xd0, 0xae, 0xba, 'p 77-10 u'), + RgbInt8Color.rgbName(0xdc, 0xa9, 0xbf, '7430 c'), + RgbInt8Color.rgbName(0xd6, 0xad, 0xcc, '515 xgc'), + RgbInt8Color.rgbName(0xda, 0xac, 0xc6, '679 u'), + RgbInt8Color.rgbName(0xd9, 0xaa, 0xc6, '686 cp'), + RgbInt8Color.rgbName(0xd3, 0xb2, 0xca, '7437 up'), + RgbInt8Color.rgbName(0xd3, 0xb1, 0xcd, '256 up'), + RgbInt8Color.rgbName(0xd3, 0xb5, 0xd0, '2562 up'), + RgbInt8Color.rgbName(0xd0, 0xb3, 0xce, '529 up'), + RgbInt8Color.rgbName(0xdf, 0xc8, 0xe7, '531 c'), + RgbInt8Color.rgbName(0xdd, 0xc7, 0xdd, '531 cp'), + RgbInt8Color.rgbName(0xe4, 0xc7, 0xeb, '531 u'), + RgbInt8Color.rgbName(0xdd, 0xbb, 0x4c, 'p 7-15 c'), + RgbInt8Color.rgbName(0xdd, 0xb6, 0x5d, 'p 10-14 c'), + RgbInt8Color.rgbName(0xd9, 0xb7, 0x61, 'p 7-14 u'), + RgbInt8Color.rgbName(0xdf, 0xb6, 0x67, 'p 10-13 u'), + RgbInt8Color.rgbName(0xd7, 0xb8, 0x6a, 'p 11-4 c'), + RgbInt8Color.rgbName(0xd3, 0xb7, 0x76, 'p 11-11 c'), + RgbInt8Color.rgbName(0xd6, 0xb3, 0x76, 'p 15-4 u'), + RgbInt8Color.rgbName(0xd7, 0xbb, 0x77, '3599 c'), + RgbInt8Color.rgbName(0xd5, 0xb8, 0x7b, 'p 11-3 u'), + RgbInt8Color.rgbName(0xcf, 0xb7, 0x7e, 'p 12-3 c'), + RgbInt8Color.rgbName(0xd4, 0xb5, 0x7b, 'p 15-11 c'), + RgbInt8Color.rgbName(0xd6, 0xb2, 0x7d, 'p 18-4 c'), + RgbInt8Color.rgbName(0xdb, 0xb4, 0x81, '3596 up'), + RgbInt8Color.rgbName(0xce, 0xb8, 0x88, '7502 c'), + RgbInt8Color.rgbName(0xd2, 0xba, 0x85, '7502 xgc'), + RgbInt8Color.rgbName(0xd1, 0xb9, 0x85, 'p 11-10 u'), + RgbInt8Color.rgbName(0xd5, 0xb8, 0x84, 'p 15-10 u'), + RgbInt8Color.rgbName(0xd0, 0xb8, 0x8a, 'p 16-2 u'), + RgbInt8Color.rgbName(0xd2, 0xb6, 0x8b, 'p 19-1 c'), + RgbInt8Color.rgbName(0xd2, 0xb3, 0x89, 'p 22-2 u'), + RgbInt8Color.rgbName(0xd3, 0xb1, 0x86, 'p 25-9 c'), + RgbInt8Color.rgbName(0xd9, 0xb4, 0x8f, '727 c'), + RgbInt8Color.rgbName(0xd8, 0xb4, 0x8e, '727 xgc'), + RgbInt8Color.rgbName(0xcf, 0xb2, 0x90, 'p 26-1 u'), + RgbInt8Color.rgbName(0xd5, 0xb4, 0x92, 'p 28-11 c'), + RgbInt8Color.rgbName(0xd1, 0xaf, 0x90, 'p 38-10 c'), + RgbInt8Color.rgbName(0xd3, 0xae, 0x89, 'p 50-1 c'), + RgbInt8Color.rgbName(0xd2, 0xba, 0x92, '467 u'), + RgbInt8Color.rgbName(0xd3, 0xb4, 0x9d, '481 up'), + RgbInt8Color.rgbName(0xdb, 0xb5, 0x96, '727 up'), + RgbInt8Color.rgbName(0xd5, 0xaf, 0x97, '7514 up'), + RgbInt8Color.rgbName(0xd2, 0xb6, 0x9e, '7590 cp'), + RgbInt8Color.rgbName(0xd6, 0xb9, 0x96, 'p 22-2 c'), + RgbInt8Color.rgbName(0xd4, 0xb7, 0x9a, 'p 29-2 c'), + RgbInt8Color.rgbName(0xd4, 0xb1, 0x93, 'p 36-1 u'), + RgbInt8Color.rgbName(0xd1, 0xb6, 0xa8, '4745 xgc'), + RgbInt8Color.rgbName(0xd1, 0xb8, 0xa6, '481 cp'), + RgbInt8Color.rgbName(0xd4, 0xb5, 0x9e, '7590 c'), + RgbInt8Color.rgbName(0xd7, 0xb8, 0x9f, 'p 36-1 c'), + RgbInt8Color.rgbName(0xd3, 0xb8, 0xa3, 'p 39-10 c'), + RgbInt8Color.rgbName(0xd2, 0xb5, 0x9f, 'p 39-10 u'), + RgbInt8Color.rgbName(0xd4, 0xb6, 0xa0, 'p 47-1 c'), + RgbInt8Color.rgbName(0xd4, 0xba, 0xaa, '4745 up'), + RgbInt8Color.rgbName(0xd3, 0xb7, 0xa7, '481 u'), + RgbInt8Color.rgbName(0xcf, 0xb9, 0xac, 'p 51-3 u'), + RgbInt8Color.rgbName(0xd6, 0xb7, 0xac, 'p 54-9 c'), + RgbInt8Color.rgbName(0xd0, 0xbd, 0xb6, 'p 51-3 c'), + RgbInt8Color.rgbName(0xcd, 0xc0, 0xc3, '2473 up'), + RgbInt8Color.rgbName(0xcb, 0xc4, 0xbd, '406 cp'), + RgbInt8Color.rgbName(0xd7, 0xb3, 0xc3, 'p 76-11 c'), + RgbInt8Color.rgbName(0xd1, 0xb6, 0xc3, 'p 77-10 c'), + RgbInt8Color.rgbName(0xd0, 0xbb, 0xbf, 'p 78-1 c'), + RgbInt8Color.rgbName(0xcb, 0xc4, 0xbc, 'warm gray 2 c'), + RgbInt8Color.rgbName(0xd1, 0xb9, 0xc8, 'p 82-10 c'), + RgbInt8Color.rgbName(0xcf, 0xbd, 0xcb, 'p 85-1 u'), + RgbInt8Color.rgbName(0xcf, 0xc1, 0xc7, 'p 86-2 u'), + RgbInt8Color.rgbName(0xd2, 0xbb, 0xd4, 'p 88-2 u'), + RgbInt8Color.rgbName(0xcd, 0xc0, 0xcf, 'p 90-9 c'), + RgbInt8Color.rgbName(0xca, 0xcf, 0xe1, '2706 up'), + RgbInt8Color.rgbName(0xd9, 0xcd, 0xe9, '9361 u'), + RgbInt8Color.rgbName(0xcf, 0xd2, 0xe1, 'p 105-1 c'), + RgbInt8Color.rgbName(0xd3, 0xca, 0xdc, 'p 93-9 c'), + RgbInt8Color.rgbName(0xd1, 0xd0, 0xe4, 'p 99-2 c'), + RgbInt8Color.rgbName(0xe2, 0xc9, 0x3f, 'p 4-15 c'), + RgbInt8Color.rgbName(0xdf, 0xc4, 0x5f, 'p 4-14 u'), + RgbInt8Color.rgbName(0xdb, 0xbc, 0x73, '3599 cp'), + RgbInt8Color.rgbName(0xd5, 0xc0, 0x76, 'p 5-4 u'), + RgbInt8Color.rgbName(0xda, 0xbc, 0x7f, '3599 u'), + RgbInt8Color.rgbName(0xdb, 0xbf, 0x82, '3599 up'), + RgbInt8Color.rgbName(0xdb, 0xbc, 0x81, 'p 15-4 c'), + RgbInt8Color.rgbName(0xd9, 0xc1, 0x80, 'p 8-4 u'), + RgbInt8Color.rgbName(0xd4, 0xc2, 0x89, 'p 9-3 c'), + RgbInt8Color.rgbName(0xcf, 0xc4, 0x93, '4535 c'), + RgbInt8Color.rgbName(0xd4, 0xbf, 0x93, '467 cp'), + RgbInt8Color.rgbName(0xd6, 0xbc, 0x8d, '7502 cp'), + RgbInt8Color.rgbName(0xd8, 0xc2, 0x8c, 'p 11-10 c'), + RgbInt8Color.rgbName(0xd9, 0xc0, 0x8e, 'p 15-10 c'), + RgbInt8Color.rgbName(0xd3, 0xbe, 0x93, 'p 16-2 c'), + RgbInt8Color.rgbName(0xd9, 0xbc, 0x8d, 'p 18-9 u'), + RgbInt8Color.rgbName(0xd3, 0xc5, 0x99, '4535 up'), + RgbInt8Color.rgbName(0xd8, 0xc0, 0x96, '467 up'), + RgbInt8Color.rgbName(0xd2, 0xc1, 0x98, 'p 12-9 u'), + RgbInt8Color.rgbName(0xd3, 0xbe, 0x99, 'p 19-10 c'), + RgbInt8Color.rgbName(0xd5, 0xbd, 0x98, 'p 22-9 u'), + RgbInt8Color.rgbName(0xd3, 0xbf, 0x9f, 'p 23-2 u'), + RgbInt8Color.rgbName(0xd4, 0xba, 0x9a, 'p 26-1 c'), + RgbInt8Color.rgbName(0xd2, 0xc3, 0x96, 'p 9-10 c'), + RgbInt8Color.rgbName(0xd3, 0xc2, 0x96, 'p 9-2 u'), + RgbInt8Color.rgbName(0xd3, 0xbb, 0xa8, '481 c'), + RgbInt8Color.rgbName(0xd8, 0xbe, 0xab, '481 xgc'), + RgbInt8Color.rgbName(0xcf, 0xc6, 0xb5, 'p 169-3 u'), + RgbInt8Color.rgbName(0xd2, 0xc1, 0xb1, 'p 33-1 u'), + RgbInt8Color.rgbName(0xd4, 0xbe, 0xc3, '5165 up'), + RgbInt8Color.rgbName(0xd0, 0xc4, 0xba, 'p 33-1 c'), + RgbInt8Color.rgbName(0xce, 0xc7, 0xbf, 'warm gray 2 cp'), + RgbInt8Color.rgbName(0xcf, 0xc7, 0xc0, 'warm gray 2 u'), + RgbInt8Color.rgbName(0xcd, 0xcc, 0xc8, '2330 up'), + RgbInt8Color.rgbName(0xd0, 0xc4, 0xc5, '434 c'), + RgbInt8Color.rgbName(0xd3, 0xc0, 0xcd, '5165 c'), + RgbInt8Color.rgbName(0xd5, 0xbf, 0xc3, '5235 up'), + RgbInt8Color.rgbName(0xd1, 0xc4, 0xca, '5235 xgc'), + RgbInt8Color.rgbName(0xd8, 0xbd, 0xd5, '530 up'), + RgbInt8Color.rgbName(0xce, 0xca, 0xd3, '5305 xgc'), + RgbInt8Color.rgbName(0xd2, 0xc4, 0xd2, 'p 85-1 c'), + RgbInt8Color.rgbName(0xd4, 0xc3, 0xd6, 'p 88-9 u'), + RgbInt8Color.rgbName(0xd1, 0xc2, 0xd0, 'p 90-1 u'), + RgbInt8Color.rgbName(0xd5, 0xc2, 0xd8, '524 c'), + RgbInt8Color.rgbName(0xd1, 0xc7, 0xd9, '9363 c'), + RgbInt8Color.rgbName(0xd2, 0xc6, 0xd9, 'p 91-10 c'), + RgbInt8Color.rgbName(0xd1, 0xc7, 0xdb, 'p 93-9 u'), + RgbInt8Color.rgbName(0xf2, 0xcd, 0x0, '7405 c'), + RgbInt8Color.rgbName(0xf1, 0xc4, 0x0, '7406 c'), + RgbInt8Color.rgbName(0xe5, 0xcf, 0x4a, '605 up'), + RgbInt8Color.rgbName(0xdd, 0xcc, 0x5b, '7758 up'), + RgbInt8Color.rgbName(0xde, 0xcd, 0x63, '459 c'), + RgbInt8Color.rgbName(0xde, 0xcf, 0x60, 'p 2-5 c'), + RgbInt8Color.rgbName(0xe4, 0xca, 0x6d, 'p 4-13 u'), + RgbInt8Color.rgbName(0xe2, 0xc5, 0x6d, 'p 7-14 c'), + RgbInt8Color.rgbName(0xdd, 0xcb, 0x77, '459 u'), + RgbInt8Color.rgbName(0xd6, 0xcb, 0x7e, 'p 2-12 c'), + RgbInt8Color.rgbName(0xdd, 0xcb, 0x78, 'p 5-4 c'), + RgbInt8Color.rgbName(0xdc, 0xc8, 0x82, 'p 5-3 u'), + RgbInt8Color.rgbName(0xd8, 0xc9, 0x83, 'p 5-9 c'), + RgbInt8Color.rgbName(0xd7, 0xc4, 0x87, 'p 8-12 c'), + RgbInt8Color.rgbName(0xd6, 0xcf, 0x8d, '615 c'), + RgbInt8Color.rgbName(0xd4, 0xce, 0x8e, '615 xgc'), + RgbInt8Color.rgbName(0xd7, 0xce, 0x8c, '616 cp'), + RgbInt8Color.rgbName(0xd2, 0xce, 0x91, 'p 167-9 u'), + RgbInt8Color.rgbName(0xd4, 0xc6, 0x93, 'p 6-1 u'), + RgbInt8Color.rgbName(0xd3, 0xc7, 0x9d, '4535 cp'), + RgbInt8Color.rgbName(0xd5, 0xca, 0x98, '4535 xgc'), + RgbInt8Color.rgbName(0xd8, 0xc4, 0x97, 'p 12-2 c'), + RgbInt8Color.rgbName(0xd0, 0xcd, 0xa5, '454 up'), + RgbInt8Color.rgbName(0xd5, 0xcb, 0x9f, '4545 c'), + RgbInt8Color.rgbName(0xd6, 0xcf, 0xa0, '5865 up'), + RgbInt8Color.rgbName(0xd2, 0xce, 0x9e, '5875 c'), + RgbInt8Color.rgbName(0xd2, 0xce, 0x9c, '5875 xgc'), + RgbInt8Color.rgbName(0xd9, 0xc8, 0x9e, '7501 c'), + RgbInt8Color.rgbName(0xd6, 0xc5, 0xa3, 'p 16-10 c'), + RgbInt8Color.rgbName(0xd5, 0xce, 0x9e, 'p 3-11 c'), + RgbInt8Color.rgbName(0xd1, 0xcd, 0xaa, '454 cp'), + RgbInt8Color.rgbName(0xd3, 0xc5, 0xa8, 'p 13-2 u'), + RgbInt8Color.rgbName(0xce, 0xcd, 0xba, '7534 xgc'), + RgbInt8Color.rgbName(0xd0, 0xd0, 0xb6, '9603 u'), + RgbInt8Color.rgbName(0xd5, 0xc7, 0xb6, 'p 23-1 c'), + RgbInt8Color.rgbName(0xd3, 0xc8, 0xc3, '434 xgc'), + RgbInt8Color.rgbName(0xd2, 0xc7, 0xc4, '7528 u'), + RgbInt8Color.rgbName(0xd1, 0xcc, 0xbd, '7534 c'), + RgbInt8Color.rgbName(0xd0, 0xcb, 0xc3, '7534 u'), + RgbInt8Color.rgbName(0xd2, 0xcb, 0xbf, 'warm gray 2 xgc'), + RgbInt8Color.rgbName(0xcf, 0xcd, 0xc9, '2330 c'), + RgbInt8Color.rgbName(0xd0, 0xce, 0xc9, '2330 u'), + RgbInt8Color.rgbName(0xd0, 0xcf, 0xca, '2330 xgc'), + RgbInt8Color.rgbName(0xcd, 0xcd, 0xcb, '420 xgc'), + RgbInt8Color.rgbName(0xd2, 0xc9, 0xc8, '434 cp'), + RgbInt8Color.rgbName(0xd6, 0xca, 0xc8, '434 up'), + RgbInt8Color.rgbName(0xd6, 0xc9, 0xca, '7632 c'), + RgbInt8Color.rgbName(0xd1, 0xcc, 0xc4, '9082 u'), + RgbInt8Color.rgbName(0xd0, 0xcc, 0xc7, 'p 172-1 u'), + RgbInt8Color.rgbName(0xcd, 0xcd, 0xcd, 'p 179-3 c'), + RgbInt8Color.rgbName(0xd3, 0xc9, 0xcd, 'p 86-2 c'), + RgbInt8Color.rgbName(0xd8, 0xc8, 0xd1, '5175 c'), + RgbInt8Color.rgbName(0xcd, 0xd0, 0xcf, 'p 175-1 c'), + RgbInt8Color.rgbName(0xd4, 0xc8, 0xd6, 'p 90-1 c'), + RgbInt8Color.rgbName(0xd3, 0xc9, 0xd6, 'p 92-9 u'), + RgbInt8Color.rgbName(0xd4, 0xc8, 0xda, '524 xgc'), + RgbInt8Color.rgbName(0xd0, 0xce, 0xdc, 'p 100-9 u'), + RgbInt8Color.rgbName(0xd7, 0xc6, 0xda, 'p 88-2 c'), + RgbInt8Color.rgbName(0xd8, 0xcb, 0xdc, 'p 88-9 c'), + RgbInt8Color.rgbName(0xd4, 0xcb, 0xd9, 'p 92-9 c'), + RgbInt8Color.rgbName(0xd8, 0xca, 0xe1, '2085 xgc'), + RgbInt8Color.rgbName(0xce, 0xd9, 0xe5, '650 c'), + RgbInt8Color.rgbName(0xf3, 0xd0, 0x1c, '7405 cp'), + RgbInt8Color.rgbName(0xe1, 0xd5, 0x55, '610 c'), + RgbInt8Color.rgbName(0xe0, 0xd1, 0x60, '458 cp'), + RgbInt8Color.rgbName(0xe1, 0xd0, 0x5e, '459 xgc'), + RgbInt8Color.rgbName(0xe1, 0xd5, 0x5b, '610 xgc'), + RgbInt8Color.rgbName(0xe0, 0xd2, 0x68, '610 u'), + RgbInt8Color.rgbName(0xe3, 0xd0, 0x5f, 'p 1-14 u'), + RgbInt8Color.rgbName(0xe5, 0xcf, 0x61, 'p 4-14 c'), + RgbInt8Color.rgbName(0xe0, 0xd3, 0x6a, '610 up'), + RgbInt8Color.rgbName(0xdb, 0xce, 0x7f, 'p 2-4 u'), + RgbInt8Color.rgbName(0xd2, 0xd6, 0x92, '7492 cp'), + RgbInt8Color.rgbName(0xd5, 0xd1, 0x92, 'p 167-2 c'), + RgbInt8Color.rgbName(0xd8, 0xd3, 0x8d, 'p 167-2 u'), + RgbInt8Color.rgbName(0xd8, 0xd0, 0x96, '615 u'), + RgbInt8Color.rgbName(0xd3, 0xd8, 0x9b, 'p 160-11 c'), + RgbInt8Color.rgbName(0xd3, 0xd3, 0x9d, 'p 164-2 c'), + RgbInt8Color.rgbName(0xdb, 0xd2, 0x98, 'p 2-10 u'), + RgbInt8Color.rgbName(0xd3, 0xd0, 0xa5, '5797 up'), + RgbInt8Color.rgbName(0xd7, 0xd3, 0xa1, '5875 u'), + RgbInt8Color.rgbName(0xda, 0xd3, 0xa3, '5875 up'), + RgbInt8Color.rgbName(0xd2, 0xd5, 0xa4, 'p 161-9 u'), + RgbInt8Color.rgbName(0xda, 0xcf, 0xa0, 'p 6-1 c'), + RgbInt8Color.rgbName(0xcf, 0xd3, 0xb8, '5803 u'), + RgbInt8Color.rgbName(0xd1, 0xd2, 0xb0, '5803 up'), + RgbInt8Color.rgbName(0xd7, 0xd4, 0xad, '5807 up'), + RgbInt8Color.rgbName(0xd7, 0xd3, 0xaa, '5875 cp'), + RgbInt8Color.rgbName(0xd5, 0xd0, 0xab, '9123 u'), + RgbInt8Color.rgbName(0xd3, 0xd6, 0xae, 'p 161-9 c'), + RgbInt8Color.rgbName(0xd2, 0xd5, 0xac, 'p 162-2 u'), + RgbInt8Color.rgbName(0xd6, 0xd7, 0xb5, '5807 cp'), + RgbInt8Color.rgbName(0xcd, 0xd4, 0xbb, 'p 159-9 c'), + RgbInt8Color.rgbName(0xd2, 0xd7, 0xb8, 'p 162-2 c'), + RgbInt8Color.rgbName(0xd8, 0xd3, 0xbf, '7534 cp'), + RgbInt8Color.rgbName(0xd8, 0xd2, 0xbf, '7534 up'), + RgbInt8Color.rgbName(0xd3, 0xce, 0xc2, 'warm gray 2 up'), + RgbInt8Color.rgbName(0xcb, 0xd5, 0xcf, '5527 cp'), + RgbInt8Color.rgbName(0xd6, 0xd2, 0xc4, '7527 c'), + RgbInt8Color.rgbName(0xd0, 0xd3, 0xcd, '9102 u'), + RgbInt8Color.rgbName(0xd0, 0xd0, 0xce, 'cool gray 2 c'), + RgbInt8Color.rgbName(0xd4, 0xd1, 0xcb, 'cool gray 2 up'), + RgbInt8Color.rgbName(0xd1, 0xd2, 0xd1, 'cool gray 2 xgc'), + RgbInt8Color.rgbName(0xd4, 0xd1, 0xcd, 'p 172-1 c'), + RgbInt8Color.rgbName(0xd7, 0xd2, 0xcb, 'warm gray 1 c'), + RgbInt8Color.rgbName(0xd4, 0xd5, 0xd4, '10101 c'), + RgbInt8Color.rgbName(0xd5, 0xd4, 0xd0, '420 cp'), + RgbInt8Color.rgbName(0xd0, 0xd3, 0xd4, '427 c'), + RgbInt8Color.rgbName(0xd1, 0xd4, 0xd3, '427 xgc'), + RgbInt8Color.rgbName(0xd6, 0xd6, 0xd2, 'cool gray 2 cp'), + RgbInt8Color.rgbName(0xcd, 0xd7, 0xe1, '538 u'), + RgbInt8Color.rgbName(0xcf, 0xd8, 0xdf, '650 up'), + RgbInt8Color.rgbName(0xce, 0xd5, 0xdf, '9385 c'), + RgbInt8Color.rgbName(0xcf, 0xd9, 0xe3, '538 cp'), + RgbInt8Color.rgbName(0xd1, 0xdd, 0xe6, '642 c'), + RgbInt8Color.rgbName(0xd2, 0xd9, 0xe8, '9381 c'), + RgbInt8Color.rgbName(0xd1, 0xd5, 0xe3, '9383 c'), + RgbInt8Color.rgbName(0xce, 0xd9, 0xe4, '9403 c'), + RgbInt8Color.rgbName(0xd4, 0xd4, 0xe2, 'p 100-9 c'), + RgbInt8Color.rgbName(0xd5, 0xd6, 0xe4, 'p 104-9 u'), + RgbInt8Color.rgbName(0xd2, 0xd8, 0xe6, 'p 106-9 u'), + RgbInt8Color.rgbName(0xd0, 0xdb, 0xe8, 'p 109-9 u'), + RgbInt8Color.rgbName(0xd1, 0xdc, 0xe9, 'p 109-9 c'), + RgbInt8Color.rgbName(0xfc, 0xdc, 0x0, 'p 4-8 c'), + RgbInt8Color.rgbName(0xdd, 0xe0, 0x77, '586 xgc'), + RgbInt8Color.rgbName(0xe0, 0xe1, 0x7a, '379 cp'), + RgbInt8Color.rgbName(0xdf, 0xe0, 0x7b, '387 up'), + RgbInt8Color.rgbName(0xe1, 0xd8, 0x7b, '460 xgc'), + RgbInt8Color.rgbName(0xe6, 0xde, 0x77, '609 c'), + RgbInt8Color.rgbName(0xe0, 0xde, 0x81, '585 up'), + RgbInt8Color.rgbName(0xdd, 0xd8, 0x8b, 'p 166-11 c'), + RgbInt8Color.rgbName(0xda, 0xdb, 0x99, 'p 163-11 c'), + RgbInt8Color.rgbName(0xdf, 0xd9, 0x9f, '615 cp'), + RgbInt8Color.rgbName(0xd9, 0xdb, 0xa6, 'p 164-1 u'), + RgbInt8Color.rgbName(0xda, 0xd7, 0xa3, 'p 167-1 c'), + RgbInt8Color.rgbName(0xd9, 0xda, 0xae, 'p 164-1 c'), + RgbInt8Color.rgbName(0xda, 0xdb, 0xba, '9602 u'), + RgbInt8Color.rgbName(0xd4, 0xd8, 0xc2, '9582 u'), + RgbInt8Color.rgbName(0xd3, 0xd8, 0xc1, '9585 u'), + RgbInt8Color.rgbName(0xd9, 0xdb, 0xbd, '9602 c'), + RgbInt8Color.rgbName(0xd5, 0xdd, 0xce, '9563 c'), + RgbInt8Color.rgbName(0xd7, 0xdb, 0xc8, '9582 c'), + RgbInt8Color.rgbName(0xd7, 0xdb, 0xc6, '9585 c'), + RgbInt8Color.rgbName(0xd9, 0xde, 0xc9, 'p 159-1 c'), + RgbInt8Color.rgbName(0xcf, 0xde, 0xd9, 'p 129-9 c'), + RgbInt8Color.rgbName(0xd0, 0xdc, 0xde, '5455 up'), + RgbInt8Color.rgbName(0xd2, 0xde, 0xe7, '642 up'), + RgbInt8Color.rgbName(0xd4, 0xdb, 0xe9, 'p 106-9 c'), + RgbInt8Color.rgbName(0xd3, 0xe0, 0xea, '642 u'), + RgbInt8Color.rgbName(0xd6, 0xe1, 0xec, '9400 c'), + RgbInt8Color.rgbName(0xd5, 0xe1, 0xed, '9401 c'), + RgbInt8Color.rgbName(0xd5, 0xe0, 0xea, '9402 c'), + RgbInt8Color.rgbName(0xfc, 0xe3, 0x0, '102 c'), + RgbInt8Color.rgbName(0xfe, 0xe5, 0x0, '102 cp'), + RgbInt8Color.rgbName(0xff, 0xe9, 0x0, '803 c'), + RgbInt8Color.rgbName(0xff, 0xe7, 0x0, 'p 1-8 c'), + RgbInt8Color.rgbName(0xff, 0xe0, 0x0, 'yellow 012 u'), + RgbInt8Color.rgbName(0xfd, 0xe1, 0x0, 'yellow cp'), + RgbInt8Color.rgbName(0xff, 0xe8, 0x0, 'yellow u'), + RgbInt8Color.rgbName(0xff, 0xe9, 0x16, '803 u'), + RgbInt8Color.rgbName(0xfb, 0xe1, 0x22, '107 c'), + RgbInt8Color.rgbName(0xfd, 0xe7, 0x24, '107 cp'), + RgbInt8Color.rgbName(0xff, 0xea, 0x2e, 'p 1-8 u'), + RgbInt8Color.rgbName(0xff, 0xe5, 0x2b, 'process yellow u'), + RgbInt8Color.rgbName(0xe4, 0xe2, 0x79, '379 up'), + RgbInt8Color.rgbName(0xe2, 0xe2, 0x80, '386 up'), + RgbInt8Color.rgbName(0xe0, 0xe2, 0x7c, '586 c'), + RgbInt8Color.rgbName(0xe0, 0xe3, 0x83, 'p 163-5 u'), + RgbInt8Color.rgbName(0xe3, 0xe6, 0x85, '585 u'), + RgbInt8Color.rgbName(0xe0, 0xec, 0x89, '2295 c'), + RgbInt8Color.rgbName(0xe3, 0xe3, 0x85, '586 cp'), + RgbInt8Color.rgbName(0xe1, 0xe6, 0x8b, '587 xgc'), + RgbInt8Color.rgbName(0xe3, 0xe4, 0x8d, '587 c'), + RgbInt8Color.rgbName(0xe4, 0xe5, 0x97, '587 cp'), + RgbInt8Color.rgbName(0xdd, 0xe2, 0x9d, 'p 160-4 c'), + RgbInt8Color.rgbName(0xe5, 0xe8, 0x94, 'p 163-4 u'), + RgbInt8Color.rgbName(0xe2, 0xe3, 0x92, 'p 163-5 c'), + RgbInt8Color.rgbName(0xde, 0xe2, 0x9f, '2295 cp'), + RgbInt8Color.rgbName(0xe2, 0xe5, 0xa0, '2295 up'), + RgbInt8Color.rgbName(0xdf, 0xe0, 0xa1, 'p 163-10 u'), + RgbInt8Color.rgbName(0xe5, 0xe6, 0xa1, 'p 163-4 c'), + RgbInt8Color.rgbName(0xe3, 0xe9, 0xab, 'p 160-3 u'), + RgbInt8Color.rgbName(0xe4, 0xe7, 0xb5, 'p 160-3 c'), + RgbInt8Color.rgbName(0xe6, 0xe6, 0xb2, 'p 163-9 u'), + RgbInt8Color.rgbName(0xde, 0xdf, 0xb6, 'p 164-9 u'), + RgbInt8Color.rgbName(0xe4, 0xe4, 0xbe, 'p 163-9 c'), + RgbInt8Color.rgbName(0xd6, 0xe2, 0xcf, '9562 c'), + RgbInt8Color.rgbName(0xde, 0xe9, 0xca, '9581 u'), + RgbInt8Color.rgbName(0xdc, 0xe2, 0xc9, '9584 u'), + RgbInt8Color.rgbName(0xdd, 0xe4, 0xc7, 'p 158-9 u'), + RgbInt8Color.rgbName(0xd1, 0xe0, 0xd7, '621 c'), + RgbInt8Color.rgbName(0xd8, 0xe2, 0xd4, '621 cp'), + RgbInt8Color.rgbName(0xd3, 0xe2, 0xd6, '621 xgc'), + RgbInt8Color.rgbName(0xdb, 0xe5, 0xd3, 'p 152-9 u'), + RgbInt8Color.rgbName(0xd6, 0xe6, 0xdf, '9522 c'), + RgbInt8Color.rgbName(0xd6, 0xe3, 0xdc, '9523 c'), + RgbInt8Color.rgbName(0xd3, 0xe4, 0xe2, 'p 124-9 c'), + RgbInt8Color.rgbName(0xcf, 0xe4, 0xdf, 'p 127-1 c'), + RgbInt8Color.rgbName(0xd8, 0xe5, 0xda, 'p 139-9 c'), + RgbInt8Color.rgbName(0xd5, 0xe4, 0xe2, 'p 122-1 c'), + RgbInt8Color.rgbName(0xd5, 0xe5, 0xe2, 'p 122-1 u'), + RgbInt8Color.rgbName(0xd6, 0xe2, 0xeb, '642 cp'), + RgbInt8Color.rgbName(0xd9, 0xe5, 0xec, '649 xgc'), + RgbInt8Color.rgbName(0xdd, 0xe5, 0xed, '656 c'), + RgbInt8Color.rgbName(0xdf, 0xe8, 0xf2, '656 cp'), + RgbInt8Color.rgbName(0xfe, 0xdd, 0x0, 'yellow c'), + RgbInt8Color.rgbName(0xff, 0xec, 0x2d, '102 u'), + RgbInt8Color.rgbName(0xf9, 0xe5, 0x47, '106 c'), + RgbInt8Color.rgbName(0xfa, 0xe4, 0x48, '2003 cp'), + RgbInt8Color.rgbName(0xed, 0xdc, 0x4d, '604 u'), + RgbInt8Color.rgbName(0xff, 0xed, 0x4a, 'yellow up'), + RgbInt8Color.rgbName(0xf0, 0xe0, 0x4e, '3965 up'), + RgbInt8Color.rgbName(0xe4, 0xd7, 0x77, '459 cp'), + RgbInt8Color.rgbName(0xe3, 0xeb, 0xb5, 'p 157-2 u'), + RgbInt8Color.rgbName(0xe1, 0xe8, 0xc2, 'p 157-2 c'), + RgbInt8Color.rgbName(0xe1, 0xef, 0xce, '9580 c'), + RgbInt8Color.rgbName(0xde, 0xe7, 0xcd, '9581 c'), + RgbInt8Color.rgbName(0xd9, 0xe8, 0xd6, 'p 142-1 c'), + RgbInt8Color.rgbName(0xde, 0xec, 0xd3, 'p 151-1 u'), + RgbInt8Color.rgbName(0xd5, 0xe9, 0xe1, '9521 c'), + RgbInt8Color.rgbName(0xdf, 0xef, 0xdb, '9560 c'), + RgbInt8Color.rgbName(0xdf, 0xf0, 0xe5, '9041 u'), + RgbInt8Color.rgbName(0xe1, 0xf0, 0xe5, '9540 c'), + RgbInt8Color.rgbName(0xdf, 0xef, 0xea, 'p 124-1 u'), + RgbInt8Color.rgbName(0xe1, 0xf1, 0xef, '9062 u'), + RgbInt8Color.rgbName(0xe3, 0xed, 0xf2, 'p 115-9 c'), + RgbInt8Color.rgbName(0xe2, 0xef, 0xf3, 'p 115-9 u'), + RgbInt8Color.rgbName(0xe2, 0xea, 0xf2, '656 u'), + RgbInt8Color.rgbName(0xe2, 0xe9, 0xf2, 'p 109-1 u'), + RgbInt8Color.rgbName(0xfe, 0xdb, 0x0, '108 c'), + RgbInt8Color.rgbName(0xf4, 0xda, 0x40, '7404 c'), + RgbInt8Color.rgbName(0xf4, 0xe1, 0x4b, '7404 xgc'), + RgbInt8Color.rgbName(0xfe, 0xe9, 0x49, 'p 1-7 c'), + RgbInt8Color.rgbName(0xf0, 0xe0, 0x53, '3955 up'), + RgbInt8Color.rgbName(0xf5, 0xe7, 0x58, '101 xgc'), + RgbInt8Color.rgbName(0xf4, 0xe7, 0x58, '106 xgc'), + RgbInt8Color.rgbName(0xed, 0xe4, 0x61, '394 cp'), + RgbInt8Color.rgbName(0xf2, 0xe6, 0x64, '3935 xgc'), + RgbInt8Color.rgbName(0xe9, 0xe6, 0x71, '393 xgc'), + RgbInt8Color.rgbName(0xe3, 0xdf, 0x8d, 'p 166-10 u'), + RgbInt8Color.rgbName(0xe3, 0xde, 0x98, 'p 166-10 c'), + RgbInt8Color.rgbName(0xe6, 0xe2, 0xa8, 'p 166-9 c'), + RgbInt8Color.rgbName(0xe4, 0xe2, 0xb7, '9122 c'), + RgbInt8Color.rgbName(0xe5, 0xe8, 0xba, 'p 160-9 u'), + RgbInt8Color.rgbName(0xe5, 0xe7, 0xc5, 'p 160-9 c'), + RgbInt8Color.rgbName(0xdc, 0xe1, 0xcb, '9584 c'), + RgbInt8Color.rgbName(0xdd, 0xe7, 0xd0, 'p 154-2 c'), + RgbInt8Color.rgbName(0xe0, 0xf6, 0xde, '9560 u'), + RgbInt8Color.rgbName(0xe4, 0xf4, 0xe9, '9063 u'), + RgbInt8Color.rgbName(0xe5, 0xf6, 0xe3, '9525 u'), + RgbInt8Color.rgbName(0xe2, 0xe8, 0xf1, 'p 109-1 c'), + RgbInt8Color.rgbName(0xee, 0x27, 0x37, '1788 c'), + RgbInt8Color.rgbName(0xef, 0x42, 0x6f, '191 c'), + RgbInt8Color.rgbName(0xe7, 0x3c, 0x3e, '2034 c'), + RgbInt8Color.rgbName(0xef, 0x33, 0x40, 'red 032 c'), + RgbInt8Color.rgbName(0xe3, 0x42, 0x48, '2034 xgc'), + RgbInt8Color.rgbName(0xef, 0x4a, 0x81, '1915 c'), + RgbInt8Color.rgbName(0xe7, 0x45, 0x36, '2347 u'), + RgbInt8Color.rgbName(0xe3, 0x45, 0x4b, 'red 032 xgc'), + RgbInt8Color.rgbName(0xe9, 0x54, 0x85, '213 u'), + RgbInt8Color.rgbName(0xfa, 0x46, 0x16, '172 c'), + RgbInt8Color.rgbName(0xdc, 0x55, 0x52, 'p 48-7 u'), + RgbInt8Color.rgbName(0xdd, 0x53, 0x54, 'red 032 cp'), + RgbInt8Color.rgbName(0xe3, 0x4d, 0x58, '1787 xgc'), + RgbInt8Color.rgbName(0xdd, 0x57, 0x57, 'p 52-7 u'), + RgbInt8Color.rgbName(0xea, 0x5c, 0x90, '2039 u'), + RgbInt8Color.rgbName(0xf5, 0x7e, 0xb6, '211 c'), + RgbInt8Color.rgbName(0xe1, 0x55, 0x43, '7417 xgc'), + RgbInt8Color.rgbName(0xe8, 0x51, 0x44, 'warm red xgc'), + RgbInt8Color.rgbName(0xe9, 0x51, 0x48, '3556 u'), + RgbInt8Color.rgbName(0xe1, 0x57, 0x47, '7625 xgc'), + RgbInt8Color.rgbName(0xdc, 0x5e, 0x4c, 'p 34-8 u'), + RgbInt8Color.rgbName(0xdc, 0x57, 0x54, 'p 45-7 u'), + RgbInt8Color.rgbName(0xe5, 0x55, 0x4f, '2348 c'), + RgbInt8Color.rgbName(0xe6, 0x54, 0x54, '2348 xgc'), + RgbInt8Color.rgbName(0xe4, 0x58, 0x65, '1785 xgc'), + RgbInt8Color.rgbName(0xe9, 0x50, 0x6e, '1925 u'), + RgbInt8Color.rgbName(0xe3, 0x5d, 0x78, '184 xgc'), + RgbInt8Color.rgbName(0xe8, 0x7b, 0x0, '152 xgc'), + RgbInt8Color.rgbName(0xea, 0x76, 0x0, '716 c'), + RgbInt8Color.rgbName(0xe1, 0x67, 0x40, '166 u'), + RgbInt8Color.rgbName(0xdf, 0x62, 0x4d, '2028 up'), + RgbInt8Color.rgbName(0xe4, 0x5d, 0x50, '485 u'), + RgbInt8Color.rgbName(0xe1, 0x5f, 0x55, '179 u'), + RgbInt8Color.rgbName(0xe9, 0x5a, 0x51, '2027 xgc'), + RgbInt8Color.rgbName(0xde, 0x62, 0x55, 'p 40-7 u'), + RgbInt8Color.rgbName(0xdd, 0x61, 0x59, 'p 45-6 u'), + RgbInt8Color.rgbName(0xdf, 0x66, 0x5a, '2034 up'), + RgbInt8Color.rgbName(0xdc, 0x62, 0x5e, '2348 u'), + RgbInt8Color.rgbName(0xdf, 0x68, 0x5a, 'p 48-6 u'), + RgbInt8Color.rgbName(0xdb, 0x60, 0x5e, 'p 57-5 c'), + RgbInt8Color.rgbName(0xe4, 0x63, 0x6f, '710 u'), + RgbInt8Color.rgbName(0xdf, 0x66, 0x6a, 'p 59-5 u'), + RgbInt8Color.rgbName(0xe5, 0x62, 0x84, '205 u'), + RgbInt8Color.rgbName(0xfc, 0x8d, 0xe0, '934 c'), + RgbInt8Color.rgbName(0xf2, 0x8d, 0xd2, '237 u'), + RgbInt8Color.rgbName(0xef, 0x95, 0xcf, '223 c'), + RgbInt8Color.rgbName(0xff, 0x69, 0x0, '1505 c'), + RgbInt8Color.rgbName(0xe9, 0x7e, 0x0, '716 xgc'), + RgbInt8Color.rgbName(0xe0, 0x6c, 0x42, '2027 cp'), + RgbInt8Color.rgbName(0xe5, 0x68, 0x49, '1665 u'), + RgbInt8Color.rgbName(0xdf, 0x6a, 0x4c, 'p 27-8 u'), + RgbInt8Color.rgbName(0xdd, 0x67, 0x54, 'p 48-6 c'), + RgbInt8Color.rgbName(0xdf, 0x6a, 0x55, '2434 up'), + RgbInt8Color.rgbName(0xe0, 0x6d, 0x52, 'p 34-7 u'), + RgbInt8Color.rgbName(0xdf, 0x6b, 0x5c, '2030 cp'), + RgbInt8Color.rgbName(0xe0, 0x6c, 0x58, '2347 up'), + RgbInt8Color.rgbName(0xdf, 0x67, 0x60, 'red 032 up'), + RgbInt8Color.rgbName(0xe0, 0x69, 0x66, '1785 cp'), + RgbInt8Color.rgbName(0xe1, 0x6a, 0x60, 'p 52-6 u'), + RgbInt8Color.rgbName(0xe0, 0x6b, 0x63, 'p 55-5 u'), + RgbInt8Color.rgbName(0xdf, 0x6a, 0x70, '198 up'), + RgbInt8Color.rgbName(0xe9, 0x66, 0x6a, '2346 xgc'), + RgbInt8Color.rgbName(0xdf, 0x6b, 0x7c, '184 cp'), + RgbInt8Color.rgbName(0xe4, 0x68, 0x80, '709 xgc'), + RgbInt8Color.rgbName(0xe1, 0x6c, 0x91, '2039 up'), + RgbInt8Color.rgbName(0xe3, 0x6a, 0x90, '213 up'), + RgbInt8Color.rgbName(0xe1, 0x74, 0x94, '7423 cp'), + RgbInt8Color.rgbName(0xed, 0x8b, 0x0, '144 c'), + RgbInt8Color.rgbName(0xff, 0x6b, 0x0, '1505 xgc'), + RgbInt8Color.rgbName(0xff, 0x6d, 0x0, 'xg orange c'), + RgbInt8Color.rgbName(0xe8, 0x77, 0x22, '158 c'), + RgbInt8Color.rgbName(0xdb, 0x74, 0x53, '2433 cp'), + RgbInt8Color.rgbName(0xe1, 0x71, 0x52, '7416 cp'), + RgbInt8Color.rgbName(0xe5, 0x6a, 0x54, '7416 c'), + RgbInt8Color.rgbName(0xdf, 0x73, 0x57, '7579 u'), + RgbInt8Color.rgbName(0xe1, 0x6e, 0x59, 'p 37-7 u'), + RgbInt8Color.rgbName(0xdf, 0x71, 0x5f, '2434 cp'), + RgbInt8Color.rgbName(0xe5, 0x6f, 0x5a, '7416 xgc'), + RgbInt8Color.rgbName(0xdb, 0x7d, 0x59, '7578 u'), + RgbInt8Color.rgbName(0xe1, 0x72, 0x5d, '7597 up'), + RgbInt8Color.rgbName(0xe2, 0x75, 0x59, 'p 30-7 u'), + RgbInt8Color.rgbName(0xe1, 0x76, 0x62, '2029 cp'), + RgbInt8Color.rgbName(0xe1, 0x71, 0x62, 'p 45-5 u'), + RgbInt8Color.rgbName(0xe2, 0x73, 0x71, '2031 up'), + RgbInt8Color.rgbName(0xdf, 0x7a, 0x71, 'p 57-4 c'), + RgbInt8Color.rgbName(0xe5, 0x6c, 0x7e, '1777 xgc'), + RgbInt8Color.rgbName(0xe7, 0x6b, 0x7c, '198 u'), + RgbInt8Color.rgbName(0xdb, 0x7d, 0x7b, '2031 u'), + RgbInt8Color.rgbName(0xe2, 0x74, 0x76, '710 up'), + RgbInt8Color.rgbName(0xe2, 0x75, 0x76, 'p 62-5 u'), + RgbInt8Color.rgbName(0xe1, 0x74, 0x84, '1915 up'), + RgbInt8Color.rgbName(0xde, 0x74, 0x87, 'p 68-5 c'), + RgbInt8Color.rgbName(0xe2, 0x75, 0x8f, '7423 u'), + RgbInt8Color.rgbName(0xe2, 0x80, 0xa6, '204 xgc'), + RgbInt8Color.rgbName(0xe3, 0x87, 0xaa, '204 cp'), + RgbInt8Color.rgbName(0xe5, 0x8b, 0xad, '211 cp'), + RgbInt8Color.rgbName(0xe3, 0x8c, 0xaf, '211 up'), + RgbInt8Color.rgbName(0xef, 0x84, 0xb9, '218 u'), + RgbInt8Color.rgbName(0xea, 0x96, 0x1c, '144 cp'), + RgbInt8Color.rgbName(0xee, 0x92, 0x0, '144 xgc'), + RgbInt8Color.rgbName(0xef, 0x96, 0x0, '2012 c'), + RgbInt8Color.rgbName(0xe8, 0x8d, 0x19, '2018 cp'), + RgbInt8Color.rgbName(0xe2, 0x7e, 0x2e, '3588 cp'), + RgbInt8Color.rgbName(0xe9, 0x7d, 0x2c, '158 xgc'), + RgbInt8Color.rgbName(0xe3, 0x7b, 0x44, '2026 cp'), + RgbInt8Color.rgbName(0xe1, 0x80, 0x44, 'p 34-7 c'), + RgbInt8Color.rgbName(0xde, 0x83, 0x4c, '2019 u'), + RgbInt8Color.rgbName(0xe6, 0x7c, 0x49, 'p 24-8 u'), + RgbInt8Color.rgbName(0xe4, 0x78, 0x58, '1665 up'), + RgbInt8Color.rgbName(0xdb, 0x86, 0x4e, '7576 c'), + RgbInt8Color.rgbName(0xdf, 0x84, 0x4f, '7577 cp'), + RgbInt8Color.rgbName(0xe4, 0x7b, 0x54, 'p 27-7 u'), + RgbInt8Color.rgbName(0xe0, 0x7a, 0x56, 'p 40-6 c'), + RgbInt8Color.rgbName(0xe0, 0x78, 0x56, 'p 45-5 c'), + RgbInt8Color.rgbName(0xdb, 0x7b, 0x5f, '166 up'), + RgbInt8Color.rgbName(0xe3, 0x77, 0x5e, '2434 c'), + RgbInt8Color.rgbName(0xde, 0x81, 0x5d, '7578 up'), + RgbInt8Color.rgbName(0xe3, 0x7a, 0x59, 'p 34-6 u'), + RgbInt8Color.rgbName(0xe3, 0x77, 0x60, 'p 40-6 u'), + RgbInt8Color.rgbName(0xe2, 0x78, 0x65, '178 cp'), + RgbInt8Color.rgbName(0xe3, 0x77, 0x68, '7417 up'), + RgbInt8Color.rgbName(0xe2, 0x78, 0x74, '1785 up'), + RgbInt8Color.rgbName(0xe2, 0x78, 0x75, '1787 up'), + RgbInt8Color.rgbName(0xe1, 0x80, 0x6b, '2434 u'), + RgbInt8Color.rgbName(0xe0, 0x7c, 0x6c, '7416 up'), + RgbInt8Color.rgbName(0xe3, 0x77, 0x71, 'p 57-4 u'), + RgbInt8Color.rgbName(0xe3, 0x79, 0x76, 'p 59-4 u'), + RgbInt8Color.rgbName(0xe1, 0x7e, 0x78, '2030 xgc'), + RgbInt8Color.rgbName(0xe0, 0x7e, 0x77, '2345 cp'), + RgbInt8Color.rgbName(0xe1, 0x7e, 0x7b, 'p 62-5 c'), + RgbInt8Color.rgbName(0xe4, 0x7f, 0x83, '1777 up'), + RgbInt8Color.rgbName(0xe4, 0x7b, 0x83, '191 up'), + RgbInt8Color.rgbName(0xe2, 0x7a, 0x89, '709 cp'), + RgbInt8Color.rgbName(0xdc, 0x84, 0x7e, 'p 59-10 u'), + RgbInt8Color.rgbName(0xe2, 0x81, 0x82, 'p 59-4 c'), + RgbInt8Color.rgbName(0xe2, 0x7e, 0x8a, '1777 cp'), + RgbInt8Color.rgbName(0xdd, 0x87, 0x8d, '2445 c'), + RgbInt8Color.rgbName(0xe3, 0x78, 0x90, 'p 71-5 u'), + RgbInt8Color.rgbName(0xdc, 0x86, 0x99, '493 c'), + RgbInt8Color.rgbName(0xdc, 0x87, 0x95, 'p 68-11 u'), + RgbInt8Color.rgbName(0xe4, 0x7e, 0x9b, 'p 73-5 u'), + RgbInt8Color.rgbName(0xe4, 0x80, 0xa2, '2038 up'), + RgbInt8Color.rgbName(0xe6, 0x80, 0xa1, '212 up'), + RgbInt8Color.rgbName(0xe7, 0x82, 0xa9, '204 c'), + RgbInt8Color.rgbName(0xe0, 0x84, 0xa5, 'p 73-5 c'), + RgbInt8Color.rgbName(0xea, 0x9a, 0x0, '2011 cp'), + RgbInt8Color.rgbName(0xeb, 0x9d, 0x0, '2012 cp'), + RgbInt8Color.rgbName(0xf0, 0x9b, 0x0, '2012 xgc'), + RgbInt8Color.rgbName(0xeb, 0x9c, 0x0, '2013 cp'), + RgbInt8Color.rgbName(0xe8, 0x8d, 0x21, '151 cp'), + RgbInt8Color.rgbName(0xe4, 0x89, 0x2e, 'p 24-7 c'), + RgbInt8Color.rgbName(0xe6, 0x88, 0x35, '716 cp'), + RgbInt8Color.rgbName(0xe3, 0x83, 0x43, '7577 xgc'), + RgbInt8Color.rgbName(0xe4, 0x82, 0x4a, '1645 cp'), + RgbInt8Color.rgbName(0xe4, 0x83, 0x4e, '171 cp'), + RgbInt8Color.rgbName(0xde, 0x87, 0x50, '2019 up'), + RgbInt8Color.rgbName(0xe7, 0x83, 0x45, '3564 up'), + RgbInt8Color.rgbName(0xe3, 0x8a, 0x43, 'p 27-7 c'), + RgbInt8Color.rgbName(0xde, 0x89, 0x58, '7413 u'), + RgbInt8Color.rgbName(0xdd, 0x8b, 0x58, '7576 xgc'), + RgbInt8Color.rgbName(0xe3, 0x86, 0x5a, 'p 37-6 c'), + RgbInt8Color.rgbName(0xe5, 0x80, 0x63, '172 up'), + RgbInt8Color.rgbName(0xe1, 0x8b, 0x63, '7577 u'), + RgbInt8Color.rgbName(0xe2, 0x86, 0x66, 'p 45-4 c'), + RgbInt8Color.rgbName(0xe2, 0x82, 0x6b, 'p 48-5 c'), + RgbInt8Color.rgbName(0xda, 0x8e, 0x6b, '7576 u'), + RgbInt8Color.rgbName(0xda, 0x92, 0x6f, '7576 up'), + RgbInt8Color.rgbName(0xe5, 0x81, 0x6c, 'p 45-4 u'), + RgbInt8Color.rgbName(0xe6, 0x81, 0x6b, 'p 48-5 u'), + RgbInt8Color.rgbName(0xe6, 0x82, 0x79, '2029 up'), + RgbInt8Color.rgbName(0xe1, 0x89, 0x79, '2344 cp'), + RgbInt8Color.rgbName(0xd8, 0x8f, 0x74, 'p 48-10 c'), + RgbInt8Color.rgbName(0xe5, 0x80, 0x75, 'p 55-4 u'), + RgbInt8Color.rgbName(0xdb, 0x88, 0x7d, 'p 57-12 u'), + RgbInt8Color.rgbName(0xe6, 0x84, 0x83, '184 up'), + RgbInt8Color.rgbName(0xe5, 0x84, 0x82, '2346 up'), + RgbInt8Color.rgbName(0xe2, 0x8b, 0x82, 'p 57-3 c'), + RgbInt8Color.rgbName(0xd7, 0x93, 0x86, 'p 58-1 u'), + RgbInt8Color.rgbName(0xe1, 0x85, 0x90, '2445 cp'), + RgbInt8Color.rgbName(0xde, 0x88, 0x8e, '2445 u'), + RgbInt8Color.rgbName(0xe7, 0x85, 0x89, '709 up'), + RgbInt8Color.rgbName(0xdd, 0x92, 0x8c, 'p 62-10 u'), + RgbInt8Color.rgbName(0xe5, 0x81, 0x91, 'p 68-4 u'), + RgbInt8Color.rgbName(0xe6, 0x86, 0x99, '701 c'), + RgbInt8Color.rgbName(0xe7, 0x83, 0x99, '701 xgc'), + RgbInt8Color.rgbName(0xe2, 0x8a, 0x97, 'p 68-4 c'), + RgbInt8Color.rgbName(0xe0, 0x9b, 0xbe, '2037 cp'), + RgbInt8Color.rgbName(0xe3, 0x9e, 0xc1, '223 cp'), + RgbInt8Color.rgbName(0xdf, 0x9d, 0xc0, '223 xgc'), + RgbInt8Color.rgbName(0xea, 0xaa, 0x0, '124 c'), + RgbInt8Color.rgbName(0xe9, 0xa8, 0x0, '2007 cp'), + RgbInt8Color.rgbName(0xee, 0xaa, 0x0, '2010 cp'), + RgbInt8Color.rgbName(0xeb, 0xa6, 0x7, 'p 14-8 c'), + RgbInt8Color.rgbName(0xe7, 0x8e, 0x2e, '1505 cp'), + RgbInt8Color.rgbName(0xe2, 0x8d, 0x41, '7413 xgc'), + RgbInt8Color.rgbName(0xe6, 0x8a, 0x48, '164 cp'), + RgbInt8Color.rgbName(0xdc, 0x8f, 0x54, '2428 u'), + RgbInt8Color.rgbName(0xde, 0x92, 0x52, '2431 c'), + RgbInt8Color.rgbName(0xdf, 0x93, 0x58, '2431 cp'), + RgbInt8Color.rgbName(0xe0, 0x8e, 0x5f, '2432 cp'), + RgbInt8Color.rgbName(0xe1, 0x8b, 0x60, '7577 up'), + RgbInt8Color.rgbName(0xe4, 0x8f, 0x58, 'p 34-6 c'), + RgbInt8Color.rgbName(0xdc, 0x8f, 0x68, '2432 u'), + RgbInt8Color.rgbName(0xe7, 0x8c, 0x64, 'p 34-5 u'), + RgbInt8Color.rgbName(0xe3, 0x8c, 0x67, 'p 40-5 c'), + RgbInt8Color.rgbName(0xdb, 0x92, 0x71, '472 u'), + RgbInt8Color.rgbName(0xda, 0x9a, 0x6c, 'p 34-12 c'), + RgbInt8Color.rgbName(0xd8, 0x94, 0x72, 'p 45-12 c'), + RgbInt8Color.rgbName(0xe8, 0x8e, 0x77, '171 up'), + RgbInt8Color.rgbName(0xd9, 0x9a, 0x74, '472 up'), + RgbInt8Color.rgbName(0xdc, 0x91, 0x7c, 'p 52-11 u'), + RgbInt8Color.rgbName(0xe3, 0x8c, 0x7a, 'p 52-5 c'), + RgbInt8Color.rgbName(0xe2, 0x89, 0x7c, 'p 55-4 c'), + RgbInt8Color.rgbName(0xe7, 0x8c, 0x82, '2344 up'), + RgbInt8Color.rgbName(0xe6, 0x8b, 0x80, '2345 up'), + RgbInt8Color.rgbName(0xdc, 0x92, 0x81, 'p 55-11 u'), + RgbInt8Color.rgbName(0xe7, 0x89, 0x82, 'p 59-3 u'), + RgbInt8Color.rgbName(0xe6, 0x8d, 0x8a, '2030 u'), + RgbInt8Color.rgbName(0xda, 0x9b, 0x8f, '7606 cp'), + RgbInt8Color.rgbName(0xd7, 0x9e, 0x8b, 'p 53-3 c'), + RgbInt8Color.rgbName(0xe0, 0x92, 0x8a, 'p 59-9 u'), + RgbInt8Color.rgbName(0xe8, 0x8e, 0x99, '190 up'), + RgbInt8Color.rgbName(0xdb, 0x9c, 0x97, '2338 u'), + RgbInt8Color.rgbName(0xe8, 0x90, 0x96, 'p 65-4 u'), + RgbInt8Color.rgbName(0xe5, 0x8f, 0x9e, '190 cp'), + RgbInt8Color.rgbName(0xe8, 0x8e, 0xa1, '204 up'), + RgbInt8Color.rgbName(0xe4, 0x93, 0xaa, 'p 71-4 c'), + RgbInt8Color.rgbName(0xe7, 0x8d, 0xaf, 'p 75-5 u'), + RgbInt8Color.rgbName(0xe3, 0x91, 0xb1, '2044 cp'), + RgbInt8Color.rgbName(0xe3, 0x94, 0xb7, '218 up'), + RgbInt8Color.rgbName(0xe0, 0x97, 0xb9, '224 up'), + RgbInt8Color.rgbName(0xdf, 0x98, 0xb9, '231 up'), + RgbInt8Color.rgbName(0xdc, 0x9c, 0xbb, 'p 80-2 u'), + RgbInt8Color.rgbName(0xdb, 0xa5, 0xc7, '672 cp'), + RgbInt8Color.rgbName(0xe8, 0xa7, 0xcd, '672 u'), + RgbInt8Color.rgbName(0xec, 0xae, 0x0, '3514 cp'), + RgbInt8Color.rgbName(0xe8, 0x99, 0x25, 'p 17-8 c'), + RgbInt8Color.rgbName(0xe9, 0x9c, 0x34, '1375 cp'), + RgbInt8Color.rgbName(0xed, 0x9b, 0x33, '2011 c'), + RgbInt8Color.rgbName(0xe8, 0x99, 0x3c, 'p 20-7 c'), + RgbInt8Color.rgbName(0xe8, 0x94, 0x49, '1575 cp'), + RgbInt8Color.rgbName(0xe9, 0x95, 0x4b, '715 cp'), + RgbInt8Color.rgbName(0xe7, 0x99, 0x47, 'p 24-6 c'), + RgbInt8Color.rgbName(0xde, 0x98, 0x58, '7564 u'), + RgbInt8Color.rgbName(0xdd, 0x97, 0x66, '2431 u'), + RgbInt8Color.rgbName(0xda, 0x9b, 0x5f, '7564 up'), + RgbInt8Color.rgbName(0xe6, 0x99, 0x5c, 'p 27-6 c'), + RgbInt8Color.rgbName(0xe8, 0x98, 0x6d, '1635 cp'), + RgbInt8Color.rgbName(0xd9, 0x9c, 0x71, 'p 27-12 u'), + RgbInt8Color.rgbName(0xda, 0x99, 0x73, 'p 34-11 u'), + RgbInt8Color.rgbName(0xdb, 0xa0, 0x7b, 'p 30-11 u'), + RgbInt8Color.rgbName(0xd9, 0xa3, 0x7b, 'p 37-11 c'), + RgbInt8Color.rgbName(0xdc, 0x9f, 0x7c, 'p 37-11 u'), + RgbInt8Color.rgbName(0xdc, 0x98, 0x7d, 'p 48-9 u'), + RgbInt8Color.rgbName(0xd7, 0xa2, 0x7f, '2430 u'), + RgbInt8Color.rgbName(0xd5, 0xa2, 0x86, '7514 c'), + RgbInt8Color.rgbName(0xd7, 0xa4, 0x85, '7514 xgc'), + RgbInt8Color.rgbName(0xd5, 0xa6, 0x7e, 'p 31-4 c'), + RgbInt8Color.rgbName(0xdd, 0xa1, 0x84, 'p 48-9 c'), + RgbInt8Color.rgbName(0xd9, 0xa1, 0x82, 'p 49-1 u'), + RgbInt8Color.rgbName(0xdc, 0x9a, 0x85, 'p 52-11 c'), + RgbInt8Color.rgbName(0xe4, 0x94, 0x85, 'p 55-3 c'), + RgbInt8Color.rgbName(0xd6, 0xa5, 0x8b, '7514 cp'), + RgbInt8Color.rgbName(0xdd, 0x9c, 0x8d, 'p 55-11 c'), + RgbInt8Color.rgbName(0xe5, 0x93, 0x8d, 'p 62-4 c'), + RgbInt8Color.rgbName(0xe1, 0x9e, 0x98, '2338 up'), + RgbInt8Color.rgbName(0xe7, 0x95, 0x94, '2339 up'), + RgbInt8Color.rgbName(0xe5, 0x94, 0x9a, '701 up'), + RgbInt8Color.rgbName(0xdc, 0x9e, 0x97, '7606 xgc'), + RgbInt8Color.rgbName(0xd7, 0xa7, 0x95, '7612 up'), + RgbInt8Color.rgbName(0xdb, 0xa1, 0x94, 'p 58-1 c'), + RgbInt8Color.rgbName(0xdf, 0x9d, 0x99, 'p 59-9 c'), + RgbInt8Color.rgbName(0xdd, 0xa0, 0x9b, '7606 up'), + RgbInt8Color.rgbName(0xe5, 0x99, 0xa0, 'p 65-4 c'), + RgbInt8Color.rgbName(0xe5, 0x9a, 0xa8, '494 u'), + RgbInt8Color.rgbName(0xda, 0xa5, 0xad, '501 c'), + RgbInt8Color.rgbName(0xdf, 0x9c, 0xae, '508 u'), + RgbInt8Color.rgbName(0xda, 0xa5, 0xad, '693 u'), + RgbInt8Color.rgbName(0xe8, 0x94, 0xaa, 'p 73-4 u'), + RgbInt8Color.rgbName(0xe9, 0x98, 0xb5, '2044 up'), + RgbInt8Color.rgbName(0xe5, 0x99, 0xb4, 'p 73-4 c'), + RgbInt8Color.rgbName(0xdf, 0x9c, 0xb5, 'p 75-12 u'), + RgbInt8Color.rgbName(0xe4, 0x96, 0xb9, 'p 75-5 c'), + RgbInt8Color.rgbName(0xe4, 0x9b, 0xbb, '2037 xgc'), + RgbInt8Color.rgbName(0xe4, 0x9b, 0xba, '2044 xgc'), + RgbInt8Color.rgbName(0xd9, 0xa4, 0xc2, '243 up'), + RgbInt8Color.rgbName(0xdc, 0xa2, 0xb9, '7431 u'), + RgbInt8Color.rgbName(0xdb, 0xa7, 0xc5, '672 xgc'), + RgbInt8Color.rgbName(0xdc, 0xad, 0xcd, '515 cp'), + RgbInt8Color.rgbName(0xf8, 0xa3, 0xe6, '921 c'), + RgbInt8Color.rgbName(0xeb, 0xb6, 0x0, '124 xgc'), + RgbInt8Color.rgbName(0xed, 0xac, 0x1a, '130 cp'), + RgbInt8Color.rgbName(0xea, 0xa1, 0x24, '137 cp'), + RgbInt8Color.rgbName(0xed, 0xac, 0x20, '2009 cp'), + RgbInt8Color.rgbName(0xee, 0x9d, 0x26, '7408 u'), + RgbInt8Color.rgbName(0xee, 0x9f, 0x3b, '2011 xgc'), + RgbInt8Color.rgbName(0xeb, 0xa1, 0x49, '1495 cp'), + RgbInt8Color.rgbName(0xeb, 0xa3, 0x44, '157 cp'), + RgbInt8Color.rgbName(0xe6, 0xa5, 0x47, '2007 up'), + RgbInt8Color.rgbName(0xe2, 0xa8, 0x55, '2007 u'), + RgbInt8Color.rgbName(0xe8, 0xa5, 0x52, '7411 cp'), + RgbInt8Color.rgbName(0xde, 0xa4, 0x5e, '7563 up'), + RgbInt8Color.rgbName(0xdd, 0xa6, 0x67, 'p 20-12 u'), + RgbInt8Color.rgbName(0xdd, 0xa8, 0x69, 'p 24-13 c'), + RgbInt8Color.rgbName(0xe5, 0x9e, 0x6d, '472 c'), + RgbInt8Color.rgbName(0xdd, 0xa4, 0x6f, '721 c'), + RgbInt8Color.rgbName(0xd9, 0xad, 0x77, 'p 21-3 u'), + RgbInt8Color.rgbName(0xdd, 0xaa, 0x79, 'p 27-12 c'), + RgbInt8Color.rgbName(0xde, 0xa6, 0x7c, 'p 34-11 c'), + RgbInt8Color.rgbName(0xe7, 0x9f, 0x78, 'p 40-4 c'), + RgbInt8Color.rgbName(0xe3, 0xa1, 0x84, '2438 c'), + RgbInt8Color.rgbName(0xdf, 0xa1, 0x80, '2438 up'), + RgbInt8Color.rgbName(0xd7, 0xae, 0x83, 'p 28-1 c'), + RgbInt8Color.rgbName(0xde, 0xa5, 0x83, 'p 40-10 c'), + RgbInt8Color.rgbName(0xe0, 0xa2, 0x84, 'p 40-10 u'), + RgbInt8Color.rgbName(0xd7, 0xae, 0x8b, 'p 49-9 c'), + RgbInt8Color.rgbName(0xe3, 0xa2, 0x8c, 'p 52-10 u'), + RgbInt8Color.rgbName(0xe3, 0x9f, 0x8d, 'p 57-11 u'), + RgbInt8Color.rgbName(0xde, 0xa3, 0x9c, '2338 c'), + RgbInt8Color.rgbName(0xdc, 0xa5, 0x9c, '2444 c'), + RgbInt8Color.rgbName(0xdd, 0xa3, 0x97, '2444 up'), + RgbInt8Color.rgbName(0xde, 0xa0, 0x9a, '7606 u'), + RgbInt8Color.rgbName(0xd3, 0xaf, 0x9b, 'p 54-9 u'), + RgbInt8Color.rgbName(0xe0, 0xa2, 0x97, 'p 57-11 c'), + RgbInt8Color.rgbName(0xde, 0xa2, 0x9a, 'p 62-10 c'), + RgbInt8Color.rgbName(0xe2, 0xa0, 0x98, 'p 62-9 u'), + RgbInt8Color.rgbName(0xe1, 0xa5, 0x9c, '2338 cp'), + RgbInt8Color.rgbName(0xe0, 0xa6, 0x9e, '2444 cp'), + RgbInt8Color.rgbName(0xdf, 0xa6, 0x9d, '2444 u'), + RgbInt8Color.rgbName(0xe0, 0xa4, 0xa1, '3519 c'), + RgbInt8Color.rgbName(0xe4, 0xa3, 0xa1, '3519 u'), + RgbInt8Color.rgbName(0xda, 0xab, 0x9c, '7514 u'), + RgbInt8Color.rgbName(0xe0, 0xa2, 0xa9, '494 up'), + RgbInt8Color.rgbName(0xdc, 0xa5, 0xb0, 'p 71-11 u'), + RgbInt8Color.rgbName(0xe1, 0x9f, 0xb0, 'p 73-11 u'), + RgbInt8Color.rgbName(0xdc, 0xa8, 0xb2, '501 cp'), + RgbInt8Color.rgbName(0xde, 0xa5, 0xc3, '236 up'), + RgbInt8Color.rgbName(0xde, 0xa8, 0xc1, '7430 cp'), + RgbInt8Color.rgbName(0xe0, 0xa6, 0xba, 'p 73-11 c'), + RgbInt8Color.rgbName(0xde, 0xa5, 0xbf, 'p 75-12 c'), + RgbInt8Color.rgbName(0xdd, 0xa7, 0xc4, 'p 80-2 c'), + RgbInt8Color.rgbName(0xdb, 0xaf, 0xca, '515 up'), + RgbInt8Color.rgbName(0xea, 0xb8, 0xe4, '243 c'), + RgbInt8Color.rgbName(0xdc, 0xb8, 0xd2, '243 xgc'), + RgbInt8Color.rgbName(0xe7, 0xba, 0xe4, '250 c'), + RgbInt8Color.rgbName(0xee, 0xba, 0xe9, '250 u'), + RgbInt8Color.rgbName(0xda, 0xb9, 0xd2, '250 xgc'), + RgbInt8Color.rgbName(0xe8, 0xb6, 0xdc, '516 u'), + RgbInt8Color.rgbName(0xef, 0xba, 0xe1, '2365 c'), + RgbInt8Color.rgbName(0xee, 0xad, 0x1a, '1235 cp'), + RgbInt8Color.rgbName(0xed, 0xb2, 0x20, '124 cp'), + RgbInt8Color.rgbName(0xf0, 0xb3, 0x23, '7409 c'), + RgbInt8Color.rgbName(0xeb, 0xa8, 0x47, 'p 17-7 c'), + RgbInt8Color.rgbName(0xed, 0xaa, 0x50, '150 cp'), + RgbInt8Color.rgbName(0xe7, 0xab, 0x5c, '7408 up'), + RgbInt8Color.rgbName(0xe4, 0xac, 0x5c, '7409 up'), + RgbInt8Color.rgbName(0xe6, 0xa6, 0x5d, '7411 c'), + RgbInt8Color.rgbName(0xdc, 0xae, 0x6a, '7509 xgc'), + RgbInt8Color.rgbName(0xde, 0xb0, 0x6c, 'p 17-13 c'), + RgbInt8Color.rgbName(0xdd, 0xae, 0x6e, 'p 20-12 c'), + RgbInt8Color.rgbName(0xe2, 0xa7, 0x70, '721 cp'), + RgbInt8Color.rgbName(0xdf, 0xac, 0x77, '721 xgc'), + RgbInt8Color.rgbName(0xe0, 0xb0, 0x71, 'p 17-12 u'), + RgbInt8Color.rgbName(0xe1, 0xae, 0x71, 'p 20-11 u'), + RgbInt8Color.rgbName(0xe2, 0xa9, 0x7b, '7411 up'), + RgbInt8Color.rgbName(0xda, 0xb2, 0x7e, 'p 21-3 c'), + RgbInt8Color.rgbName(0xd7, 0xaf, 0x7d, 'p 25-3 c'), + RgbInt8Color.rgbName(0xde, 0xac, 0x7f, 'p 30-11 c'), + RgbInt8Color.rgbName(0xdf, 0xa8, 0x80, '721 u'), + RgbInt8Color.rgbName(0xd7, 0xaf, 0x85, 'p 25-2 u'), + RgbInt8Color.rgbName(0xde, 0xab, 0x83, 'p 27-11 u'), + RgbInt8Color.rgbName(0xdb, 0xad, 0x86, 'p 41-1 c'), + RgbInt8Color.rgbName(0xdb, 0xaf, 0x8a, 'p 35-2 u'), + RgbInt8Color.rgbName(0xdd, 0xab, 0x8d, 'p 41-1 u'), + RgbInt8Color.rgbName(0xe0, 0xaa, 0x8b, 'p 45-11 c'), + RgbInt8Color.rgbName(0xdc, 0xad, 0x90, 'p 49-1 c'), + RgbInt8Color.rgbName(0xdf, 0xad, 0x98, 'p 53-2 u'), + RgbInt8Color.rgbName(0xd8, 0xb1, 0xa6, 'p 56-2 c'), + RgbInt8Color.rgbName(0xd9, 0xb0, 0xa3, 'p 58-10 u'), + RgbInt8Color.rgbName(0xe0, 0xa9, 0x9b, 'p 60-3 u'), + RgbInt8Color.rgbName(0xe1, 0xaf, 0xa8, '2338 xgc'), + RgbInt8Color.rgbName(0xdd, 0xad, 0xb1, '501 up'), + RgbInt8Color.rgbName(0xd8, 0xb1, 0xb2, '5025 cp'), + RgbInt8Color.rgbName(0xd8, 0xb8, 0xab, 'p 56-9 u'), + RgbInt8Color.rgbName(0xdf, 0xac, 0xa6, 'p 63-1 u'), + RgbInt8Color.rgbName(0xd9, 0xb6, 0xb7, 'p 64-1 c'), + RgbInt8Color.rgbName(0xd7, 0xb8, 0xb8, 'p 66-2 c'), + RgbInt8Color.rgbName(0xe4, 0xa9, 0xbb, '508 c'), + RgbInt8Color.rgbName(0xdc, 0xb0, 0xc3, '7430 xgc'), + RgbInt8Color.rgbName(0xdb, 0xad, 0xc2, 'p 76-3 c'), + RgbInt8Color.rgbName(0xe5, 0xae, 0xc9, '223 up'), + RgbInt8Color.rgbName(0xe3, 0xaf, 0xc9, '230 xgc'), + RgbInt8Color.rgbName(0xdd, 0xaf, 0xca, '250 up'), + RgbInt8Color.rgbName(0xe4, 0xae, 0xc7, '672 up'), + RgbInt8Color.rgbName(0xdc, 0xb6, 0xc9, '685 c'), + RgbInt8Color.rgbName(0xe4, 0xaf, 0xc8, 'p 80-1 u'), + RgbInt8Color.rgbName(0xeb, 0xc6, 0xdf, '517 c'), + RgbInt8Color.rgbName(0xef, 0xc3, 0xdd, '671 u'), + RgbInt8Color.rgbName(0xef, 0xc1, 0x11, '7406 cp'), + RgbInt8Color.rgbName(0xef, 0xb7, 0x1b, 'p 10-8 c'), + RgbInt8Color.rgbName(0xf0, 0xb3, 0x36, '143 cp'), + RgbInt8Color.rgbName(0xec, 0xbb, 0x33, '7549 cp'), + RgbInt8Color.rgbName(0xee, 0xb2, 0x38, 'p 14-7 c'), + RgbInt8Color.rgbName(0xef, 0xb6, 0x46, '136 cp'), + RgbInt8Color.rgbName(0xf0, 0xbc, 0x3a, '2008 cp'), + RgbInt8Color.rgbName(0xe5, 0xb9, 0x55, '7405 up'), + RgbInt8Color.rgbName(0xdf, 0xb6, 0x6b, 'p 14-13 c'), + RgbInt8Color.rgbName(0xde, 0xb6, 0x81, '3596 c'), + RgbInt8Color.rgbName(0xdc, 0xb3, 0x7f, '3596 cp'), + RgbInt8Color.rgbName(0xe0, 0xb3, 0x80, '3596 u'), + RgbInt8Color.rgbName(0xd5, 0xb8, 0x87, 'p 18-10 c'), + RgbInt8Color.rgbName(0xdb, 0xb7, 0x7d, 'p 18-3 u'), + RgbInt8Color.rgbName(0xe1, 0xb6, 0x7d, 'p 20-11 c'), + RgbInt8Color.rgbName(0xe4, 0xb1, 0x76, 'p 24-12 u'), + RgbInt8Color.rgbName(0xe0, 0xb3, 0x84, '7508 u'), + RgbInt8Color.rgbName(0xe3, 0xb6, 0x83, '7508 up'), + RgbInt8Color.rgbName(0xde, 0xb3, 0x8f, '721 up'), + RgbInt8Color.rgbName(0xdb, 0xb9, 0x8e, 'p 25-2 c'), + RgbInt8Color.rgbName(0xdd, 0xb3, 0x90, 'p 31-3 u'), + RgbInt8Color.rgbName(0xe2, 0xb3, 0x8d, 'p 34-10 c'), + RgbInt8Color.rgbName(0xdb, 0xb4, 0x95, 'p 35-10 u'), + RgbInt8Color.rgbName(0xdc, 0xb2, 0x8f, 'p 35-2 c'), + RgbInt8Color.rgbName(0xde, 0xb1, 0x8b, 'p 37-10 c'), + RgbInt8Color.rgbName(0xdc, 0xb2, 0x93, 'p 38-1 u'), + RgbInt8Color.rgbName(0xd9, 0xba, 0x9a, '4675 up'), + RgbInt8Color.rgbName(0xdc, 0xb8, 0x94, '727 cp'), + RgbInt8Color.rgbName(0xdc, 0xb5, 0x96, '727 u'), + RgbInt8Color.rgbName(0xd7, 0xb9, 0x9d, 'p 32-1 u'), + RgbInt8Color.rgbName(0xdb, 0xb9, 0x98, 'p 38-1 c'), + RgbInt8Color.rgbName(0xde, 0xb2, 0x98, 'p 46-1 c'), + RgbInt8Color.rgbName(0xe1, 0xb6, 0xa1, '3544 c'), + RgbInt8Color.rgbName(0xda, 0xb9, 0xa1, '4675 u'), + RgbInt8Color.rgbName(0xd8, 0xb8, 0x9e, '7590 xgc'), + RgbInt8Color.rgbName(0xda, 0xb8, 0x9d, 'p 35-10 c'), + RgbInt8Color.rgbName(0xdf, 0xb7, 0x9f, 'p 46-10 u'), + RgbInt8Color.rgbName(0xd7, 0xb8, 0xa3, 'p 50-9 u'), + RgbInt8Color.rgbName(0xdf, 0xb5, 0x9f, 'p 53-10 u'), + RgbInt8Color.rgbName(0xde, 0xb3, 0xa3, 'p 53-2 c'), + RgbInt8Color.rgbName(0xd9, 0xc0, 0xa9, '2310 c'), + RgbInt8Color.rgbName(0xe1, 0xb7, 0xa7, '7513 c'), + RgbInt8Color.rgbName(0xdb, 0xbc, 0xa9, '7590 u'), + RgbInt8Color.rgbName(0xd8, 0xbd, 0xa4, 'p 32-1 c'), + RgbInt8Color.rgbName(0xda, 0xbe, 0xad, 'p 47-9 u'), + RgbInt8Color.rgbName(0xe3, 0xb2, 0xaa, 'p 62-9 c'), + RgbInt8Color.rgbName(0xdb, 0xb7, 0xbb, '5025 c'), + RgbInt8Color.rgbName(0xdc, 0xb6, 0xba, '5025 u'), + RgbInt8Color.rgbName(0xe1, 0xbb, 0xb4, '7605 c'), + RgbInt8Color.rgbName(0xd8, 0xc2, 0xb3, 'p 47-9 c'), + RgbInt8Color.rgbName(0xd8, 0xbd, 0xb7, 'p 56-9 c'), + RgbInt8Color.rgbName(0xdc, 0xba, 0xb2, 'p 58-10 c'), + RgbInt8Color.rgbName(0xde, 0xb6, 0xb2, 'p 63-1 c'), + RgbInt8Color.rgbName(0xdc, 0xb9, 0xb4, 'p 64-1 u'), + RgbInt8Color.rgbName(0xdf, 0xb4, 0xb3, 'p 65-9 u'), + RgbInt8Color.rgbName(0xda, 0xbb, 0xba, 'p 66-9 u'), + RgbInt8Color.rgbName(0xdd, 0xb3, 0xb9, 'p 72-2 u'), + RgbInt8Color.rgbName(0xdb, 0xbc, 0xba, '5025 up'), + RgbInt8Color.rgbName(0xde, 0xbe, 0xbf, '5025 xgc'), + RgbInt8Color.rgbName(0xe7, 0xb4, 0xbf, '508 xgc'), + RgbInt8Color.rgbName(0xdd, 0xb3, 0xc3, '686 up'), + RgbInt8Color.rgbName(0xde, 0xbc, 0xbd, 'p 65-9 c'), + RgbInt8Color.rgbName(0xdc, 0xb8, 0xc2, 'p 72-2 c'), + RgbInt8Color.rgbName(0xe7, 0xb3, 0xbe, 'p 73-10 u'), + RgbInt8Color.rgbName(0xe0, 0xb7, 0xc9, '679 up'), + RgbInt8Color.rgbName(0xe6, 0xb5, 0xc9, '7430 u'), + RgbInt8Color.rgbName(0xdc, 0xbb, 0xc7, 'p 77-2 u'), + RgbInt8Color.rgbName(0xe4, 0xb6, 0xd2, '236 cp'), + RgbInt8Color.rgbName(0xde, 0xba, 0xd1, '2365 xgc'), + RgbInt8Color.rgbName(0xde, 0xbe, 0xd2, '679 c'), + RgbInt8Color.rgbName(0xde, 0xcd, 0xe7, '2085 c'), + RgbInt8Color.rgbName(0xde, 0xce, 0xdf, '2085 cp'), + RgbInt8Color.rgbName(0xdb, 0xce, 0xe3, '263 cp'), + RgbInt8Color.rgbName(0xda, 0xca, 0xde, '531 xgc'), + RgbInt8Color.rgbName(0xda, 0xcf, 0xdd, '664 u'), + RgbInt8Color.rgbName(0xde, 0xd1, 0xe1, '9343 c'), + RgbInt8Color.rgbName(0xdd, 0xcc, 0xe1, '9343 u'), + RgbInt8Color.rgbName(0xda, 0xce, 0xe1, 'p 91-1 u'), + RgbInt8Color.rgbName(0xf0, 0xbe, 0x43, 'p 10-7 c'), + RgbInt8Color.rgbName(0xeb, 0xbc, 0x4e, '2006 c'), + RgbInt8Color.rgbName(0xe9, 0xbf, 0x58, '7406 up'), + RgbInt8Color.rgbName(0xe2, 0xc0, 0x70, 'p 10-13 c'), + RgbInt8Color.rgbName(0xdb, 0xc0, 0x7d, 'p 11-3 c'), + RgbInt8Color.rgbName(0xe2, 0xb9, 0x74, 'p 14-12 u'), + RgbInt8Color.rgbName(0xe4, 0xc0, 0x79, 'p 10-12 u'), + RgbInt8Color.rgbName(0xe2, 0xb9, 0x7b, 'p 17-12 c'), + RgbInt8Color.rgbName(0xe2, 0xbc, 0x83, '7508 cp'), + RgbInt8Color.rgbName(0xe5, 0xbe, 0x83, '7508 xgc'), + RgbInt8Color.rgbName(0xe2, 0xc0, 0x80, 'p 14-12 c'), + RgbInt8Color.rgbName(0xda, 0xc1, 0x90, '467 xgc'), + RgbInt8Color.rgbName(0xdc, 0xc2, 0x8c, 'p 11-2 u'), + RgbInt8Color.rgbName(0xe1, 0xc2, 0x8b, 'p 15-3 u'), + RgbInt8Color.rgbName(0xde, 0xbe, 0x8d, 'p 18-3 c'), + RgbInt8Color.rgbName(0xdf, 0xbd, 0x91, 'p 21-2 c'), + RgbInt8Color.rgbName(0xda, 0xc5, 0x99, 'p 11-9 u'), + RgbInt8Color.rgbName(0xdd, 0xc3, 0x94, 'p 15-9 u'), + RgbInt8Color.rgbName(0xe1, 0xbd, 0x95, 'p 25-1 u'), + RgbInt8Color.rgbName(0xdb, 0xba, 0x9b, 'p 28-10 u'), + RgbInt8Color.rgbName(0xde, 0xbc, 0x99, 'p 31-3 c'), + RgbInt8Color.rgbName(0xdc, 0xc1, 0xa3, '2310 up'), + RgbInt8Color.rgbName(0xd8, 0xc1, 0xa6, '2310 xgc'), + RgbInt8Color.rgbName(0xdc, 0xbf, 0xa6, '4675 c'), + RgbInt8Color.rgbName(0xe0, 0xc0, 0x9f, '726 c'), + RgbInt8Color.rgbName(0xde, 0xbf, 0x9c, '726 xgc'), + RgbInt8Color.rgbName(0xd7, 0xc1, 0xa6, 'p 22-9 c'), + RgbInt8Color.rgbName(0xdd, 0xbd, 0xa3, 'p 38-9 u'), + RgbInt8Color.rgbName(0xda, 0xc1, 0xab, '2310 cp'), + RgbInt8Color.rgbName(0xdc, 0xc2, 0xaa, '2310 u'), + RgbInt8Color.rgbName(0xdb, 0xc2, 0xac, '4675 cp'), + RgbInt8Color.rgbName(0xde, 0xbc, 0xa7, '7590 up'), + RgbInt8Color.rgbName(0xdb, 0xc1, 0xa7, 'p 38-9 c'), + RgbInt8Color.rgbName(0xde, 0xbb, 0xa7, 'p 46-10 c'), + RgbInt8Color.rgbName(0xda, 0xc0, 0xa8, 'p 50-9 c'), + RgbInt8Color.rgbName(0xdf, 0xbd, 0xae, 'p 53-10 c'), + RgbInt8Color.rgbName(0xd7, 0xc4, 0xb7, '4755 c'), + RgbInt8Color.rgbName(0xd9, 0xc6, 0xb6, '4755 cp'), + RgbInt8Color.rgbName(0xda, 0xc4, 0xb6, '4755 xgc'), + RgbInt8Color.rgbName(0xdd, 0xbc, 0xb0, '7611 c'), + RgbInt8Color.rgbName(0xdb, 0xc3, 0xb2, 'p 42-9 u'), + RgbInt8Color.rgbName(0xdf, 0xbf, 0xb6, 'p 61-9 u'), + RgbInt8Color.rgbName(0xdc, 0xc6, 0xbb, '4755 u'), + RgbInt8Color.rgbName(0xd5, 0xcc, 0xbf, '7528 up'), + RgbInt8Color.rgbName(0xd2, 0xcd, 0xc3, '9082 c'), + RgbInt8Color.rgbName(0xde, 0xc3, 0xbf, '9263 u'), + RgbInt8Color.rgbName(0xe3, 0xbc, 0xbf, 'p 69-9 u'), + RgbInt8Color.rgbName(0xd6, 0xca, 0xcb, '434 u'), + RgbInt8Color.rgbName(0xd8, 0xc7, 0xce, '5235 cp'), + RgbInt8Color.rgbName(0xd6, 0xc3, 0xcc, '5235 u'), + RgbInt8Color.rgbName(0xde, 0xc0, 0xcd, '685 xgc'), + RgbInt8Color.rgbName(0xe2, 0xbc, 0xcb, '7429 c'), + RgbInt8Color.rgbName(0xdf, 0xbe, 0xc7, '9303 u'), + RgbInt8Color.rgbName(0xdd, 0xbe, 0xcc, '9323 u'), + RgbInt8Color.rgbName(0xdc, 0xc4, 0xc5, 'p 66-9 c'), + RgbInt8Color.rgbName(0xe1, 0xc1, 0xc6, 'p 69-9 c'), + RgbInt8Color.rgbName(0xdb, 0xc2, 0xce, 'p 77-2 c'), + RgbInt8Color.rgbName(0xdd, 0xc2, 0xcf, '2051 c'), + RgbInt8Color.rgbName(0xdc, 0xc4, 0xce, '2051 cp'), + RgbInt8Color.rgbName(0xe3, 0xbf, 0xd3, '217 xgc'), + RgbInt8Color.rgbName(0xe1, 0xbd, 0xd3, '516 up'), + RgbInt8Color.rgbName(0xde, 0xbf, 0xd6, '516 xgc'), + RgbInt8Color.rgbName(0xda, 0xc5, 0xd0, '5175 u'), + RgbInt8Color.rgbName(0xd6, 0xcb, 0xd5, '664 up'), + RgbInt8Color.rgbName(0xdc, 0xc2, 0xd5, '679 xgc'), + RgbInt8Color.rgbName(0xe4, 0xbe, 0xd2, '685 cp'), + RgbInt8Color.rgbName(0xea, 0xbe, 0xdb, '217 c'), + RgbInt8Color.rgbName(0xe0, 0xc2, 0xd9, '250 cp'), + RgbInt8Color.rgbName(0xde, 0xc5, 0xda, 'p 83-2 c'), + RgbInt8Color.rgbName(0xdf, 0xc3, 0xd7, 'p 83-2 u'), + RgbInt8Color.rgbName(0xdf, 0xd7, 0xf0, '9360 u'), + RgbInt8Color.rgbName(0xdd, 0xd8, 0xeb, '7443 u'), + RgbInt8Color.rgbName(0xdc, 0xd3, 0xe7, '9361 c'), + RgbInt8Color.rgbName(0xed, 0xc7, 0x5c, '2006 xgc'), + RgbInt8Color.rgbName(0xe4, 0xc5, 0x76, 'p 7-13 u'), + RgbInt8Color.rgbName(0xe0, 0xc9, 0x7f, 'p 8-4 c'), + RgbInt8Color.rgbName(0xe5, 0xc7, 0x84, 'p 10-12 c'), + RgbInt8Color.rgbName(0xde, 0xcb, 0x99, '468 cp'), + RgbInt8Color.rgbName(0xdc, 0xcb, 0x9b, '7501 xgc'), + RgbInt8Color.rgbName(0xe1, 0xc9, 0x93, 'p 11-2 c'), + RgbInt8Color.rgbName(0xe3, 0xc9, 0x96, 'p 15-3 c'), + RgbInt8Color.rgbName(0xdb, 0xc9, 0x98, 'p 8-11 u'), + RgbInt8Color.rgbName(0xd6, 0xcc, 0xa6, '4545 u'), + RgbInt8Color.rgbName(0xd9, 0xce, 0xa2, '4545 xgc'), + RgbInt8Color.rgbName(0xdd, 0xcb, 0xa4, '468 c'), + RgbInt8Color.rgbName(0xde, 0xcb, 0xa0, 'p 11-9 c'), + RgbInt8Color.rgbName(0xdc, 0xca, 0xa3, 'p 12-1 u'), + RgbInt8Color.rgbName(0xde, 0xc9, 0xa1, 'p 15-9 c'), + RgbInt8Color.rgbName(0xdc, 0xc6, 0x9e, 'p 16-1 u'), + RgbInt8Color.rgbName(0xe3, 0xc9, 0xa0, 'p 18-2 c'), + RgbInt8Color.rgbName(0xdc, 0xc3, 0x9d, 'p 18-9 c'), + RgbInt8Color.rgbName(0xde, 0xc5, 0xa2, 'p 22-1 u'), + RgbInt8Color.rgbName(0xdb, 0xcc, 0xa2, 'p 9-2 c'), + RgbInt8Color.rgbName(0xd7, 0xca, 0xa6, 'p 9-9 u'), + RgbInt8Color.rgbName(0xe0, 0xc8, 0xab, '4685 xgc'), + RgbInt8Color.rgbName(0xda, 0xcb, 0xa9, 'p 12-9 c'), + RgbInt8Color.rgbName(0xd7, 0xca, 0xb1, 'p 13-2 c'), + RgbInt8Color.rgbName(0xdd, 0xcb, 0xac, 'p 16-1 c'), + RgbInt8Color.rgbName(0xde, 0xc8, 0xae, 'p 22-1 c'), + RgbInt8Color.rgbName(0xd9, 0xc9, 0xad, 'p 23-1 u'), + RgbInt8Color.rgbName(0xdf, 0xc5, 0xab, 'p 28-10 c'), + RgbInt8Color.rgbName(0xdf, 0xc6, 0xab, 'p 29-1 u'), + RgbInt8Color.rgbName(0xdf, 0xc8, 0xb5, '4755 up'), + RgbInt8Color.rgbName(0xdb, 0xc8, 0xb6, '482 c'), + RgbInt8Color.rgbName(0xdb, 0xc6, 0xb7, '482 cp'), + RgbInt8Color.rgbName(0xdf, 0xc8, 0xb7, '482 u'), + RgbInt8Color.rgbName(0xe2, 0xc8, 0xb3, '482 up'), + RgbInt8Color.rgbName(0xde, 0xca, 0xb5, '482 xgc'), + RgbInt8Color.rgbName(0xd8, 0xcf, 0xb9, '9163 c'), + RgbInt8Color.rgbName(0xd8, 0xcd, 0xb8, '9163 u'), + RgbInt8Color.rgbName(0xdd, 0xca, 0xbc, '9223 u'), + RgbInt8Color.rgbName(0xdf, 0xc7, 0xbf, '9243 u'), + RgbInt8Color.rgbName(0xdd, 0xc9, 0xbb, 'p 42-9 c'), + RgbInt8Color.rgbName(0xde, 0xc8, 0xc1, 'p 61-9 c'), + RgbInt8Color.rgbName(0xd8, 0xca, 0xd0, '5165 xgc'), + RgbInt8Color.rgbName(0xdd, 0xc7, 0xd1, '2051 xgc'), + RgbInt8Color.rgbName(0xdb, 0xc9, 0xd5, '5165 cp'), + RgbInt8Color.rgbName(0xda, 0xcf, 0xd4, '5175 xgc'), + RgbInt8Color.rgbName(0xdb, 0xcd, 0xd3, '5245 c'), + RgbInt8Color.rgbName(0xe2, 0xcb, 0xdd, '524 up'), + RgbInt8Color.rgbName(0xe1, 0xc5, 0xd9, '531 up'), + RgbInt8Color.rgbName(0xd7, 0xd5, 0xd9, '5315 xgc'), + RgbInt8Color.rgbName(0xd3, 0xd9, 0xd9, '538 up'), + RgbInt8Color.rgbName(0xe3, 0xc8, 0xd8, '678 c'), + RgbInt8Color.rgbName(0xe2, 0xc7, 0xd9, '678 cp'), + RgbInt8Color.rgbName(0xe2, 0xcd, 0xdc, '678 xgc'), + RgbInt8Color.rgbName(0xe1, 0xcc, 0xdb, 'p 83-10 u'), + RgbInt8Color.rgbName(0xd5, 0xd7, 0xe0, '5315 cp'), + RgbInt8Color.rgbName(0xdc, 0xd4, 0xe5, '9362 c'), + RgbInt8Color.rgbName(0xdc, 0xd6, 0xe6, 'p 93-1 c'), + RgbInt8Color.rgbName(0xdc, 0xd6, 0xe6, 'p 93-1 u'), + RgbInt8Color.rgbName(0xde, 0xd8, 0xeb, '9360 c'), + RgbInt8Color.rgbName(0xff, 0xd1, 0x0, '109 c'), + RgbInt8Color.rgbName(0xfb, 0xd2, 0x0, '109 xgc'), + RgbInt8Color.rgbName(0xf5, 0xcb, 0x8, '116 cp'), + RgbInt8Color.rgbName(0xe8, 0xd4, 0x76, 'p 4-13 c'), + RgbInt8Color.rgbName(0xe4, 0xd7, 0x7e, '460 c'), + RgbInt8Color.rgbName(0xe4, 0xd6, 0x7c, 'p 2-4 c'), + RgbInt8Color.rgbName(0xe8, 0xd2, 0x7d, 'p 4-12 u'), + RgbInt8Color.rgbName(0xdb, 0xd1, 0x92, '615 up'), + RgbInt8Color.rgbName(0xe3, 0xd2, 0x85, 'p 5-3 c'), + RgbInt8Color.rgbName(0xdd, 0xd3, 0x93, 'p 2-11 c'), + RgbInt8Color.rgbName(0xd9, 0xd1, 0x9b, 'p 3-3 c'), + RgbInt8Color.rgbName(0xe0, 0xce, 0x90, 'p 5-2 u'), + RgbInt8Color.rgbName(0xdc, 0xd5, 0x9a, '614 c'), + RgbInt8Color.rgbName(0xda, 0xd5, 0x9b, '614 xgc'), + RgbInt8Color.rgbName(0xdf, 0xd1, 0xa7, '7500 c'), + RgbInt8Color.rgbName(0xe0, 0xd3, 0xa5, '7500 xgc'), + RgbInt8Color.rgbName(0xda, 0xd2, 0xa4, 'p 3-2 u'), + RgbInt8Color.rgbName(0xe0, 0xd1, 0xa1, 'p 8-11 c'), + RgbInt8Color.rgbName(0xe0, 0xce, 0xaa, '468 u'), + RgbInt8Color.rgbName(0xde, 0xd0, 0xb5, '9162 u'), + RgbInt8Color.rgbName(0xe0, 0xd1, 0xb1, 'p 12-1 c'), + RgbInt8Color.rgbName(0xdc, 0xd2, 0xbb, 'p 13-1 u'), + RgbInt8Color.rgbName(0xdd, 0xd1, 0xb2, 'p 9-9 c'), + RgbInt8Color.rgbName(0xdc, 0xd6, 0xc1, '7527 cp'), + RgbInt8Color.rgbName(0xd7, 0xd5, 0xc2, '7527 xgc'), + RgbInt8Color.rgbName(0xd8, 0xd5, 0xce, 'cool gray 1 up'), + RgbInt8Color.rgbName(0xd6, 0xd5, 0xcf, 'p 169-2 c'), + RgbInt8Color.rgbName(0xda, 0xd4, 0xc7, 'p 169-2 u'), + RgbInt8Color.rgbName(0xdc, 0xcf, 0xcb, 'p 51-2 c'), + RgbInt8Color.rgbName(0xdb, 0xd5, 0xcd, 'warm gray 1 u'), + RgbInt8Color.rgbName(0xd9, 0xd7, 0xd0, '2330 cp'), + RgbInt8Color.rgbName(0xdc, 0xd7, 0xd2, '7527 u'), + RgbInt8Color.rgbName(0xe1, 0xd2, 0xd2, '7632 cp'), + RgbInt8Color.rgbName(0xdd, 0xcf, 0xd0, '7632 u'), + RgbInt8Color.rgbName(0xda, 0xd1, 0xd0, '7632 xgc'), + RgbInt8Color.rgbName(0xd5, 0xd8, 0xd2, '9103 c'), + RgbInt8Color.rgbName(0xdb, 0xd8, 0xd1, 'warm gray 1 cp'), + RgbInt8Color.rgbName(0xd8, 0xda, 0xd9, '427 cp'), + RgbInt8Color.rgbName(0xdc, 0xd4, 0xd8, '5245 xgc'), + RgbInt8Color.rgbName(0xd8, 0xd7, 0xdf, '5315 c'), + RgbInt8Color.rgbName(0xde, 0xd8, 0xdc, '663 up'), + RgbInt8Color.rgbName(0xe1, 0xd3, 0xdc, 'p 82-9 c'), + RgbInt8Color.rgbName(0xdb, 0xd8, 0xe1, '5315 u'), + RgbInt8Color.rgbName(0xd7, 0xdd, 0xe4, '656 up'), + RgbInt8Color.rgbName(0xde, 0xd7, 0xe3, '664 cp'), + RgbInt8Color.rgbName(0xda, 0xda, 0xe7, '7443 cp'), + RgbInt8Color.rgbName(0xe0, 0xd4, 0xe2, '9342 c'), + RgbInt8Color.rgbName(0xe3, 0xd4, 0xe5, '9342 u'), + RgbInt8Color.rgbName(0xd9, 0xdb, 0xe8, 'p 104-9 c'), + RgbInt8Color.rgbName(0xdd, 0xd3, 0xe3, 'p 91-1 c'), + RgbInt8Color.rgbName(0xe8, 0xd4, 0xee, '2085 u'), + RgbInt8Color.rgbName(0xd7, 0xe0, 0xeb, '650 u'), + RgbInt8Color.rgbName(0xdd, 0xda, 0xe8, '7443 c'), + RgbInt8Color.rgbName(0xda, 0xdf, 0xec, '9384 c'), + RgbInt8Color.rgbName(0xff, 0xd7, 0x0, 'yellow 012 c'), + RgbInt8Color.rgbName(0xfd, 0xda, 0x24, '115 c'), + RgbInt8Color.rgbName(0xeb, 0xe3, 0x69, 'p 166-6 c'), + RgbInt8Color.rgbName(0xe9, 0xde, 0x76, '609 xgc'), + RgbInt8Color.rgbName(0xea, 0xdb, 0x75, 'p 1-14 c'), + RgbInt8Color.rgbName(0xeb, 0xdb, 0x79, 'p 1-13 u'), + RgbInt8Color.rgbName(0xe8, 0xd9, 0x8b, '460 u'), + RgbInt8Color.rgbName(0xdc, 0xd9, 0x9c, 'p 167-1 u'), + RgbInt8Color.rgbName(0xe3, 0xd8, 0x96, 'p 2-3 u'), + RgbInt8Color.rgbName(0xe1, 0xd9, 0xa1, '614 u'), + RgbInt8Color.rgbName(0xe1, 0xd9, 0xa6, 'p 2-10 c'), + RgbInt8Color.rgbName(0xe5, 0xdd, 0xad, 'p 2-9 u'), + RgbInt8Color.rgbName(0xdd, 0xd6, 0xaf, 'p 3-10 u'), + RgbInt8Color.rgbName(0xdc, 0xd9, 0xb9, '9123 c'), + RgbInt8Color.rgbName(0xe1, 0xda, 0xb2, 'p 3-2 c'), + RgbInt8Color.rgbName(0xe3, 0xdc, 0xbd, '9143 u'), + RgbInt8Color.rgbName(0xd9, 0xd9, 0xc3, '9603 c'), + RgbInt8Color.rgbName(0xe2, 0xdd, 0xbd, 'p 3-10 c'), + RgbInt8Color.rgbName(0xe0, 0xdb, 0xd3, '9080 u'), + RgbInt8Color.rgbName(0xdf, 0xdc, 0xd4, '9081 c'), + RgbInt8Color.rgbName(0xd9, 0xdb, 0xd5, '9102 c'), + RgbInt8Color.rgbName(0xd9, 0xd9, 0xd6, 'cool gray 1 c'), + RgbInt8Color.rgbName(0xda, 0xd9, 0xd6, 'cool gray 1 u'), + RgbInt8Color.rgbName(0xdd, 0xdd, 0xda, 'cool gray 1 cp'), + RgbInt8Color.rgbName(0xdb, 0xdc, 0xdb, 'cool gray 1 xgc'), + RgbInt8Color.rgbName(0xe0, 0xdd, 0xe4, '5315 up'), + RgbInt8Color.rgbName(0xdb, 0xe2, 0xe9, '649 c'), + RgbInt8Color.rgbName(0xd9, 0xe1, 0xe7, '649 up'), + RgbInt8Color.rgbName(0xe0, 0xdb, 0xe3, '664 c'), + RgbInt8Color.rgbName(0xdf, 0xda, 0xe7, '7443 xgc'), + RgbInt8Color.rgbName(0xd9, 0xe1, 0xe2, '7541 c'), + RgbInt8Color.rgbName(0xd9, 0xe0, 0xe3, '7541 xgc'), + RgbInt8Color.rgbName(0xdf, 0xdc, 0xe6, 'p 100-1 u'), + RgbInt8Color.rgbName(0xde, 0xe5, 0xed, '649 cp'), + RgbInt8Color.rgbName(0xd9, 0xe2, 0xec, '656 xgc'), + RgbInt8Color.rgbName(0xe2, 0xdc, 0xe9, '7443 up'), + RgbInt8Color.rgbName(0xde, 0xe1, 0xec, '9380 c'), + RgbInt8Color.rgbName(0xe0, 0xe1, 0xed, 'p 104-1 u'), + RgbInt8Color.rgbName(0xec, 0xe5, 0x6c, 'p 166-5 u'), + RgbInt8Color.rgbName(0xf0, 0xec, 0x74, '393 c'), + RgbInt8Color.rgbName(0xe9, 0xe3, 0x7b, '609 cp'), + RgbInt8Color.rgbName(0xec, 0xe6, 0x83, '393 cp'), + RgbInt8Color.rgbName(0xf0, 0xe8, 0x7b, '602 c'), + RgbInt8Color.rgbName(0xec, 0xe6, 0x7f, 'p 166-5 c'), + RgbInt8Color.rgbName(0xe7, 0xe9, 0x88, '586 u'), + RgbInt8Color.rgbName(0xeb, 0xe8, 0x89, '586 up'), + RgbInt8Color.rgbName(0xe9, 0xe1, 0x86, '608 c'), + RgbInt8Color.rgbName(0xeb, 0xe0, 0x81, '609 u'), + RgbInt8Color.rgbName(0xed, 0xe8, 0x8a, '602 cp'), + RgbInt8Color.rgbName(0xeb, 0xe7, 0x8b, '608 xgc'), + RgbInt8Color.rgbName(0xeb, 0xe2, 0x8d, '609 up'), + RgbInt8Color.rgbName(0xe9, 0xdf, 0x97, '461 c'), + RgbInt8Color.rgbName(0xe9, 0xe1, 0x97, '461 xgc'), + RgbInt8Color.rgbName(0xea, 0xec, 0x97, '587 u'), + RgbInt8Color.rgbName(0xeb, 0xe4, 0x9a, '607 c'), + RgbInt8Color.rgbName(0xe7, 0xe3, 0x9b, 'p 166-9 u'), + RgbInt8Color.rgbName(0xe8, 0xe3, 0xa9, '614 up'), + RgbInt8Color.rgbName(0xe7, 0xe2, 0xb1, '614 cp'), + RgbInt8Color.rgbName(0xe8, 0xe4, 0xb6, '9122 u'), + RgbInt8Color.rgbName(0xea, 0xea, 0xb3, 'p 163-3 c'), + RgbInt8Color.rgbName(0xe9, 0xe3, 0xbd, 'p 2-9 c'), + RgbInt8Color.rgbName(0xe0, 0xe4, 0xcf, 'p 158-9 c'), + RgbInt8Color.rgbName(0xdd, 0xe5, 0xd9, 'p 152-9 c'), + RgbInt8Color.rgbName(0xd9, 0xe4, 0xe3, 'p 123-1 c'), + RgbInt8Color.rgbName(0xd9, 0xe5, 0xe1, 'p 123-1 u'), + RgbInt8Color.rgbName(0xdd, 0xea, 0xde, 'p 133-9 u'), + RgbInt8Color.rgbName(0xde, 0xe6, 0xdd, 'p 141-9 c'), + RgbInt8Color.rgbName(0xdf, 0xe9, 0xdc, 'p 141-9 u'), + RgbInt8Color.rgbName(0xdf, 0xea, 0xdc, 'p 151-1 c'), + RgbInt8Color.rgbName(0xdc, 0xe5, 0xe4, '7541 cp'), + RgbInt8Color.rgbName(0xdd, 0xe4, 0xe6, '7541 u'), + RgbInt8Color.rgbName(0xde, 0xe7, 0xe4, 'p 126-9 c'), + RgbInt8Color.rgbName(0xdd, 0xe9, 0xe2, 'p 133-9 c'), + RgbInt8Color.rgbName(0xe1, 0xe7, 0xee, '649 u'), + RgbInt8Color.rgbName(0xe1, 0xe3, 0xee, 'p 104-1 c'), + RgbInt8Color.rgbName(0xee, 0xf3, 0x86, '930 c'), + RgbInt8Color.rgbName(0xef, 0xe9, 0x7f, 'p 166-4 u'), + RgbInt8Color.rgbName(0xed, 0xe9, 0x8a, '393 up'), + RgbInt8Color.rgbName(0xee, 0xe8, 0x8f, 'p 166-4 c'), + RgbInt8Color.rgbName(0xec, 0xe9, 0x94, '587 up'), + RgbInt8Color.rgbName(0xee, 0xe8, 0x95, '608 cp'), + RgbInt8Color.rgbName(0xed, 0xe9, 0x9e, '607 xgc'), + RgbInt8Color.rgbName(0xef, 0xf4, 0xa4, '937 c'), + RgbInt8Color.rgbName(0xec, 0xed, 0xa8, 'p 163-3 u'), + RgbInt8Color.rgbName(0xef, 0xea, 0x9e, 'p 166-3 c'), + RgbInt8Color.rgbName(0xf0, 0xe9, 0xb4, '7499 xgc'), + RgbInt8Color.rgbName(0xe7, 0xed, 0xcb, '7485 up'), + RgbInt8Color.rgbName(0xe7, 0xed, 0xc8, '9600 c'), + RgbInt8Color.rgbName(0xe6, 0xeb, 0xce, '7485 cp'), + RgbInt8Color.rgbName(0xee, 0xee, 0xc8, '9020 c'), + RgbInt8Color.rgbName(0xed, 0xf2, 0xc7, '9600 u'), + RgbInt8Color.rgbName(0xe9, 0xeb, 0xca, '9601 u'), + RgbInt8Color.rgbName(0xee, 0xf1, 0xc8, 'p 160-2 u'), + RgbInt8Color.rgbName(0xe8, 0xea, 0xca, 'p 161-1 u'), + RgbInt8Color.rgbName(0xed, 0xee, 0xca, 'p 163-2 c'), + RgbInt8Color.rgbName(0xe5, 0xef, 0xda, '9544 c'), + RgbInt8Color.rgbName(0xe8, 0xf5, 0xd1, '9580 u'), + RgbInt8Color.rgbName(0xdf, 0xec, 0xe4, '9041 c'), + RgbInt8Color.rgbName(0xdf, 0xec, 0xe2, '9541 c'), + RgbInt8Color.rgbName(0xe0, 0xee, 0xdf, 'p 139-1 u'), + RgbInt8Color.rgbName(0xe4, 0xea, 0xe6, '9042 u'), + RgbInt8Color.rgbName(0xe7, 0xef, 0xe7, '9063 c'), + RgbInt8Color.rgbName(0xe5, 0xef, 0xe2, '9525 c'), + RgbInt8Color.rgbName(0xe3, 0xee, 0xeb, 'p 124-1 c'), + RgbInt8Color.rgbName(0xe4, 0xee, 0xe4, 'p 139-1 c'), + RgbInt8Color.rgbName(0xe6, 0xee, 0xec, '9062 c'), + RgbInt8Color.rgbName(0xe7, 0xea, 0xf1, 'p 106-1 c'), + RgbInt8Color.rgbName(0xe8, 0xf0, 0xef, 'p 121-1 c'), + RgbInt8Color.rgbName(0xe8, 0xf3, 0xee, 'p 121-1 u'), + RgbInt8Color.rgbName(0xe8, 0xf0, 0xea, 'p 133-1 c'), + RgbInt8Color.rgbName(0xe8, 0xea, 0xf1, 'p 106-1 u'), + RgbInt8Color.rgbName(0xed, 0xf2, 0xf5, 'p 115-1 c'), + RgbInt8Color.rgbName(0xff, 0xdd, 0x35, '108 u'), + RgbInt8Color.rgbName(0xff, 0xec, 0x4c, 'p 1-7 u'), + RgbInt8Color.rgbName(0xf5, 0xe6, 0x56, '603 xgc'), + RgbInt8Color.rgbName(0xf3, 0xe2, 0x55, '604 up'), + RgbInt8Color.rgbName(0xf6, 0xeb, 0x61, '100 c'), + RgbInt8Color.rgbName(0xff, 0xee, 0x59, '102 up'), + RgbInt8Color.rgbName(0xfc, 0xf0, 0x5f, '3945 u'), + RgbInt8Color.rgbName(0xed, 0xdf, 0x8c, '460 cp'), + RgbInt8Color.rgbName(0xf0, 0xe9, 0x91, '601 c'), + RgbInt8Color.rgbName(0xf0, 0xe6, 0x91, '608 u'), + RgbInt8Color.rgbName(0xed, 0xe1, 0x8d, 'p 1-13 c'), + RgbInt8Color.rgbName(0xef, 0xea, 0x9b, '601 cp'), + RgbInt8Color.rgbName(0xe3, 0xdf, 0xc3, '9143 c'), + RgbInt8Color.rgbName(0xe5, 0xe8, 0xcd, '9601 c'), + RgbInt8Color.rgbName(0xec, 0xf1, 0xce, 'p 157-1 u'), + RgbInt8Color.rgbName(0xe5, 0xe7, 0xd1, 'p 161-1 c'), + RgbInt8Color.rgbName(0xec, 0xf6, 0xe1, '9544 u'), + RgbInt8Color.rgbName(0xeb, 0xf2, 0xdc, 'p 154-1 u'), + RgbInt8Color.rgbName(0xea, 0xf3, 0xe8, 'p 133-1 u'), + RgbInt8Color.rgbName(0xf0, 0xf6, 0xf7, 'p 115-1 u'), + RgbInt8Color.rgbName(0xff, 0x5a, 0x93, '812 u'), + RgbInt8Color.rgbName(0xf9, 0x38, 0x22, 'bright red c'), + RgbInt8Color.rgbName(0xf4, 0x36, 0x4c, '1787 c'), + RgbInt8Color.rgbName(0xf3, 0x72, 0xa6, '2038 u'), + RgbInt8Color.rgbName(0xf3, 0x5c, 0x22, '1655 xgc'), + RgbInt8Color.rgbName(0xf0, 0x51, 0x36, '2028 u'), + RgbInt8Color.rgbName(0xee, 0x53, 0x6b, '192 u'), + RgbInt8Color.rgbName(0xf0, 0x58, 0x2e, '172 xgc'), + RgbInt8Color.rgbName(0xee, 0x53, 0x40, '2027 c'), + RgbInt8Color.rgbName(0xf1, 0x50, 0x60, '185 u'), + RgbInt8Color.rgbName(0xf6, 0x50, 0x58, 'red 032 u'), + RgbInt8Color.rgbName(0xf6, 0x52, 0x75, '184 c'), + RgbInt8Color.rgbName(0xf5, 0x6d, 0x9e, '212 u'), + RgbInt8Color.rgbName(0xed, 0x60, 0x62, '2034 u'), + RgbInt8Color.rgbName(0xef, 0x60, 0x79, '709 c'), + RgbInt8Color.rgbName(0xff, 0x92, 0xda, '913 c'), + RgbInt8Color.rgbName(0xf3, 0x95, 0xc7, '2037 c'), + RgbInt8Color.rgbName(0xff, 0x8e, 0xbe, '926 u'), + RgbInt8Color.rgbName(0xff, 0x75, 0x0, '2018 c'), + RgbInt8Color.rgbName(0xf4, 0x63, 0x3a, '2026 c'), + RgbInt8Color.rgbName(0xe3, 0x73, 0x5e, '2027 up'), + RgbInt8Color.rgbName(0xe7, 0x6b, 0x61, '7417 u'), + RgbInt8Color.rgbName(0xea, 0x67, 0x63, '178 xgc'), + RgbInt8Color.rgbName(0xff, 0x9d, 0xe5, '934 u'), + RgbInt8Color.rgbName(0xff, 0x99, 0xdd, '913 u'), + RgbInt8Color.rgbName(0xff, 0x7c, 0x0, '2018 xgc'), + RgbInt8Color.rgbName(0xf3, 0x6d, 0x4e, '171 xgc'), + RgbInt8Color.rgbName(0xf2, 0x6d, 0x4f, '2026 xgc'), + RgbInt8Color.rgbName(0xea, 0x74, 0x6a, '7416 u'), + RgbInt8Color.rgbName(0xea, 0x77, 0x6c, '7625 u'), + RgbInt8Color.rgbName(0xe5, 0x7d, 0x6b, '7625 up'), + RgbInt8Color.rgbName(0xf6, 0x6f, 0x92, '1915 u'), + RgbInt8Color.rgbName(0xff, 0x82, 0x0, '151 c'), + RgbInt8Color.rgbName(0xf4, 0x76, 0x2d, '3564 u'), + RgbInt8Color.rgbName(0xee, 0x7f, 0x4b, '158 u'), + RgbInt8Color.rgbName(0xe9, 0x84, 0x4a, 'p 24-7 u'), + RgbInt8Color.rgbName(0xe6, 0x7e, 0x5c, '2026 up'), + RgbInt8Color.rgbName(0xe5, 0x7e, 0x5e, '7579 up'), + RgbInt8Color.rgbName(0xe5, 0x7f, 0x61, 'p 37-6 u'), + RgbInt8Color.rgbName(0xe6, 0x84, 0x71, 'p 52-5 u'), + RgbInt8Color.rgbName(0xe7, 0x85, 0x6d, 'warm red up'), + RgbInt8Color.rgbName(0xe6, 0x84, 0x7c, '2030 up'), + RgbInt8Color.rgbName(0xe7, 0x87, 0x85, 'p 62-4 u'), + RgbInt8Color.rgbName(0xee, 0x82, 0xa4, '204 u'), + RgbInt8Color.rgbName(0xe7, 0x93, 0xb7, '2044 c'), + RgbInt8Color.rgbName(0xeb, 0x93, 0xb5, '2044 u'), + RgbInt8Color.rgbName(0xea, 0x86, 0x51, '716 u'), + RgbInt8Color.rgbName(0xeb, 0x8c, 0x49, 'p 20-8 u'), + RgbInt8Color.rgbName(0xe7, 0x86, 0x5d, '165 up'), + RgbInt8Color.rgbName(0xe8, 0x87, 0x5d, '1655 up'), + RgbInt8Color.rgbName(0xe6, 0x8e, 0x5e, '2024 cp'), + RgbInt8Color.rgbName(0xe8, 0x8b, 0x5f, 'p 27-6 u'), + RgbInt8Color.rgbName(0xe7, 0x88, 0x64, 'p 30-6 u'), + RgbInt8Color.rgbName(0xe7, 0x87, 0x69, 'p 40-5 u'), + RgbInt8Color.rgbName(0xf1, 0x80, 0x70, '2344 c'), + RgbInt8Color.rgbName(0xee, 0x85, 0x76, '2344 u'), + RgbInt8Color.rgbName(0xe9, 0x8e, 0x77, 'p 45-3 u'), + RgbInt8Color.rgbName(0xe8, 0x8a, 0x7a, 'p 55-3 u'), + RgbInt8Color.rgbName(0xe6, 0x86, 0x7c, 'p 57-3 u'), + RgbInt8Color.rgbName(0xf2, 0x82, 0x7f, '2029 c'), + RgbInt8Color.rgbName(0xe9, 0x8f, 0x9d, '701 u'), + RgbInt8Color.rgbName(0xe9, 0x91, 0x9f, 'p 68-3 u'), + RgbInt8Color.rgbName(0xe5, 0x91, 0xa6, '701 cp'), + RgbInt8Color.rgbName(0xfa, 0x9b, 0xcb, '2037 u'), + RgbInt8Color.rgbName(0xf9, 0x9f, 0xc9, '210 c'), + RgbInt8Color.rgbName(0xf2, 0xa9, 0x0, '130 c'), + RgbInt8Color.rgbName(0xff, 0x98, 0x0, '2013 c'), + RgbInt8Color.rgbName(0xf6, 0x8d, 0x2e, '715 c'), + RgbInt8Color.rgbName(0xf3, 0x8b, 0x3c, '144 u'), + RgbInt8Color.rgbName(0xf3, 0x93, 0x34, '715 xgc'), + RgbInt8Color.rgbName(0xea, 0x93, 0x44, '3588 up'), + RgbInt8Color.rgbName(0xec, 0x92, 0x48, 'p 17-8 u'), + RgbInt8Color.rgbName(0xed, 0x97, 0x4f, 'p 20-7 u'), + RgbInt8Color.rgbName(0xeb, 0x92, 0x51, 'p 24-6 u'), + RgbInt8Color.rgbName(0xe5, 0x92, 0x56, 'p 30-6 c'), + RgbInt8Color.rgbName(0xec, 0x95, 0x5b, '716 up'), + RgbInt8Color.rgbName(0xea, 0x92, 0x64, '158 up'), + RgbInt8Color.rgbName(0xe9, 0x92, 0x67, '164 up'), + RgbInt8Color.rgbName(0xe4, 0x99, 0x69, '7413 up'), + RgbInt8Color.rgbName(0xeb, 0x96, 0x6e, '1645 up'), + RgbInt8Color.rgbName(0xea, 0x93, 0x6d, '2024 up'), + RgbInt8Color.rgbName(0xe7, 0x9a, 0x6d, 'p 37-5 c'), + RgbInt8Color.rgbName(0xe9, 0x8f, 0x6f, 'p 37-5 u'), + RgbInt8Color.rgbName(0xe6, 0x97, 0x73, 'p 45-3 c'), + RgbInt8Color.rgbName(0xe9, 0x91, 0x7b, '170 up'), + RgbInt8Color.rgbName(0xe9, 0x91, 0x7f, '178 up'), + RgbInt8Color.rgbName(0xe8, 0x92, 0x7c, '486 c'), + RgbInt8Color.rgbName(0xe8, 0x95, 0x7c, '486 cp'), + RgbInt8Color.rgbName(0xf0, 0x8d, 0x80, '486 u'), + RgbInt8Color.rgbName(0xea, 0x95, 0x81, '486 up'), + RgbInt8Color.rgbName(0xe7, 0x94, 0x8a, '177 cp'), + RgbInt8Color.rgbName(0xee, 0x8d, 0x8d, '177 xgc'), + RgbInt8Color.rgbName(0xef, 0x8d, 0x89, '2029 xgc'), + RgbInt8Color.rgbName(0xe5, 0x91, 0x90, 'p 59-3 c'), + RgbInt8Color.rgbName(0xea, 0x99, 0x96, '1775 up'), + RgbInt8Color.rgbName(0xe5, 0x9a, 0x93, '2339 cp'), + RgbInt8Color.rgbName(0xe5, 0x9d, 0x95, '3572 cp'), + RgbInt8Color.rgbName(0xeb, 0x99, 0xa0, '1775 xgc'), + RgbInt8Color.rgbName(0xe8, 0x92, 0xa4, 'p 71-4 u'), + RgbInt8Color.rgbName(0xe7, 0x98, 0xa6, '708 cp'), + RgbInt8Color.rgbName(0xe6, 0x9c, 0xa8, 'p 68-3 c'), + RgbInt8Color.rgbName(0xf4, 0xa6, 0xd7, '230 c'), + RgbInt8Color.rgbName(0xf1, 0xa7, 0xdc, '236 c'), + RgbInt8Color.rgbName(0xf8, 0xa6, 0xde, '236 u'), + RgbInt8Color.rgbName(0xf9, 0xa4, 0xd8, '223 u'), + RgbInt8Color.rgbName(0xf8, 0xaa, 0xdd, 'magenta 0521 u'), + RgbInt8Color.rgbName(0xf1, 0xb2, 0xe6, '243 u'), + RgbInt8Color.rgbName(0xf4, 0xae, 0x0, '130 xgc'), + RgbInt8Color.rgbName(0xf1, 0xb3, 0x0, '3514 c'), + RgbInt8Color.rgbName(0xee, 0x9c, 0x44, 'p 14-8 u'), + RgbInt8Color.rgbName(0xee, 0x9b, 0x4d, '2012 up'), + RgbInt8Color.rgbName(0xec, 0x98, 0x57, '151 up'), + RgbInt8Color.rgbName(0xed, 0x98, 0x55, '2011 up'), + RgbInt8Color.rgbName(0xed, 0x9a, 0x54, '2018 up'), + RgbInt8Color.rgbName(0xe9, 0x9d, 0x57, '2025 cp'), + RgbInt8Color.rgbName(0xed, 0x9b, 0x5d, '144 up'), + RgbInt8Color.rgbName(0xec, 0x99, 0x62, '1505 up'), + RgbInt8Color.rgbName(0xed, 0x9a, 0x60, '1585 up'), + RgbInt8Color.rgbName(0xeb, 0x97, 0x5f, 'orange 021 up'), + RgbInt8Color.rgbName(0xee, 0x9e, 0x5a, 'p 24-5 u'), + RgbInt8Color.rgbName(0xf3, 0x96, 0x62, '157 u'), + RgbInt8Color.rgbName(0xed, 0x9b, 0x64, '1575 up'), + RgbInt8Color.rgbName(0xec, 0x98, 0x65, '2025 up'), + RgbInt8Color.rgbName(0xe7, 0x9e, 0x6b, 'p 34-5 c'), + RgbInt8Color.rgbName(0xec, 0x9c, 0x69, '157 up'), + RgbInt8Color.rgbName(0xe8, 0x9c, 0x77, '170 cp'), + RgbInt8Color.rgbName(0xe6, 0xa4, 0x6e, '472 xgc'), + RgbInt8Color.rgbName(0xe9, 0xa1, 0x6f, '7411 u'), + RgbInt8Color.rgbName(0xeb, 0x9d, 0x6d, 'p 27-5 u'), + RgbInt8Color.rgbName(0xea, 0x97, 0x70, 'p 30-5 u'), + RgbInt8Color.rgbName(0xeb, 0x9c, 0x73, 'p 34-4 u'), + RgbInt8Color.rgbName(0xea, 0x98, 0x7d, '486 xgc'), + RgbInt8Color.rgbName(0xeb, 0x99, 0x7b, 'p 40-4 u'), + RgbInt8Color.rgbName(0xe6, 0xa1, 0x81, '2438 cp'), + RgbInt8Color.rgbName(0xe8, 0xa1, 0x82, 'p 48-4 c'), + RgbInt8Color.rgbName(0xeb, 0x9a, 0x7f, 'p 48-4 u'), + RgbInt8Color.rgbName(0xec, 0x99, 0x82, 'p 52-4 u'), + RgbInt8Color.rgbName(0xea, 0x97, 0x89, 'p 57-2 u'), + RgbInt8Color.rgbName(0xec, 0x9d, 0x8c, '177 up'), + RgbInt8Color.rgbName(0xe5, 0xa1, 0x87, '2438 u'), + RgbInt8Color.rgbName(0xe3, 0xa5, 0x8c, 'p 45-11 u'), + RgbInt8Color.rgbName(0xe6, 0x9d, 0x93, 'p 57-2 c'), + RgbInt8Color.rgbName(0xeb, 0x9b, 0x9c, '183 up'), + RgbInt8Color.rgbName(0xeb, 0x9b, 0x94, 'p 62-3 u'), + RgbInt8Color.rgbName(0xe8, 0x9f, 0xa2, '1775 cp'), + RgbInt8Color.rgbName(0xe7, 0x9c, 0xa6, '183 cp'), + RgbInt8Color.rgbName(0xea, 0x9b, 0xa7, '708 xgc'), + RgbInt8Color.rgbName(0xe8, 0x9c, 0xae, '197 c'), + RgbInt8Color.rgbName(0xea, 0x9f, 0xb1, '1905 up'), + RgbInt8Color.rgbName(0xea, 0x9f, 0xbb, '2037 up'), + RgbInt8Color.rgbName(0xe7, 0xa1, 0xba, '210 up'), + RgbInt8Color.rgbName(0xe5, 0xa5, 0xc0, '210 xgc'), + RgbInt8Color.rgbName(0xf1, 0xb2, 0xdc, 'magenta 0521 c'), + RgbInt8Color.rgbName(0xfd, 0xac, 0xec, '921 u'), + RgbInt8Color.rgbName(0xf6, 0xbe, 0x0, '7408 c'), + RgbInt8Color.rgbName(0xf3, 0xba, 0x16, '7408 cp'), + RgbInt8Color.rgbName(0xf2, 0xb7, 0x15, '7409 cp'), + RgbInt8Color.rgbName(0xf7, 0x9b, 0x2e, '130 u'), + RgbInt8Color.rgbName(0xf6, 0xa0, 0x4d, '143 u'), + RgbInt8Color.rgbName(0xec, 0xa1, 0x54, '157 c'), + RgbInt8Color.rgbName(0xf0, 0xa4, 0x4c, '2013 up'), + RgbInt8Color.rgbName(0xed, 0xa5, 0x56, '157 xgc'), + RgbInt8Color.rgbName(0xf0, 0xa1, 0x52, 'p 17-7 u'), + RgbInt8Color.rgbName(0xea, 0xa6, 0x58, 'p 20-6 c'), + RgbInt8Color.rgbName(0xf0, 0xa2, 0x56, 'p 20-6 u'), + RgbInt8Color.rgbName(0xed, 0x9f, 0x61, '150 up'), + RgbInt8Color.rgbName(0xea, 0xa8, 0x5e, 'p 24-5 c'), + RgbInt8Color.rgbName(0xef, 0xa6, 0x64, '143 up'), + RgbInt8Color.rgbName(0xe9, 0xa3, 0x74, '2023 cp'), + RgbInt8Color.rgbName(0xe6, 0xa6, 0x73, '472 cp'), + RgbInt8Color.rgbName(0xe9, 0xa7, 0x6e, 'p 30-5 c'), + RgbInt8Color.rgbName(0xeb, 0xa6, 0x77, '163 cp'), + RgbInt8Color.rgbName(0xe1, 0xa7, 0x80, 'p 34-10 u'), + RgbInt8Color.rgbName(0xe9, 0xa7, 0x82, 'p 45-2 c'), + RgbInt8Color.rgbName(0xec, 0xa0, 0x86, 'p 45-2 u'), + RgbInt8Color.rgbName(0xe1, 0xae, 0x8b, 'p 37-10 u'), + RgbInt8Color.rgbName(0xdf, 0xac, 0x91, 'p 46-1 u'), + RgbInt8Color.rgbName(0xe8, 0xa4, 0x8c, 'p 52-4 c'), + RgbInt8Color.rgbName(0xec, 0x9f, 0x8b, 'p 55-2 u'), + RgbInt8Color.rgbName(0xea, 0xa5, 0x97, '3572 up'), + RgbInt8Color.rgbName(0xea, 0xa7, 0x94, '487 c'), + RgbInt8Color.rgbName(0xe2, 0xad, 0x99, 'p 52-10 c'), + RgbInt8Color.rgbName(0xe4, 0xa7, 0x94, 'p 55-10 u'), + RgbInt8Color.rgbName(0xeb, 0x9d, 0x91, 'p 59-2 u'), + RgbInt8Color.rgbName(0xeb, 0xa4, 0xa4, '197 up'), + RgbInt8Color.rgbName(0xe6, 0xa5, 0xa7, '3519 cp'), + RgbInt8Color.rgbName(0xea, 0xa5, 0xa2, '3519 up'), + RgbInt8Color.rgbName(0xe8, 0xa7, 0xa1, 'p 59-2 c'), + RgbInt8Color.rgbName(0xe9, 0xa9, 0xa0, 'p 62-3 c'), + RgbInt8Color.rgbName(0xea, 0xa1, 0xaf, '183 xgc'), + RgbInt8Color.rgbName(0xe8, 0xa1, 0xb0, '197 cp'), + RgbInt8Color.rgbName(0xe9, 0xa2, 0xb2, '494 c'), + RgbInt8Color.rgbName(0xe0, 0xaf, 0xa6, 'p 60-3 c'), + RgbInt8Color.rgbName(0xec, 0xa3, 0xab, 'p 68-2 u'), + RgbInt8Color.rgbName(0xe5, 0xa8, 0xae, 'p 68-9 u'), + RgbInt8Color.rgbName(0xe8, 0xa5, 0xb7, '189 xgc'), + RgbInt8Color.rgbName(0xe8, 0xa4, 0xb8, '1905 cp'), + RgbInt8Color.rgbName(0xe6, 0xa4, 0xba, '1905 xgc'), + RgbInt8Color.rgbName(0xea, 0xa1, 0xb2, '197 xgc'), + RgbInt8Color.rgbName(0xe9, 0xa5, 0xb7, '494 cp'), + RgbInt8Color.rgbName(0xe6, 0xae, 0xcb, '230 cp'), + RgbInt8Color.rgbName(0xe6, 0xb0, 0xc9, '230 up'), + RgbInt8Color.rgbName(0xe3, 0xaf, 0xc4, '508 cp'), + RgbInt8Color.rgbName(0xe3, 0xbb, 0xd4, '243 cp'), + RgbInt8Color.rgbName(0xe6, 0xbc, 0xd8, '671 c'), + RgbInt8Color.rgbName(0xfc, 0xa9, 0xe6, '941 c'), + RgbInt8Color.rgbName(0xf4, 0xc0, 0x0, '7408 xgc'), + RgbInt8Color.rgbName(0xf1, 0xb8, 0x28, '7406 u'), + RgbInt8Color.rgbName(0xf1, 0xb4, 0x34, '143 c'), + RgbInt8Color.rgbName(0xf1, 0xb7, 0x31, '7409 xgc'), + RgbInt8Color.rgbName(0xf3, 0xb2, 0x3b, '3514 up'), + RgbInt8Color.rgbName(0xfa, 0xaf, 0x3f, '129 u'), + RgbInt8Color.rgbName(0xf1, 0xb6, 0x3f, '143 xgc'), + RgbInt8Color.rgbName(0xf4, 0xb4, 0x3c, '3514 u'), + RgbInt8Color.rgbName(0xf3, 0xae, 0x48, 'p 10-8 u'), + RgbInt8Color.rgbName(0xf2, 0xaa, 0x4c, 'p 14-7 u'), + RgbInt8Color.rgbName(0xf1, 0xaa, 0x58, '123 up'), + RgbInt8Color.rgbName(0xf7, 0xad, 0x50, '7409 u'), + RgbInt8Color.rgbName(0xf0, 0xa7, 0x59, '130 up'), + RgbInt8Color.rgbName(0xed, 0xae, 0x5a, '1365 cp'), + RgbInt8Color.rgbName(0xf1, 0xa9, 0x5c, '1375 up'), + RgbInt8Color.rgbName(0xf1, 0xab, 0x5a, '2009 up'), + RgbInt8Color.rgbName(0xe9, 0xad, 0x60, '7411 xgc'), + RgbInt8Color.rgbName(0xf2, 0xb0, 0x63, '136 up'), + RgbInt8Color.rgbName(0xf1, 0xaa, 0x66, 'p 24-4 u'), + RgbInt8Color.rgbName(0xec, 0xab, 0x77, '1565 cp'), + RgbInt8Color.rgbName(0xed, 0xac, 0x71, '7410 cp'), + RgbInt8Color.rgbName(0xec, 0xb0, 0x6e, 'p 24-4 c'), + RgbInt8Color.rgbName(0xea, 0xab, 0x73, 'p 27-5 c'), + RgbInt8Color.rgbName(0xef, 0xa9, 0x79, '1565 up'), + RgbInt8Color.rgbName(0xea, 0xac, 0x7c, 'p 34-4 c'), + RgbInt8Color.rgbName(0xea, 0xac, 0x80, 'p 37-4 c'), + RgbInt8Color.rgbName(0xe1, 0xb8, 0x7f, '7508 c'), + RgbInt8Color.rgbName(0xe1, 0xb5, 0x87, 'p 27-11 c'), + RgbInt8Color.rgbName(0xe2, 0xb1, 0x88, 'p 30-10 u'), + RgbInt8Color.rgbName(0xea, 0xb0, 0x81, 'p 30-4 c'), + RgbInt8Color.rgbName(0xeb, 0xab, 0x8b, '1625 cp'), + RgbInt8Color.rgbName(0xef, 0xac, 0x8d, '1625 up'), + RgbInt8Color.rgbName(0xe9, 0xae, 0x89, '473 up'), + RgbInt8Color.rgbName(0xec, 0xaa, 0x90, '487 cp'), + RgbInt8Color.rgbName(0xeb, 0xab, 0x93, '487 xgc'), + RgbInt8Color.rgbName(0xe3, 0xb5, 0x98, 'p 40-9 c'), + RgbInt8Color.rgbName(0xe8, 0xa9, 0x9b, 'p 55-2 c'), + RgbInt8Color.rgbName(0xe3, 0xb0, 0xa2, 'p 55-10 c'), + RgbInt8Color.rgbName(0xea, 0xac, 0xae, '1765 cp'), + RgbInt8Color.rgbName(0xed, 0xa9, 0xaa, 'p 65-3 u'), + RgbInt8Color.rgbName(0xe6, 0xae, 0xb5, '494 xgc'), + RgbInt8Color.rgbName(0xe9, 0xb0, 0xb7, '495 up'), + RgbInt8Color.rgbName(0xec, 0xa9, 0xb3, '700 xgc'), + RgbInt8Color.rgbName(0xe8, 0xad, 0xb5, 'p 68-2 c'), + RgbInt8Color.rgbName(0xe3, 0xb1, 0xb9, 'p 68-9 c'), + RgbInt8Color.rgbName(0xed, 0xab, 0xb8, 'p 71-3 u'), + RgbInt8Color.rgbName(0xe9, 0xab, 0xc2, '210 cp'), + RgbInt8Color.rgbName(0xea, 0xae, 0xbe, '509 u'), + RgbInt8Color.rgbName(0xe5, 0xb2, 0xbb, '509 up'), + RgbInt8Color.rgbName(0xeb, 0xb1, 0xbf, '700 cp'), + RgbInt8Color.rgbName(0xe9, 0xad, 0xbe, 'p 71-3 c'), + RgbInt8Color.rgbName(0xec, 0xa9, 0xc2, 'p 75-4 u'), + RgbInt8Color.rgbName(0xea, 0xb3, 0xc9, '203 cp'), + RgbInt8Color.rgbName(0xe7, 0xb2, 0xc4, '3595 cp'), + RgbInt8Color.rgbName(0xe7, 0xb7, 0xc8, 'p 75-11 u'), + RgbInt8Color.rgbName(0xe4, 0xb9, 0xcf, 'p 80-1 c'), + RgbInt8Color.rgbName(0xf4, 0xc1, 0xe1, '217 u'), + RgbInt8Color.rgbName(0xf8, 0xbf, 0xe7, '2365 u'), + RgbInt8Color.rgbName(0xf2, 0xc8, 0xe3, '517 u'), + RgbInt8Color.rgbName(0xf4, 0xc5, 0x22, 'p 7-8 c'), + RgbInt8Color.rgbName(0xf2, 0xc0, 0x31, '2006 cp'), + RgbInt8Color.rgbName(0xf1, 0xbe, 0x48, '142 c'), + RgbInt8Color.rgbName(0xf5, 0xb5, 0x4f, 'p 10-7 u'), + RgbInt8Color.rgbName(0xf6, 0xb7, 0x52, '116 up'), + RgbInt8Color.rgbName(0xf4, 0xb5, 0x56, '2010 up'), + RgbInt8Color.rgbName(0xf4, 0xb5, 0x59, '122 up'), + RgbInt8Color.rgbName(0xf3, 0xaf, 0x5b, '1235 up'), + RgbInt8Color.rgbName(0xf3, 0xb1, 0x5b, '129 up'), + RgbInt8Color.rgbName(0xef, 0xb6, 0x61, '2009 c'), + RgbInt8Color.rgbName(0xed, 0xb3, 0x67, 'p 20-5 c'), + RgbInt8Color.rgbName(0xf3, 0xb4, 0x69, '142 up'), + RgbInt8Color.rgbName(0xef, 0xba, 0x60, '2009 xgc'), + RgbInt8Color.rgbName(0xed, 0xb4, 0x6a, '2016 cp'), + RgbInt8Color.rgbName(0xed, 0xb4, 0x6e, '2017 cp'), + RgbInt8Color.rgbName(0xef, 0xb8, 0x64, 'p 17-6 c'), + RgbInt8Color.rgbName(0xf3, 0xb5, 0x71, '1365 up'), + RgbInt8Color.rgbName(0xef, 0xb6, 0x70, '1485 cp'), + RgbInt8Color.rgbName(0xf4, 0xb4, 0x71, '2017 xgc'), + RgbInt8Color.rgbName(0xe4, 0xb8, 0x7c, 'p 17-11 u'), + RgbInt8Color.rgbName(0xe4, 0xb6, 0x7c, 'p 20-10 u'), + RgbInt8Color.rgbName(0xee, 0xaf, 0x7a, '714 cp'), + RgbInt8Color.rgbName(0xe5, 0xba, 0x82, 'p 24-12 c'), + RgbInt8Color.rgbName(0xe7, 0xb7, 0x8a, '720 c'), + RgbInt8Color.rgbName(0xe0, 0xba, 0x88, 'p 21-2 u'), + RgbInt8Color.rgbName(0xe4, 0xbd, 0x88, 'p 20-10 c'), + RgbInt8Color.rgbName(0xeb, 0xb2, 0x8c, 'p 40-3 c'), + RgbInt8Color.rgbName(0xe7, 0xb2, 0x94, 'p 40-9 u'), + RgbInt8Color.rgbName(0xe3, 0xbb, 0x94, 'p 30-10 c'), + RgbInt8Color.rgbName(0xe5, 0xb6, 0x9f, '3544 u'), + RgbInt8Color.rgbName(0xe1, 0xb9, 0xa8, '7513 xgc'), + RgbInt8Color.rgbName(0xe9, 0xb5, 0xa0, 'p 52-9 u'), + RgbInt8Color.rgbName(0xe4, 0xbb, 0xa9, '3544 cp'), + RgbInt8Color.rgbName(0xe6, 0xba, 0xa8, '7415 c'), + RgbInt8Color.rgbName(0xdf, 0xbd, 0xaf, '7611 xgc'), + RgbInt8Color.rgbName(0xe7, 0xbb, 0xb4, '7513 u'), + RgbInt8Color.rgbName(0xea, 0xb4, 0xb6, 'p 65-3 c'), + RgbInt8Color.rgbName(0xeb, 0xb3, 0xbc, '189 cp'), + RgbInt8Color.rgbName(0xe5, 0xba, 0xc1, '502 c'), + RgbInt8Color.rgbName(0xe6, 0xb7, 0xbd, '502 u'), + RgbInt8Color.rgbName(0xdf, 0xc2, 0xc3, '5035 c'), + RgbInt8Color.rgbName(0xe8, 0xb3, 0xc3, '509 c'), + RgbInt8Color.rgbName(0xec, 0xb6, 0xbf, '707 xgc'), + RgbInt8Color.rgbName(0xe9, 0xb1, 0xc3, 'p 73-3 c'), + RgbInt8Color.rgbName(0xe8, 0xb7, 0xc7, '1895 xgc'), + RgbInt8Color.rgbName(0xec, 0xb3, 0xcb, '203 c'), + RgbInt8Color.rgbName(0xe7, 0xb8, 0xcd, '203 xgc'), + RgbInt8Color.rgbName(0xe8, 0xb8, 0xce, '2365 up'), + RgbInt8Color.rgbName(0xe8, 0xbb, 0xc5, '509 xgc'), + RgbInt8Color.rgbName(0xe9, 0xbb, 0xc8, '7430 up'), + RgbInt8Color.rgbName(0xe1, 0xc2, 0xc5, 'p 72-9 u'), + RgbInt8Color.rgbName(0xe5, 0xb9, 0xc6, 'p 73-10 c'), + RgbInt8Color.rgbName(0xe9, 0xb5, 0xcc, 'p 75-4 c'), + RgbInt8Color.rgbName(0xe4, 0xbc, 0xca, 'p 76-2 u'), + RgbInt8Color.rgbName(0xe8, 0xba, 0xd2, '217 cp'), + RgbInt8Color.rgbName(0xe3, 0xbf, 0xd4, '671 xgc'), + RgbInt8Color.rgbName(0xe5, 0xc0, 0xd4, '678 u'), + RgbInt8Color.rgbName(0xe4, 0xbd, 0xd0, '685 u'), + RgbInt8Color.rgbName(0xe5, 0xbf, 0xcf, '7429 cp'), + RgbInt8Color.rgbName(0xe5, 0xbf, 0xd0, 'p 75-11 c'), + RgbInt8Color.rgbName(0xe5, 0xc0, 0xd7, '516 cp'), + RgbInt8Color.rgbName(0xe5, 0xc3, 0xd9, '671 cp'), + RgbInt8Color.rgbName(0xe3, 0xc1, 0xd7, '679 cp'), + RgbInt8Color.rgbName(0xea, 0xc9, 0xdc, '517 cp'), + RgbInt8Color.rgbName(0xe7, 0xd2, 0xdf, '677 cp'), + RgbInt8Color.rgbName(0xf3, 0xc9, 0xe4, '9324 c'), + RgbInt8Color.rgbName(0xe0, 0xce, 0xde, 'p 83-10 c'), + RgbInt8Color.rgbName(0xf2, 0xc5, 0x41, '123 cp'), + RgbInt8Color.rgbName(0xf2, 0xbf, 0x4c, '142 cp'), + RgbInt8Color.rgbName(0xf8, 0xbe, 0x46, 'p 7-8 u'), + RgbInt8Color.rgbName(0xf2, 0xc1, 0x50, '1225 cp'), + RgbInt8Color.rgbName(0xf2, 0xc2, 0x50, '142 xgc'), + RgbInt8Color.rgbName(0xf2, 0xbe, 0x57, '2006 up'), + RgbInt8Color.rgbName(0xf6, 0xba, 0x55, '7549 up'), + RgbInt8Color.rgbName(0xf1, 0xc1, 0x5c, '135 cp'), + RgbInt8Color.rgbName(0xf0, 0xc0, 0x63, 'p 14-6 c'), + RgbInt8Color.rgbName(0xf1, 0xc0, 0x68, '2006 u'), + RgbInt8Color.rgbName(0xef, 0xc0, 0x6e, '2008 c'), + RgbInt8Color.rgbName(0xed, 0xc4, 0x70, '2008 xgc'), + RgbInt8Color.rgbName(0xf5, 0xbc, 0x6f, 'p 17-5 u'), + RgbInt8Color.rgbName(0xf1, 0xc2, 0x7a, '1355 cp'), + RgbInt8Color.rgbName(0xef, 0xbe, 0x7d, '156 c'), + RgbInt8Color.rgbName(0xef, 0xbc, 0x79, 'p 20-4 c'), + RgbInt8Color.rgbName(0xe5, 0xc1, 0x89, 'p 17-11 c'), + RgbInt8Color.rgbName(0xea, 0xc0, 0x88, 'p 20-9 u'), + RgbInt8Color.rgbName(0xee, 0xbc, 0x80, 'p 24-3 c'), + RgbInt8Color.rgbName(0xe9, 0xba, 0x90, '720 cp'), + RgbInt8Color.rgbName(0xea, 0xc4, 0x8c, 'p 17-10 u'), + RgbInt8Color.rgbName(0xe3, 0xc4, 0x92, 'p 18-2 u'), + RgbInt8Color.rgbName(0xe9, 0xc0, 0x8c, 'p 24-11 u'), + RgbInt8Color.rgbName(0xe6, 0xba, 0x92, 'p 27-10 u'), + RgbInt8Color.rgbName(0xe6, 0xc2, 0x9a, 'p 27-10 c'), + RgbInt8Color.rgbName(0xe7, 0xbd, 0x97, 'p 30-9 u'), + RgbInt8Color.rgbName(0xe3, 0xc0, 0x9f, 'p 37-9 c'), + RgbInt8Color.rgbName(0xe7, 0xbd, 0x9c, 'p 37-9 u'), + RgbInt8Color.rgbName(0xdd, 0xc2, 0xa5, '4675 xgc'), + RgbInt8Color.rgbName(0xe1, 0xc3, 0xa0, 'p 25-1 c'), + RgbInt8Color.rgbName(0xe8, 0xc1, 0xa2, 'p 34-9 c'), + RgbInt8Color.rgbName(0xe7, 0xc1, 0xa1, 'p 35-1 u'), + RgbInt8Color.rgbName(0xe5, 0xbf, 0xa4, 'p 45-10 c'), + RgbInt8Color.rgbName(0xe7, 0xbc, 0xa7, '3544 up'), + RgbInt8Color.rgbName(0xe0, 0xc6, 0xad, '4685 c'), + RgbInt8Color.rgbName(0xe9, 0xbe, 0xab, '488 xgc'), + RgbInt8Color.rgbName(0xe7, 0xbe, 0xaf, '7415 xgc'), + RgbInt8Color.rgbName(0xe4, 0xc2, 0xa7, 'p 35-1 c'), + RgbInt8Color.rgbName(0xe6, 0xbc, 0xae, 'p 52-9 c'), + RgbInt8Color.rgbName(0xea, 0xbe, 0xb0, '7520 c'), + RgbInt8Color.rgbName(0xe5, 0xc0, 0xb8, '7605 cp'), + RgbInt8Color.rgbName(0xe4, 0xc4, 0xb8, '7611 cp'), + RgbInt8Color.rgbName(0xe3, 0xc0, 0xb2, 'p 56-1 u'), + RgbInt8Color.rgbName(0xe7, 0xbd, 0xb3, 'p 57-10 c'), + RgbInt8Color.rgbName(0xe4, 0xbe, 0xc3, '692 c'), + RgbInt8Color.rgbName(0xe4, 0xc1, 0xc1, '692 up'), + RgbInt8Color.rgbName(0xe4, 0xc1, 0xc0, '692 xgc'), + RgbInt8Color.rgbName(0xea, 0xc4, 0xbe, '7605 u'), + RgbInt8Color.rgbName(0xe6, 0xc3, 0xba, '7605 xgc'), + RgbInt8Color.rgbName(0xe1, 0xc4, 0xbb, 'p 56-1 c'), + RgbInt8Color.rgbName(0xe3, 0xc6, 0xc3, 'p 66-1 u'), + RgbInt8Color.rgbName(0xe7, 0xbe, 0xc4, 'p 71-10 u'), + RgbInt8Color.rgbName(0xec, 0xbe, 0xc5, '182 cp'), + RgbInt8Color.rgbName(0xe8, 0xbe, 0xce, '2036 xgc'), + RgbInt8Color.rgbName(0xe9, 0xbe, 0xca, '3568 cp'), + RgbInt8Color.rgbName(0xed, 0xbe, 0xc6, '495 xgc'), + RgbInt8Color.rgbName(0xe6, 0xc2, 0xc5, '502 xgc'), + RgbInt8Color.rgbName(0xe6, 0xc6, 0xc7, '5035 u'), + RgbInt8Color.rgbName(0xe1, 0xc7, 0xc4, '5035 xgc'), + RgbInt8Color.rgbName(0xeb, 0xbe, 0xcb, '510 c'), + RgbInt8Color.rgbName(0xe5, 0xc1, 0xc7, '692 cp'), + RgbInt8Color.rgbName(0xe9, 0xc0, 0xc5, '692 u'), + RgbInt8Color.rgbName(0xe4, 0xc2, 0xca, 'p 71-10 c'), + RgbInt8Color.rgbName(0xdf, 0xc5, 0xcb, 'p 72-9 c'), + RgbInt8Color.rgbName(0xe3, 0xc3, 0xce, 'p 76-10 u'), + RgbInt8Color.rgbName(0xed, 0xc0, 0xd2, '1895 cp'), + RgbInt8Color.rgbName(0xeb, 0xbf, 0xd2, '2036 cp'), + RgbInt8Color.rgbName(0xea, 0xc4, 0xd2, '2043 c'), + RgbInt8Color.rgbName(0xe3, 0xc6, 0xd1, '2051 up'), + RgbInt8Color.rgbName(0xe8, 0xc1, 0xd7, '2365 cp'), + RgbInt8Color.rgbName(0xe4, 0xc7, 0xd4, '678 up'), + RgbInt8Color.rgbName(0xe4, 0xc6, 0xd4, '684 c'), + RgbInt8Color.rgbName(0xea, 0xbf, 0xd0, '685 up'), + RgbInt8Color.rgbName(0xe4, 0xc4, 0xd2, '7429 xgc'), + RgbInt8Color.rgbName(0xe3, 0xc5, 0xd2, 'p 76-2 c'), + RgbInt8Color.rgbName(0xe4, 0xc6, 0xd9, '517 xgc'), + RgbInt8Color.rgbName(0xe3, 0xd7, 0xe6, '9341 c'), + RgbInt8Color.rgbName(0xe7, 0xd7, 0xea, '9341 u'), + RgbInt8Color.rgbName(0xe3, 0xd7, 0xe5, 'p 88-1 u'), + RgbInt8Color.rgbName(0xf3, 0xd0, 0x3e, '129 c'), + RgbInt8Color.rgbName(0xf6, 0xd0, 0x3a, '7548 cp'), + RgbInt8Color.rgbName(0xf2, 0xc7, 0x5c, '141 c'), + RgbInt8Color.rgbName(0xf5, 0xcd, 0x54, 'p 7-7 c'), + RgbInt8Color.rgbName(0xf2, 0xca, 0x61, '141 xgc'), + RgbInt8Color.rgbName(0xf2, 0xc7, 0x63, 'p 10-6 c'), + RgbInt8Color.rgbName(0xf8, 0xc4, 0x66, '121 up'), + RgbInt8Color.rgbName(0xf5, 0xcd, 0x66, '141 cp'), + RgbInt8Color.rgbName(0xf8, 0xc8, 0x6d, 'p 10-5 u'), + RgbInt8Color.rgbName(0xf1, 0xc6, 0x77, 'p 14-5 c'), + RgbInt8Color.rgbName(0xf0, 0xc3, 0x7b, 'p 17-5 c'), + RgbInt8Color.rgbName(0xe9, 0xc5, 0x86, 'p 14-11 u'), + RgbInt8Color.rgbName(0xe9, 0xcf, 0x86, 'p 7-12 u'), + RgbInt8Color.rgbName(0xe7, 0xce, 0x86, 'p 7-13 c'), + RgbInt8Color.rgbName(0xec, 0xcd, 0x8c, 'p 10-11 u'), + RgbInt8Color.rgbName(0xe7, 0xc9, 0x91, 'p 14-11 c'), + RgbInt8Color.rgbName(0xf1, 0xc9, 0x8c, 'p 17-4 c'), + RgbInt8Color.rgbName(0xe1, 0xcb, 0x94, 'p 8-3 u'), + RgbInt8Color.rgbName(0xe0, 0xcc, 0xa2, '468 up'), + RgbInt8Color.rgbName(0xde, 0xcb, 0xa5, '7501 u'), + RgbInt8Color.rgbName(0xea, 0xcb, 0x98, 'p 17-10 c'), + RgbInt8Color.rgbName(0xe8, 0xc4, 0x94, 'p 20-9 c'), + RgbInt8Color.rgbName(0xe7, 0xc7, 0x9a, 'p 21-1 u'), + RgbInt8Color.rgbName(0xe1, 0xce, 0xa4, '468 xgc'), + RgbInt8Color.rgbName(0xe6, 0xc9, 0xa5, '726 cp'), + RgbInt8Color.rgbName(0xe1, 0xcd, 0xa6, '7501 cp'), + RgbInt8Color.rgbName(0xe4, 0xce, 0xa1, 'p 11-1 u'), + RgbInt8Color.rgbName(0xde, 0xcb, 0xa7, 'p 19-9 u'), + RgbInt8Color.rgbName(0xe4, 0xc9, 0xa5, 'p 21-1 c'), + RgbInt8Color.rgbName(0xe8, 0xc7, 0x9e, 'p 24-11 c'), + RgbInt8Color.rgbName(0xe8, 0xc6, 0xa9, '726 u'), + RgbInt8Color.rgbName(0xe3, 0xcd, 0xb8, '4685 cp'), + RgbInt8Color.rgbName(0xe6, 0xca, 0xb4, '4685 u'), + RgbInt8Color.rgbName(0xea, 0xc9, 0xb5, '489 xgc'), + RgbInt8Color.rgbName(0xe0, 0xd0, 0xb8, 'p 19-9 c'), + RgbInt8Color.rgbName(0xdf, 0xcb, 0xb7, 'p 29-1 c'), + RgbInt8Color.rgbName(0xe7, 0xc8, 0xbe, '7611 u'), + RgbInt8Color.rgbName(0xe1, 0xcf, 0xbe, '9186 u'), + RgbInt8Color.rgbName(0xe2, 0xce, 0xbb, '9203 u'), + RgbInt8Color.rgbName(0xde, 0xcf, 0xc4, 'p 51-2 u'), + RgbInt8Color.rgbName(0xe8, 0xc8, 0xbc, 'p 53-1 c'), + RgbInt8Color.rgbName(0xe7, 0xc6, 0xc0, 'p 60-2 c'), + RgbInt8Color.rgbName(0xe6, 0xca, 0xcb, '5035 cp'), + RgbInt8Color.rgbName(0xdf, 0xce, 0xd0, '5175 up'), + RgbInt8Color.rgbName(0xe1, 0xd3, 0xc7, '9223 c'), + RgbInt8Color.rgbName(0xe1, 0xce, 0xc6, '9243 c'), + RgbInt8Color.rgbName(0xe5, 0xc9, 0xc9, '9283 u'), + RgbInt8Color.rgbName(0xe7, 0xc9, 0xd2, '2043 cp'), + RgbInt8Color.rgbName(0xe4, 0xc8, 0xd5, '2051 u'), + RgbInt8Color.rgbName(0xdf, 0xcf, 0xd8, '5175 cp'), + RgbInt8Color.rgbName(0xe0, 0xcf, 0xd6, '5245 u'), + RgbInt8Color.rgbName(0xe4, 0xca, 0xd6, '684 cp'), + RgbInt8Color.rgbName(0xea, 0xc6, 0xd1, '9302 u'), + RgbInt8Color.rgbName(0xe2, 0xcc, 0xd6, '9323 c'), + RgbInt8Color.rgbName(0xe2, 0xce, 0xce, 'p 64-9 c'), + RgbInt8Color.rgbName(0xe2, 0xcb, 0xd6, 'p 76-10 c'), + RgbInt8Color.rgbName(0xe4, 0xcd, 0xd4, 'p 77-9 u'), + RgbInt8Color.rgbName(0xe1, 0xcf, 0xd7, 'p 82-9 u'), + RgbInt8Color.rgbName(0xe5, 0xce, 0xdb, '677 c'), + RgbInt8Color.rgbName(0xe1, 0xd0, 0xd8, 'p 77-9 c'), + RgbInt8Color.rgbName(0xf9, 0xd9, 0x38, '115 xgc'), + RgbInt8Color.rgbName(0xf3, 0xd5, 0x4e, '128 c'), + RgbInt8Color.rgbName(0xf9, 0xde, 0x45, '114 cp'), + RgbInt8Color.rgbName(0xf8, 0xdb, 0x46, '115 cp'), + RgbInt8Color.rgbName(0xf2, 0xd8, 0x4e, '129 xgc'), + RgbInt8Color.rgbName(0xfa, 0xda, 0x46, '7404 cp'), + RgbInt8Color.rgbName(0xf5, 0xd2, 0x58, '122 cp'), + RgbInt8Color.rgbName(0xf6, 0xd1, 0x5a, '129 cp'), + RgbInt8Color.rgbName(0xf9, 0xd6, 0x5e, '121 xgc'), + RgbInt8Color.rgbName(0xf2, 0xdc, 0x5e, '128 xgc'), + RgbInt8Color.rgbName(0xf9, 0xd2, 0x68, '134 xgc'), + RgbInt8Color.rgbName(0xf4, 0xd1, 0x68, '2005 cp'), + RgbInt8Color.rgbName(0xf6, 0xd8, 0x6f, '121 cp'), + RgbInt8Color.rgbName(0xe9, 0xd5, 0x7c, '459 up'), + RgbInt8Color.rgbName(0xed, 0xd2, 0x7c, '7403 cp'), + RgbInt8Color.rgbName(0xf5, 0xd2, 0x7a, '134 cp'), + RgbInt8Color.rgbName(0xf3, 0xce, 0x7a, 'p 10-5 c'), + RgbInt8Color.rgbName(0xee, 0xd4, 0x84, '7403 c'), + RgbInt8Color.rgbName(0xeb, 0xd5, 0x88, 'p 4-11 u'), + RgbInt8Color.rgbName(0xea, 0xd8, 0x85, 'p 4-12 c'), + RgbInt8Color.rgbName(0xef, 0xd0, 0x8c, '7403 up'), + RgbInt8Color.rgbName(0xe5, 0xd3, 0x99, 'p 8-3 c'), + RgbInt8Color.rgbName(0xe1, 0xd4, 0xa4, '4545 up'), + RgbInt8Color.rgbName(0xe9, 0xd0, 0x95, 'p 10-11 c'), + RgbInt8Color.rgbName(0xe6, 0xd7, 0x97, 'p 5-2 c'), + RgbInt8Color.rgbName(0xea, 0xd5, 0x96, 'p 7-12 c'), + RgbInt8Color.rgbName(0xe3, 0xd0, 0xa8, '7501 up'), + RgbInt8Color.rgbName(0xe5, 0xd2, 0xa7, 'p 11-1 c'), + RgbInt8Color.rgbName(0xea, 0xd1, 0xa2, 'p 14-10 c'), + RgbInt8Color.rgbName(0xe6, 0xd6, 0x9f, 'p 5-1 u'), + RgbInt8Color.rgbName(0xe1, 0xd7, 0xae, '4545 cp'), + RgbInt8Color.rgbName(0xe6, 0xd5, 0xab, '7500 u'), + RgbInt8Color.rgbName(0xe7, 0xd2, 0xa9, 'p 15-2 c'), + RgbInt8Color.rgbName(0xea, 0xd0, 0xa8, 'p 17-9 c'), + RgbInt8Color.rgbName(0xec, 0xd4, 0xaa, 'p 18-1 u'), + RgbInt8Color.rgbName(0xe7, 0xce, 0xb5, '2309 c'), + RgbInt8Color.rgbName(0xe7, 0xce, 0xb3, '2309 xgc'), + RgbInt8Color.rgbName(0xe6, 0xce, 0xb1, '4685 up'), + RgbInt8Color.rgbName(0xe4, 0xd5, 0xb8, 'p 16-9 u'), + RgbInt8Color.rgbName(0xe3, 0xd5, 0xb4, 'p 9-1 u'), + RgbInt8Color.rgbName(0xe1, 0xd3, 0xc4, '9186 c'), + RgbInt8Color.rgbName(0xe5, 0xcf, 0xc0, '9222 u'), + RgbInt8Color.rgbName(0xdd, 0xd5, 0xc3, 'p 13-1 c'), + RgbInt8Color.rgbName(0xe6, 0xcf, 0xbe, 'p 35-9 c'), + RgbInt8Color.rgbName(0xe5, 0xd3, 0xc3, 'p 39-9 u'), + RgbInt8Color.rgbName(0xe1, 0xd9, 0xc5, '7527 up'), + RgbInt8Color.rgbName(0xe4, 0xd2, 0xca, '7604 xgc'), + RgbInt8Color.rgbName(0xdc, 0xd7, 0xcf, '9081 u'), + RgbInt8Color.rgbName(0xe4, 0xd5, 0xc4, '9203 c'), + RgbInt8Color.rgbName(0xe6, 0xd5, 0xc8, '9222 c'), + RgbInt8Color.rgbName(0xe4, 0xd1, 0xcd, '9263 c'), + RgbInt8Color.rgbName(0xe3, 0xd3, 0xc7, 'p 39-9 c'), + RgbInt8Color.rgbName(0xe7, 0xd3, 0xc7, 'p 46-9 c'), + RgbInt8Color.rgbName(0xe8, 0xd0, 0xc9, 'p 53-9 c'), + RgbInt8Color.rgbName(0xe5, 0xcf, 0xcb, 'p 64-9 u'), + RgbInt8Color.rgbName(0xdf, 0xd8, 0xcc, 'warm gray 1 up'), + RgbInt8Color.rgbName(0xdd, 0xd8, 0xcd, 'warm gray 1 xgc'), + RgbInt8Color.rgbName(0xe1, 0xd7, 0xd8, '5245 cp'), + RgbInt8Color.rgbName(0xe3, 0xd2, 0xd1, '5245 up'), + RgbInt8Color.rgbName(0xe4, 0xd5, 0xd3, '7604 c'), + RgbInt8Color.rgbName(0xe6, 0xd3, 0xd3, '7632 up'), + RgbInt8Color.rgbName(0xe7, 0xd2, 0xd6, '9303 c'), + RgbInt8Color.rgbName(0xe4, 0xce, 0xce, 'p 66-1 c'), + RgbInt8Color.rgbName(0xe7, 0xd0, 0xd5, 'p 72-1 c'), + RgbInt8Color.rgbName(0xe0, 0xd7, 0xd9, 'p 86-1 u'), + RgbInt8Color.rgbName(0xe7, 0xd6, 0xdc, '2050 cp'), + RgbInt8Color.rgbName(0xe5, 0xce, 0xd8, '684 xgc'), + RgbInt8Color.rgbName(0xe9, 0xd0, 0xdc, '9322 c'), + RgbInt8Color.rgbName(0xdf, 0xde, 0xde, 'p 179-2 c'), + RgbInt8Color.rgbName(0xe0, 0xdf, 0xdc, 'p 179-2 u'), + RgbInt8Color.rgbName(0xe1, 0xda, 0xdd, 'p 86-1 c'), + RgbInt8Color.rgbName(0xe7, 0xd4, 0xe2, '2085 up'), + RgbInt8Color.rgbName(0xe4, 0xde, 0xe7, '663 cp'), + RgbInt8Color.rgbName(0xe2, 0xd9, 0xe3, '663 u'), + RgbInt8Color.rgbName(0xea, 0xd3, 0xe2, '670 c'), + RgbInt8Color.rgbName(0xe7, 0xd9, 0xe4, '7436 xgc'), + RgbInt8Color.rgbName(0xe4, 0xda, 0xe7, 'p 88-1 c'), + RgbInt8Color.rgbName(0xe1, 0xe0, 0xe9, 'p 100-1 c'), + RgbInt8Color.rgbName(0xf8, 0xdd, 0x50, '114 xgc'), + RgbInt8Color.rgbName(0xfa, 0xe0, 0x53, '113 c'), + RgbInt8Color.rgbName(0xfa, 0xe3, 0x4e, '113 cp'), + RgbInt8Color.rgbName(0xf6, 0xe1, 0x62, '113 xgc'), + RgbInt8Color.rgbName(0xf3, 0xdd, 0x6d, '127 c'), + RgbInt8Color.rgbName(0xf8, 0xd9, 0x62, '128 cp'), + RgbInt8Color.rgbName(0xf6, 0xdb, 0x67, '2004 cp'), + RgbInt8Color.rgbName(0xf3, 0xe5, 0x64, '603 u'), + RgbInt8Color.rgbName(0xf6, 0xe1, 0x6c, '2003 xgc'), + RgbInt8Color.rgbName(0xf7, 0xdd, 0x76, '120 cp'), + RgbInt8Color.rgbName(0xf0, 0xd8, 0x82, '7403 xgc'), + RgbInt8Color.rgbName(0xec, 0xdb, 0x92, 'p 4-11 c'), + RgbInt8Color.rgbName(0xec, 0xd8, 0x98, '7402 c'), + RgbInt8Color.rgbName(0xe8, 0xdd, 0x9c, 'p 2-3 c'), + RgbInt8Color.rgbName(0xef, 0xdb, 0x96, 'p 4-10 u'), + RgbInt8Color.rgbName(0xe9, 0xdf, 0xa6, 'p 2-2 u'), + RgbInt8Color.rgbName(0xe8, 0xdb, 0xa7, 'p 5-1 c'), + RgbInt8Color.rgbName(0xe9, 0xdb, 0xb3, '7500 cp'), + RgbInt8Color.rgbName(0xeb, 0xdd, 0xad, '7500 up'), + RgbInt8Color.rgbName(0xe6, 0xd8, 0xaf, 'p 8-10 u'), + RgbInt8Color.rgbName(0xe9, 0xda, 0xac, 'p 8-2 c'), + RgbInt8Color.rgbName(0xef, 0xdb, 0xb2, '7506 c'), + RgbInt8Color.rgbName(0xe7, 0xdb, 0xb9, '9161 c'), + RgbInt8Color.rgbName(0xeb, 0xda, 0xb6, '9161 u'), + RgbInt8Color.rgbName(0xe8, 0xdc, 0xba, 'p 8-10 c'), + RgbInt8Color.rgbName(0xe2, 0xd9, 0xc2, '9162 c'), + RgbInt8Color.rgbName(0xe4, 0xd9, 0xc5, 'p 16-9 c'), + RgbInt8Color.rgbName(0xe6, 0xda, 0xbf, 'p 9-1 c'), + RgbInt8Color.rgbName(0xec, 0xdc, 0xc8, '9182 c'), + RgbInt8Color.rgbName(0xe5, 0xd7, 0xc5, '9183 c'), + RgbInt8Color.rgbName(0xe9, 0xd8, 0xc8, 'p 28-9 c'), + RgbInt8Color.rgbName(0xde, 0xdf, 0xd7, '9101 u'), + RgbInt8Color.rgbName(0xe4, 0xe2, 0xdb, '9080 c'), + RgbInt8Color.rgbName(0xe3, 0xe3, 0xdd, '9101 c'), + RgbInt8Color.rgbName(0xe5, 0xe1, 0xe6, '663 c'), + RgbInt8Color.rgbName(0xe3, 0xe1, 0xe8, '664 xgc'), + RgbInt8Color.rgbName(0xe7, 0xdc, 0xea, '9340 c'), + RgbInt8Color.rgbName(0xe9, 0xdc, 0xe2, 'p 77-1 c'), + RgbInt8Color.rgbName(0xea, 0xde, 0xe9, 'p 83-1 c'), + RgbInt8Color.rgbName(0xe7, 0xe1, 0xea, 'p 91-9 u'), + RgbInt8Color.rgbName(0xf4, 0xe8, 0x67, '100 xgc'), + RgbInt8Color.rgbName(0xf9, 0xe2, 0x67, '2003 c'), + RgbInt8Color.rgbName(0xf6, 0xe9, 0x66, '3945 up'), + RgbInt8Color.rgbName(0xf3, 0xe4, 0x75, '127 xgc'), + RgbInt8Color.rgbName(0xf8, 0xe2, 0x6e, '2002 cp'), + RgbInt8Color.rgbName(0xf2, 0xe9, 0x76, '394 up'), + RgbInt8Color.rgbName(0xf5, 0xe9, 0x7b, '3935 cp'), + RgbInt8Color.rgbName(0xf4, 0xe8, 0x7b, '602 xgc'), + RgbInt8Color.rgbName(0xf7, 0xe5, 0x86, '2001 cp'), + RgbInt8Color.rgbName(0xf3, 0xe1, 0x8c, '460 up'), + RgbInt8Color.rgbName(0xf1, 0xeb, 0x8e, 'p 166-3 u'), + RgbInt8Color.rgbName(0xf1, 0xe6, 0x94, '608 up'), + RgbInt8Color.rgbName(0xf1, 0xe4, 0x98, 'p 1-12 u'), + RgbInt8Color.rgbName(0xef, 0xe4, 0x9e, '461 cp'), + RgbInt8Color.rgbName(0xee, 0xe2, 0x9f, '461 u'), + RgbInt8Color.rgbName(0xf2, 0xea, 0x9f, '600 xgc'), + RgbInt8Color.rgbName(0xf1, 0xe7, 0xaa, 'p 1-12 c'), + RgbInt8Color.rgbName(0xeb, 0xe2, 0xb1, 'p 2-2 c'), + RgbInt8Color.rgbName(0xf1, 0xe6, 0xb2, '7499 c'), + RgbInt8Color.rgbName(0xea, 0xe1, 0xb9, '9142 u'), + RgbInt8Color.rgbName(0xf0, 0xe3, 0xb1, 'p 4-9 c'), + RgbInt8Color.rgbName(0xf1, 0xe1, 0xb4, 'p 7-10 u'), + RgbInt8Color.rgbName(0xe9, 0xe4, 0xc5, '9142 c'), + RgbInt8Color.rgbName(0xe7, 0xe3, 0xc6, 'p 168-9 u'), + RgbInt8Color.rgbName(0xe7, 0xe2, 0xc2, 'p 3-1 u'), + RgbInt8Color.rgbName(0xf1, 0xe5, 0xc0, 'p 7-10 c'), + RgbInt8Color.rgbName(0xe6, 0xe8, 0xd0, 'p 162-1 u'), + RgbInt8Color.rgbName(0xe9, 0xe5, 0xcd, 'p 3-1 c'), + RgbInt8Color.rgbName(0xe4, 0xe7, 0xd8, 'p 162-1 c'), + RgbInt8Color.rgbName(0xe6, 0xe3, 0xd0, 'p 168-9 c'), + RgbInt8Color.rgbName(0xed, 0xe5, 0xd2, 'p 8-9 c'), + RgbInt8Color.rgbName(0xe3, 0xe8, 0xe3, '9042 c'), + RgbInt8Color.rgbName(0xe8, 0xe6, 0xdf, '9043 c'), + RgbInt8Color.rgbName(0xea, 0xe6, 0xdd, '9043 u'), + RgbInt8Color.rgbName(0xe7, 0xe7, 0xe0, '9100 c'), + RgbInt8Color.rgbName(0xe0, 0xe9, 0xe2, 'p 126-9 u'), + RgbInt8Color.rgbName(0xe5, 0xe3, 0xdd, 'p 169-1 c'), + RgbInt8Color.rgbName(0xe8, 0xe7, 0xea, '663 xgc'), + RgbInt8Color.rgbName(0xe5, 0xec, 0xea, '7541 up'), + RgbInt8Color.rgbName(0xe7, 0xe3, 0xeb, 'p 91-9 c'), + RgbInt8Color.rgbName(0xe7, 0xe6, 0xed, 'p 99-9 c'), + RgbInt8Color.rgbName(0xe7, 0xe5, 0xec, 'p 99-9 u'), + RgbInt8Color.rgbName(0xf1, 0xe6, 0xf1, '9340 u'), + RgbInt8Color.rgbName(0xf8, 0xf2, 0x83, '393 u'), + RgbInt8Color.rgbName(0xf9, 0xee, 0x89, '3935 up'), + RgbInt8Color.rgbName(0xf7, 0xee, 0x83, '602 u'), + RgbInt8Color.rgbName(0xf7, 0xef, 0x8f, '601 u'), + RgbInt8Color.rgbName(0xf3, 0xe9, 0x90, '601 xgc'), + RgbInt8Color.rgbName(0xf1, 0xeb, 0x9c, '600 c'), + RgbInt8Color.rgbName(0xf6, 0xee, 0x98, '601 up'), + RgbInt8Color.rgbName(0xfa, 0xef, 0x94, '602 up'), + RgbInt8Color.rgbName(0xf4, 0xf8, 0x97, '930 u'), + RgbInt8Color.rgbName(0xf4, 0xef, 0x9e, 'p 166-2 u'), + RgbInt8Color.rgbName(0xf2, 0xf0, 0xa1, 'yellow 0131 c'), + RgbInt8Color.rgbName(0xf5, 0xef, 0xa4, '600 up'), + RgbInt8Color.rgbName(0xf3, 0xea, 0xa1, '607 u'), + RgbInt8Color.rgbName(0xf6, 0xef, 0xa6, '607 up'), + RgbInt8Color.rgbName(0xf7, 0xf4, 0xa2, '917 c'), + RgbInt8Color.rgbName(0xf3, 0xed, 0xaa, '600 cp'), + RgbInt8Color.rgbName(0xf1, 0xec, 0xab, '607 cp'), + RgbInt8Color.rgbName(0xf1, 0xef, 0xb7, '9120 c'), + RgbInt8Color.rgbName(0xf1, 0xf0, 0xb0, '9121 c'), + RgbInt8Color.rgbName(0xf6, 0xf2, 0xb0, 'p 166-1 u'), + RgbInt8Color.rgbName(0xf1, 0xed, 0xb0, 'p 166-2 c'), + RgbInt8Color.rgbName(0xf4, 0xf2, 0xbd, '9020 u'), + RgbInt8Color.rgbName(0xf3, 0xea, 0xb3, 'p 1-11 u'), + RgbInt8Color.rgbName(0xf2, 0xef, 0xbf, 'p 166-1 c'), + RgbInt8Color.rgbName(0xf2, 0xed, 0xc0, '9141 c'), + RgbInt8Color.rgbName(0xf2, 0xeb, 0xc2, 'p 1-10 c'), + RgbInt8Color.rgbName(0xf2, 0xec, 0xc3, 'p 1-11 c'), + RgbInt8Color.rgbName(0xf1, 0xf2, 0xc0, 'p 163-2 u'), + RgbInt8Color.rgbName(0xf1, 0xea, 0xbe, 'p 2-1 u'), + RgbInt8Color.rgbName(0xf2, 0xee, 0xca, '9140 c'), + RgbInt8Color.rgbName(0xec, 0xee, 0xcf, 'p 160-2 c'), + RgbInt8Color.rgbName(0xf1, 0xeb, 0xc9, 'p 2-1 c'), + RgbInt8Color.rgbName(0xe9, 0xee, 0xd7, 'p 157-1 c'), + RgbInt8Color.rgbName(0xed, 0xea, 0xd4, 'p 3-9 u'), + RgbInt8Color.rgbName(0xe6, 0xee, 0xe1, 'p 152-1 u'), + RgbInt8Color.rgbName(0xe7, 0xec, 0xe3, 'p 152-1 c'), + RgbInt8Color.rgbName(0xeb, 0xf0, 0xe3, 'p 154-1 c'), + RgbInt8Color.rgbName(0xed, 0xf0, 0xed, 'p 134-9 c'), + RgbInt8Color.rgbName(0xed, 0xf2, 0xec, 'p 134-9 u'), + RgbInt8Color.rgbName(0xf2, 0xf1, 0xf0, 'p 179-1 c'), + RgbInt8Color.rgbName(0xef, 0xed, 0xf2, 'p 99-1 c'), + RgbInt8Color.rgbName(0xef, 0xed, 0xf1, 'p 99-1 u'), + RgbInt8Color.rgbName(0xf6, 0xf2, 0xf4, 'p 75-1 c'), + RgbInt8Color.rgbName(0xfc, 0xcd, 0x0, '116 xgc'), + RgbInt8Color.rgbName(0xfb, 0xdd, 0x40, '114 c'), + RgbInt8Color.rgbName(0xf9, 0xf2, 0x9d, '600 u'), + RgbInt8Color.rgbName(0xf6, 0xf9, 0xad, '937 u'), + RgbInt8Color.rgbName(0xf9, 0xf6, 0xb6, '9121 u'), + RgbInt8Color.rgbName(0xfa, 0xea, 0xa9, 'p 4-3 c'), + RgbInt8Color.rgbName(0xf9, 0xf6, 0xbd, '9120 u'), + RgbInt8Color.rgbName(0xfa, 0xf1, 0xba, '9141 u'), + RgbInt8Color.rgbName(0xfa, 0xf1, 0xc0, '9140 u'), + RgbInt8Color.rgbName(0xf4, 0xf6, 0xd6, 'p 163-1 u'), + RgbInt8Color.rgbName(0xf3, 0xf6, 0xe0, 'p 160-1 u'), + RgbInt8Color.rgbName(0xf1, 0xf2, 0xe4, 'p 160-1 c'), + RgbInt8Color.rgbName(0xf8, 0xf7, 0xf2, 'p 1-1 c'), + RgbInt8Color.rgbName(0xf5, 0xf5, 0xf1, 'p 179-1 u'), + RgbInt8Color.rgbName(0xf9, 0x42, 0x3a, 'warm red c'), + RgbInt8Color.rgbName(0xf8, 0x48, 0x5e, '1785 c'), + RgbInt8Color.rgbName(0xff, 0x6a, 0x13, '1585 c'), + RgbInt8Color.rgbName(0xff, 0x67, 0x1f, '165 c'), + RgbInt8Color.rgbName(0xfe, 0x54, 0x42, 'bright red u'), + RgbInt8Color.rgbName(0xff, 0x85, 0xbd, '926 c'), + RgbInt8Color.rgbName(0xfc, 0x85, 0xb6, '211 u'), + RgbInt8Color.rgbName(0xff, 0x5c, 0x39, '171 c'), + RgbInt8Color.rgbName(0xff, 0x58, 0x5d, '178 c'), + RgbInt8Color.rgbName(0xf9, 0x5d, 0x62, '1788 u'), + RgbInt8Color.rgbName(0xff, 0x58, 0x69, '2346 c'), + RgbInt8Color.rgbName(0xfb, 0x63, 0x7e, '1777 c'), + RgbInt8Color.rgbName(0xf6, 0x75, 0x99, '190 c'), + RgbInt8Color.rgbName(0xff, 0x6c, 0x2f, 'orange 021 u'), + RgbInt8Color.rgbName(0xff, 0x6a, 0x39, '1645 c'), + RgbInt8Color.rgbName(0xff, 0x67, 0x4d, '172 u'), + RgbInt8Color.rgbName(0xf4, 0x6c, 0x63, '2027 u'), + RgbInt8Color.rgbName(0xfe, 0x66, 0x72, '1785 u'), + RgbInt8Color.rgbName(0xfc, 0x63, 0x71, '1787 u'), + RgbInt8Color.rgbName(0xf8, 0x70, 0x89, '191 u'), + RgbInt8Color.rgbName(0xff, 0x9b, 0xcb, '933 c'), + RgbInt8Color.rgbName(0xff, 0x8b, 0x1d, '151 xgc'), + RgbInt8Color.rgbName(0xff, 0x74, 0x2f, '1585 xgc'), + RgbInt8Color.rgbName(0xfb, 0x71, 0x39, '165 xgc'), + RgbInt8Color.rgbName(0xff, 0x6f, 0x4c, '1655 u'), + RgbInt8Color.rgbName(0xf8, 0x79, 0x51, '1645 xgc'), + RgbInt8Color.rgbName(0xff, 0x6f, 0x78, '2346 u'), + RgbInt8Color.rgbName(0xfc, 0x6e, 0x83, '184 u'), + RgbInt8Color.rgbName(0xf4, 0x7c, 0x8a, '709 u'), + RgbInt8Color.rgbName(0xff, 0x8f, 0x1c, '1495 c'), + RgbInt8Color.rgbName(0xfe, 0x8f, 0x1d, '3588 c'), + RgbInt8Color.rgbName(0xff, 0x7f, 0x32, '1575 c'), + RgbInt8Color.rgbName(0xff, 0x75, 0x48, '165 u'), + RgbInt8Color.rgbName(0xf8, 0x7c, 0x56, '2024 c'), + RgbInt8Color.rgbName(0xfb, 0x76, 0x60, '2026 u'), + RgbInt8Color.rgbName(0xff, 0x78, 0x65, '171 u'), + RgbInt8Color.rgbName(0xf0, 0x7f, 0x74, '2345 xgc'), + RgbInt8Color.rgbName(0xff, 0x76, 0x77, '178 u'), + RgbInt8Color.rgbName(0xff, 0xa0, 0x0, '2013 xgc'), + RgbInt8Color.rgbName(0xff, 0x80, 0x38, '1505 u'), + RgbInt8Color.rgbName(0xff, 0x88, 0x3e, '151 u'), + RgbInt8Color.rgbName(0xff, 0x7f, 0x41, '164 c'), + RgbInt8Color.rgbName(0xff, 0x84, 0x50, '1585 u'), + RgbInt8Color.rgbName(0xf7, 0x87, 0x6b, '2024 xgc'), + RgbInt8Color.rgbName(0xf2, 0x89, 0x7b, '2344 xgc'), + RgbInt8Color.rgbName(0xf7, 0x86, 0x84, '2029 u'), + RgbInt8Color.rgbName(0xfe, 0x87, 0xa3, '190 u'), + RgbInt8Color.rgbName(0xff, 0xa3, 0x0, '137 c'), + RgbInt8Color.rgbName(0xff, 0x8a, 0x40, '2018 u'), + RgbInt8Color.rgbName(0xff, 0x8a, 0x3d, '2025 c'), + RgbInt8Color.rgbName(0xff, 0x8d, 0x4e, '1575 xgc'), + RgbInt8Color.rgbName(0xff, 0x8c, 0x5d, '164 xgc'), + RgbInt8Color.rgbName(0xff, 0x8d, 0x6d, '1635 c'), + RgbInt8Color.rgbName(0xf4, 0x91, 0x80, '170 xgc'), + RgbInt8Color.rgbName(0xf0, 0x94, 0x91, '2339 c'), + RgbInt8Color.rgbName(0xf1, 0x91, 0x8e, '2339 u'), + RgbInt8Color.rgbName(0xff, 0x8d, 0xa1, '1775 c'), + RgbInt8Color.rgbName(0xff, 0x8d, 0xa3, '183 u'), + RgbInt8Color.rgbName(0xf8, 0x90, 0xa5, '708 c'), + RgbInt8Color.rgbName(0xf5, 0x9b, 0xbb, '1905 c'), + RgbInt8Color.rgbName(0xff, 0xa2, 0xcb, '210 u'), + RgbInt8Color.rgbName(0xff, 0xa7, 0xd1, '933 u'), + RgbInt8Color.rgbName(0xff, 0xb2, 0xeb, '941 u'), + RgbInt8Color.rgbName(0xff, 0xad, 0x0, '2010 c'), + RgbInt8Color.rgbName(0xff, 0xb3, 0x0, '2010 xgc'), + RgbInt8Color.rgbName(0xff, 0xaa, 0xe, '137 xgc'), + RgbInt8Color.rgbName(0xff, 0x9e, 0x1b, '1375 c'), + RgbInt8Color.rgbName(0xff, 0x96, 0x2b, '1495 xgc'), + RgbInt8Color.rgbName(0xff, 0x9f, 0x24, '2013 u'), + RgbInt8Color.rgbName(0xf6, 0x99, 0x41, '2012 u'), + RgbInt8Color.rgbName(0xff, 0x99, 0x40, '1375 u'), + RgbInt8Color.rgbName(0xf4, 0x99, 0x57, '2011 u'), + RgbInt8Color.rgbName(0xfe, 0x96, 0x4b, '3588 u'), + RgbInt8Color.rgbName(0xff, 0x93, 0x51, '1495 u'), + RgbInt8Color.rgbName(0xee, 0xa4, 0x6a, '1495 up'), + RgbInt8Color.rgbName(0xff, 0x96, 0x65, '1575 u'), + RgbInt8Color.rgbName(0xf9, 0x99, 0x63, '715 u'), + RgbInt8Color.rgbName(0xfa, 0x93, 0x70, '2023 c'), + RgbInt8Color.rgbName(0xee, 0xa5, 0x7b, '163 up'), + RgbInt8Color.rgbName(0xee, 0xa6, 0x8e, '487 up'), + RgbInt8Color.rgbName(0xef, 0x9d, 0x9c, '2339 xgc'), + RgbInt8Color.rgbName(0xed, 0xa3, 0xa4, '708 up'), + RgbInt8Color.rgbName(0xec, 0xa6, 0xad, '1765 xgc'), + RgbInt8Color.rgbName(0xfc, 0x9b, 0xb3, '183 c'), + RgbInt8Color.rgbName(0xf2, 0xa1, 0xb2, '197 u'), + RgbInt8Color.rgbName(0xfe, 0xb2, 0xe0, '230 u'), + RgbInt8Color.rgbName(0xff, 0xad, 0xe3, '920 c'), + RgbInt8Color.rgbName(0xff, 0xb4, 0xe8, '920 u'), + RgbInt8Color.rgbName(0xff, 0xb5, 0x0, '7549 c'), + RgbInt8Color.rgbName(0xff, 0xbc, 0x0, '7549 xgc'), + RgbInt8Color.rgbName(0xff, 0xb2, 0xf, '2010 u'), + RgbInt8Color.rgbName(0xff, 0xa5, 0x25, '1375 xgc'), + RgbInt8Color.rgbName(0xff, 0xac, 0x2a, '123 u'), + RgbInt8Color.rgbName(0xff, 0x9f, 0x37, '137 u'), + RgbInt8Color.rgbName(0xef, 0xa5, 0x6b, '715 up'), + RgbInt8Color.rgbName(0xee, 0xa3, 0x7e, '1635 up'), + RgbInt8Color.rgbName(0xff, 0xa0, 0x6e, '7410 u'), + RgbInt8Color.rgbName(0xee, 0xa7, 0x80, 'p 30-4 u'), + RgbInt8Color.rgbName(0xee, 0xa4, 0x7f, 'p 37-4 u'), + RgbInt8Color.rgbName(0xed, 0xa6, 0x86, '2023 up'), + RgbInt8Color.rgbName(0xee, 0xab, 0x88, '473 u'), + RgbInt8Color.rgbName(0xf3, 0xa2, 0x93, '487 u'), + RgbInt8Color.rgbName(0xef, 0xad, 0x8d, 'p 40-3 u'), + RgbInt8Color.rgbName(0xee, 0xaa, 0x99, 'p 57-1 u'), + RgbInt8Color.rgbName(0xee, 0xaf, 0xaa, '1765 up'), + RgbInt8Color.rgbName(0xee, 0xaa, 0xaf, '700 up'), + RgbInt8Color.rgbName(0xe9, 0xb0, 0xa5, 'p 57-1 c'), + RgbInt8Color.rgbName(0xed, 0xab, 0xb9, 'p 73-3 u'), + RgbInt8Color.rgbName(0xf8, 0xa3, 0xbc, '189 c'), + RgbInt8Color.rgbName(0xff, 0xb6, 0xd9, '940 c'), + RgbInt8Color.rgbName(0xff, 0xbe, 0xde, '940 u'), + RgbInt8Color.rgbName(0xff, 0xc7, 0x0, '109 u'), + RgbInt8Color.rgbName(0xff, 0xb5, 0x11, '116 u'), + RgbInt8Color.rgbName(0xff, 0xc6, 0x0, '7548 c'), + RgbInt8Color.rgbName(0xff, 0xb8, 0x1c, '1235 c'), + RgbInt8Color.rgbName(0xff, 0xae, 0x3b, '1235 u'), + RgbInt8Color.rgbName(0xff, 0xad, 0x4a, '136 u'), + RgbInt8Color.rgbName(0xff, 0xaa, 0x4d, '804 c'), + RgbInt8Color.rgbName(0xf2, 0xad, 0x5f, '137 up'), + RgbInt8Color.rgbName(0xff, 0xaa, 0x52, '804 u'), + RgbInt8Color.rgbName(0xff, 0xad, 0x5b, '1365 u'), + RgbInt8Color.rgbName(0xf8, 0xb0, 0x5d, '142 u'), + RgbInt8Color.rgbName(0xf3, 0xaf, 0x5e, 'p 17-6 u'), + RgbInt8Color.rgbName(0xf2, 0xae, 0x61, 'p 20-5 u'), + RgbInt8Color.rgbName(0xfd, 0xaa, 0x63, '714 c'), + RgbInt8Color.rgbName(0xf1, 0xaf, 0x77, '1485 up'), + RgbInt8Color.rgbName(0xf7, 0xb0, 0x6a, '2009 u'), + RgbInt8Color.rgbName(0xf8, 0xad, 0x6d, '2017 c'), + RgbInt8Color.rgbName(0xff, 0xa9, 0x78, '1565 xgc'), + RgbInt8Color.rgbName(0xec, 0xb0, 0x86, '2022 cp'), + RgbInt8Color.rgbName(0xf0, 0xaf, 0x80, 'p 27-4 u'), + RgbInt8Color.rgbName(0xf0, 0xaf, 0x83, 'p 34-3 u'), + RgbInt8Color.rgbName(0xf2, 0xb2, 0x83, '714 up'), + RgbInt8Color.rgbName(0xf0, 0xae, 0x85, '7410 up'), + RgbInt8Color.rgbName(0xfa, 0xaa, 0x8d, '2022 c'), + RgbInt8Color.rgbName(0xf0, 0xb0, 0x90, '2022 up'), + RgbInt8Color.rgbName(0xe9, 0xb8, 0x93, 'p 34-9 u'), + RgbInt8Color.rgbName(0xf0, 0xb3, 0x96, 'p 48-3 u'), + RgbInt8Color.rgbName(0xf0, 0xaf, 0x98, 'p 52-3 u'), + RgbInt8Color.rgbName(0xf0, 0xb1, 0x98, 'p 55-1 u'), + RgbInt8Color.rgbName(0xeb, 0xb5, 0xa5, '7415 u'), + RgbInt8Color.rgbName(0xec, 0xb7, 0xa3, '7415 up'), + RgbInt8Color.rgbName(0xec, 0xb9, 0x9e, 'p 48-3 c'), + RgbInt8Color.rgbName(0xeb, 0xb8, 0xa1, 'p 52-3 c'), + RgbInt8Color.rgbName(0xef, 0xae, 0xa1, 'p 59-1 u'), + RgbInt8Color.rgbName(0xef, 0xad, 0xa3, 'p 62-2 u'), + RgbInt8Color.rgbName(0xef, 0xaf, 0xb2, '176 xgc'), + RgbInt8Color.rgbName(0xed, 0xb5, 0xae, '2337 up'), + RgbInt8Color.rgbName(0xed, 0xb9, 0xb4, '176 cp'), + RgbInt8Color.rgbName(0xec, 0xb0, 0xb7, '1767 xgc'), + RgbInt8Color.rgbName(0xee, 0xaf, 0xba, '189 up'), + RgbInt8Color.rgbName(0xf2, 0xac, 0xb9, '700 c'), + RgbInt8Color.rgbName(0xf8, 0xaa, 0xb6, '700 u'), + RgbInt8Color.rgbName(0xeb, 0xb8, 0xb2, 'p 59-1 c'), + RgbInt8Color.rgbName(0xee, 0xb4, 0xc2, '1895 up'), + RgbInt8Color.rgbName(0xee, 0xb2, 0xc1, '203 up'), + RgbInt8Color.rgbName(0xf1, 0xaf, 0xbc, '495 u'), + RgbInt8Color.rgbName(0xef, 0xb3, 0xba, 'p 68-1 u'), + RgbInt8Color.rgbName(0xeb, 0xba, 0xc5, '182 xgc'), + RgbInt8Color.rgbName(0xec, 0xb8, 0xc4, '707 cp'), + RgbInt8Color.rgbName(0xf5, 0xb1, 0xcc, '203 u'), + RgbInt8Color.rgbName(0xea, 0xbb, 0xce, '509 cp'), + RgbInt8Color.rgbName(0xff, 0xc4, 0xdc, '2036 u'), + RgbInt8Color.rgbName(0xff, 0xcd, 0x0, '116 c'), + RgbInt8Color.rgbName(0xfd, 0xc9, 0x0, '7548 xgc'), + RgbInt8Color.rgbName(0xff, 0xc9, 0x15, '7548 u'), + RgbInt8Color.rgbName(0xff, 0xb8, 0x38, '7549 u'), + RgbInt8Color.rgbName(0xff, 0xbd, 0x36, '1235 xgc'), + RgbInt8Color.rgbName(0xff, 0xbf, 0x3f, '136 c'), + RgbInt8Color.rgbName(0xff, 0xb5, 0x49, '1365 c'), + RgbInt8Color.rgbName(0xf4, 0xb7, 0x5f, '1225 up'), + RgbInt8Color.rgbName(0xff, 0xb2, 0x5b, '150 c'), + RgbInt8Color.rgbName(0xf5, 0xb7, 0x5f, 'p 14-6 u'), + RgbInt8Color.rgbName(0xf4, 0xbb, 0x6a, '2008 up'), + RgbInt8Color.rgbName(0xf4, 0xb7, 0x6f, 'p 20-4 u'), + RgbInt8Color.rgbName(0xf5, 0xbd, 0x72, '141 up'), + RgbInt8Color.rgbName(0xf3, 0xb5, 0x74, 'p 24-3 u'), + RgbInt8Color.rgbName(0xf3, 0xba, 0x7f, '149 up'), + RgbInt8Color.rgbName(0xf7, 0xb9, 0x84, '156 u'), + RgbInt8Color.rgbName(0xed, 0xbb, 0x88, 'p 27-4 c'), + RgbInt8Color.rgbName(0xec, 0xba, 0x93, '720 u'), + RgbInt8Color.rgbName(0xf2, 0xba, 0x8d, 'p 30-3 u'), + RgbInt8Color.rgbName(0xed, 0xbb, 0x90, 'p 34-3 c'), + RgbInt8Color.rgbName(0xef, 0xbb, 0x92, '2437 up'), + RgbInt8Color.rgbName(0xed, 0xbd, 0x95, 'p 37-3 c'), + RgbInt8Color.rgbName(0xed, 0xbb, 0x9a, 'p 45-1 c'), + RgbInt8Color.rgbName(0xf2, 0xb8, 0x99, 'p 45-1 u'), + RgbInt8Color.rgbName(0xf0, 0xb5, 0xa3, '169 up'), + RgbInt8Color.rgbName(0xeb, 0xbd, 0x9d, '2437 cp'), + RgbInt8Color.rgbName(0xec, 0xba, 0xa8, '488 c'), + RgbInt8Color.rgbName(0xf2, 0xbb, 0xa0, '488 up'), + RgbInt8Color.rgbName(0xeb, 0xbe, 0xa4, 'p 45-10 u'), + RgbInt8Color.rgbName(0xea, 0xbc, 0xa7, 'p 55-9 u'), + RgbInt8Color.rgbName(0xeb, 0xba, 0xa7, 'p 57-10 u'), + RgbInt8Color.rgbName(0xee, 0xbc, 0xa8, '169 cp'), + RgbInt8Color.rgbName(0xea, 0xba, 0xaf, '2337 cp'), + RgbInt8Color.rgbName(0xf4, 0xb9, 0xa9, '488 u'), + RgbInt8Color.rgbName(0xeb, 0xbf, 0xa6, '7513 cp'), + RgbInt8Color.rgbName(0xec, 0xba, 0xac, 'p 55-1 c'), + RgbInt8Color.rgbName(0xec, 0xba, 0xb0, 'p 62-2 c'), + RgbInt8Color.rgbName(0xf1, 0xbb, 0xb1, '176 up'), + RgbInt8Color.rgbName(0xef, 0xb5, 0xbb, '1767 up'), + RgbInt8Color.rgbName(0xf0, 0xb6, 0xb6, '707 up'), + RgbInt8Color.rgbName(0xea, 0xc2, 0xb1, '7520 cp'), + RgbInt8Color.rgbName(0xea, 0xc2, 0xb6, 'p 60-2 u'), + RgbInt8Color.rgbName(0xed, 0xbd, 0xc2, '1767 cp'), + RgbInt8Color.rgbName(0xf0, 0xba, 0xbe, '182 up'), + RgbInt8Color.rgbName(0xeb, 0xbc, 0xc2, 'p 68-1 c'), + RgbInt8Color.rgbName(0xef, 0xb8, 0xcd, '3595 c'), + RgbInt8Color.rgbName(0xec, 0xba, 0xcb, '3595 up'), + RgbInt8Color.rgbName(0xf1, 0xbd, 0xc8, '495 c'), + RgbInt8Color.rgbName(0xe9, 0xc4, 0xc7, '503 c'), + RgbInt8Color.rgbName(0xf5, 0xb6, 0xcd, '1895 c'), + RgbInt8Color.rgbName(0xec, 0xc1, 0xd5, '217 up'), + RgbInt8Color.rgbName(0xf6, 0xb4, 0xce, '3595 u'), + RgbInt8Color.rgbName(0xef, 0xcc, 0xdc, '517 up'), + RgbInt8Color.rgbName(0xf0, 0xd2, 0xe0, '670 up'), + RgbInt8Color.rgbName(0xed, 0xd2, 0xe0, '677 u'), + RgbInt8Color.rgbName(0xec, 0xcc, 0xdd, '9322 u'), + RgbInt8Color.rgbName(0xfa, 0xcb, 0xe9, '9324 u'), + RgbInt8Color.rgbName(0xee, 0xce, 0xdc, 'p 75-3 c'), + RgbInt8Color.rgbName(0xff, 0xc7, 0x2c, '123 c'), + RgbInt8Color.rgbName(0xff, 0xce, 0x2e, '115 u'), + RgbInt8Color.rgbName(0xff, 0xc0, 0x3f, '122 u'), + RgbInt8Color.rgbName(0xfe, 0xc2, 0x41, '136 xgc'), + RgbInt8Color.rgbName(0xfd, 0xc8, 0x42, '123 xgc'), + RgbInt8Color.rgbName(0xfc, 0xc8, 0x4c, '109 up'), + RgbInt8Color.rgbName(0xff, 0xc8, 0x45, '1225 c'), + RgbInt8Color.rgbName(0xff, 0xbb, 0x4f, '1225 u'), + RgbInt8Color.rgbName(0xff, 0xba, 0x4c, '1365 xgc'), + RgbInt8Color.rgbName(0xfc, 0xc9, 0x50, '1225 xgc'), + RgbInt8Color.rgbName(0xf8, 0xc0, 0x60, 'p 10-6 u'), + RgbInt8Color.rgbName(0xf7, 0xc2, 0x77, '135 up'), + RgbInt8Color.rgbName(0xf9, 0xc1, 0x6e, '141 u'), + RgbInt8Color.rgbName(0xf8, 0xbe, 0x77, '2008 u'), + RgbInt8Color.rgbName(0xf7, 0xc1, 0x70, 'p 14-5 u'), + RgbInt8Color.rgbName(0xf1, 0xc3, 0x82, '156 cp'), + RgbInt8Color.rgbName(0xef, 0xc1, 0x80, '156 xgc'), + RgbInt8Color.rgbName(0xf5, 0xc0, 0x7e, 'p 20-3 u'), + RgbInt8Color.rgbName(0xf6, 0xc4, 0x84, '1355 up'), + RgbInt8Color.rgbName(0xf4, 0xbe, 0x8a, '156 up'), + RgbInt8Color.rgbName(0xf3, 0xbc, 0x8a, '2017 up'), + RgbInt8Color.rgbName(0xea, 0xc2, 0x91, '720 xgc'), + RgbInt8Color.rgbName(0xf6, 0xc3, 0x81, 'p 17-4 u'), + RgbInt8Color.rgbName(0xf6, 0xc0, 0x82, 'p 24-2 u'), + RgbInt8Color.rgbName(0xf4, 0xbe, 0x95, '1555 up'), + RgbInt8Color.rgbName(0xf3, 0xbe, 0x8d, '2016 up'), + RgbInt8Color.rgbName(0xf5, 0xbe, 0x8e, '713 up'), + RgbInt8Color.rgbName(0xf0, 0xc4, 0x8a, 'p 20-3 c'), + RgbInt8Color.rgbName(0xf0, 0xc5, 0x90, 'p 24-2 c'), + RgbInt8Color.rgbName(0xf0, 0xc1, 0x99, '1555 cp'), + RgbInt8Color.rgbName(0xf0, 0xbf, 0x9b, '473 c'), + RgbInt8Color.rgbName(0xf0, 0xbf, 0x9b, '473 cp'), + RgbInt8Color.rgbName(0xef, 0xc1, 0x98, '473 xgc'), + RgbInt8Color.rgbName(0xe6, 0xcc, 0x9c, 'p 15-2 u'), + RgbInt8Color.rgbName(0xf4, 0xc1, 0x94, 'p 27-3 u'), + RgbInt8Color.rgbName(0xee, 0xc2, 0x97, 'p 30-3 c'), + RgbInt8Color.rgbName(0xf4, 0xc0, 0x99, 'p 34-2 u'), + RgbInt8Color.rgbName(0xf3, 0xba, 0x93, 'p 37-3 u'), + RgbInt8Color.rgbName(0xf3, 0xbe, 0x9d, 'p 40-2 u'), + RgbInt8Color.rgbName(0xf0, 0xc4, 0xa0, '162 cp'), + RgbInt8Color.rgbName(0xf1, 0xbf, 0x9f, '2437 c'), + RgbInt8Color.rgbName(0xf0, 0xc4, 0xa2, '474 up'), + RgbInt8Color.rgbName(0xf1, 0xc3, 0x9f, '713 cp'), + RgbInt8Color.rgbName(0xea, 0xc7, 0xa3, '720 up'), + RgbInt8Color.rgbName(0xe6, 0xc5, 0xa5, 'p 30-9 c'), + RgbInt8Color.rgbName(0xee, 0xc1, 0xa2, 'p 40-2 c'), + RgbInt8Color.rgbName(0xf0, 0xc0, 0xac, '488 cp'), + RgbInt8Color.rgbName(0xec, 0xc1, 0xad, '7415 cp'), + RgbInt8Color.rgbName(0xe9, 0xc4, 0xb0, '7513 up'), + RgbInt8Color.rgbName(0xed, 0xc4, 0xaf, '7520 up'), + RgbInt8Color.rgbName(0xe9, 0xc9, 0xac, 'p 31-2 u'), + RgbInt8Color.rgbName(0xeb, 0xc4, 0xb0, 'p 53-1 u'), + RgbInt8Color.rgbName(0xec, 0xc3, 0xb2, '489 c'), + RgbInt8Color.rgbName(0xea, 0xc4, 0xb3, '7520 xgc'), + RgbInt8Color.rgbName(0xe8, 0xc4, 0xb8, 'p 55-9 c'), + RgbInt8Color.rgbName(0xf3, 0xbf, 0xb5, 'p 62-1 u'), + RgbInt8Color.rgbName(0xf1, 0xc1, 0xbb, '196 up'), + RgbInt8Color.rgbName(0xed, 0xbe, 0xc2, '496 up'), + RgbInt8Color.rgbName(0xeb, 0xc3, 0xc6, '502 cp'), + RgbInt8Color.rgbName(0xeb, 0xc0, 0xc2, '502 up'), + RgbInt8Color.rgbName(0xf2, 0xc1, 0xbf, 'p 65-2 u'), + RgbInt8Color.rgbName(0xed, 0xbf, 0xcb, '495 cp'), + RgbInt8Color.rgbName(0xf2, 0xbf, 0xcb, '510 u'), + RgbInt8Color.rgbName(0xe9, 0xc5, 0xcb, '510 xgc'), + RgbInt8Color.rgbName(0xee, 0xc2, 0xc8, '699 xgc'), + RgbInt8Color.rgbName(0xf2, 0xc1, 0xc8, 'p 71-2 u'), + RgbInt8Color.rgbName(0xf1, 0xbf, 0xc7, 'p 73-2 u'), + RgbInt8Color.rgbName(0xf0, 0xc3, 0xd2, '2036 up'), + RgbInt8Color.rgbName(0xef, 0xc2, 0xd2, '2043 u'), + RgbInt8Color.rgbName(0xf1, 0xc3, 0xd3, '3568 c'), + RgbInt8Color.rgbName(0xef, 0xc5, 0xd1, '3568 up'), + RgbInt8Color.rgbName(0xec, 0xc5, 0xd0, 'p 73-2 c'), + RgbInt8Color.rgbName(0xee, 0xc7, 0xd8, '671 up'), + RgbInt8Color.rgbName(0xec, 0xcb, 0xd9, '684 u'), + RgbInt8Color.rgbName(0xf3, 0xd5, 0xed, '7436 u'), + RgbInt8Color.rgbName(0xed, 0xd5, 0xe4, '670 cp'), + RgbInt8Color.rgbName(0xee, 0xda, 0xea, '7436 c'), + RgbInt8Color.rgbName(0xeb, 0xd8, 0xe4, '7436 cp'), + RgbInt8Color.rgbName(0xed, 0xd5, 0xe2, '9321 c'), + RgbInt8Color.rgbName(0xff, 0xd6, 0x35, '810 c'), + RgbInt8Color.rgbName(0xfd, 0xcf, 0x41, '7404 u'), + RgbInt8Color.rgbName(0xff, 0xd3, 0x3c, '810 u'), + RgbInt8Color.rgbName(0xfc, 0xca, 0x4e, '115 up'), + RgbInt8Color.rgbName(0xfe, 0xd1, 0x41, '122 c'), + RgbInt8Color.rgbName(0xfb, 0xd0, 0x4f, '122 xgc'), + RgbInt8Color.rgbName(0xfc, 0xcd, 0x4f, '7548 up'), + RgbInt8Color.rgbName(0xfb, 0xc8, 0x53, 'p 7-7 u'), + RgbInt8Color.rgbName(0xff, 0xcc, 0x52, '121 u'), + RgbInt8Color.rgbName(0xfc, 0xc9, 0x59, '135 xgc'), + RgbInt8Color.rgbName(0xff, 0xc6, 0x58, '135 c'), + RgbInt8Color.rgbName(0xfc, 0xcf, 0x61, '128 u'), + RgbInt8Color.rgbName(0xff, 0xc5, 0x6e, '1355 c'), + RgbInt8Color.rgbName(0xfc, 0xc7, 0x71, '1355 xgc'), + RgbInt8Color.rgbName(0xfa, 0xcd, 0x7b, '134 up'), + RgbInt8Color.rgbName(0xf2, 0xc6, 0x88, '149 cp'), + RgbInt8Color.rgbName(0xfc, 0xc7, 0x81, '149 xgc'), + RgbInt8Color.rgbName(0xf4, 0xcf, 0x81, '7403 u'), + RgbInt8Color.rgbName(0xf8, 0xcc, 0x84, 'p 14-4 u'), + RgbInt8Color.rgbName(0xf2, 0xcb, 0x8e, '1345 cp'), + RgbInt8Color.rgbName(0xf7, 0xc6, 0x8a, '148 up'), + RgbInt8Color.rgbName(0xec, 0xcc, 0x95, 'p 14-10 u'), + RgbInt8Color.rgbName(0xf3, 0xd0, 0x8e, 'p 14-4 c'), + RgbInt8Color.rgbName(0xec, 0xcb, 0x9a, 'p 17-9 u'), + RgbInt8Color.rgbName(0xf7, 0xc7, 0x8d, 'p 20-2 u'), + RgbInt8Color.rgbName(0xf7, 0xc9, 0x95, '155 u'), + RgbInt8Color.rgbName(0xf7, 0xcb, 0x98, '155 up'), + RgbInt8Color.rgbName(0xed, 0xc8, 0xa3, '719 c'), + RgbInt8Color.rgbName(0xee, 0xc9, 0xa2, '719 up'), + RgbInt8Color.rgbName(0xf1, 0xcc, 0x98, 'p 20-2 c'), + RgbInt8Color.rgbName(0xf8, 0xc9, 0x94, 'p 24-1 u'), + RgbInt8Color.rgbName(0xf0, 0xc9, 0x9f, 'p 27-3 c'), + RgbInt8Color.rgbName(0xec, 0xc7, 0xa4, 'p 27-9 u'), + RgbInt8Color.rgbName(0xef, 0xd1, 0x9f, '155 c'), + RgbInt8Color.rgbName(0xf0, 0xc8, 0xa3, '474 xgc'), + RgbInt8Color.rgbName(0xf2, 0xc6, 0xa2, '719 u'), + RgbInt8Color.rgbName(0xf1, 0xcc, 0xa3, 'p 24-1 c'), + RgbInt8Color.rgbName(0xf5, 0xc7, 0xa2, 'p 30-2 u'), + RgbInt8Color.rgbName(0xf0, 0xc8, 0xa7, 'p 34-2 c'), + RgbInt8Color.rgbName(0xe8, 0xd5, 0xa4, 'p 8-2 u'), + RgbInt8Color.rgbName(0xea, 0xce, 0xb1, '2309 cp'), + RgbInt8Color.rgbName(0xf1, 0xc6, 0xa7, '474 c'), + RgbInt8Color.rgbName(0xf2, 0xc9, 0xa7, '474 cp'), + RgbInt8Color.rgbName(0xec, 0xce, 0xa8, '719 xgc'), + RgbInt8Color.rgbName(0xea, 0xcd, 0xae, 'p 27-9 c'), + RgbInt8Color.rgbName(0xf0, 0xcc, 0xad, 'p 37-2 c'), + RgbInt8Color.rgbName(0xec, 0xd0, 0xb5, '2309 u'), + RgbInt8Color.rgbName(0xef, 0xd0, 0xb4, '726 up'), + RgbInt8Color.rgbName(0xe7, 0xce, 0xb7, 'p 31-2 c'), + RgbInt8Color.rgbName(0xea, 0xcf, 0xb6, 'p 35-9 u'), + RgbInt8Color.rgbName(0xef, 0xcb, 0xb9, 'p 48-2 c'), + RgbInt8Color.rgbName(0xef, 0xcb, 0xb8, 'p 52-2 c'), + RgbInt8Color.rgbName(0xf3, 0xc8, 0xbe, '7605 up'), + RgbInt8Color.rgbName(0xea, 0xcd, 0xc4, '7611 up'), + RgbInt8Color.rgbName(0xea, 0xca, 0xc6, '9262 u'), + RgbInt8Color.rgbName(0xeb, 0xd0, 0xbe, 'p 45-9 c'), + RgbInt8Color.rgbName(0xea, 0xcd, 0xbd, 'p 53-9 u'), + RgbInt8Color.rgbName(0xeb, 0xcc, 0xc4, 'p 57-9 c'), + RgbInt8Color.rgbName(0xf0, 0xcb, 0xba, 'p 57-9 u'), + RgbInt8Color.rgbName(0xe9, 0xce, 0xc2, 'p 58-9 u'), + RgbInt8Color.rgbName(0xef, 0xc9, 0xc0, 'p 62-1 c'), + RgbInt8Color.rgbName(0xec, 0xc7, 0xcd, '196 c'), + RgbInt8Color.rgbName(0xea, 0xc9, 0xcc, '196 xgc'), + RgbInt8Color.rgbName(0xec, 0xc6, 0xce, '2043 xgc'), + RgbInt8Color.rgbName(0xee, 0xc8, 0xcd, '496 xgc'), + RgbInt8Color.rgbName(0xef, 0xc9, 0xcb, '503 up'), + RgbInt8Color.rgbName(0xea, 0xcd, 0xc9, '503 xgc'), + RgbInt8Color.rgbName(0xf3, 0xc8, 0xcb, '510 up'), + RgbInt8Color.rgbName(0xe9, 0xcd, 0xd0, '691 c'), + RgbInt8Color.rgbName(0xed, 0xce, 0xcb, '691 up'), + RgbInt8Color.rgbName(0xf3, 0xc8, 0xc8, '706 up'), + RgbInt8Color.rgbName(0xea, 0xcf, 0xc6, '9242 u'), + RgbInt8Color.rgbName(0xee, 0xca, 0xca, 'p 65-2 c'), + RgbInt8Color.rgbName(0xed, 0xc5, 0xce, 'p 71-2 c'), + RgbInt8Color.rgbName(0xea, 0xcd, 0xcf, 'p 72-1 u'), + RgbInt8Color.rgbName(0xee, 0xc6, 0xcc, 'p 73-9 u'), + RgbInt8Color.rgbName(0xef, 0xca, 0xd0, '196 cp'), + RgbInt8Color.rgbName(0xef, 0xc6, 0xd0, '496 cp'), + RgbInt8Color.rgbName(0xed, 0xcd, 0xd1, '503 cp'), + RgbInt8Color.rgbName(0xef, 0xc6, 0xd3, '510 cp'), + RgbInt8Color.rgbName(0xed, 0xcb, 0xd1, '684 up'), + RgbInt8Color.rgbName(0xee, 0xca, 0xd1, '7429 up'), + RgbInt8Color.rgbName(0xe9, 0xce, 0xd5, '9302 c'), + RgbInt8Color.rgbName(0xea, 0xcb, 0xd4, 'p 73-9 c'), + RgbInt8Color.rgbName(0xef, 0xcf, 0xdb, '677 up'), + RgbInt8Color.rgbName(0xee, 0xcc, 0xd9, '7429 u'), + RgbInt8Color.rgbName(0xef, 0xd7, 0xe5, '2050 c'), + RgbInt8Color.rgbName(0xff, 0xd7, 0x3a, 'p 4-8 u'), + RgbInt8Color.rgbName(0xff, 0xd6, 0x49, '114 up'), + RgbInt8Color.rgbName(0xfb, 0xde, 0x44, 'p 4-7 c'), + RgbInt8Color.rgbName(0xff, 0xd9, 0x4a, '114 u'), + RgbInt8Color.rgbName(0xfd, 0xd7, 0x57, '121 c'), + RgbInt8Color.rgbName(0xfe, 0xd4, 0x53, '7404 up'), + RgbInt8Color.rgbName(0xfb, 0xdb, 0x65, '120 c'), + RgbInt8Color.rgbName(0xf8, 0xda, 0x6a, '120 xgc'), + RgbInt8Color.rgbName(0xfc, 0xd0, 0x6b, '128 up'), + RgbInt8Color.rgbName(0xfc, 0xd0, 0x6b, 'p 7-6 u'), + RgbInt8Color.rgbName(0xfe, 0xd7, 0x6f, '120 up'), + RgbInt8Color.rgbName(0xf8, 0xd6, 0x6f, '1215 xgc'), + RgbInt8Color.rgbName(0xfd, 0xd2, 0x6e, '134 c'), + RgbInt8Color.rgbName(0xfb, 0xd4, 0x71, '2005 up'), + RgbInt8Color.rgbName(0xfc, 0xd4, 0x7a, '1215 up'), + RgbInt8Color.rgbName(0xff, 0xd3, 0x78, '134 u'), + RgbInt8Color.rgbName(0xf8, 0xda, 0x75, '2004 xgc'), + RgbInt8Color.rgbName(0xf8, 0xd5, 0x7e, '2005 xgc'), + RgbInt8Color.rgbName(0xfa, 0xcf, 0x7d, 'p 10-4 u'), + RgbInt8Color.rgbName(0xf6, 0xd5, 0x7a, 'p 7-6 c'), + RgbInt8Color.rgbName(0xf4, 0xd3, 0x89, 'p 10-4 c'), + RgbInt8Color.rgbName(0xf4, 0xd1, 0x99, '148 cp'), + RgbInt8Color.rgbName(0xef, 0xd4, 0x9d, 'p 10-10 u'), + RgbInt8Color.rgbName(0xef, 0xd8, 0x9d, 'p 7-11 u'), + RgbInt8Color.rgbName(0xee, 0xd4, 0xa3, '155 xgc'), + RgbInt8Color.rgbName(0xf4, 0xd1, 0xa1, '7507 cp'), + RgbInt8Color.rgbName(0xeb, 0xd6, 0xa8, 'p 10-10 c'), + RgbInt8Color.rgbName(0xf0, 0xd5, 0xa5, 'p 14-9 u'), + RgbInt8Color.rgbName(0xf4, 0xd4, 0x9e, 'p 17-3 c'), + RgbInt8Color.rgbName(0xf3, 0xd3, 0xa4, 'p 20-1 c'), + RgbInt8Color.rgbName(0xf2, 0xd4, 0xa8, '2015 cp'), + RgbInt8Color.rgbName(0xef, 0xd1, 0xaf, '2309 up'), + RgbInt8Color.rgbName(0xf2, 0xcf, 0xac, '475 up'), + RgbInt8Color.rgbName(0xee, 0xd0, 0xad, '719 cp'), + RgbInt8Color.rgbName(0xf1, 0xd3, 0xa8, 'p 24-10 u'), + RgbInt8Color.rgbName(0xf0, 0xcd, 0xad, 'p 30-2 c'), + RgbInt8Color.rgbName(0xf3, 0xcf, 0xb3, '475 c'), + RgbInt8Color.rgbName(0xf3, 0xd0, 0xb2, '475 cp'), + RgbInt8Color.rgbName(0xed, 0xd8, 0xb5, 'p 14-9 c'), + RgbInt8Color.rgbName(0xea, 0xd6, 0xb8, 'p 18-1 c'), + RgbInt8Color.rgbName(0xed, 0xd6, 0xb8, 'p 24-10 c'), + RgbInt8Color.rgbName(0xf2, 0xd5, 0xb4, 'p 27-2 c'), + RgbInt8Color.rgbName(0xea, 0xd4, 0xbc, 'p 28-9 u'), + RgbInt8Color.rgbName(0xe8, 0xd6, 0xc4, '9183 u'), + RgbInt8Color.rgbName(0xf1, 0xd1, 0xbd, 'p 45-9 u'), + RgbInt8Color.rgbName(0xeb, 0xd2, 0xc1, 'p 46-9 u'), + RgbInt8Color.rgbName(0xeb, 0xd0, 0xd0, '5035 up'), + RgbInt8Color.rgbName(0xeb, 0xd3, 0xd0, '691 xgc'), + RgbInt8Color.rgbName(0xe9, 0xd5, 0xcd, '9242 c'), + RgbInt8Color.rgbName(0xe8, 0xd3, 0xcd, 'p 58-9 c'), + RgbInt8Color.rgbName(0xf1, 0xd3, 0xd5, '691 u'), + RgbInt8Color.rgbName(0xee, 0xcf, 0xd3, '706 xgc'), + RgbInt8Color.rgbName(0xf5, 0xd1, 0xd2, '7422 up'), + RgbInt8Color.rgbName(0xea, 0xd8, 0xd6, '7604 u'), + RgbInt8Color.rgbName(0xef, 0xd7, 0xd4, '9261 c'), + RgbInt8Color.rgbName(0xea, 0xd5, 0xd2, '9262 c'), + RgbInt8Color.rgbName(0xf0, 0xcd, 0xd1, '9282 u'), + RgbInt8Color.rgbName(0xe9, 0xd8, 0xd7, '9283 c'), + RgbInt8Color.rgbName(0xeb, 0xd6, 0xe0, '677 xgc'), + RgbInt8Color.rgbName(0xf1, 0xd7, 0xdc, 'p 71-1 c'), + RgbInt8Color.rgbName(0xec, 0xda, 0xdc, 'p 71-9 c'), + RgbInt8Color.rgbName(0xef, 0xd3, 0xdb, 'p 73-1 c'), + RgbInt8Color.rgbName(0xf0, 0xd2, 0xdc, 'p 75-10 u'), + RgbInt8Color.rgbName(0xef, 0xd6, 0xde, 'p 76-1 u'), + RgbInt8Color.rgbName(0xeb, 0xd9, 0xe2, '2050 xgc'), + RgbInt8Color.rgbName(0xf3, 0xd6, 0xe5, '670 u'), + RgbInt8Color.rgbName(0xeb, 0xd9, 0xe1, '670 xgc'), + RgbInt8Color.rgbName(0xed, 0xd7, 0xe1, 'p 75-10 c'), + RgbInt8Color.rgbName(0xec, 0xd9, 0xe1, 'p 76-1 c'), + RgbInt8Color.rgbName(0xea, 0xe3, 0xea, '9023 c'), + RgbInt8Color.rgbName(0xee, 0xe4, 0xee, '9023 u'), + RgbInt8Color.rgbName(0xee, 0xdf, 0xe9, 'p 83-1 u'), + RgbInt8Color.rgbName(0xff, 0xde, 0x44, '108 up'), + RgbInt8Color.rgbName(0xff, 0xda, 0x4d, 'p 4-7 u'), + RgbInt8Color.rgbName(0xff, 0xe5, 0x52, '107 u'), + RgbInt8Color.rgbName(0xff, 0xe0, 0x5a, '113 up'), + RgbInt8Color.rgbName(0xfd, 0xdb, 0x66, '2004 up'), + RgbInt8Color.rgbName(0xff, 0xdf, 0x65, 'p 4-6 u'), + RgbInt8Color.rgbName(0xfb, 0xd8, 0x72, '1215 c'), + RgbInt8Color.rgbName(0xfb, 0xe2, 0x6f, 'p 4-6 c'), + RgbInt8Color.rgbName(0xfa, 0xe1, 0x7b, '127 cp'), + RgbInt8Color.rgbName(0xf9, 0xe1, 0x7d, '2002 c'), + RgbInt8Color.rgbName(0xf6, 0xe0, 0x7c, '2002 xgc'), + RgbInt8Color.rgbName(0xfb, 0xdd, 0x7a, '2004 c'), + RgbInt8Color.rgbName(0xf7, 0xdc, 0x86, '1215 cp'), + RgbInt8Color.rgbName(0xff, 0xdb, 0x83, '2005 u'), + RgbInt8Color.rgbName(0xf8, 0xe0, 0x8e, '1205 c'), + RgbInt8Color.rgbName(0xf6, 0xdd, 0x8d, '1205 xgc'), + RgbInt8Color.rgbName(0xf0, 0xdf, 0x97, '7402 xgc'), + RgbInt8Color.rgbName(0xf7, 0xdb, 0x8f, 'p 7-5 c'), + RgbInt8Color.rgbName(0xf1, 0xe1, 0x9b, '7402 cp'), + RgbInt8Color.rgbName(0xf3, 0xda, 0x9a, '7402 u'), + RgbInt8Color.rgbName(0xf4, 0xdc, 0x9e, '7402 up'), + RgbInt8Color.rgbName(0xf5, 0xda, 0x9c, 'p 10-3 c'), + RgbInt8Color.rgbName(0xf5, 0xe1, 0xa0, '7401 xgc'), + RgbInt8Color.rgbName(0xef, 0xe0, 0xa4, 'p 4-10 c'), + RgbInt8Color.rgbName(0xf1, 0xde, 0xa3, 'p 4-9 u'), + RgbInt8Color.rgbName(0xf2, 0xdd, 0xb2, 'p 10-9 u'), + RgbInt8Color.rgbName(0xf4, 0xda, 0xa8, 'p 14-3 c'), + RgbInt8Color.rgbName(0xf4, 0xda, 0xae, 'p 17-2 c'), + RgbInt8Color.rgbName(0xef, 0xde, 0xad, 'p 7-11 c'), + RgbInt8Color.rgbName(0xf2, 0xdb, 0xb3, '7506 cp'), + RgbInt8Color.rgbName(0xee, 0xdf, 0xb6, '7506 xgc'), + RgbInt8Color.rgbName(0xee, 0xde, 0xbd, 'p 10-9 c'), + RgbInt8Color.rgbName(0xef, 0xdb, 0xb6, 'p 15-1 u'), + RgbInt8Color.rgbName(0xef, 0xd9, 0xc2, '9182 u'), + RgbInt8Color.rgbName(0xed, 0xde, 0xc2, 'p 15-1 c'), + RgbInt8Color.rgbName(0xee, 0xe2, 0xc2, 'p 8-1 c'), + RgbInt8Color.rgbName(0xee, 0xe0, 0xbc, 'p 8-1 u'), + RgbInt8Color.rgbName(0xed, 0xde, 0xcd, '9202 c'), + RgbInt8Color.rgbName(0xf0, 0xd9, 0xc5, '9202 u'), + RgbInt8Color.rgbName(0xed, 0xd6, 0xc4, '9221 c'), + RgbInt8Color.rgbName(0xf3, 0xdb, 0xc6, 'p 30-1 c'), + RgbInt8Color.rgbName(0xf3, 0xde, 0xc9, 'p 37-1 c'), + RgbInt8Color.rgbName(0xeb, 0xdb, 0xd8, '7604 cp'), + RgbInt8Color.rgbName(0xee, 0xd9, 0xd4, '7604 up'), + RgbInt8Color.rgbName(0xed, 0xe1, 0xcf, '9185 c'), + RgbInt8Color.rgbName(0xeb, 0xe3, 0xd7, '9226 c'), + RgbInt8Color.rgbName(0xf0, 0xdd, 0xd7, '9241 c'), + RgbInt8Color.rgbName(0xf4, 0xda, 0xd2, '9241 u'), + RgbInt8Color.rgbName(0xee, 0xdf, 0xd5, 'p 31-1 c'), + RgbInt8Color.rgbName(0xef, 0xdc, 0xd9, 'p 60-1 c'), + RgbInt8Color.rgbName(0xf3, 0xdc, 0xd2, 'p 60-1 u'), + RgbInt8Color.rgbName(0xee, 0xdb, 0xdd, '705 xgc'), + RgbInt8Color.rgbName(0xf2, 0xd9, 0xde, '7422 cp'), + RgbInt8Color.rgbName(0xf2, 0xdd, 0xde, '9281 c'), + RgbInt8Color.rgbName(0xef, 0xda, 0xdb, '9282 c'), + RgbInt8Color.rgbName(0xf0, 0xdb, 0xe1, '9301 c'), + RgbInt8Color.rgbName(0xe8, 0xe4, 0xd9, 'p 169-1 u'), + RgbInt8Color.rgbName(0xed, 0xda, 0xe0, 'p 77-1 u'), + RgbInt8Color.rgbName(0xf2, 0xde, 0xe9, '9320 c'), + RgbInt8Color.rgbName(0xf4, 0xda, 0xe8, '9321 u'), + RgbInt8Color.rgbName(0xeb, 0xe4, 0xe2, 'p 51-1 c'), + RgbInt8Color.rgbName(0xee, 0xe2, 0xe7, 'p 76-9 c'), + RgbInt8Color.rgbName(0xf2, 0xe1, 0xe6, 'p 76-9 u'), + RgbInt8Color.rgbName(0xf6, 0xdd, 0xea, '2050 u'), + RgbInt8Color.rgbName(0xee, 0xe8, 0xed, 'p 83-9 c'), + RgbInt8Color.rgbName(0xff, 0xe6, 0x57, '107 up'), + RgbInt8Color.rgbName(0xfc, 0xe8, 0x5f, '101 cp'), + RgbInt8Color.rgbName(0xfc, 0xe8, 0x5d, '106 cp'), + RgbInt8Color.rgbName(0xff, 0xe1, 0x5e, '113 u'), + RgbInt8Color.rgbName(0xff, 0xe8, 0x63, '2003 up'), + RgbInt8Color.rgbName(0xff, 0xeb, 0x68, '106 u'), + RgbInt8Color.rgbName(0xff, 0xe9, 0x64, '106 up'), + RgbInt8Color.rgbName(0xff, 0xe6, 0x73, '2002 up'), + RgbInt8Color.rgbName(0xff, 0xe6, 0x71, '924 c'), + RgbInt8Color.rgbName(0xfc, 0xea, 0x76, '100 cp'), + RgbInt8Color.rgbName(0xff, 0xe8, 0x75, '2003 u'), + RgbInt8Color.rgbName(0xff, 0xe7, 0x7a, '924 u'), + RgbInt8Color.rgbName(0xfc, 0xe3, 0x85, '127 u'), + RgbInt8Color.rgbName(0xfa, 0xe4, 0x84, 'p 4-5 c'), + RgbInt8Color.rgbName(0xf5, 0xe3, 0x91, '461 up'), + RgbInt8Color.rgbName(0xf8, 0xe5, 0x9a, '2001 c'), + RgbInt8Color.rgbName(0xfa, 0xe8, 0x96, 'p 4-4 c'), + RgbInt8Color.rgbName(0xf4, 0xe3, 0x9d, '2001 xgc'), + RgbInt8Color.rgbName(0xf8, 0xe6, 0xb6, 'p 7-3 c'), + RgbInt8Color.rgbName(0xf8, 0xe9, 0xbe, '7401 cp'), + RgbInt8Color.rgbName(0xf5, 0xe9, 0xbd, '7499 cp'), + RgbInt8Color.rgbName(0xf4, 0xe5, 0xc0, '9160 c'), + RgbInt8Color.rgbName(0xf4, 0xe3, 0xc9, '9181 c'), + RgbInt8Color.rgbName(0xef, 0xe4, 0xce, '9184 c'), + RgbInt8Color.rgbName(0xef, 0xe4, 0xcb, 'p 8-9 u'), + RgbInt8Color.rgbName(0xf0, 0xe6, 0xd8, '9225 c'), + RgbInt8Color.rgbName(0xf0, 0xe4, 0xd7, '9226 u'), + RgbInt8Color.rgbName(0xe9, 0xe8, 0xe0, '9100 u'), + RgbInt8Color.rgbName(0xed, 0xeb, 0xdc, 'p 3-9 c'), + RgbInt8Color.rgbName(0xed, 0xe6, 0xde, 'p 51-1 u'), + RgbInt8Color.rgbName(0xf1, 0xe7, 0xe4, '9021 c'), + RgbInt8Color.rgbName(0xf0, 0xe7, 0xe9, '9022 c'), + RgbInt8Color.rgbName(0xee, 0xe9, 0xea, '9345 c'), + RgbInt8Color.rgbName(0xf2, 0xe9, 0xea, '9061 c'), + RgbInt8Color.rgbName(0xf3, 0xeb, 0xee, '9345 u'), + RgbInt8Color.rgbName(0xf3, 0xea, 0xed, 'p 75-9 c'), + RgbInt8Color.rgbName(0xf2, 0xea, 0xee, 'p 83-9 u'), + RgbInt8Color.rgbName(0xff, 0xf1, 0x66, '101 u'), + RgbInt8Color.rgbName(0xff, 0xf3, 0x67, '903 u'), + RgbInt8Color.rgbName(0xff, 0xef, 0x6d, 'p 1-6 u'), + RgbInt8Color.rgbName(0xff, 0xef, 0x72, '101 up'), + RgbInt8Color.rgbName(0xff, 0xf3, 0x6d, '903 c'), + RgbInt8Color.rgbName(0xfe, 0xf3, 0x80, '100 u'), + RgbInt8Color.rgbName(0xfb, 0xed, 0x7e, '603 up'), + RgbInt8Color.rgbName(0xfd, 0xec, 0x7c, 'p 1-6 c'), + RgbInt8Color.rgbName(0xfc, 0xf3, 0x89, '3935 u'), + RgbInt8Color.rgbName(0xfd, 0xf3, 0x8a, '910 c'), + RgbInt8Color.rgbName(0xff, 0xe9, 0x83, '931 c'), + RgbInt8Color.rgbName(0xff, 0xf1, 0x8b, '100 up'), + RgbInt8Color.rgbName(0xff, 0xf1, 0x8b, 'p 1-5 u'), + RgbInt8Color.rgbName(0xfd, 0xeb, 0x96, '2001 up'), + RgbInt8Color.rgbName(0xfc, 0xef, 0x9a, 'p 1-5 c'), + RgbInt8Color.rgbName(0xfc, 0xee, 0xa8, '938 c'), + RgbInt8Color.rgbName(0xff, 0xf4, 0xa9, 'p 1-4 u'), + RgbInt8Color.rgbName(0xfb, 0xf1, 0xb9, 'p 1-4 c'), + RgbInt8Color.rgbName(0xfa, 0xec, 0xb9, 'p 4-2 c'), + RgbInt8Color.rgbName(0xfa, 0xed, 0xbc, '7499 u'), + RgbInt8Color.rgbName(0xf8, 0xec, 0xbf, '7499 up'), + RgbInt8Color.rgbName(0xfe, 0xf0, 0xc0, 'p 4-1 u'), + RgbInt8Color.rgbName(0xf8, 0xf2, 0xce, 'p 1-10 u'), + RgbInt8Color.rgbName(0xf9, 0xf0, 0xcd, 'p 4-1 c'), + RgbInt8Color.rgbName(0xf7, 0xe9, 0xc6, 'p 7-9 u'), + RgbInt8Color.rgbName(0xf1, 0xf0, 0xd8, '9060 c'), + RgbInt8Color.rgbName(0xf4, 0xeb, 0xd4, 'p 7-9 c'), + RgbInt8Color.rgbName(0xf1, 0xf1, 0xde, '9064 c'), + RgbInt8Color.rgbName(0xf1, 0xf2, 0xdf, 'p 163-1 c'), + RgbInt8Color.rgbName(0xff, 0xf7, 0x91, '910 u'), + RgbInt8Color.rgbName(0xfb, 0xf5, 0x9b, 'yellow 0131 u'), + RgbInt8Color.rgbName(0xfe, 0xf9, 0xab, '917 u'), + RgbInt8Color.rgbName(0xff, 0xf4, 0xb0, '938 u'), + RgbInt8Color.rgbName(0xff, 0xf7, 0xc7, 'p 1-3 u'), + RgbInt8Color.rgbName(0xf8, 0xf6, 0xd6, '9060 u'), + RgbInt8Color.rgbName(0xf8, 0xf6, 0xd7, '9064 u'), + RgbInt8Color.rgbName(0xfa, 0xf4, 0xd3, 'p 1-3 c'), + RgbInt8Color.rgbName(0xf9, 0xf6, 0xe7, 'p 1-2 c'), + RgbInt8Color.rgbName(0xf6, 0xf4, 0xea, 'p 1-9 c'), + RgbInt8Color.rgbName(0xf9, 0xf6, 0xe5, 'p 1-9 u'), + RgbInt8Color.rgbName(0xfc, 0xfa, 0xf1, 'p 1-1 u'), + RgbInt8Color.rgbName(0xfc, 0xf6, 0xf5, 'p 75-1 u'), + RgbInt8Color.rgbName(0xff, 0x66, 0x5e, 'warm red u'), + RgbInt8Color.rgbName(0xff, 0x6d, 0x6a, '2345 c'), + RgbInt8Color.rgbName(0xff, 0x72, 0x76, '805 c'), + RgbInt8Color.rgbName(0xff, 0x74, 0x77, '805 u'), + RgbInt8Color.rgbName(0xff, 0x7c, 0x76, '2345 u'), + RgbInt8Color.rgbName(0xff, 0x80, 0x8b, '177 c'), + RgbInt8Color.rgbName(0xff, 0x80, 0x91, '1777 u'), + RgbInt8Color.rgbName(0xff, 0x7f, 0x61, '1645 u'), + RgbInt8Color.rgbName(0xff, 0x86, 0x5f, '164 u'), + RgbInt8Color.rgbName(0xff, 0x87, 0x67, '811 u'), + RgbInt8Color.rgbName(0xff, 0x86, 0x74, '170 c'), + RgbInt8Color.rgbName(0xff, 0x88, 0x70, '2024 u'), + RgbInt8Color.rgbName(0xff, 0x8f, 0x6c, '811 c'), + RgbInt8Color.rgbName(0xff, 0x8d, 0x7e, '170 u'), + RgbInt8Color.rgbName(0xff, 0x8c, 0x91, '177 u'), + RgbInt8Color.rgbName(0xff, 0x8b, 0x9a, '1775 u'), + RgbInt8Color.rgbName(0xfd, 0x9c, 0xba, '1905 u'), + RgbInt8Color.rgbName(0xff, 0x90, 0x57, '2025 xgc'), + RgbInt8Color.rgbName(0xff, 0x95, 0x60, '2025 u'), + RgbInt8Color.rgbName(0xf9, 0x99, 0x7e, '1635 xgc'), + RgbInt8Color.rgbName(0xff, 0x96, 0x7e, '1635 u'), + RgbInt8Color.rgbName(0xfe, 0x9b, 0x96, '3572 c'), + RgbInt8Color.rgbName(0xfe, 0x99, 0xa8, '708 u'), + RgbInt8Color.rgbName(0xff, 0x99, 0x55, '150 u'), + RgbInt8Color.rgbName(0xff, 0xa0, 0x6a, '1565 c'), + RgbInt8Color.rgbName(0xff, 0x9d, 0x6e, '163 c'), + RgbInt8Color.rgbName(0xff, 0x9c, 0x76, '163 u'), + RgbInt8Color.rgbName(0xff, 0x9c, 0x81, '2023 u'), + RgbInt8Color.rgbName(0xfb, 0xa0, 0x86, '2023 xgc'), + RgbInt8Color.rgbName(0xfe, 0xa0, 0x98, '3572 u'), + RgbInt8Color.rgbName(0xff, 0x9d, 0xa7, '905 c'), + RgbInt8Color.rgbName(0xff, 0x9d, 0xa5, '905 u'), + RgbInt8Color.rgbName(0xff, 0xa3, 0xb5, '1765 c'), + RgbInt8Color.rgbName(0xfe, 0xb3, 0xcd, '1895 u'), + RgbInt8Color.rgbName(0xff, 0xa5, 0x63, '1485 u'), + RgbInt8Color.rgbName(0xff, 0xaa, 0x81, '1565 u'), + RgbInt8Color.rgbName(0xff, 0xa9, 0x83, '163 xgc'), + RgbInt8Color.rgbName(0xff, 0xa3, 0x8b, '1625 c'), + RgbInt8Color.rgbName(0xff, 0xa9, 0x8f, '2022 u'), + RgbInt8Color.rgbName(0xfa, 0xad, 0x97, '1625 xgc'), + RgbInt8Color.rgbName(0xff, 0xa7, 0xb6, '1765 u'), + RgbInt8Color.rgbName(0xfc, 0xaf, 0xc0, '1767 c'), + RgbInt8Color.rgbName(0xfc, 0xae, 0xbb, 'red 0331 c'), + RgbInt8Color.rgbName(0xf8, 0xbe, 0xd6, '2036 c'), + RgbInt8Color.rgbName(0xff, 0xae, 0x62, '1485 c'), + RgbInt8Color.rgbName(0xfe, 0xad, 0x77, '7410 c'), + RgbInt8Color.rgbName(0xff, 0xb0, 0x7b, '714 u'), + RgbInt8Color.rgbName(0xff, 0xa8, 0x91, '1625 u'), + RgbInt8Color.rgbName(0xff, 0xad, 0x93, '925 c'), + RgbInt8Color.rgbName(0xff, 0xb0, 0x98, '925 u'), + RgbInt8Color.rgbName(0xff, 0xb3, 0xab, '169 c'), + RgbInt8Color.rgbName(0xf4, 0xb7, 0xaf, '169 xgc'), + RgbInt8Color.rgbName(0xff, 0xac, 0xb6, '912 c'), + RgbInt8Color.rgbName(0xff, 0xaf, 0xb8, '912 u'), + RgbInt8Color.rgbName(0xff, 0xb1, 0xbb, '176 c'), + RgbInt8Color.rgbName(0xff, 0xab, 0xc2, '189 u'), + RgbInt8Color.rgbName(0xff, 0xb0, 0xbf, '707 u'), + RgbInt8Color.rgbName(0xff, 0xb1, 0xbe, 'red 0331 u'), + RgbInt8Color.rgbName(0xf9, 0xb5, 0xc4, '707 c'), + RgbInt8Color.rgbName(0xf1, 0xc4, 0xd3, '2043 up'), + RgbInt8Color.rgbName(0xf3, 0xc7, 0xd6, 'p 75-3 u'), + RgbInt8Color.rgbName(0xff, 0xb3, 0x6b, '1485 xgc'), + RgbInt8Color.rgbName(0xff, 0xb8, 0x62, '150 xgc'), + RgbInt8Color.rgbName(0xff, 0xb2, 0x6a, '714 xgc'), + RgbInt8Color.rgbName(0xff, 0xb5, 0x75, '149 u'), + RgbInt8Color.rgbName(0xff, 0xb6, 0x73, '2016 c'), + RgbInt8Color.rgbName(0xfe, 0xbb, 0x79, '2016 xgc'), + RgbInt8Color.rgbName(0xff, 0xb7, 0x82, '2017 u'), + RgbInt8Color.rgbName(0xff, 0xb7, 0x81, '7410 xgc'), + RgbInt8Color.rgbName(0xff, 0xb9, 0x90, '1555 c'), + RgbInt8Color.rgbName(0xfd, 0xbe, 0x96, '1555 xgc'), + RgbInt8Color.rgbName(0xf4, 0xc0, 0x9b, '162 up'), + RgbInt8Color.rgbName(0xf6, 0xbd, 0x9d, '474 u'), + RgbInt8Color.rgbName(0xfc, 0xb7, 0x9f, '2022 xgc'), + RgbInt8Color.rgbName(0xf8, 0xbf, 0x9d, '2437 u'), + RgbInt8Color.rgbName(0xff, 0xb7, 0xae, '169 u'), + RgbInt8Color.rgbName(0xfe, 0xb7, 0xae, '2337 u'), + RgbInt8Color.rgbName(0xff, 0xb1, 0xba, '176 u'), + RgbInt8Color.rgbName(0xf2, 0xc2, 0xc3, '699 up'), + RgbInt8Color.rgbName(0xf3, 0xc4, 0xbf, '7520 u'), + RgbInt8Color.rgbName(0xff, 0xba, 0xc9, '1767 u'), + RgbInt8Color.rgbName(0xfa, 0xbb, 0xcb, '182 c'), + RgbInt8Color.rgbName(0xff, 0xb8, 0xca, '182 u'), + RgbInt8Color.rgbName(0xf4, 0xc3, 0xcb, '196 u'), + RgbInt8Color.rgbName(0xf2, 0xc6, 0xcf, '496 c'), + RgbInt8Color.rgbName(0xee, 0xc4, 0xce, '699 cp'), + RgbInt8Color.rgbName(0xf8, 0xc3, 0xd6, '3568 u'), + RgbInt8Color.rgbName(0xff, 0xc2, 0x67, '135 u'), + RgbInt8Color.rgbName(0xff, 0xc2, 0x7b, '149 c'), + RgbInt8Color.rgbName(0xff, 0xc1, 0x87, '2016 u'), + RgbInt8Color.rgbName(0xfd, 0xbe, 0x87, '713 c'), + RgbInt8Color.rgbName(0xff, 0xc1, 0x90, '713 u'), + RgbInt8Color.rgbName(0xfc, 0xc3, 0x8a, '713 xgc'), + RgbInt8Color.rgbName(0xff, 0xbe, 0x9f, '162 c'), + RgbInt8Color.rgbName(0xfc, 0xc0, 0xaa, '162 xgc'), + RgbInt8Color.rgbName(0xf6, 0xca, 0xa9, 'p 37-2 u'), + RgbInt8Color.rgbName(0xf5, 0xc5, 0xad, 'p 52-2 u'), + RgbInt8Color.rgbName(0xf8, 0xc1, 0xb8, '2337 c'), + RgbInt8Color.rgbName(0xf5, 0xc7, 0xb8, '489 u'), + RgbInt8Color.rgbName(0xf5, 0xca, 0xb0, 'p 48-2 u'), + RgbInt8Color.rgbName(0xf6, 0xc7, 0xbd, '2337 xgc'), + RgbInt8Color.rgbName(0xf9, 0xc2, 0xcc, '496 u'), + RgbInt8Color.rgbName(0xf4, 0xc3, 0xcc, '699 c'), + RgbInt8Color.rgbName(0xff, 0xc0, 0xc8, '919 c'), + RgbInt8Color.rgbName(0xf0, 0xcc, 0xd0, '706 cp'), + RgbInt8Color.rgbName(0xf2, 0xd8, 0xdf, '2050 up'), + RgbInt8Color.rgbName(0xff, 0xc8, 0x7e, '1355 u'), + RgbInt8Color.rgbName(0xfd, 0xd0, 0x86, '1345 c'), + RgbInt8Color.rgbName(0xfa, 0xcf, 0x86, '1345 xgc'), + RgbInt8Color.rgbName(0xfe, 0xcb, 0x8b, '148 c'), + RgbInt8Color.rgbName(0xff, 0xc6, 0x88, '148 u'), + RgbInt8Color.rgbName(0xff, 0xc9, 0x88, '904 u'), + RgbInt8Color.rgbName(0xf9, 0xcd, 0x8f, '1345 up'), + RgbInt8Color.rgbName(0xfa, 0xcd, 0x91, '148 xgc'), + RgbInt8Color.rgbName(0xff, 0xcd, 0x8a, '904 c'), + RgbInt8Color.rgbName(0xf9, 0xcf, 0x92, 'p 17-3 u'), + RgbInt8Color.rgbName(0xfc, 0xc8, 0x9b, '712 c'), + RgbInt8Color.rgbName(0xf7, 0xc9, 0x9d, '712 up'), + RgbInt8Color.rgbName(0xfa, 0xcb, 0x9a, '712 xgc'), + RgbInt8Color.rgbName(0xff, 0xca, 0x9d, '712 u'), + RgbInt8Color.rgbName(0xf8, 0xcf, 0xa9, '2015 c'), + RgbInt8Color.rgbName(0xf8, 0xd1, 0xa9, '2015 xgc'), + RgbInt8Color.rgbName(0xfa, 0xcc, 0xad, '475 u'), + RgbInt8Color.rgbName(0xf6, 0xcd, 0xb1, '489 up'), + RgbInt8Color.rgbName(0xf2, 0xce, 0xb0, '712 cp'), + RgbInt8Color.rgbName(0xf8, 0xd0, 0xa9, 'p 27-2 u'), + RgbInt8Color.rgbName(0xf7, 0xcf, 0xad, 'p 34-1 u'), + RgbInt8Color.rgbName(0xf3, 0xd0, 0xba, '489 cp'), + RgbInt8Color.rgbName(0xf1, 0xcf, 0xb8, 'p 40-1 c'), + RgbInt8Color.rgbName(0xf7, 0xce, 0xb2, 'p 40-1 u'), + RgbInt8Color.rgbName(0xf1, 0xd5, 0xc3, '9221 u'), + RgbInt8Color.rgbName(0xf2, 0xd5, 0xbc, 'p 34-1 c'), + RgbInt8Color.rgbName(0xf2, 0xcd, 0xcf, '503 u'), + RgbInt8Color.rgbName(0xf4, 0xcd, 0xcd, '698 up'), + RgbInt8Color.rgbName(0xf1, 0xd0, 0xcf, '7422 xgc'), + RgbInt8Color.rgbName(0xf4, 0xcd, 0xd4, '7422 c'), + RgbInt8Color.rgbName(0xf3, 0xd1, 0xce, '9261 u'), + RgbInt8Color.rgbName(0xfa, 0xc9, 0xd1, '9284 c'), + RgbInt8Color.rgbName(0xf2, 0xd4, 0xd7, '698 c'), + RgbInt8Color.rgbName(0xf2, 0xd7, 0xdb, '698 cp'), + RgbInt8Color.rgbName(0xf7, 0xce, 0xd7, '706 c'), + RgbInt8Color.rgbName(0xfa, 0xe0, 0xee, '9320 u'), + RgbInt8Color.rgbName(0xf3, 0xe2, 0xe9, 'p 75-2 c'), + RgbInt8Color.rgbName(0xf5, 0xd8, 0xdf, '7436 up'), + RgbInt8Color.rgbName(0xf6, 0xd8, 0xe1, '9301 u'), + RgbInt8Color.rgbName(0xff, 0xd9, 0x6a, '120 u'), + RgbInt8Color.rgbName(0xfd, 0xd8, 0x7e, 'p 7-5 u'), + RgbInt8Color.rgbName(0xff, 0xda, 0x7e, '1215 u'), + RgbInt8Color.rgbName(0xfe, 0xd8, 0x80, '2005 c'), + RgbInt8Color.rgbName(0xff, 0xd5, 0x91, '1345 u'), + RgbInt8Color.rgbName(0xfc, 0xd2, 0x99, '7507 c'), + RgbInt8Color.rgbName(0xfb, 0xd8, 0x8f, 'p 10-3 u'), + RgbInt8Color.rgbName(0xf9, 0xd3, 0x9c, '7507 xgc'), + RgbInt8Color.rgbName(0xfa, 0xd7, 0x98, 'p 14-3 u'), + RgbInt8Color.rgbName(0xf9, 0xd1, 0x9b, 'p 20-1 u'), + RgbInt8Color.rgbName(0xf5, 0xd7, 0xa5, '155 cp'), + RgbInt8Color.rgbName(0xfa, 0xd7, 0xa2, 'p 17-2 u'), + RgbInt8Color.rgbName(0xf7, 0xd7, 0xaf, '2015 up'), + RgbInt8Color.rgbName(0xf8, 0xd2, 0xb2, '475 xgc'), + RgbInt8Color.rgbName(0xf9, 0xd8, 0xac, '7507 up'), + RgbInt8Color.rgbName(0xf8, 0xd8, 0xc6, 'p 52-1 u'), + RgbInt8Color.rgbName(0xf0, 0xd8, 0xd7, '691 cp'), + RgbInt8Color.rgbName(0xf1, 0xd8, 0xd5, '698 xgc'), + RgbInt8Color.rgbName(0xf6, 0xd6, 0xd3, '705 up'), + RgbInt8Color.rgbName(0xf2, 0xda, 0xcf, 'p 52-1 c'), + RgbInt8Color.rgbName(0xf7, 0xd6, 0xd2, 'p 65-1 u'), + RgbInt8Color.rgbName(0xf1, 0xd9, 0xd9, 'p 71-9 u'), + RgbInt8Color.rgbName(0xf5, 0xd1, 0xd6, 'p 73-1 u'), + RgbInt8Color.rgbName(0xf5, 0xda, 0xdf, '705 c'), + RgbInt8Color.rgbName(0xf8, 0xd7, 0xdb, '9281 u'), + RgbInt8Color.rgbName(0xf2, 0xda, 0xd9, 'p 65-1 c'), + RgbInt8Color.rgbName(0xf6, 0xd6, 0xd8, 'p 71-1 u'), + RgbInt8Color.rgbName(0xf3, 0xe0, 0xe3, '705 cp'), + RgbInt8Color.rgbName(0xf4, 0xdd, 0xe2, '9300 c'), + RgbInt8Color.rgbName(0xf5, 0xe5, 0xea, '9022 u'), + RgbInt8Color.rgbName(0xff, 0xe2, 0x76, 'p 4-5 u'), + RgbInt8Color.rgbName(0xff, 0xe1, 0x7e, '127 up'), + RgbInt8Color.rgbName(0xff, 0xe1, 0x7f, '2004 u'), + RgbInt8Color.rgbName(0xfe, 0xe1, 0x94, 'p 7-4 u'), + RgbInt8Color.rgbName(0xf9, 0xe4, 0x9d, '1205 cp'), + RgbInt8Color.rgbName(0xf5, 0xe1, 0xa4, '7401 c'), + RgbInt8Color.rgbName(0xfb, 0xde, 0xa3, 'p 10-2 u'), + RgbInt8Color.rgbName(0xf7, 0xe2, 0xa3, 'p 7-4 c'), + RgbInt8Color.rgbName(0xff, 0xdd, 0xaa, '7507 u'), + RgbInt8Color.rgbName(0xf5, 0xdf, 0xb0, 'p 10-2 c'), + RgbInt8Color.rgbName(0xfb, 0xde, 0xab, 'p 14-2 u'), + RgbInt8Color.rgbName(0xf9, 0xe1, 0xb7, '7506 u'), + RgbInt8Color.rgbName(0xf6, 0xe1, 0xb8, '7506 up'), + RgbInt8Color.rgbName(0xff, 0xdf, 0xb4, '918 c'), + RgbInt8Color.rgbName(0xf5, 0xdf, 0xb8, 'p 14-2 c'), + RgbInt8Color.rgbName(0xf9, 0xda, 0xbb, 'p 30-1 u'), + RgbInt8Color.rgbName(0xf6, 0xe4, 0xc2, 'p 10-1 c'), + RgbInt8Color.rgbName(0xf5, 0xe1, 0xc1, 'p 17-1 c'), + RgbInt8Color.rgbName(0xf5, 0xe1, 0xc5, 'p 24-9 u'), + RgbInt8Color.rgbName(0xf2, 0xdf, 0xca, 'p 31-1 u'), + RgbInt8Color.rgbName(0xf3, 0xe4, 0xcd, '9180 c'), + RgbInt8Color.rgbName(0xf5, 0xe1, 0xcc, '9200 c'), + RgbInt8Color.rgbName(0xf5, 0xe3, 0xcc, '9201 c'), + RgbInt8Color.rgbName(0xf5, 0xe0, 0xcf, '9220 c'), + RgbInt8Color.rgbName(0xf1, 0xe1, 0xd0, 'p 24-9 c'), + RgbInt8Color.rgbName(0xf4, 0xe0, 0xcb, 'p 27-1 c'), + RgbInt8Color.rgbName(0xfa, 0xde, 0xc4, 'p 37-1 u'), + RgbInt8Color.rgbName(0xf3, 0xe3, 0xd0, '9185 u'), + RgbInt8Color.rgbName(0xf5, 0xde, 0xda, '9260 c'), + RgbInt8Color.rgbName(0xf3, 0xdf, 0xd5, 'p 48-1 c'), + RgbInt8Color.rgbName(0xf8, 0xdf, 0xcf, 'p 48-1 u'), + RgbInt8Color.rgbName(0xf6, 0xdf, 0xe0, '9286 c'), + RgbInt8Color.rgbName(0xf5, 0xe2, 0xe2, '9280 c'), + RgbInt8Color.rgbName(0xf8, 0xe0, 0xe8, 'p 75-2 u'), + RgbInt8Color.rgbName(0xfb, 0xe1, 0xe9, '9300 u'), + RgbInt8Color.rgbName(0xff, 0xe8, 0x85, '2002 u'), + RgbInt8Color.rgbName(0xff, 0xe7, 0x8b, 'p 4-4 u'), + RgbInt8Color.rgbName(0xff, 0xe4, 0x95, '1205 u'), + RgbInt8Color.rgbName(0xff, 0xe6, 0x99, '1205 up'), + RgbInt8Color.rgbName(0xfe, 0xe5, 0xa5, '7401 u'), + RgbInt8Color.rgbName(0xff, 0xea, 0x9e, 'p 4-3 u'), + RgbInt8Color.rgbName(0xfc, 0xe4, 0xae, '7401 up'), + RgbInt8Color.rgbName(0xfe, 0xe5, 0xab, 'p 7-3 u'), + RgbInt8Color.rgbName(0xfd, 0xe6, 0xbb, '9160 u'), + RgbInt8Color.rgbName(0xfb, 0xe4, 0xb7, 'p 10-1 u'), + RgbInt8Color.rgbName(0xfb, 0xe1, 0xb8, 'p 17-1 u'), + RgbInt8Color.rgbName(0xfb, 0xe6, 0xc3, 'p 14-1 u'), + RgbInt8Color.rgbName(0xf6, 0xe7, 0xce, 'p 14-1 c'), + RgbInt8Color.rgbName(0xf2, 0xe9, 0xdb, '9224 c'), + RgbInt8Color.rgbName(0xf6, 0xe5, 0xd3, '9225 u'), + RgbInt8Color.rgbName(0xf7, 0xe6, 0xe3, '9021 u'), + RgbInt8Color.rgbName(0xf4, 0xe5, 0xde, '9240 c'), + RgbInt8Color.rgbName(0xf3, 0xe9, 0xe2, '9244 c'), + RgbInt8Color.rgbName(0xfd, 0xe5, 0xe6, '9280 u'), + RgbInt8Color.rgbName(0xf2, 0xeb, 0xe7, '9285 c'), + RgbInt8Color.rgbName(0xfa, 0xeb, 0xef, '9061 u'), + RgbInt8Color.rgbName(0xf7, 0xeb, 0xed, 'p 75-9 u'), + RgbInt8Color.rgbName(0xff, 0xee, 0x93, '931 u'), + RgbInt8Color.rgbName(0xff, 0xec, 0x9f, '2001 u'), + RgbInt8Color.rgbName(0xff, 0xeb, 0xad, 'p 4-2 u'), + RgbInt8Color.rgbName(0xfd, 0xec, 0xc3, 'p 7-2 u'), + RgbInt8Color.rgbName(0xf8, 0xeb, 0xce, 'p 7-2 c'), + RgbInt8Color.rgbName(0xf6, 0xeb, 0xd8, '9184 u'), + RgbInt8Color.rgbName(0xfd, 0xf2, 0xd6, 'p 7-1 u'), + RgbInt8Color.rgbName(0xfa, 0xeb, 0xda, '9224 u'), + RgbInt8Color.rgbName(0xf8, 0xf1, 0xe0, 'p 7-1 c'), + RgbInt8Color.rgbName(0xfa, 0xee, 0xea, '9285 u'), + RgbInt8Color.rgbName(0xfd, 0xf8, 0xe1, 'p 1-2 u'), + RgbInt8Color.rgbName(0xff, 0xbb, 0x9b, '162 u'), + RgbInt8Color.rgbName(0xff, 0xbb, 0xa4, '932 c'), + RgbInt8Color.rgbName(0xfc, 0xc2, 0xcc, '699 u'), + RgbInt8Color.rgbName(0xff, 0xc2, 0x9e, '1555 u'), + RgbInt8Color.rgbName(0xff, 0xc3, 0xaf, '932 u'), + RgbInt8Color.rgbName(0xff, 0xca, 0xd4, '706 u'), + RgbInt8Color.rgbName(0xff, 0xc7, 0xce, '919 u'), + RgbInt8Color.rgbName(0xff, 0xcf, 0xd8, '9284 u'), + RgbInt8Color.rgbName(0xff, 0xcf, 0xbe, '939 c'), + RgbInt8Color.rgbName(0xfa, 0xd7, 0xda, '698 u'), + RgbInt8Color.rgbName(0xfd, 0xd4, 0xda, '7422 u'), + RgbInt8Color.rgbName(0xff, 0xd4, 0xc4, '939 u'), + RgbInt8Color.rgbName(0xff, 0xdd, 0xe2, '705 u'), + RgbInt8Color.rgbName(0xfe, 0xdf, 0xe2, '9286 u'), + RgbInt8Color.rgbName(0xff, 0xd7, 0xa2, '911 u'), + RgbInt8Color.rgbName(0xff, 0xd9, 0xa4, '911 c'), + RgbInt8Color.rgbName(0xff, 0xda, 0xb6, '2015 u'), + RgbInt8Color.rgbName(0xfa, 0xe0, 0xc2, 'p 27-1 u'), + RgbInt8Color.rgbName(0xfe, 0xde, 0xc4, '9200 u'), + RgbInt8Color.rgbName(0xfe, 0xe2, 0xc7, '9201 u'), + RgbInt8Color.rgbName(0xfd, 0xe1, 0xde, '9260 u'), + RgbInt8Color.rgbName(0xff, 0xe4, 0xbb, '918 u'), + RgbInt8Color.rgbName(0xfd, 0xe2, 0xc2, '9181 u'), + RgbInt8Color.rgbName(0xfe, 0xe0, 0xcc, '9220 u'), + RgbInt8Color.rgbName(0xfc, 0xe8, 0xce, '9180 u'), + RgbInt8Color.rgbName(0xfd, 0xe6, 0xde, '9240 u'), + RgbInt8Color.rgbName(0xfc, 0xeb, 0xe2, '9244 u'), +]; diff --git a/lib/src/palettes/pantone_product_design.dart b/lib/src/palettes/pantone_product_design.dart new file mode 100644 index 0000000..64a1448 --- /dev/null +++ b/lib/src/palettes/pantone_product_design.dart @@ -0,0 +1,4973 @@ +part of '../../uni_color_palette.dart'; + +/// Source: https://numerosamente.it/pantone-list +/// Helper sheet: https://docs.google.com/spreadsheets/d/1f8wvrgqfGcXFAiAXx-p9CgLXo3__IoEn8-Us-uRyfok/edit#gid=1545020977 +final pantoneProductDesignColors = [ + RgbInt8Color.rgbName(0x2e, 0x27, 0x2a, 'black bean'), + RgbInt8Color.rgbName(0x26, 0x26, 0x2a, 'black beauty'), + RgbInt8Color.rgbName(0x26, 0x29, 0x34, 'sky captain'), + RgbInt8Color.rgbName(0x2b, 0x27, 0x2b, 'black onyx'), + RgbInt8Color.rgbName(0x2a, 0x2b, 0x2d, 'tap shoe'), + RgbInt8Color.rgbName(0x29, 0x2a, 0x2d, 'caviar'), + RgbInt8Color.rgbName(0x28, 0x28, 0x2d, 'anthracite'), + RgbInt8Color.rgbName(0x2b, 0x29, 0x29, 'meteorite'), + RgbInt8Color.rgbName(0x23, 0x31, 0x2d, 'scarab'), + RgbInt8Color.rgbName(0x26, 0x2c, 0x2a, 'jet set'), + RgbInt8Color.rgbName(0x22, 0x1c, 0x35, 'pq-276c'), + RgbInt8Color.rgbName(0x4, 0x1c, 0x2c, 'pq-296c'), + RgbInt8Color.rgbName(0x0, 0x2a, 0x3a, 'pq-303c'), + RgbInt8Color.rgbName(0x21, 0x23, 0x22, 'pq-419c'), + RgbInt8Color.rgbName(0x25, 0x28, 0x2a, 'pq-426c'), + RgbInt8Color.rgbName(0x1d, 0x25, 0x2d, 'pq-433c'), + RgbInt8Color.rgbName(0x1e, 0x1a, 0x34, 'pq-5255c'), + RgbInt8Color.rgbName(0x1c, 0x1f, 0x2a, 'pq-532c'), + RgbInt8Color.rgbName(0x8, 0x1f, 0x2c, 'pq-5395c'), + RgbInt8Color.rgbName(0x0, 0x26, 0x3a, 'pq-539c'), + RgbInt8Color.rgbName(0x7, 0x27, 0x2d, 'pq-5463c'), + RgbInt8Color.rgbName(0x18, 0x33, 0x2f, 'pq-5467c'), + RgbInt8Color.rgbName(0x7, 0x2b, 0x31, 'pq-546c'), + RgbInt8Color.rgbName(0x0, 0x31, 0x3c, 'pq-547c'), + RgbInt8Color.rgbName(0x18, 0x30, 0x28, 'pq-5535c'), + RgbInt8Color.rgbName(0x22, 0x37, 0x2b, 'pq-5605c'), + RgbInt8Color.rgbName(0x13, 0x32, 0x2b, 'pq-627c'), + RgbInt8Color.rgbName(0x13, 0x1e, 0x29, 'pq-7547c'), + RgbInt8Color.rgbName(0x33, 0x2f, 0x21, 'pq-black2c'), + RgbInt8Color.rgbName(0x21, 0x27, 0x21, 'pq-black3c'), + RgbInt8Color.rgbName(0x31, 0x26, 0x1d, 'pq-black4c'), + RgbInt8Color.rgbName(0x10, 0x18, 0x20, 'pq-black6c'), + RgbInt8Color.rgbName(0x2d, 0x29, 0x26, 'pq-blackc'), + RgbInt8Color.rgbName(0x0, 0x26, 0x3e, 'pq-2965c'), + RgbInt8Color.rgbName(0x0, 0x3a, 0x40, 'pq-2217c'), + RgbInt8Color.rgbName(0xc, 0x23, 0x40, 'pq-289c'), + RgbInt8Color.rgbName(0x4, 0x1e, 0x42, 'pq-282c'), + RgbInt8Color.rgbName(0x20, 0x17, 0x47, 'pq-275c'), + RgbInt8Color.rgbName(0x20, 0x15, 0x47, 'pq-2765c'), + RgbInt8Color.rgbName(0x0, 0x33, 0x49, 'pq-2189c'), + RgbInt8Color.rgbName(0x7, 0x1d, 0x49, 'pq-2768c'), + RgbInt8Color.rgbName(0x0, 0x2b, 0x49, 'pq-7463c'), + RgbInt8Color.rgbName(0x14, 0x1b, 0x4d, 'pq-2766c'), + RgbInt8Color.rgbName(0x0, 0x25, 0x54, 'pq-655c'), + RgbInt8Color.rgbName(0x0, 0x20, 0x5b, 'pq-281c'), + RgbInt8Color.rgbName(0x0, 0x28, 0x55, 'pq-295c'), + RgbInt8Color.rgbName(0x0, 0x1e, 0x60, 'pq-2757c'), + RgbInt8Color.rgbName(0x0, 0x1e, 0x62, 'pq-2758c'), + RgbInt8Color.rgbName(0x0, 0x3b, 0x49, 'pq-309c'), + RgbInt8Color.rgbName(0x21, 0x15, 0x51, 'pq-274c'), + RgbInt8Color.rgbName(0x13, 0x29, 0x4b, 'pq-2767c'), + RgbInt8Color.rgbName(0x0, 0x30, 0x57, 'pq-540c'), + RgbInt8Color.rgbName(0x0, 0x18, 0x71, 'pq-2748c'), + RgbInt8Color.rgbName(0x0, 0x1a, 0x70, 'pq-662c'), + RgbInt8Color.rgbName(0x0, 0x2e, 0x5d, 'pq-648c'), + RgbInt8Color.rgbName(0x1, 0x21, 0x69, 'pq-280c'), + RgbInt8Color.rgbName(0x0, 0x1a, 0x72, 'pq-2747c'), + RgbInt8Color.rgbName(0x2e, 0x1a, 0x47, 'pq-2695c'), + RgbInt8Color.rgbName(0x25, 0xe, 0x62, 'pq-2755c'), + RgbInt8Color.rgbName(0x24, 0x13, 0x5f, 'pq-273c'), + RgbInt8Color.rgbName(0x0, 0x3b, 0x5c, 'pq-302c'), + RgbInt8Color.rgbName(0x28, 0x0, 0x71, 'pq-2745c'), + RgbInt8Color.rgbName(0x12, 0x38, 0x50, 'gibraltar sea'), + RgbInt8Color.rgbName(0xe, 0x3a, 0x53, 'sailor blue'), + RgbInt8Color.rgbName(0x6, 0x3, 0x8d, 'pq-2738c'), + RgbInt8Color.rgbName(0x0, 0x2f, 0x6c, 'pq-294c'), + RgbInt8Color.rgbName(0x0, 0x26, 0x77, 'pq-2147c'), + RgbInt8Color.rgbName(0x0, 0x14, 0x89, 'pq-reflexbluec'), + RgbInt8Color.rgbName(0x0, 0x38, 0x65, 'pq-2955c'), + RgbInt8Color.rgbName(0x0, 0x2d, 0x72, 'pq-288c'), + RgbInt8Color.rgbName(0x15, 0x1f, 0x6d, 'pq-2756c'), + RgbInt8Color.rgbName(0x33, 0x0, 0x72, 'pq-2685c'), + RgbInt8Color.rgbName(0x0, 0x3a, 0x70, 'pq-654c'), + RgbInt8Color.rgbName(0x0, 0x3c, 0x71, 'pq-541c'), + RgbInt8Color.rgbName(0x37, 0x1, 0x78, 'pq-3535c'), + RgbInt8Color.rgbName(0x2e, 0x13, 0x73, 'pq-3542c'), + RgbInt8Color.rgbName(0x10, 0x6, 0x9f, 'pq-blue072c'), + RgbInt8Color.rgbName(0x0, 0x30, 0x87, 'pq-287c'), + RgbInt8Color.rgbName(0x2e, 0x0, 0x8b, 'pq-2735c'), + RgbInt8Color.rgbName(0x14, 0x2e, 0x7b, 'pq-3591c'), + RgbInt8Color.rgbName(0x28, 0x1e, 0x78, 'pq-2372c'), + RgbInt8Color.rgbName(0x0, 0x23, 0x9c, 'pq-darkbluec'), + RgbInt8Color.rgbName(0x0, 0x35, 0x8e, 'pq-2146c'), + RgbInt8Color.rgbName(0x17, 0x1c, 0x8f, 'pq-2746c'), + RgbInt8Color.rgbName(0x33, 0x5, 0x8d, 'pq-2371c'), + RgbInt8Color.rgbName(0x0, 0x35, 0x94, 'pq-661c'), + RgbInt8Color.rgbName(0x0, 0x33, 0xa0, 'pq-286c'), + RgbInt8Color.rgbName(0x1e, 0x22, 0xaa, 'pq-2736c'), + RgbInt8Color.rgbName(0x2f, 0x2a, 0x95, 'pq-2370c'), + RgbInt8Color.rgbName(0x20, 0x3c, 0x7f, 'surf the web'), + RgbInt8Color.rgbName(0x39, 0x20, 0x7c, 'pq-2105c'), + RgbInt8Color.rgbName(0x30, 0x3a, 0xb2, 'pq-2126c'), + RgbInt8Color.rgbName(0x21, 0x36, 0x6e, 'pq-3597c'), + RgbInt8Color.rgbName(0x1d, 0x36, 0x6d, 'pq-8783c'), + RgbInt8Color.rgbName(0x27, 0x3c, 0x76, 'mazarine blue'), + RgbInt8Color.rgbName(0x34, 0x35, 0x79, 'pq-2118c'), + RgbInt8Color.rgbName(0x36, 0x3b, 0x7c, 'clematis blue'), + RgbInt8Color.rgbName(0x32, 0x35, 0x72, 'pq-8782c'), + RgbInt8Color.rgbName(0x0, 0x3d, 0xa5, 'pq-293c'), + RgbInt8Color.rgbName(0x0, 0x4e, 0xa8, 'pq-2145c'), + RgbInt8Color.rgbName(0x0, 0x47, 0xbb, 'pq-2728c'), + RgbInt8Color.rgbName(0x0, 0x50, 0xb5, 'pq-2388c'), + RgbInt8Color.rgbName(0x44, 0x0, 0x99, 'pq-violetc'), + RgbInt8Color.rgbName(0x0, 0x4c, 0x97, 'pq-2945c'), + RgbInt8Color.rgbName(0x4c, 0x12, 0xa1, 'pq-2091c'), + RgbInt8Color.rgbName(0x0, 0x4b, 0x8d, 'lapis blue'), + RgbInt8Color.rgbName(0x4e, 0x0, 0x8e, 'pq-mediumpurplec'), + RgbInt8Color.rgbName(0x0, 0x49, 0x86, 'pq-2186c'), + RgbInt8Color.rgbName(0x3b, 0x3f, 0xb6, 'pq-2369c'), + RgbInt8Color.rgbName(0x0, 0x4b, 0x87, 'pq-301c'), + RgbInt8Color.rgbName(0x4a, 0x25, 0xaa, 'pq-2098c'), + RgbInt8Color.rgbName(0x0, 0x46, 0x80, 'pq-2154c'), + RgbInt8Color.rgbName(0x1e, 0x42, 0x94, 'pq-10249c'), + RgbInt8Color.rgbName(0x3, 0x4f, 0x84, 'snorkel blue'), + RgbInt8Color.rgbName(0x0, 0x46, 0x77, 'pq-2187c'), + RgbInt8Color.rgbName(0x0, 0x49, 0x76, 'pq-7693c'), + RgbInt8Color.rgbName(0x1d, 0x42, 0x8a, 'pq-7687c'), + RgbInt8Color.rgbName(0x4d, 0x49, 0xbe, 'pq-2368c'), + RgbInt8Color.rgbName(0x1a, 0x50, 0x91, 'nautical blue'), + RgbInt8Color.rgbName(0xf, 0x4c, 0x81, 'classic blue'), + RgbInt8Color.rgbName(0x1d, 0x4f, 0x91, 'pq-7686c'), + RgbInt8Color.rgbName(0x1a, 0x4c, 0x8b, 'blue iolite'), + RgbInt8Color.rgbName(0x2c, 0x4f, 0x99, 'pq-10248c'), + RgbInt8Color.rgbName(0x48, 0x36, 0x98, 'pq-2104c'), + RgbInt8Color.rgbName(0x38, 0x50, 0xa0, 'dazzling blue'), + RgbInt8Color.rgbName(0x4f, 0x4c, 0xb1, 'pq-2367c'), + RgbInt8Color.rgbName(0x44, 0x49, 0x9c, 'pq-2117c'), + RgbInt8Color.rgbName(0x46, 0x45, 0x98, 'pq-10243c'), + RgbInt8Color.rgbName(0x0, 0x3d, 0x4c, 'pq-548c'), + RgbInt8Color.rgbName(0x1c, 0x42, 0x20, 'pq-2411c'), + RgbInt8Color.rgbName(0x3, 0x46, 0x38, 'pq-3308c'), + RgbInt8Color.rgbName(0x0, 0x3e, 0x51, 'pq-3035c'), + RgbInt8Color.rgbName(0x0, 0x42, 0x6a, 'pq-2188c'), + RgbInt8Color.rgbName(0x1, 0x42, 0x6a, 'pq-7694c'), + RgbInt8Color.rgbName(0x33, 0x3d, 0x79, 'pq-3584c'), + RgbInt8Color.rgbName(0x26, 0x43, 0x7b, 'pq-8784c'), + RgbInt8Color.rgbName(0x0, 0x53, 0x9c, 'princess blue'), + RgbInt8Color.rgbName(0x0, 0x58, 0x9b, 'skydiver'), + RgbInt8Color.rgbName(0x9, 0x57, 0xc3, 'pq-2132c'), + RgbInt8Color.rgbName(0x0, 0x57, 0xb8, 'pq-2935c'), + RgbInt8Color.rgbName(0x8, 0x58, 0x9d, 'victoria blue'), + RgbInt8Color.rgbName(0x0, 0x5a, 0x92, 'imperial blue'), + RgbInt8Color.rgbName(0x1c, 0x57, 0xa5, 'pq-2133c'), + RgbInt8Color.rgbName(0x0, 0x55, 0x8c, 'pq-7462c'), + RgbInt8Color.rgbName(0x0, 0x55, 0x87, 'pq-7692c'), + RgbInt8Color.rgbName(0x36, 0x5a, 0xbd, 'pq-2131c'), + RgbInt8Color.rgbName(0x3c, 0x53, 0x9a, 'pq-3590c'), + RgbInt8Color.rgbName(0x2c, 0x56, 0x97, 'pq-7685c'), + RgbInt8Color.rgbName(0x0, 0x48, 0x2b, 'pq-3537c'), + RgbInt8Color.rgbName(0x27, 0x4e, 0x83, 'pq-8185c'), + RgbInt8Color.rgbName(0x7, 0x62, 0xc8, 'pq-2387c'), + RgbInt8Color.rgbName(0x0, 0x5e, 0xb8, 'pq-300c'), + RgbInt8Color.rgbName(0x0, 0x61, 0xa3, 'directoire blue'), + RgbInt8Color.rgbName(0x0, 0x61, 0xa0, 'pq-2384c'), + RgbInt8Color.rgbName(0x0, 0x62, 0x9b, 'pq-3015c'), + RgbInt8Color.rgbName(0x0, 0x62, 0x98, 'pq-7691c'), + RgbInt8Color.rgbName(0xf, 0x5f, 0x9a, 'daphne'), + RgbInt8Color.rgbName(0x1f, 0x5d, 0xa0, 'strong blue'), + RgbInt8Color.rgbName(0x44, 0x60, 0xa2, 'pq-10255c'), + RgbInt8Color.rgbName(0x27, 0x5e, 0xa3, 'pq-10261c'), + RgbInt8Color.rgbName(0x49, 0x60, 0xa8, 'amparo blue'), + RgbInt8Color.rgbName(0x2d, 0x62, 0xa3, 'nebulas blue'), + RgbInt8Color.rgbName(0x48, 0x5c, 0xc7, 'pq-2726c'), + RgbInt8Color.rgbName(0x24, 0x60, 0xa7, 'pq-3506c'), + RgbInt8Color.rgbName(0x3a, 0x5d, 0xae, 'pq-7455c'), + RgbInt8Color.rgbName(0x3b, 0x64, 0xa1, 'pq-8183c'), + RgbInt8Color.rgbName(0x1d, 0x3c, 0x34, 'pq-560c'), + RgbInt8Color.rgbName(0x12, 0x39, 0x55, 'poseidon'), + RgbInt8Color.rgbName(0xf, 0x3b, 0x57, 'blue opal'), + RgbInt8Color.rgbName(0x1b, 0x36, 0x5d, 'pq-534c'), + RgbInt8Color.rgbName(0x19, 0x51, 0x90, 'turkish sea'), + RgbInt8Color.rgbName(0x0, 0x67, 0xb9, 'pq-2144c'), + RgbInt8Color.rgbName(0x0, 0x6a, 0xc6, 'pq-2175c'), + RgbInt8Color.rgbName(0x0, 0x69, 0xb1, 'pq-2196c'), + RgbInt8Color.rgbName(0x0, 0x6c, 0xb0, 'pq-3553c'), + RgbInt8Color.rgbName(0x0, 0x6c, 0xaa, 'pq-10273c'), + RgbInt8Color.rgbName(0x0, 0x6c, 0xa9, 'indigo bunting'), + RgbInt8Color.rgbName(0x0, 0x6b, 0xa6, 'pq-307c'), + RgbInt8Color.rgbName(0x0, 0x67, 0xa0, 'pq-641c'), + RgbInt8Color.rgbName(0x2d, 0x68, 0xc4, 'pq-2386c'), + RgbInt8Color.rgbName(0x34, 0x6c, 0xb0, 'palace blue'), + RgbInt8Color.rgbName(0x3, 0x5f, 0x1d, 'pq-2427c'), + RgbInt8Color.rgbName(0x12, 0x40, 0x3c, 'botanical garden'), + RgbInt8Color.rgbName(0x17, 0x3f, 0x35, 'pq-567c'), + RgbInt8Color.rgbName(0x15, 0x46, 0x3e, 'rain forest'), + RgbInt8Color.rgbName(0x15, 0x44, 0x68, 'pq-8483c'), + RgbInt8Color.rgbName(0x1e, 0x44, 0x77, 'true blue'), + RgbInt8Color.rgbName(0x0, 0x76, 0xce, 'pq-2174c'), + RgbInt8Color.rgbName(0x0, 0x76, 0xcf, 'pq-2195c'), + RgbInt8Color.rgbName(0x0, 0x72, 0xce, 'pq-285c'), + RgbInt8Color.rgbName(0x0, 0x77, 0xc8, 'pq-3005c'), + RgbInt8Color.rgbName(0x0, 0x72, 0xb5, 'french blue'), + RgbInt8Color.rgbName(0x0, 0x75, 0xb3, 'brilliant blue'), + RgbInt8Color.rgbName(0x0, 0x77, 0xb3, 'blue aster'), + RgbInt8Color.rgbName(0x0, 0x75, 0xaf, 'cloisonné'), + RgbInt8Color.rgbName(0xe, 0x76, 0xaa, 'pq-10272c'), + RgbInt8Color.rgbName(0x21, 0x36, 0x31, 'pine grove'), + RgbInt8Color.rgbName(0x15, 0x47, 0x34, 'pq-3435c'), + RgbInt8Color.rgbName(0x18, 0x4a, 0x45, 'forest biome'), + RgbInt8Color.rgbName(0x0, 0x4c, 0x45, 'pq-3302c'), + RgbInt8Color.rgbName(0x0, 0x4e, 0x42, 'pq-3305c'), + RgbInt8Color.rgbName(0x0, 0x48, 0x51, 'pq-316c'), + RgbInt8Color.rgbName(0x0, 0x4f, 0x59, 'pq-3165c'), + RgbInt8Color.rgbName(0x7, 0x4f, 0x71, 'pq-2210c'), + RgbInt8Color.rgbName(0x0, 0x4f, 0x71, 'pq-3025c'), + RgbInt8Color.rgbName(0x14, 0x7b, 0xd1, 'pq-2172c'), + RgbInt8Color.rgbName(0x0, 0x7c, 0xb7, 'ibiza blue'), + RgbInt8Color.rgbName(0x0, 0x7b, 0xb2, 'diva blue'), + RgbInt8Color.rgbName(0x0, 0x82, 0xba, 'pq-640c'), + RgbInt8Color.rgbName(0x0, 0x7d, 0xba, 'pq-7461c'), + RgbInt8Color.rgbName(0x2e, 0x3d, 0x30, 'mountain view'), + RgbInt8Color.rgbName(0x2, 0x72, 0x23, 'pq-2259c'), + RgbInt8Color.rgbName(0x0, 0x57, 0x3f, 'pq-7484c'), + RgbInt8Color.rgbName(0x11, 0x57, 0x40, 'pq-343c'), + RgbInt8Color.rgbName(0x0, 0x58, 0x44, 'pq-7729c'), + RgbInt8Color.rgbName(0x0, 0x53, 0x4c, 'pq-330c'), + RgbInt8Color.rgbName(0x0, 0x59, 0x4c, 'pq-561c'), + RgbInt8Color.rgbName(0x0, 0x51, 0x51, 'pq-7722c'), + RgbInt8Color.rgbName(0x3, 0x54, 0x53, 'storm'), + RgbInt8Color.rgbName(0x0, 0x59, 0x4f, 'pq-3292c'), + RgbInt8Color.rgbName(0x0, 0x58, 0x5e, 'shaded spruce'), + RgbInt8Color.rgbName(0x0, 0x52, 0x65, 'deep lagoon'), + RgbInt8Color.rgbName(0x0, 0x54, 0x6c, 'pq-8763c'), + RgbInt8Color.rgbName(0x0, 0x58, 0x71, 'lyons blue'), + RgbInt8Color.rgbName(0x0, 0x5a, 0x70, 'pq-7470c'), + RgbInt8Color.rgbName(0x0, 0x57, 0x76, 'pq-7701c'), + RgbInt8Color.rgbName(0x0, 0x56, 0x70, 'pq-7708c'), + RgbInt8Color.rgbName(0x0, 0x57, 0x80, 'mykonos blue'), + RgbInt8Color.rgbName(0x0, 0x56, 0x7e, 'pq-2153c'), + RgbInt8Color.rgbName(0x0, 0x58, 0x7c, 'pq-308c'), + RgbInt8Color.rgbName(0x9, 0x57, 0x7b, 'blue sapphire'), + RgbInt8Color.rgbName(0x15, 0x51, 0x87, 'baleine blue'), + RgbInt8Color.rgbName(0x27, 0x74, 0xae, 'pq-2383c'), + RgbInt8Color.rgbName(0x0, 0x84, 0xd5, 'pq-2173c'), + RgbInt8Color.rgbName(0x0, 0x84, 0xd4, 'pq-2184c'), + RgbInt8Color.rgbName(0x0, 0x86, 0xd6, 'pq-2194c'), + RgbInt8Color.rgbName(0x0, 0x8a, 0xd8, 'pq-2382c'), + RgbInt8Color.rgbName(0x0, 0x8b, 0xce, 'pq-2394c'), + RgbInt8Color.rgbName(0x0, 0x85, 0xca, 'pq-processbluec'), + RgbInt8Color.rgbName(0x0, 0x8b, 0xcd, 'pq-3538c'), + RgbInt8Color.rgbName(0x4, 0x6a, 0x38, 'pq-349c'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x38, 'pq-3500c'), + RgbInt8Color.rgbName(0x21, 0x57, 0x32, 'pq-357c'), + RgbInt8Color.rgbName(0x28, 0x47, 0x34, 'pq-553c'), + RgbInt8Color.rgbName(0x0, 0x63, 0x41, 'pq-3425c'), + RgbInt8Color.rgbName(0x18, 0x45, 0x4b, 'deep teal'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x56, 'alpine green'), + RgbInt8Color.rgbName(0xd, 0x52, 0x57, 'pq-7476c'), + RgbInt8Color.rgbName(0x0, 0x5b, 0x5d, 'everglade'), + RgbInt8Color.rgbName(0x17, 0x4a, 0x5b, 'pq-2182c'), + RgbInt8Color.rgbName(0x0, 0x63, 0x5b, 'pq-7720c'), + RgbInt8Color.rgbName(0x0, 0x5e, 0x5d, 'pq-7721c'), + RgbInt8Color.rgbName(0xb, 0x53, 0x69, 'ink blue'), + RgbInt8Color.rgbName(0xf, 0x4e, 0x67, 'moroccan blue'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x61, 'pq-323c'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x68, 'pq-8761c'), + RgbInt8Color.rgbName(0x0, 0x5e, 0x7d, 'seaport'), + RgbInt8Color.rgbName(0x0, 0x61, 0x75, 'ocean depths'), + RgbInt8Color.rgbName(0x0, 0x63, 0x80, 'celestial'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x83, 'pq-634c'), + RgbInt8Color.rgbName(0x0, 0x5f, 0x86, 'pq-7469c'), + RgbInt8Color.rgbName(0x0, 0x61, 0x7f, 'pq-7707c'), + RgbInt8Color.rgbName(0x0, 0x7e, 0xb1, 'swedish blue'), + RgbInt8Color.rgbName(0x30, 0x7f, 0xe2, 'pq-2727c'), + RgbInt8Color.rgbName(0x0, 0x91, 0xda, 'pq-2192c'), + RgbInt8Color.rgbName(0x0, 0x90, 0xda, 'pq-2193c'), + RgbInt8Color.rgbName(0x26, 0x4e, 0x36, 'eden'), + RgbInt8Color.rgbName(0x0, 0x85, 0x22, 'pq-2258c'), + RgbInt8Color.rgbName(0x33, 0x55, 0x25, 'pq-2266c'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x15, 'pq-2426c'), + RgbInt8Color.rgbName(0x2c, 0x52, 0x34, 'pq-350c'), + RgbInt8Color.rgbName(0x0, 0x83, 0x30, 'pq-3522c'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x33, 'pq-356c'), + RgbInt8Color.rgbName(0x0, 0x68, 0x45, 'pq-7728c'), + RgbInt8Color.rgbName(0x1d, 0x6e, 0x2f, 'pq-2465c'), + RgbInt8Color.rgbName(0x11, 0x57, 0x4a, 'evergreen'), + RgbInt8Color.rgbName(0x0, 0x67, 0x47, 'pq-342c'), + RgbInt8Color.rgbName(0x0, 0x66, 0x4f, 'pq-336c'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x54, 'ultramarine green'), + RgbInt8Color.rgbName(0x0, 0x6e, 0x51, 'lush meadow'), + RgbInt8Color.rgbName(0x0, 0x6a, 0x52, 'pq-3298c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x5b, 'cadmium green'), + RgbInt8Color.rgbName(0x0, 0x63, 0x61, 'teal green'), + RgbInt8Color.rgbName(0x0, 0x68, 0x5e, 'pq-329c'), + RgbInt8Color.rgbName(0x0, 0x68, 0x65, 'quetzal green'), + RgbInt8Color.rgbName(0x0, 0x62, 0x69, 'pq-7715c'), + RgbInt8Color.rgbName(0x0, 0x65, 0x6e, 'harbor blue'), + RgbInt8Color.rgbName(0x0, 0x65, 0x6b, 'deep lake'), + RgbInt8Color.rgbName(0x0, 0x62, 0x72, 'pq-3155c'), + RgbInt8Color.rgbName(0x0, 0x63, 0x7c, 'crystal teal'), + RgbInt8Color.rgbName(0x6, 0x5f, 0x7c, 'pq-8764c'), + RgbInt8Color.rgbName(0x0, 0x67, 0x7f, 'pq-315c'), + RgbInt8Color.rgbName(0x0, 0x69, 0x8b, 'turkish tile'), + RgbInt8Color.rgbName(0x0, 0x6a, 0x8e, 'pq-7706c'), + RgbInt8Color.rgbName(0x0, 0x84, 0xbd, 'blithe'), + RgbInt8Color.rgbName(0x0, 0x86, 0xbf, 'pq-7460c'), + RgbInt8Color.rgbName(0x0, 0x8c, 0xc1, 'malibu blue'), + RgbInt8Color.rgbName(0x25, 0x72, 0x26, 'pq-2273c'), + RgbInt8Color.rgbName(0x27, 0x5d, 0x38, 'pq-7483c'), + RgbInt8Color.rgbName(0x0, 0x6f, 0x44, 'pq-7727c'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x3e, 'pq-7732c'), + RgbInt8Color.rgbName(0x0, 0x70, 0x41, 'pq-7733c'), + RgbInt8Color.rgbName(0x0, 0x78, 0x44, 'jolly green'), + RgbInt8Color.rgbName(0x0, 0x6e, 0x5b, 'shady glade'), + RgbInt8Color.rgbName(0x0, 0x6c, 0x5b, 'pq-568c'), + RgbInt8Color.rgbName(0x0, 0x6f, 0x62, 'pq-562c'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x68, 'pq-7719c'), + RgbInt8Color.rgbName(0x0, 0x6a, 0x67, 'pq-8743c'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x70, 'fanfare'), + RgbInt8Color.rgbName(0x0, 0x69, 0x75, 'pq-2238c'), + RgbInt8Color.rgbName(0x0, 0x6b, 0x7e, 'tahitian tide'), + RgbInt8Color.rgbName(0x0, 0x69, 0x80, 'pq-2224c'), + RgbInt8Color.rgbName(0x0, 0x73, 0x96, 'pq-633c'), + RgbInt8Color.rgbName(0x0, 0x73, 0x98, 'pq-7468c'), + RgbInt8Color.rgbName(0x0, 0x70, 0x96, 'pq-7705c'), + RgbInt8Color.rgbName(0x0, 0x74, 0xa8, 'methyl blue'), + RgbInt8Color.rgbName(0x0, 0x76, 0xa8, 'pq-7690c'), + RgbInt8Color.rgbName(0x0, 0x92, 0xcb, 'pq-2393c'), + RgbInt8Color.rgbName(0x0, 0x95, 0xc8, 'pq-639c'), + RgbInt8Color.rgbName(0x0, 0x9a, 0x17, 'pq-2272c'), + RgbInt8Color.rgbName(0x27, 0x9f, 0x0, 'pq-2424c'), + RgbInt8Color.rgbName(0x0, 0x96, 0x39, 'pq-355c'), + RgbInt8Color.rgbName(0x0, 0x84, 0x3d, 'pq-348c'), + RgbInt8Color.rgbName(0x0, 0x7b, 0x3e, 'pq-3536c'), + RgbInt8Color.rgbName(0x0, 0x77, 0x49, 'pq-3415c'), + RgbInt8Color.rgbName(0x12, 0x67, 0x4a, 'verdant green'), + RgbInt8Color.rgbName(0x0, 0x7b, 0x4b, 'pq-7726c'), + RgbInt8Color.rgbName(0x0, 0x75, 0x58, 'bosphorus'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x53, 'pq-341c'), + RgbInt8Color.rgbName(0x0, 0x73, 0x67, 'pq-328c'), + RgbInt8Color.rgbName(0x0, 0x78, 0x64, 'pq-3295c'), + RgbInt8Color.rgbName(0x0, 0x73, 0x6c, 'parasailing'), + RgbInt8Color.rgbName(0x0, 0x73, 0x77, 'pq-322c'), + RgbInt8Color.rgbName(0x0, 0x6d, 0x7e, 'pq-8225c'), + RgbInt8Color.rgbName(0x0, 0x72, 0x76, 'pq-8744c'), + RgbInt8Color.rgbName(0x0, 0x76, 0x81, 'pq-7474c'), + RgbInt8Color.rgbName(0x0, 0x76, 0x80, 'pq-7714c'), + RgbInt8Color.rgbName(0x0, 0x72, 0x90, 'fjord blue'), + RgbInt8Color.rgbName(0x0, 0x75, 0x8f, 'mosaic blue'), + RgbInt8Color.rgbName(0x0, 0x78, 0x8d, 'pq-2223c'), + RgbInt8Color.rgbName(0x0, 0x77, 0x8b, 'pq-3145c'), + RgbInt8Color.rgbName(0x0, 0x77, 0x8e, 'pq-8224c'), + RgbInt8Color.rgbName(0x0, 0x76, 0xa5, 'pq-2185c'), + RgbInt8Color.rgbName(0x0, 0x7b, 0xaa, 'blue jewel'), + RgbInt8Color.rgbName(0x0, 0x78, 0xa7, 'hawaiian surf'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xde, 'pq-2925c'), + RgbInt8Color.rgbName(0x0, 0xa8, 0x2d, 'pq-2422c'), + RgbInt8Color.rgbName(0x0, 0xaa, 0x13, 'pq-2423c'), + RgbInt8Color.rgbName(0x0, 0x87, 0x3e, 'pq-2418c'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x45, 'fern green'), + RgbInt8Color.rgbName(0x0, 0x7c, 0x58, 'pq-2419c'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x60, 'pepper green'), + RgbInt8Color.rgbName(0x0, 0x7b, 0x5f, 'pq-335c'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x69, 'greenlake'), + RgbInt8Color.rgbName(0xa, 0x6f, 0x69, 'tidepool'), + RgbInt8Color.rgbName(0x0, 0x82, 0x64, 'pq-3288c'), + RgbInt8Color.rgbName(0x0, 0x81, 0x6d, 'pq-569c'), + RgbInt8Color.rgbName(0x0, 0x76, 0x72, 'pq-7718c'), + RgbInt8Color.rgbName(0x0, 0x7f, 0x7c, 'teal blue'), + RgbInt8Color.rgbName(0x0, 0x7c, 0x7a, 'blue grass'), + RgbInt8Color.rgbName(0x0, 0x79, 0x7c, 'pq-3557c'), + RgbInt8Color.rgbName(0x0, 0x79, 0x89, 'pq-10285c'), + RgbInt8Color.rgbName(0x9, 0x78, 0x81, 'pq-8745c'), + RgbInt8Color.rgbName(0x0, 0x7a, 0x8e, 'enamel blue'), + RgbInt8Color.rgbName(0x0, 0x7c, 0x91, 'pq-2231c'), + RgbInt8Color.rgbName(0x0, 0x7d, 0x8a, 'pq-7713c'), + RgbInt8Color.rgbName(0x0, 0x81, 0x9d, 'caribbean sea'), + RgbInt8Color.rgbName(0x0, 0x7f, 0xa3, 'pq-314c'), + RgbInt8Color.rgbName(0x7, 0x7c, 0xab, 'pq-2390c'), + RgbInt8Color.rgbName(0x0, 0x81, 0xa6, 'pq-2391c'), + RgbInt8Color.rgbName(0x0, 0x83, 0xb1, 'pq-10279c'), + RgbInt8Color.rgbName(0x0, 0x86, 0xbb, 'dresden blue'), + RgbInt8Color.rgbName(0x0, 0xa3, 0xe1, 'pq-2191c'), + RgbInt8Color.rgbName(0x0, 0xa3, 0xe0, 'pq-299c'), + RgbInt8Color.rgbName(0x0, 0xa5, 0xdf, 'pq-2202c'), + RgbInt8Color.rgbName(0x1c, 0xa4, 0x21, 'pq-3529c'), + RgbInt8Color.rgbName(0x0, 0x86, 0x58, 'jelly bean'), + RgbInt8Color.rgbName(0x0, 0x86, 0x55, 'pq-2245c'), + RgbInt8Color.rgbName(0x0, 0x87, 0x55, 'pq-7725c'), + RgbInt8Color.rgbName(0x0, 0x84, 0x6b, 'viridis'), + RgbInt8Color.rgbName(0x0, 0x87, 0x63, 'golf green'), + RgbInt8Color.rgbName(0x0, 0x86, 0x75, 'pq-327c'), + RgbInt8Color.rgbName(0x0, 0x83, 0x81, 'deep peacock blue'), + RgbInt8Color.rgbName(0x0, 0x87, 0x78, 'alhambra'), + RgbInt8Color.rgbName(0x0, 0x89, 0x7b, 'pq-2403c'), + RgbInt8Color.rgbName(0x0, 0x85, 0x78, 'pq-3282c'), + RgbInt8Color.rgbName(0x0, 0x85, 0x7d, 'pq-7717c'), + RgbInt8Color.rgbName(0x0, 0x85, 0x83, 'navigate'), + RgbInt8Color.rgbName(0x0, 0x86, 0x84, 'lapis'), + RgbInt8Color.rgbName(0x9, 0x79, 0x88, 'biscay bay'), + RgbInt8Color.rgbName(0x0, 0x87, 0x86, 'tropical green'), + RgbInt8Color.rgbName(0x0, 0x84, 0x91, 'tile blue'), + RgbInt8Color.rgbName(0x0, 0x85, 0x9c, 'algiers blue'), + RgbInt8Color.rgbName(0x0, 0x84, 0x9f, 'caneel bay'), + RgbInt8Color.rgbName(0x0, 0x87, 0x99, 'capri breeze'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x96, 'lake blue'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x95, 'pq-321c'), + RgbInt8Color.rgbName(0x0, 0x85, 0x9b, 'pq-7712c'), + RgbInt8Color.rgbName(0x0, 0x84, 0xa1, 'barrier reef'), + RgbInt8Color.rgbName(0x0, 0x87, 0xae, 'pq-2203c'), + RgbInt8Color.rgbName(0x0, 0x85, 0xad, 'pq-7704c'), + RgbInt8Color.rgbName(0x0, 0x88, 0xb0, 'vivid blue'), + RgbInt8Color.rgbName(0x0, 0x87, 0xb6, 'blue danube'), + RgbInt8Color.rgbName(0x0, 0xbb, 0x31, 'pq-2271c'), + RgbInt8Color.rgbName(0x31, 0xb7, 0x0, 'pq-2421c'), + RgbInt8Color.rgbName(0x0, 0x9a, 0x44, 'pq-347c'), + RgbInt8Color.rgbName(0x0, 0x8c, 0x69, 'parakeet'), + RgbInt8Color.rgbName(0x0, 0x96, 0x5e, 'pq-340c'), + RgbInt8Color.rgbName(0x0, 0x8e, 0x80, 'dynasty green'), + RgbInt8Color.rgbName(0x0, 0x92, 0x76, 'deep green'), + RgbInt8Color.rgbName(0x0, 0x92, 0x88, 'columbia'), + RgbInt8Color.rgbName(0x5, 0x86, 0x8e, 'pq-2237c'), + RgbInt8Color.rgbName(0x0, 0x91, 0x96, 'pq-10291c'), + RgbInt8Color.rgbName(0x0, 0x8c, 0xa0, 'pq-2230c'), + RgbInt8Color.rgbName(0x0, 0x91, 0x9d, 'pq-3541c'), + RgbInt8Color.rgbName(0x0, 0x88, 0xaf, 'pq-10278c'), + RgbInt8Color.rgbName(0x0, 0x8e, 0xaa, 'pq-3135c'), + RgbInt8Color.rgbName(0x0, 0x8d, 0xb9, 'hawaiian ocean'), + RgbInt8Color.rgbName(0x0, 0x92, 0xbd, 'pq-2183c'), + RgbInt8Color.rgbName(0x0, 0x92, 0xbc, 'pq-313c'), + RgbInt8Color.rgbName(0x0, 0x9a, 0xce, 'pq-801c'), + RgbInt8Color.rgbName(0x0, 0xa9, 0xe0, 'pq-2995c'), + RgbInt8Color.rgbName(0x0, 0xa7, 0x4a, 'pq-2252c'), + RgbInt8Color.rgbName(0x0, 0x9f, 0x4d, 'pq-7482c'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x5c, 'bright green'), + RgbInt8Color.rgbName(0x0, 0x96, 0x6c, 'pq-7724c'), + RgbInt8Color.rgbName(0x0, 0x94, 0x73, 'emerald'), + RgbInt8Color.rgbName(0x0, 0xa1, 0x70, 'mint'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x75, 'simply green'), + RgbInt8Color.rgbName(0x0, 0x9e, 0x6d, 'deep mint'), + RgbInt8Color.rgbName(0x0, 0x95, 0x7a, 'pq-2243c'), + RgbInt8Color.rgbName(0x0, 0x97, 0x75, 'pq-334c'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x77, 'pq-3278c'), + RgbInt8Color.rgbName(0x0, 0x96, 0x81, 'pq-3285c'), + RgbInt8Color.rgbName(0x0, 0x9e, 0x82, 'vivid green'), + RgbInt8Color.rgbName(0x0, 0x9b, 0x8c, 'spectra green'), + RgbInt8Color.rgbName(0x0, 0x96, 0x8f, 'pq-7716c'), + RgbInt8Color.rgbName(0x0, 0x94, 0x9a, 'pq-10290c'), + RgbInt8Color.rgbName(0x0, 0x94, 0x99, 'viridian green'), + RgbInt8Color.rgbName(0x0, 0x97, 0xa9, 'pq-7711c'), + RgbInt8Color.rgbName(0x0, 0x93, 0xb2, 'pq-632c'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xb6, 'pq-2229c'), + RgbInt8Color.rgbName(0x0, 0x99, 0xb2, 'pq-2396c'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xbd, 'pq-7703c'), + RgbInt8Color.rgbName(0x0, 0xaa, 0xda, 'pq-901c'), + RgbInt8Color.rgbName(0x0, 0xb1, 0x40, 'pq-354c'), + RgbInt8Color.rgbName(0x0, 0xad, 0x50, 'pq-2257c'), + RgbInt8Color.rgbName(0x0, 0xaf, 0x66, 'pq-3405c'), + RgbInt8Color.rgbName(0x0, 0xa3, 0x76, 'pq-2242c'), + RgbInt8Color.rgbName(0x0, 0xad, 0x6f, 'pq-2251c'), + RgbInt8Color.rgbName(0x0, 0xa7, 0x76, 'blarney'), + RgbInt8Color.rgbName(0x0, 0x9e, 0x87, 'pq-10297c'), + RgbInt8Color.rgbName(0x0, 0x9d, 0x85, 'pq-2402c'), + RgbInt8Color.rgbName(0x0, 0xa0, 0x8d, 'pq-10296c'), + RgbInt8Color.rgbName(0x0, 0xa7, 0x8b, 'peacock green'), + RgbInt8Color.rgbName(0x0, 0xa2, 0x8a, 'arcadia'), + RgbInt8Color.rgbName(0x0, 0x9f, 0x92, 'pq-3560c'), + RgbInt8Color.rgbName(0x0, 0xa4, 0x99, 'pq-3272c'), + RgbInt8Color.rgbName(0x0, 0x9c, 0xa6, 'pq-320c'), + RgbInt8Color.rgbName(0x0, 0xa0, 0xb0, 'peacock blue'), + RgbInt8Color.rgbName(0x0, 0x9d, 0xae, 'bluebird'), + RgbInt8Color.rgbName(0x0, 0xaa, 0xa9, 'ceramic'), + RgbInt8Color.rgbName(0x0, 0xa3, 0xad, 'pq-7467c'), + RgbInt8Color.rgbName(0x0, 0x9e, 0xc0, 'pq-3551c'), + RgbInt8Color.rgbName(0x0, 0xa7, 0xb5, 'pq-7710c'), + RgbInt8Color.rgbName(0x0, 0xa5, 0xbd, 'pq-2228c'), + RgbInt8Color.rgbName(0x0, 0xa9, 0xce, 'pq-312c'), + RgbInt8Color.rgbName(0x0, 0xaf, 0xdb, 'pq-908c'), + RgbInt8Color.rgbName(0x0, 0xb1, 0xd2, 'blue atoll'), + RgbInt8Color.rgbName(0x0, 0xae, 0xd6, 'pq-2201c'), + RgbInt8Color.rgbName(0x0, 0xb5, 0xe2, 'pq-306c'), + RgbInt8Color.rgbName(0x0, 0xaf, 0xd7, 'pq-638c'), + RgbInt8Color.rgbName(0x44, 0xa7, 0x5, 'pq-3501c'), + RgbInt8Color.rgbName(0x0, 0xb7, 0x4f, 'pq-7481c'), + RgbInt8Color.rgbName(0x0, 0xb3, 0x73, 'pq-2250c'), + RgbInt8Color.rgbName(0x0, 0xb1, 0x76, 'pq-2416c'), + RgbInt8Color.rgbName(0xf, 0x9d, 0x76, 'holly green'), + RgbInt8Color.rgbName(0x0, 0xab, 0x84, 'pq-greenc'), + RgbInt8Color.rgbName(0x0, 0xaa, 0x92, 'billiard'), + RgbInt8Color.rgbName(0x0, 0xab, 0x8e, 'pq-3268c'), + RgbInt8Color.rgbName(0x0, 0xb3, 0x88, 'pq-339c'), + RgbInt8Color.rgbName(0x0, 0xb0, 0x97, 'pq-2400c'), + RgbInt8Color.rgbName(0x0, 0xb3, 0x98, 'pq-3275c'), + RgbInt8Color.rgbName(0x0, 0xaf, 0x9f, 'atlantis'), + RgbInt8Color.rgbName(0x0, 0xaf, 0x9d, 'pool green'), + RgbInt8Color.rgbName(0x0, 0xac, 0xa0, 'pq-2399c'), + RgbInt8Color.rgbName(0x0, 0xad, 0x9f, 'pq-3534c'), + RgbInt8Color.rgbName(0x0, 0xb2, 0xa9, 'pq-326c'), + RgbInt8Color.rgbName(0x0, 0xab, 0xc0, 'scuba blue'), + RgbInt8Color.rgbName(0x0, 0xb0, 0xb9, 'pq-7466c'), + RgbInt8Color.rgbName(0x4, 0xa9, 0xc7, 'pq-2200c'), + RgbInt8Color.rgbName(0x14, 0xa3, 0xc7, 'cyan blue'), + RgbInt8Color.rgbName(0x0, 0xae, 0xc7, 'pq-3125c'), + RgbInt8Color.rgbName(0x0, 0xbb, 0xdc, 'pq-2199c'), + RgbInt8Color.rgbName(0x0, 0xb8, 0xde, 'pq-3545c'), + RgbInt8Color.rgbName(0x0, 0xbc, 0xe3, 'pq-915c'), + RgbInt8Color.rgbName(0x39, 0xa8, 0x45, 'classic green'), + RgbInt8Color.rgbName(0x31, 0x9b, 0x42, 'pq-7739c'), + RgbInt8Color.rgbName(0x0, 0xc6, 0x5e, 'pq-2420c'), + RgbInt8Color.rgbName(0x0, 0xbf, 0x6f, 'pq-7480c'), + RgbInt8Color.rgbName(0x0, 0xbb, 0x7e, 'pq-2414c'), + RgbInt8Color.rgbName(0x0, 0xb6, 0x94, 'mint leaf'), + RgbInt8Color.rgbName(0x0, 0xb7, 0x96, 'pq-808c'), + RgbInt8Color.rgbName(0x0, 0xb8, 0x9f, 'aqua green'), + RgbInt8Color.rgbName(0x0, 0xc1, 0x9f, 'pq-2240c'), + RgbInt8Color.rgbName(0x0, 0xc0, 0xa3, 'pq-922c'), + RgbInt8Color.rgbName(0x0, 0xb7, 0xbd, 'pq-2397c'), + RgbInt8Color.rgbName(0x0, 0xba, 0xb3, 'pq-2398c'), + RgbInt8Color.rgbName(0x0, 0xbf, 0xb3, 'pq-3262c'), + RgbInt8Color.rgbName(0x0, 0xc1, 0xd5, 'pq-3115c'), + RgbInt8Color.rgbName(0x5, 0xc3, 0xde, 'pq-311c'), + RgbInt8Color.rgbName(0x43, 0xb0, 0x2a, 'pq-361c'), + RgbInt8Color.rgbName(0x3a, 0x91, 0x3f, 'pq-7740c'), + RgbInt8Color.rgbName(0x0, 0xc3, 0x89, 'pq-3395c'), + RgbInt8Color.rgbName(0x0, 0xc7, 0xb1, 'pq-3265c'), + RgbInt8Color.rgbName(0x0, 0xcf, 0xb4, 'pq-2239c'), + RgbInt8Color.rgbName(0x25, 0x8c, 0x4b, 'pq-10303c'), + RgbInt8Color.rgbName(0x2d, 0xc8, 0x4d, 'pq-2270c'), + RgbInt8Color.rgbName(0x22, 0x88, 0x48, 'pq-7731c'), + RgbInt8Color.rgbName(0x44, 0xd6, 0x2c, 'pq-802c'), + RgbInt8Color.rgbName(0x26, 0xd0, 0x7c, 'pq-7479c'), + RgbInt8Color.rgbName(0x3d, 0x95, 0x25, 'pq-3539c'), + RgbInt8Color.rgbName(0x33, 0x9c, 0x5e, 'kelly green'), + RgbInt8Color.rgbName(0x2b, 0xc9, 0xaf, 'pq-929c'), + RgbInt8Color.rgbName(0x2a, 0xd2, 0xc9, 'pq-3252c'), + RgbInt8Color.rgbName(0x2c, 0xd5, 0xc4, 'pq-3255c'), + RgbInt8Color.rgbName(0x2d, 0xcc, 0xd3, 'pq-319c'), + RgbInt8Color.rgbName(0x50, 0x9e, 0x2f, 'pq-362c'), + RgbInt8Color.rgbName(0x48, 0xa2, 0x3f, 'pq-7738c'), + RgbInt8Color.rgbName(0x2b, 0xae, 0x66, 'island green'), + RgbInt8Color.rgbName(0x3a, 0xa2, 0x78, 'ming green'), + RgbInt8Color.rgbName(0x3c, 0xdb, 0xc0, 'pq-333c'), + RgbInt8Color.rgbName(0x3c, 0xcb, 0xda, 'pq-2226c'), + RgbInt8Color.rgbName(0x32, 0xbe, 0xcc, 'blue curacao'), + RgbInt8Color.rgbName(0x38, 0xaf, 0xcd, 'river blue'), + RgbInt8Color.rgbName(0x3c, 0xad, 0xd4, 'aquarius'), + RgbInt8Color.rgbName(0x4d, 0xb5, 0x60, 'poison green'), + RgbInt8Color.rgbName(0x34, 0xb7, 0x8f, 'pq-2413c'), + RgbInt8Color.rgbName(0x45, 0xbe, 0x76, 'irish green'), + RgbInt8Color.rgbName(0x4a, 0xc9, 0xe3, 'pq-2198c'), + RgbInt8Color.rgbName(0x3f, 0x20, 0x21, 'pq-4975c'), + RgbInt8Color.rgbName(0x28, 0x2b, 0x34, 'salute'), + RgbInt8Color.rgbName(0x27, 0x29, 0x3d, 'maritime blue'), + RgbInt8Color.rgbName(0x1f, 0x2a, 0x44, 'pq-533c'), + RgbInt8Color.rgbName(0x3c, 0x10, 0x53, 'pq-2627c'), + RgbInt8Color.rgbName(0x3d, 0x3c, 0x7c, 'spectrum blue'), + RgbInt8Color.rgbName(0x44, 0x37, 0x7d, 'deep blue'), + RgbInt8Color.rgbName(0x59, 0x49, 0xa7, 'pq-2103c'), + RgbInt8Color.rgbName(0x35, 0x1f, 0x65, 'pq-2112c'), + RgbInt8Color.rgbName(0x3d, 0x42, 0x8b, 'royal blue'), + RgbInt8Color.rgbName(0x28, 0x2d, 0x3c, 'navy blazer'), + RgbInt8Color.rgbName(0x27, 0x2f, 0x38, 'carbon'), + RgbInt8Color.rgbName(0x26, 0x2b, 0x37, 'dark sapphire'), + RgbInt8Color.rgbName(0x26, 0x30, 0x56, 'blue depths'), + RgbInt8Color.rgbName(0x28, 0x32, 0x66, 'pq-3581c'), + RgbInt8Color.rgbName(0x54, 0x61, 0xc8, 'pq-2125c'), + RgbInt8Color.rgbName(0x25, 0x36, 0x68, 'sodalite blue'), + RgbInt8Color.rgbName(0x22, 0x3a, 0x5e, 'navy peony'), + RgbInt8Color.rgbName(0x23, 0x36, 0x58, 'estate blue'), + RgbInt8Color.rgbName(0x27, 0x43, 0x74, 'blue quartz'), + RgbInt8Color.rgbName(0x20, 0x3b, 0x3d, 'ponderosa pine'), + RgbInt8Color.rgbName(0x28, 0x33, 0x4a, 'pq-2380c'), + RgbInt8Color.rgbName(0x25, 0x37, 0x46, 'pq-7546c'), + RgbInt8Color.rgbName(0x20, 0x3e, 0x4a, 'reflecting pond'), + RgbInt8Color.rgbName(0x25, 0x44, 0x45, 'sea moss'), + RgbInt8Color.rgbName(0x1f, 0x49, 0x5b, 'legion blue'), + RgbInt8Color.rgbName(0x24, 0x3f, 0x6c, 'limoges'), + RgbInt8Color.rgbName(0x3d, 0x44, 0x1e, 'pq-5747c'), + RgbInt8Color.rgbName(0x26, 0x4a, 0x48, 'june bug'), + RgbInt8Color.rgbName(0x25, 0x4a, 0x5d, 'pq-2168c'), + RgbInt8Color.rgbName(0x24, 0x4c, 0x5a, 'pq-7477c'), + RgbInt8Color.rgbName(0x1b, 0x53, 0x66, 'blue coral'), + RgbInt8Color.rgbName(0x11, 0x5e, 0x67, 'pq-5473c'), + RgbInt8Color.rgbName(0x18, 0x57, 0x6c, 'corsair'), + RgbInt8Color.rgbName(0x40, 0x7e, 0xc9, 'pq-660c'), + RgbInt8Color.rgbName(0x20, 0x5c, 0x40, 'pq-554c'), + RgbInt8Color.rgbName(0x1f, 0x59, 0x5c, 'pacific'), + RgbInt8Color.rgbName(0x16, 0x5c, 0x7d, 'pq-7700c'), + RgbInt8Color.rgbName(0x1e, 0x53, 0x7d, 'pq-8484c'), + RgbInt8Color.rgbName(0x25, 0x6b, 0xa2, 'pq-2151c'), + RgbInt8Color.rgbName(0x3e, 0x87, 0xcb, 'pq-2143c'), + RgbInt8Color.rgbName(0x25, 0x59, 0x58, 'bayberry'), + RgbInt8Color.rgbName(0x1a, 0x65, 0x8f, 'pq-2152c'), + RgbInt8Color.rgbName(0x28, 0x61, 0x40, 'pq-7734c'), + RgbInt8Color.rgbName(0x18, 0x6e, 0x64, 'pq-8265c'), + RgbInt8Color.rgbName(0x1f, 0x66, 0x80, 'saxony blue'), + RgbInt8Color.rgbName(0x16, 0x68, 0x86, 'pq-2392c'), + RgbInt8Color.rgbName(0x1c, 0x67, 0x87, 'pq-8765c'), + RgbInt8Color.rgbName(0x14, 0x78, 0xa7, 'mediterranian blue'), + RgbInt8Color.rgbName(0x1f, 0x73, 0x49, 'amazon'), + RgbInt8Color.rgbName(0x22, 0x6c, 0x63, 'ivy'), + RgbInt8Color.rgbName(0x20, 0x70, 0x6f, 'bayou'), + RgbInt8Color.rgbName(0x15, 0x7e, 0xa0, 'bluejay'), + RgbInt8Color.rgbName(0x1b, 0x80, 0x6d, 'pq-2244c'), + RgbInt8Color.rgbName(0x10, 0x87, 0x80, 'porcelain green'), + RgbInt8Color.rgbName(0x1a, 0x7f, 0x8e, 'pagoda blue'), + RgbInt8Color.rgbName(0x20, 0x80, 0x5c, 'pq-8723c'), + RgbInt8Color.rgbName(0x1b, 0x81, 0x8f, 'pq-10284c'), + RgbInt8Color.rgbName(0x1d, 0x82, 0x96, 'pq-2222c'), + RgbInt8Color.rgbName(0x23, 0x82, 0xa1, 'pq-8223c'), + RgbInt8Color.rgbName(0x44, 0x88, 0x3c, 'online lime'), + RgbInt8Color.rgbName(0x14, 0x9c, 0x88, 'sea green'), + RgbInt8Color.rgbName(0x41, 0x80, 0x3c, 'pq-8703c'), + RgbInt8Color.rgbName(0x24, 0x9e, 0x6b, 'pq-2417c'), + RgbInt8Color.rgbName(0x41, 0x90, 0x3f, 'pq-10309c'), + RgbInt8Color.rgbName(0x44, 0x88, 0x3e, 'pq-7741c'), + RgbInt8Color.rgbName(0x41, 0xb6, 0xe6, 'pq-298c'), + RgbInt8Color.rgbName(0x55, 0x95, 0x1b, 'pq-2277c'), + RgbInt8Color.rgbName(0x44, 0xbb, 0xca, 'capri'), + RgbInt8Color.rgbName(0x55, 0xa8, 0x60, 'vibrant green'), + RgbInt8Color.rgbName(0x45, 0xb5, 0xaa, 'turquoise'), + RgbInt8Color.rgbName(0x40, 0xc1, 0xac, 'pq-7465c'), + RgbInt8Color.rgbName(0x56, 0xc2, 0x71, 'pq-2256c'), + RgbInt8Color.rgbName(0x59, 0xcb, 0xe8, 'pq-305c'), + RgbInt8Color.rgbName(0x2c, 0x2a, 0x33, 'deep well'), + RgbInt8Color.rgbName(0x2a, 0x2a, 0x35, 'night sky'), + RgbInt8Color.rgbName(0x2a, 0x29, 0x3e, 'evening blue'), + RgbInt8Color.rgbName(0x2c, 0x2d, 0x65, 'pq-2119c'), + RgbInt8Color.rgbName(0x47, 0xa, 0x68, 'pq-2617c'), + RgbInt8Color.rgbName(0x50, 0x7, 0x78, 'pq-2607c'), + RgbInt8Color.rgbName(0x47, 0x1d, 0x7c, 'pq-3583c'), + RgbInt8Color.rgbName(0x5c, 0x6, 0x8c, 'pq-2597c'), + RgbInt8Color.rgbName(0x62, 0x44, 0xbb, 'pq-2097c'), + RgbInt8Color.rgbName(0x5f, 0x25, 0x9f, 'pq-267c'), + RgbInt8Color.rgbName(0x4d, 0x44, 0x8a, 'liberty'), + RgbInt8Color.rgbName(0x4c, 0x41, 0x84, 'pq-7672c'), + RgbInt8Color.rgbName(0x2d, 0x2c, 0x2f, 'jet black'), + RgbInt8Color.rgbName(0x2b, 0x2c, 0x30, 'stretch limo'), + RgbInt8Color.rgbName(0x2f, 0x2d, 0x30, 'moonless night'), + RgbInt8Color.rgbName(0x2b, 0x2e, 0x43, 'peacoat'), + RgbInt8Color.rgbName(0x29, 0x30, 0x4e, 'medieval blue'), + RgbInt8Color.rgbName(0x2f, 0x2b, 0x4e, 'pq-3524c'), + RgbInt8Color.rgbName(0x60, 0x68, 0xb2, 'pq-2116c'), + RgbInt8Color.rgbName(0x34, 0x29, 0x2a, 'ganache'), + RgbInt8Color.rgbName(0x2b, 0x30, 0x42, 'black iris'), + RgbInt8Color.rgbName(0x2a, 0x32, 0x44, 'dress blues'), + RgbInt8Color.rgbName(0x2d, 0x33, 0x59, 'blueprint'), + RgbInt8Color.rgbName(0x2e, 0x2f, 0x36, 'dark navy'), + RgbInt8Color.rgbName(0x2d, 0x30, 0x36, 'vulcan'), + RgbInt8Color.rgbName(0x2c, 0x31, 0x3d, 'total eclipse'), + RgbInt8Color.rgbName(0x2c, 0x33, 0x3e, 'blueberry'), + RgbInt8Color.rgbName(0x2f, 0x30, 0x3a, 'pq-8603c'), + RgbInt8Color.rgbName(0x29, 0x3b, 0x4d, 'moonlit ocean'), + RgbInt8Color.rgbName(0x30, 0x4c, 0x86, 'pq-8785c'), + RgbInt8Color.rgbName(0x2e, 0x3c, 0x35, 'pq-8523c'), + RgbInt8Color.rgbName(0x30, 0x3d, 0x3c, 'darkest spruce'), + RgbInt8Color.rgbName(0x2b, 0x3d, 0x43, 'pq-8503c'), + RgbInt8Color.rgbName(0x2f, 0x3e, 0x55, 'insignia blue'), + RgbInt8Color.rgbName(0x2c, 0x40, 0x53, 'blue wing teal'), + RgbInt8Color.rgbName(0x27, 0x43, 0x57, 'majolica blue'), + RgbInt8Color.rgbName(0x31, 0x3d, 0x64, 'twilight blue'), + RgbInt8Color.rgbName(0x29, 0x57, 0x92, 'pq-8184c'), + RgbInt8Color.rgbName(0x3e, 0x48, 0x27, 'pq-5743c'), + RgbInt8Color.rgbName(0x32, 0x42, 0x41, 'green gables'), + RgbInt8Color.rgbName(0x27, 0x4e, 0x55, 'atlantic deep'), + RgbInt8Color.rgbName(0x29, 0x50, 0x4d, 'pq-2466c'), + RgbInt8Color.rgbName(0x29, 0x49, 0x5c, 'deep dive'), + RgbInt8Color.rgbName(0x2a, 0x4b, 0x7c, 'galaxy blue'), + RgbInt8Color.rgbName(0x48, 0x7a, 0xb7, 'regatta'), + RgbInt8Color.rgbName(0x31, 0x4f, 0x40, 'dark green'), + RgbInt8Color.rgbName(0x2e, 0x4d, 0x58, 'pq-2216c'), + RgbInt8Color.rgbName(0x2e, 0x4e, 0x5d, 'pq-8504c'), + RgbInt8Color.rgbName(0x2e, 0x56, 0x65, 'pq-2215c'), + RgbInt8Color.rgbName(0x29, 0x5b, 0x65, 'pq-8762c'), + RgbInt8Color.rgbName(0x2a, 0x5b, 0x6c, 'pq-2181c'), + RgbInt8Color.rgbName(0x31, 0x54, 0x70, 'pq-2377c'), + RgbInt8Color.rgbName(0x30, 0x55, 0x6f, 'pq-8482c'), + RgbInt8Color.rgbName(0x28, 0x57, 0x80, 'pq-2161c'), + RgbInt8Color.rgbName(0x29, 0x5d, 0x8a, 'pq-8485c'), + RgbInt8Color.rgbName(0x23, 0x61, 0x92, 'pq-647c'), + RgbInt8Color.rgbName(0x4f, 0x84, 0xc4, 'marina'), + RgbInt8Color.rgbName(0x28, 0x5c, 0x4d, 'pq-626c'), + RgbInt8Color.rgbName(0x32, 0x5b, 0x51, 'posy green'), + RgbInt8Color.rgbName(0x23, 0x62, 0x61, 'pq-8760c'), + RgbInt8Color.rgbName(0x2a, 0x5c, 0x6a, 'dragonfly'), + RgbInt8Color.rgbName(0x32, 0x72, 0xaf, 'campanula'), + RgbInt8Color.rgbName(0x4a, 0x6a, 0x1d, 'pq-2280c'), + RgbInt8Color.rgbName(0x29, 0x67, 0x5c, 'antique green'), + RgbInt8Color.rgbName(0x28, 0x72, 0x4f, 'pq-555c'), + RgbInt8Color.rgbName(0x2c, 0x68, 0x54, 'pq-8741c'), + RgbInt8Color.rgbName(0x29, 0x68, 0x5f, 'galapagos green'), + RgbInt8Color.rgbName(0x2d, 0x64, 0x71, 'colonial blue'), + RgbInt8Color.rgbName(0x26, 0x66, 0x91, 'deep water'), + RgbInt8Color.rgbName(0x30, 0x65, 0x8e, 'vallarta blue'), + RgbInt8Color.rgbName(0x2a, 0x6a, 0x8b, 'faience'), + RgbInt8Color.rgbName(0x32, 0x62, 0x95, 'pq-653c'), + RgbInt8Color.rgbName(0x2c, 0x6a, 0x5e, 'pq-8742c'), + RgbInt8Color.rgbName(0x2f, 0x6f, 0x7a, 'pq-2214c'), + RgbInt8Color.rgbName(0x27, 0x7d, 0xa1, 'pq-2454c'), + RgbInt8Color.rgbName(0x4e, 0x80, 0x1f, 'pq-2278c'), + RgbInt8Color.rgbName(0x4a, 0x77, 0x29, 'pq-364c'), + RgbInt8Color.rgbName(0x29, 0x79, 0x74, 'pq-8264c'), + RgbInt8Color.rgbName(0x2c, 0x7a, 0xa1, 'pq-8203c'), + RgbInt8Color.rgbName(0x2b, 0x88, 0x6d, 'pq-8724c'), + RgbInt8Color.rgbName(0x2b, 0x87, 0x99, 'pq-8243c'), + RgbInt8Color.rgbName(0x31, 0x83, 0xa0, 'navagio bay'), + RgbInt8Color.rgbName(0x21, 0x8e, 0xae, 'pq-10277c'), + RgbInt8Color.rgbName(0x4c, 0x8c, 0x2b, 'pq-363c'), + RgbInt8Color.rgbName(0x31, 0x8c, 0x76, 'pq-8725c'), + RgbInt8Color.rgbName(0x25, 0x94, 0x90, 'pq-2461c'), + RgbInt8Color.rgbName(0x2c, 0x91, 0x99, 'pq-2236c'), + RgbInt8Color.rgbName(0x2d, 0x8c, 0x9e, 'pq-2221c'), + RgbInt8Color.rgbName(0x28, 0x93, 0x9d, 'pq-2235c'), + RgbInt8Color.rgbName(0x29, 0x8f, 0xc2, 'pq-7689c'), + RgbInt8Color.rgbName(0x27, 0x99, 0x89, 'pq-7473c'), + RgbInt8Color.rgbName(0x2b, 0x99, 0x9e, 'pq-10289c'), + RgbInt8Color.rgbName(0x27, 0x9d, 0x9f, 'baltic'), + RgbInt8Color.rgbName(0x28, 0x9d, 0xbe, 'horizon blue'), + RgbInt8Color.rgbName(0x2e, 0xa7, 0x85, 'gumdrop green'), + RgbInt8Color.rgbName(0x30, 0x9b, 0x8a, 'pq-2456c'), + RgbInt8Color.rgbName(0x30, 0xa2, 0x99, 'bright aqua'), + RgbInt8Color.rgbName(0x5b, 0xc5, 0x0, 'pq-2287c'), + RgbInt8Color.rgbName(0x64, 0xa7, 0xb, 'pq-369c'), + RgbInt8Color.rgbName(0x4e, 0xc3, 0xe0, 'pq-637c'), + RgbInt8Color.rgbName(0x48, 0xd5, 0x97, 'pq-2412c'), + RgbInt8Color.rgbName(0x47, 0xd7, 0xac, 'pq-3385c'), + RgbInt8Color.rgbName(0x49, 0xc5, 0xb1, 'pq-3258c'), + RgbInt8Color.rgbName(0x5f, 0xa4, 0x30, 'pq-10321c'), + RgbInt8Color.rgbName(0x4a, 0xbb, 0xd5, 'bachelor button'), + RgbInt8Color.rgbName(0x4b, 0xc3, 0xa8, 'electric green'), + RgbInt8Color.rgbName(0x59, 0x7, 0x76, 'pq-3515c'), + RgbInt8Color.rgbName(0x5a, 0x2d, 0x8a, 'pq-10219c'), + RgbInt8Color.rgbName(0x58, 0x2c, 0x83, 'pq-268c'), + RgbInt8Color.rgbName(0x66, 0x38, 0xb6, 'pq-2090c'), + RgbInt8Color.rgbName(0x6e, 0x3f, 0xa3, 'pq-2077c'), + RgbInt8Color.rgbName(0x65, 0x4e, 0xa3, 'pq-2096c'), + RgbInt8Color.rgbName(0x39, 0x28, 0x52, 'parachute purple'), + RgbInt8Color.rgbName(0x51, 0x46, 0x89, 'pq-7671c'), + RgbInt8Color.rgbName(0x54, 0x42, 0x88, 'pq-8165c'), + RgbInt8Color.rgbName(0x65, 0x58, 0xb1, 'pq-2102c'), + RgbInt8Color.rgbName(0x36, 0x30, 0x31, 'espresso'), + RgbInt8Color.rgbName(0x39, 0x2d, 0x2b, 'mole\''), + RgbInt8Color.rgbName(0x38, 0x2e, 0x2d, 'chocolate torte'), + RgbInt8Color.rgbName(0x3c, 0x2d, 0x2e, 'chocolate plum'), + RgbInt8Color.rgbName(0x38, 0x2f, 0x2d, 'pq-412c'), + RgbInt8Color.rgbName(0x38, 0x2e, 0x2c, 'pq-440c'), + RgbInt8Color.rgbName(0x36, 0x31, 0x51, 'astral aura'), + RgbInt8Color.rgbName(0x68, 0x5b, 0xc7, 'pq-2725c'), + RgbInt8Color.rgbName(0x36, 0x36, 0x2d, 'rosin'), + RgbInt8Color.rgbName(0x36, 0x34, 0x32, 'pq-10399c'), + RgbInt8Color.rgbName(0x32, 0x31, 0x37, 'blue graphite'), + RgbInt8Color.rgbName(0x2f, 0x34, 0x41, 'outer space'), + RgbInt8Color.rgbName(0x32, 0x34, 0x41, 'parisian night'), + RgbInt8Color.rgbName(0x34, 0x31, 0x48, 'eclipse'), + RgbInt8Color.rgbName(0x36, 0x37, 0x56, 'patriot blue'), + RgbInt8Color.rgbName(0x38, 0x48, 0x83, 'deep ultramarine'), + RgbInt8Color.rgbName(0x37, 0x3a, 0x36, 'pq-447c'), + RgbInt8Color.rgbName(0x36, 0x3b, 0x48, 'blue nights'), + RgbInt8Color.rgbName(0x33, 0x3f, 0x48, 'pq-432c'), + RgbInt8Color.rgbName(0x33, 0x3a, 0x49, 'pq-8604c'), + RgbInt8Color.rgbName(0x35, 0x3a, 0x4c, 'mood indigo'), + RgbInt8Color.rgbName(0x34, 0x41, 0x4e, 'midnight navy'), + RgbInt8Color.rgbName(0x35, 0x43, 0x5a, 'sargasso sea'), + RgbInt8Color.rgbName(0x55, 0x76, 0xd1, 'pq-2130c'), + RgbInt8Color.rgbName(0x3a, 0x40, 0x32, 'kombu green'), + RgbInt8Color.rgbName(0x39, 0x40, 0x34, 'duffel bag'), + RgbInt8Color.rgbName(0x35, 0x46, 0x3d, 'sycamore'), + RgbInt8Color.rgbName(0x33, 0x4d, 0x41, 'pineneedle'), + RgbInt8Color.rgbName(0x37, 0x41, 0x3a, 'deep forest'), + RgbInt8Color.rgbName(0x33, 0x49, 0x48, 'pq-8524c'), + RgbInt8Color.rgbName(0x35, 0x46, 0x5e, 'dark denim'), + RgbInt8Color.rgbName(0x3b, 0x45, 0x59, 'pq-2379c'), + RgbInt8Color.rgbName(0x38, 0x49, 0x67, 'pq-2378c'), + RgbInt8Color.rgbName(0x30, 0x56, 0x79, 'dark blue'), + RgbInt8Color.rgbName(0x36, 0x57, 0x3b, 'pq-7735c'), + RgbInt8Color.rgbName(0x37, 0x50, 0x3d, 'greener pastures'), + RgbInt8Color.rgbName(0x35, 0x50, 0x48, 'trekking green'), + RgbInt8Color.rgbName(0x33, 0x57, 0x49, 'hunter green'), + RgbInt8Color.rgbName(0x3c, 0x4e, 0x47, 'jungle green'), + RgbInt8Color.rgbName(0x38, 0x51, 0x53, 'pq-8525c'), + RgbInt8Color.rgbName(0x39, 0x50, 0x5c, 'stargazer'), + RgbInt8Color.rgbName(0x32, 0x57, 0x5d, 'mediterranea'), + RgbInt8Color.rgbName(0x33, 0x56, 0x5e, 'balsam'), + RgbInt8Color.rgbName(0x33, 0x59, 0x59, 'jasper'), + RgbInt8Color.rgbName(0x36, 0x56, 0x65, 'pq-8505c'), + RgbInt8Color.rgbName(0x3a, 0x53, 0x82, 'pq-2140c'), + RgbInt8Color.rgbName(0x39, 0x55, 0x42, 'pq-7736c'), + RgbInt8Color.rgbName(0x39, 0x55, 0x51, 'bistro green'), + RgbInt8Color.rgbName(0x34, 0x5a, 0x71, 'pq-10267c'), + RgbInt8Color.rgbName(0x32, 0x5b, 0x74, 'midnight'), + RgbInt8Color.rgbName(0x3a, 0x5c, 0x6e, 'mallard blue'), + RgbInt8Color.rgbName(0x38, 0x5d, 0x8d, 'bright cobalt'), + RgbInt8Color.rgbName(0x3a, 0x5d, 0x9e, 'pq-10247c'), + RgbInt8Color.rgbName(0x38, 0x5e, 0x9d, 'pq-7684c'), + RgbInt8Color.rgbName(0x41, 0x8f, 0xde, 'pq-279c'), + RgbInt8Color.rgbName(0x4e, 0x63, 0x2c, 'twist of lime'), + RgbInt8Color.rgbName(0x54, 0x62, 0x23, 'pq-371c'), + RgbInt8Color.rgbName(0x59, 0x62, 0x1d, 'pq-378c'), + RgbInt8Color.rgbName(0x31, 0x6c, 0x6b, 'north sea'), + RgbInt8Color.rgbName(0x35, 0x63, 0x7c, 'bluesteel'), + RgbInt8Color.rgbName(0x34, 0x65, 0x7f, 'pq-7699c'), + RgbInt8Color.rgbName(0x3a, 0x6a, 0xa6, 'pq-10260c'), + RgbInt8Color.rgbName(0x47, 0x6a, 0x30, 'treetop'), + RgbInt8Color.rgbName(0x3a, 0x72, 0x5f, 'fir'), + RgbInt8Color.rgbName(0x36, 0x71, 0x6f, 'deep jungle'), + RgbInt8Color.rgbName(0x33, 0x70, 0x79, 'pq-2213c'), + RgbInt8Color.rgbName(0x36, 0x6e, 0x82, 'pq-8205c'), + RgbInt8Color.rgbName(0x36, 0x74, 0x9d, 'pq-2150c'), + RgbInt8Color.rgbName(0x32, 0x7f, 0xaa, 'pq-10271c'), + RgbInt8Color.rgbName(0x3a, 0x74, 0x56, 'pq-8722c'), + RgbInt8Color.rgbName(0x3a, 0x79, 0x5e, 'pine green'), + RgbInt8Color.rgbName(0x36, 0x7a, 0x7b, 'pq-8245c'), + RgbInt8Color.rgbName(0x35, 0x80, 0x82, 'green-blue slate'), + RgbInt8Color.rgbName(0x3a, 0x76, 0x8e, 'pq-8204c'), + RgbInt8Color.rgbName(0x3c, 0x82, 0x4e, 'medium green'), + RgbInt8Color.rgbName(0x37, 0x86, 0x61, 'leprechaun'), + RgbInt8Color.rgbName(0x31, 0x84, 0x86, 'pq-8263c'), + RgbInt8Color.rgbName(0x3b, 0x80, 0x84, 'pq-8244c'), + RgbInt8Color.rgbName(0x36, 0x86, 0xa0, 'blue moon'), + RgbInt8Color.rgbName(0x37, 0x91, 0x90, 'latigo bay'), + RgbInt8Color.rgbName(0x3c, 0x89, 0x95, 'pq-10283c'), + RgbInt8Color.rgbName(0x48, 0x9f, 0xdf, 'pq-2171c'), + RgbInt8Color.rgbName(0x3b, 0xa2, 0x93, 'pq-10295c'), + RgbInt8Color.rgbName(0x34, 0xa7, 0x98, 'pq-2401c'), + RgbInt8Color.rgbName(0x3a, 0xb0, 0xa2, 'waterfall'), + RgbInt8Color.rgbName(0x52, 0xd2, 0xbc, 'pq-3533c'), + RgbInt8Color.rgbName(0x3e, 0xb1, 0xc8, 'pq-631c'), + RgbInt8Color.rgbName(0x58, 0xc9, 0xd4, 'blue radiance'), + RgbInt8Color.rgbName(0x55, 0xc6, 0xa9, 'biscay green'), + RgbInt8Color.rgbName(0x58, 0xc8, 0xb6, 'cockatoo'), + RgbInt8Color.rgbName(0x56, 0xb7, 0xe6, 'pq-2190c'), + RgbInt8Color.rgbName(0x6d, 0xa5, 0x41, 'pq-10320c'), + RgbInt8Color.rgbName(0x6c, 0xc2, 0x4a, 'pq-360c'), + RgbInt8Color.rgbName(0x6b, 0xa5, 0x39, 'pq-7737c'), + RgbInt8Color.rgbName(0x59, 0xbe, 0xc9, 'pq-2227c'), + RgbInt8Color.rgbName(0x56, 0xbe, 0xab, 'florida keys'), + RgbInt8Color.rgbName(0x5b, 0xc2, 0xe7, 'pq-2985c'), + RgbInt8Color.rgbName(0x3e, 0x28, 0x5c, 'violet indigo'), + RgbInt8Color.rgbName(0x49, 0x1d, 0x70, 'pq-3555c'), + RgbInt8Color.rgbName(0x75, 0x3b, 0xbd, 'pq-266c'), + RgbInt8Color.rgbName(0x70, 0x4d, 0x97, 'pq-10217c'), + RgbInt8Color.rgbName(0x72, 0x48, 0xbd, 'pq-2089c'), + RgbInt8Color.rgbName(0x46, 0x26, 0x39, 'potent purple'), + RgbInt8Color.rgbName(0x41, 0x27, 0x3b, 'pq-7449c'), + RgbInt8Color.rgbName(0x3b, 0x30, 0x2f, 'black coffee'), + RgbInt8Color.rgbName(0x3e, 0x2b, 0x2e, 'pq-black5c'), + RgbInt8Color.rgbName(0x3f, 0x2a, 0x47, 'blackberry cordial'), + RgbInt8Color.rgbName(0x46, 0x29, 0x5a, 'acai'), + RgbInt8Color.rgbName(0x3f, 0x2a, 0x56, 'pq-669c'), + RgbInt8Color.rgbName(0x46, 0x2b, 0x63, 'pq-8802c'), + RgbInt8Color.rgbName(0x45, 0x2b, 0x6f, 'pq-3566c'), + RgbInt8Color.rgbName(0x6a, 0x6d, 0xcd, 'pq-2366c'), + RgbInt8Color.rgbName(0x3a, 0x39, 0x5f, 'blue ribbon'), + RgbInt8Color.rgbName(0x3b, 0x3a, 0x36, 'peat'), + RgbInt8Color.rgbName(0x36, 0x38, 0x38, 'pirate black'), + RgbInt8Color.rgbName(0x39, 0x37, 0x3b, 'phantom'), + RgbInt8Color.rgbName(0x3b, 0x3b, 0x48, 'graphite'), + RgbInt8Color.rgbName(0x3a, 0x43, 0x5d, 'pq-8781c'), + RgbInt8Color.rgbName(0x40, 0x3a, 0x60, 'pq-5265c'), + RgbInt8Color.rgbName(0x3f, 0x3a, 0x60, 'pq-8780c'), + RgbInt8Color.rgbName(0x40, 0x3f, 0x6f, 'navy blue'), + RgbInt8Color.rgbName(0x44, 0x3f, 0x6f, 'deep wisteria'), + RgbInt8Color.rgbName(0x41, 0x48, 0x32, 'rifle green'), + RgbInt8Color.rgbName(0x3e, 0x49, 0x3e, 'pq-8522c'), + RgbInt8Color.rgbName(0x39, 0x43, 0x54, 'pq-8605c'), + RgbInt8Color.rgbName(0x40, 0x44, 0x66, 'deep cobalt'), + RgbInt8Color.rgbName(0x38, 0x4c, 0x67, 'ensign blue'), + RgbInt8Color.rgbName(0x55, 0x50, 0x25, 'pq-5815c'), + RgbInt8Color.rgbName(0x40, 0x34, 0x2b, 'demitasse'), + RgbInt8Color.rgbName(0x3f, 0x35, 0x2f, 'delicioso'), + RgbInt8Color.rgbName(0x43, 0x33, 0x31, 'java'), + RgbInt8Color.rgbName(0x3e, 0x33, 0x2e, 'pq-2479c'), + RgbInt8Color.rgbName(0x43, 0x3a, 0x32, 'pq-8623c'), + RgbInt8Color.rgbName(0x41, 0x4f, 0x3c, 'black forest'), + RgbInt8Color.rgbName(0x3e, 0x52, 0x4b, 'garden topiary'), + RgbInt8Color.rgbName(0x3e, 0x4f, 0x5c, 'orion blue'), + RgbInt8Color.rgbName(0x3f, 0x52, 0x77, 'true navy'), + RgbInt8Color.rgbName(0x42, 0x6d, 0xa9, 'pq-7683c'), + RgbInt8Color.rgbName(0x5c, 0x88, 0xda, 'pq-2718c'), + RgbInt8Color.rgbName(0x5d, 0x55, 0x1d, 'pq-2308c'), + RgbInt8Color.rgbName(0x44, 0x5a, 0x3e, 'pq-2410c'), + RgbInt8Color.rgbName(0x3e, 0x5d, 0x58, 'pq-5477c'), + RgbInt8Color.rgbName(0x3c, 0x58, 0x6b, 'indian teal'), + RgbInt8Color.rgbName(0x3b, 0x5f, 0x78, 'blue ashes'), + RgbInt8Color.rgbName(0x38, 0x61, 0x92, 'star sapphire'), + RgbInt8Color.rgbName(0x3d, 0x5e, 0x8c, 'delft'), + RgbInt8Color.rgbName(0x49, 0x5e, 0x35, 'garden green'), + RgbInt8Color.rgbName(0x46, 0x48, 0x3c, 'deep depths'), + RgbInt8Color.rgbName(0x44, 0x69, 0x3d, 'pq-7743c'), + RgbInt8Color.rgbName(0x3e, 0x62, 0x57, 'smoke pine'), + RgbInt8Color.rgbName(0x41, 0x65, 0x77, 'pq-8480c'), + RgbInt8Color.rgbName(0x43, 0x62, 0x8b, 'federal blue'), + RgbInt8Color.rgbName(0x3d, 0x72, 0x45, 'juniper'), + RgbInt8Color.rgbName(0x3e, 0x6f, 0x58, 'foliage green'), + RgbInt8Color.rgbName(0x3f, 0x6c, 0x7d, 'pq-2180c'), + RgbInt8Color.rgbName(0x4a, 0x77, 0x3c, 'pq-7742c'), + RgbInt8Color.rgbName(0x3c, 0x7d, 0x90, 'larkspur'), + RgbInt8Color.rgbName(0x41, 0x74, 0x8d, 'pq-7698c'), + RgbInt8Color.rgbName(0x3e, 0x7f, 0xa5, 'cendre blue'), + RgbInt8Color.rgbName(0x5f, 0x87, 0x24, 'pq-8683c'), + RgbInt8Color.rgbName(0x42, 0x7d, 0x6d, 'bottle green'), + RgbInt8Color.rgbName(0x46, 0x98, 0xcb, 'pq-7688c'), + RgbInt8Color.rgbName(0x42, 0x98, 0xb5, 'pq-7459c'), + RgbInt8Color.rgbName(0x44, 0x91, 0x58, 'pq-10302c'), + RgbInt8Color.rgbName(0x41, 0x97, 0x8d, 'pq-8283c'), + RgbInt8Color.rgbName(0x46, 0x94, 0xaf, 'pq-10276c'), + RgbInt8Color.rgbName(0x40, 0xa4, 0x8e, 'marine green'), + RgbInt8Color.rgbName(0x78, 0xaa, 0x0, 'pq-2294c'), + RgbInt8Color.rgbName(0x5e, 0x88, 0x32, 'pq-8684c'), + RgbInt8Color.rgbName(0x78, 0xbe, 0x20, 'pq-368c'), + RgbInt8Color.rgbName(0x60, 0xc9, 0xb3, 'bermuda'), + RgbInt8Color.rgbName(0x64, 0xcc, 0xc9, 'pq-325c'), + RgbInt8Color.rgbName(0x78, 0xd6, 0x4b, 'pq-7488c'), + RgbInt8Color.rgbName(0x74, 0xaa, 0x50, 'pq-7489c'), + RgbInt8Color.rgbName(0x60, 0xb8, 0x92, 'jade cream'), + RgbInt8Color.rgbName(0x62, 0xb5, 0xe5, 'pq-2915c'), + RgbInt8Color.rgbName(0x64, 0xbf, 0xa4, 'spearmint'), + RgbInt8Color.rgbName(0x68, 0xd2, 0xdf, 'pq-3105c'), + RgbInt8Color.rgbName(0x6a, 0xd1, 0xe3, 'pq-310c'), + RgbInt8Color.rgbName(0x74, 0xd1, 0xea, 'pq-blue0821c'), + RgbInt8Color.rgbName(0x47, 0x24, 0x26, 'pq-2449c'), + RgbInt8Color.rgbName(0x4f, 0x2c, 0x1d, 'pq-4625c'), + RgbInt8Color.rgbName(0x47, 0x24, 0x3b, 'winter bloom'), + RgbInt8Color.rgbName(0x43, 0x2c, 0x47, 'purple pennant'), + RgbInt8Color.rgbName(0x7f, 0x35, 0xb2, 'pq-2084c'), + RgbInt8Color.rgbName(0x82, 0x46, 0xaf, 'pq-2587c'), + RgbInt8Color.rgbName(0x80, 0x31, 0xa7, 'pq-527c'), + RgbInt8Color.rgbName(0x4d, 0x23, 0x3d, 'pickled beet'), + RgbInt8Color.rgbName(0x65, 0x3d, 0x91, 'pq-10218c'), + RgbInt8Color.rgbName(0x7d, 0x55, 0xc7, 'pq-2665c'), + RgbInt8Color.rgbName(0x40, 0x31, 0x2f, 'coffee bean'), + RgbInt8Color.rgbName(0x48, 0x2d, 0x54, 'crown jewel'), + RgbInt8Color.rgbName(0x4e, 0x29, 0x60, 'pq-8803c'), + RgbInt8Color.rgbName(0x82, 0x5d, 0xc7, 'pq-2088c'), + RgbInt8Color.rgbName(0x4e, 0x35, 0x24, 'pq-2322c'), + RgbInt8Color.rgbName(0x51, 0x52, 0x9c, 'pq-10242c'), + RgbInt8Color.rgbName(0x3a, 0x36, 0x3b, 'obsidian'), + RgbInt8Color.rgbName(0x43, 0x34, 0x55, 'grape'), + RgbInt8Color.rgbName(0x3c, 0x35, 0x35, 'after dark'), + RgbInt8Color.rgbName(0x3a, 0x35, 0x36, 'licorice'), + RgbInt8Color.rgbName(0x3d, 0x3a, 0x3e, 'pq-8602c'), + RgbInt8Color.rgbName(0x41, 0x35, 0x4d, 'purple velvet'), + RgbInt8Color.rgbName(0x47, 0x37, 0x29, 'pq-7533c'), + RgbInt8Color.rgbName(0x4b, 0x3d, 0x2a, 'pq-7554c'), + RgbInt8Color.rgbName(0x3d, 0x39, 0x35, 'pq-black7c'), + RgbInt8Color.rgbName(0x41, 0x3e, 0x3d, 'raven'), + RgbInt8Color.rgbName(0x3c, 0x3f, 0x4a, 'india ink'), + RgbInt8Color.rgbName(0x49, 0x3c, 0x62, 'mulberry purple'), + RgbInt8Color.rgbName(0x47, 0x45, 0x7a, 'orient blue'), + RgbInt8Color.rgbName(0x4a, 0x41, 0x2a, 'pq-448c'), + RgbInt8Color.rgbName(0x52, 0x47, 0x27, 'pq-449c'), + RgbInt8Color.rgbName(0x43, 0x42, 0x37, 'forest night'), + RgbInt8Color.rgbName(0x44, 0x41, 0x3c, 'black ink'), + RgbInt8Color.rgbName(0x3f, 0x44, 0x44, 'pq-446c'), + RgbInt8Color.rgbName(0x41, 0x47, 0x4b, 'pq-10393c'), + RgbInt8Color.rgbName(0x43, 0x44, 0x47, 'asphalt'), + RgbInt8Color.rgbName(0x43, 0x44, 0x52, 'odyssey gray'), + RgbInt8Color.rgbName(0x46, 0x4b, 0x65, 'crown blue'), + RgbInt8Color.rgbName(0x46, 0x4e, 0x7e, 'pq-2111c'), + RgbInt8Color.rgbName(0x6e, 0x81, 0xbe, 'persian jewel'), + RgbInt8Color.rgbName(0x4a, 0x53, 0x35, 'chive'), + RgbInt8Color.rgbName(0x4a, 0x34, 0x2e, 'chicory coffee'), + RgbInt8Color.rgbName(0x4e, 0x36, 0x29, 'pq-476c'), + RgbInt8Color.rgbName(0x4e, 0x5b, 0x31, 'pq-574c'), + RgbInt8Color.rgbName(0x43, 0x54, 0x4b, 'cilantro'), + RgbInt8Color.rgbName(0x46, 0x51, 0x5a, 'dark slate'), + RgbInt8Color.rgbName(0x42, 0x55, 0x63, 'pq-7545c'), + RgbInt8Color.rgbName(0x49, 0x51, 0x6d, 'blue indigo'), + RgbInt8Color.rgbName(0x4a, 0x6a, 0xa3, 'pq-10246c'), + RgbInt8Color.rgbName(0x62, 0x5d, 0x20, 'pq-581c'), + RgbInt8Color.rgbName(0x40, 0x5e, 0x5c, 'mallard green'), + RgbInt8Color.rgbName(0x40, 0x5d, 0x73, 'real teal'), + RgbInt8Color.rgbName(0x5f, 0x8d, 0xda, 'pq-2129c'), + RgbInt8Color.rgbName(0x68, 0x6f, 0x12, 'pq-2307c'), + RgbInt8Color.rgbName(0x4e, 0x49, 0x34, 'pq-7771c'), + RgbInt8Color.rgbName(0x4e, 0x65, 0x48, 'pq-2409c'), + RgbInt8Color.rgbName(0x43, 0x69, 0x5b, 'pq-5545c'), + RgbInt8Color.rgbName(0x45, 0x68, 0x5e, 'pq-8740c'), + RgbInt8Color.rgbName(0x44, 0x61, 0x67, 'pq-8502c'), + RgbInt8Color.rgbName(0x43, 0x65, 0x73, 'tapestry'), + RgbInt8Color.rgbName(0x43, 0x66, 0x7c, 'pq-10266c'), + RgbInt8Color.rgbName(0x46, 0x64, 0x7e, 'stellar'), + RgbInt8Color.rgbName(0x4a, 0x63, 0x8d, 'dutch blue'), + RgbInt8Color.rgbName(0x3e, 0x69, 0x91, 'pq-2160c'), + RgbInt8Color.rgbName(0x4b, 0x6d, 0x41, 'artichoke green'), + RgbInt8Color.rgbName(0x47, 0x70, 0x50, 'fairway'), + RgbInt8Color.rgbName(0x42, 0x69, 0x72, 'hydro'), + RgbInt8Color.rgbName(0x5e, 0x7e, 0x29, 'pq-2279c'), + RgbInt8Color.rgbName(0x5b, 0x79, 0x2f, 'pq-3508c'), + RgbInt8Color.rgbName(0x48, 0x7d, 0x49, 'mint green'), + RgbInt8Color.rgbName(0x49, 0x7b, 0x55, 'pq-2408c'), + RgbInt8Color.rgbName(0x48, 0x7a, 0x7b, 'pq-7475c'), + RgbInt8Color.rgbName(0x47, 0x78, 0x8a, 'storm blue'), + RgbInt8Color.rgbName(0x4b, 0x75, 0xa7, 'pq-10259c'), + RgbInt8Color.rgbName(0x4d, 0x91, 0xc6, 'azure blue'), + RgbInt8Color.rgbName(0x65, 0x8d, 0x1b, 'pq-370c'), + RgbInt8Color.rgbName(0x47, 0x88, 0x4e, 'pq-8704c'), + RgbInt8Color.rgbName(0x47, 0x85, 0x89, 'teal'), + RgbInt8Color.rgbName(0x49, 0x86, 0xa0, 'pq-2209c'), + RgbInt8Color.rgbName(0x48, 0x89, 0xa1, 'pq-8222c'), + RgbInt8Color.rgbName(0x4b, 0x82, 0xa8, 'pq-2149c'), + RgbInt8Color.rgbName(0x4c, 0x9f, 0xc8, 'pq-2389c'), + RgbInt8Color.rgbName(0x5e, 0x93, 0xdb, 'pq-2381c'), + RgbInt8Color.rgbName(0x4b, 0x8d, 0x59, 'pq-8705c'), + RgbInt8Color.rgbName(0x4c, 0x8b, 0x72, 'pq-8285c'), + RgbInt8Color.rgbName(0x4e, 0x8c, 0x9a, 'pq-8242c'), + RgbInt8Color.rgbName(0x4b, 0x88, 0xac, 'pq-10270c'), + RgbInt8Color.rgbName(0x47, 0x97, 0xa8, 'pq-2220c'), + RgbInt8Color.rgbName(0x4c, 0xa5, 0xc7, 'norse blue'), + RgbInt8Color.rgbName(0x48, 0xa9, 0xc5, 'pq-7702c'), + RgbInt8Color.rgbName(0x4b, 0x95, 0x60, 'pq-7730c'), + RgbInt8Color.rgbName(0x4b, 0x9b, 0x69, 'greenbriar'), + RgbInt8Color.rgbName(0x4c, 0x9c, 0xa2, 'pq-10288c'), + RgbInt8Color.rgbName(0x4f, 0x9e, 0x81, 'winter green'), + RgbInt8Color.rgbName(0x4d, 0x9e, 0x9a, 'lagoon'), + RgbInt8Color.rgbName(0x4f, 0x9f, 0xa6, 'pq-2234c'), + RgbInt8Color.rgbName(0x50, 0xa6, 0x84, 'pq-7723c'), + RgbInt8Color.rgbName(0x69, 0xb3, 0xe7, 'pq-292c'), + RgbInt8Color.rgbName(0x67, 0x82, 0x3a, 'pq-575c'), + RgbInt8Color.rgbName(0x7a, 0xcc, 0x0, 'pq-2286c'), + RgbInt8Color.rgbName(0x79, 0xc0, 0x0, 'pq-3561c'), + RgbInt8Color.rgbName(0x7a, 0x9a, 0x1, 'pq-377c'), + RgbInt8Color.rgbName(0x6d, 0xce, 0x87, 'spring bouquet'), + RgbInt8Color.rgbName(0x6b, 0xcd, 0x9c, 'spring bud'), + RgbInt8Color.rgbName(0x6d, 0xd5, 0xc3, 'pq-936c'), + RgbInt8Color.rgbName(0x55, 0xaf, 0x92, 'pq-2459c'), + RgbInt8Color.rgbName(0x7e, 0xc8, 0x45, 'jasmine green'), + RgbInt8Color.rgbName(0x79, 0xc7, 0x53, 'green flash'), + RgbInt8Color.rgbName(0x66, 0xbc, 0x91, 'katydid'), + RgbInt8Color.rgbName(0x6e, 0xce, 0xb2, 'pq-338c'), + RgbInt8Color.rgbName(0x6b, 0xca, 0xba, 'pq-570c'), + RgbInt8Color.rgbName(0x7a, 0xab, 0x55, 'kiwi'), + RgbInt8Color.rgbName(0x6d, 0xcd, 0xb8, 'pq-3248c'), + RgbInt8Color.rgbName(0x74, 0xd2, 0xe7, 'pq-2197c'), + RgbInt8Color.rgbName(0x49, 0x2a, 0x34, 'winetasting'), + RgbInt8Color.rgbName(0x62, 0x12, 0x44, 'pq-2357c'), + RgbInt8Color.rgbName(0x58, 0x21, 0x47, 'dark purple'), + RgbInt8Color.rgbName(0x43, 0x37, 0x48, 'nightshade'), + RgbInt8Color.rgbName(0x51, 0x28, 0x4f, 'pq-262c'), + RgbInt8Color.rgbName(0x72, 0x0, 0x62, 'pq-2356c'), + RgbInt8Color.rgbName(0x51, 0x2d, 0x6d, 'pq-269c'), + RgbInt8Color.rgbName(0x52, 0x31, 0x78, 'pq-7680c'), + RgbInt8Color.rgbName(0x70, 0x20, 0x82, 'pq-2603c'), + RgbInt8Color.rgbName(0x77, 0x25, 0x83, 'pq-2612c'), + RgbInt8Color.rgbName(0x70, 0x2f, 0x8a, 'pq-526c'), + RgbInt8Color.rgbName(0x87, 0x18, 0x9d, 'pq-2602c'), + RgbInt8Color.rgbName(0x84, 0x32, 0x9b, 'pq-2593c'), + RgbInt8Color.rgbName(0x86, 0x59, 0xb5, 'pq-2076c'), + RgbInt8Color.rgbName(0x50, 0x31, 0x30, 'bitter chocolate'), + RgbInt8Color.rgbName(0x51, 0x2f, 0x2e, 'pq-497c'), + RgbInt8Color.rgbName(0x57, 0x29, 0x32, 'pq-504c'), + RgbInt8Color.rgbName(0x57, 0x2d, 0x2d, 'pq-7631c'), + RgbInt8Color.rgbName(0x50, 0x2b, 0x33, 'port royale'), + RgbInt8Color.rgbName(0x4a, 0x30, 0x41, 'pq-5185c'), + RgbInt8Color.rgbName(0x50, 0x2b, 0x3a, 'pq-7645c'), + RgbInt8Color.rgbName(0x4d, 0x32, 0x46, 'blackberry wine'), + RgbInt8Color.rgbName(0x51, 0x2a, 0x44, 'pq-5115c'), + RgbInt8Color.rgbName(0x4b, 0x30, 0x48, 'pq-518c'), + RgbInt8Color.rgbName(0x51, 0x30, 0x4e, 'plum purple'), + RgbInt8Color.rgbName(0x4f, 0x2d, 0x54, 'grape royale'), + RgbInt8Color.rgbName(0x54, 0x2c, 0x5d, 'imperial purple'), + RgbInt8Color.rgbName(0x47, 0x34, 0x42, 'plum perfect'), + RgbInt8Color.rgbName(0x47, 0x39, 0x51, 'gothic grape'), + RgbInt8Color.rgbName(0x4f, 0x34, 0x66, 'petunia'), + RgbInt8Color.rgbName(0x52, 0x34, 0x6e, 'pq-8804c'), + RgbInt8Color.rgbName(0x4f, 0x38, 0x72, 'heliotrope'), + RgbInt8Color.rgbName(0x5a, 0x45, 0x22, 'pq-7553c'), + RgbInt8Color.rgbName(0x56, 0x3d, 0x82, 'pq-7679c'), + RgbInt8Color.rgbName(0x62, 0x34, 0x12, 'pq-732c'), + RgbInt8Color.rgbName(0x59, 0x4a, 0x25, 'pq-450c'), + RgbInt8Color.rgbName(0x43, 0x39, 0x37, 'mulch'), + RgbInt8Color.rgbName(0x45, 0x35, 0x36, 'pq-439c'), + RgbInt8Color.rgbName(0x49, 0x33, 0x38, 'fudge'), + RgbInt8Color.rgbName(0x4e, 0x33, 0x4e, 'shadow purple'), + RgbInt8Color.rgbName(0x46, 0x39, 0x4b, 'mysterioso'), + RgbInt8Color.rgbName(0x47, 0x38, 0x54, 'purple plumeria'), + RgbInt8Color.rgbName(0x4c, 0x39, 0x57, 'indigo'), + RgbInt8Color.rgbName(0x56, 0x34, 0x74, 'tillandsia purple'), + RgbInt8Color.rgbName(0x51, 0x48, 0x87, 'pq-10236c'), + RgbInt8Color.rgbName(0x5a, 0x4e, 0x8f, 'purple corallites'), + RgbInt8Color.rgbName(0x5a, 0x4b, 0x91, 'pq-8164c'), + RgbInt8Color.rgbName(0x43, 0x3d, 0x37, 'pq-8624c'), + RgbInt8Color.rgbName(0x4b, 0x3d, 0x33, 'slate black'), + RgbInt8Color.rgbName(0x43, 0x40, 0x3d, 'pq-10398c'), + RgbInt8Color.rgbName(0x45, 0x40, 0x3b, 'pq-8625c'), + RgbInt8Color.rgbName(0x41, 0x42, 0x4a, 'ebony'), + RgbInt8Color.rgbName(0x4b, 0x3b, 0x4f, 'sweet grape'), + RgbInt8Color.rgbName(0x53, 0x3d, 0x7d, 'prism violet'), + RgbInt8Color.rgbName(0x56, 0x52, 0x94, 'pq-7670c'), + RgbInt8Color.rgbName(0x74, 0x74, 0xc1, 'pq-272c'), + RgbInt8Color.rgbName(0x44, 0x49, 0x40, 'climbing ivy'), + RgbInt8Color.rgbName(0x48, 0x41, 0x3b, 'black olive'), + RgbInt8Color.rgbName(0x4c, 0x44, 0x3d, 'pq-8405c'), + RgbInt8Color.rgbName(0x48, 0x46, 0x4a, 'forged iron'), + RgbInt8Color.rgbName(0x46, 0x43, 0x4a, 'nine iron'), + RgbInt8Color.rgbName(0x46, 0x44, 0x4c, 'periscope'), + RgbInt8Color.rgbName(0x49, 0x49, 0x4d, 'gray pinstripe'), + RgbInt8Color.rgbName(0x43, 0x48, 0x54, 'ombre blue'), + RgbInt8Color.rgbName(0x4d, 0x49, 0x5b, 'graystone'), + RgbInt8Color.rgbName(0x48, 0x4a, 0x72, 'skipper blue'), + RgbInt8Color.rgbName(0x5a, 0x5b, 0x9f, 'blue iris'), + RgbInt8Color.rgbName(0x5b, 0x7e, 0xbd, 'ultramarine'), + RgbInt8Color.rgbName(0x6f, 0x7b, 0xd4, 'pq-2124c'), + RgbInt8Color.rgbName(0x61, 0x4f, 0x25, 'pq-4485c'), + RgbInt8Color.rgbName(0x46, 0x4e, 0x4d, 'urban chic'), + RgbInt8Color.rgbName(0x4b, 0x4f, 0x54, 'pq-7540c'), + RgbInt8Color.rgbName(0x4a, 0x55, 0x6b, 'vintage indigo'), + RgbInt8Color.rgbName(0x53, 0x6c, 0xa4, 'pq-10254c'), + RgbInt8Color.rgbName(0x6c, 0x57, 0x1b, 'pq-133c'), + RgbInt8Color.rgbName(0x68, 0x5c, 0x20, 'pq-3995c'), + RgbInt8Color.rgbName(0x5a, 0x46, 0x32, 'desert palm'), + RgbInt8Color.rgbName(0x52, 0x42, 0x32, 'pq-8622c'), + RgbInt8Color.rgbName(0x53, 0x54, 0x35, 'pq-7764c'), + RgbInt8Color.rgbName(0x54, 0x5a, 0x3e, 'cypress'), + RgbInt8Color.rgbName(0x4b, 0x5b, 0x6e, 'bering sea'), + RgbInt8Color.rgbName(0x4d, 0x58, 0x7a, 'gray blue'), + RgbInt8Color.rgbName(0x4d, 0x5f, 0x80, 'pq-2374c'), + RgbInt8Color.rgbName(0x59, 0x5f, 0x34, 'pesto'), + RgbInt8Color.rgbName(0x48, 0x6b, 0x67, 'blue spruce'), + RgbInt8Color.rgbName(0x4e, 0x64, 0x82, 'blue horizon'), + RgbInt8Color.rgbName(0x4c, 0x6a, 0x92, 'riverside'), + RgbInt8Color.rgbName(0x4d, 0x69, 0x95, 'pq-2139c'), + RgbInt8Color.rgbName(0x53, 0x71, 0x3d, 'cactus'), + RgbInt8Color.rgbName(0x53, 0x6f, 0x4e, 'pq-10315c'), + RgbInt8Color.rgbName(0x4e, 0x6e, 0x56, 'pq-8720c'), + RgbInt8Color.rgbName(0x4e, 0x6e, 0x81, 'aegean blue'), + RgbInt8Color.rgbName(0x50, 0x6d, 0x85, 'pq-2167c'), + RgbInt8Color.rgbName(0x53, 0x72, 0x9f, 'pq-8182c'), + RgbInt8Color.rgbName(0x58, 0x5c, 0x3b, 'pq-7763c'), + RgbInt8Color.rgbName(0x58, 0x7d, 0x3f, 'pq-8702c'), + RgbInt8Color.rgbName(0x4c, 0x7e, 0x86, 'brittany blue'), + RgbInt8Color.rgbName(0x52, 0x7a, 0x8a, 'pq-2179c'), + RgbInt8Color.rgbName(0x4f, 0x75, 0x8b, 'pq-5405c'), + RgbInt8Color.rgbName(0x4e, 0x76, 0x9c, 'pq-2159c'), + RgbInt8Color.rgbName(0x4f, 0x7c, 0xa4, 'parisian blue'), + RgbInt8Color.rgbName(0x50, 0x7f, 0x70, 'pq-625c'), + RgbInt8Color.rgbName(0x50, 0x85, 0x90, 'pq-2212c'), + RgbInt8Color.rgbName(0x4f, 0x86, 0x8e, 'pq-5483c'), + RgbInt8Color.rgbName(0x4e, 0x87, 0xa0, 'pq-7697c'), + RgbInt8Color.rgbName(0x51, 0x82, 0x9e, 'pq-8202c'), + RgbInt8Color.rgbName(0x54, 0x80, 0xac, 'pacific coast'), + RgbInt8Color.rgbName(0x53, 0x9c, 0xcc, 'bonnie blue'), + RgbInt8Color.rgbName(0x76, 0x88, 0x1d, 'pq-7496c'), + RgbInt8Color.rgbName(0x53, 0x8e, 0x7d, 'pq-8284c'), + RgbInt8Color.rgbName(0x52, 0x89, 0x8c, 'pq-8262c'), + RgbInt8Color.rgbName(0x54, 0x89, 0xa3, 'pq-2208c'), + RgbInt8Color.rgbName(0x56, 0x95, 0x4d, 'pq-10308c'), + RgbInt8Color.rgbName(0x55, 0x95, 0x63, 'pq-10301c'), + RgbInt8Color.rgbName(0x55, 0x96, 0x70, 'pq-8303c'), + RgbInt8Color.rgbName(0x52, 0xa2, 0xb4, 'maui blue'), + RgbInt8Color.rgbName(0x58, 0x9f, 0x7e, 'green spruce'), + RgbInt8Color.rgbName(0x57, 0xa4, 0x99, 'pq-10294c'), + RgbInt8Color.rgbName(0x54, 0x9f, 0x98, 'sea blue'), + RgbInt8Color.rgbName(0x59, 0x9f, 0x99, 'agate green'), + RgbInt8Color.rgbName(0x58, 0xa7, 0xaf, 'pq-2233c'), + RgbInt8Color.rgbName(0x53, 0xb0, 0xae, 'blue turquoise'), + RgbInt8Color.rgbName(0x6c, 0xac, 0xe4, 'pq-284c'), + RgbInt8Color.rgbName(0x8b, 0xc4, 0x0, 'pq-2293c'), + RgbInt8Color.rgbName(0x84, 0xbd, 0x0, 'pq-376c'), + RgbInt8Color.rgbName(0x71, 0xc5, 0xe8, 'pq-297c'), + RgbInt8Color.rgbName(0x71, 0xcc, 0x98, 'pq-346c'), + RgbInt8Color.rgbName(0x71, 0xdb, 0xd4, 'pq-3242c'), + RgbInt8Color.rgbName(0x78, 0xd5, 0xe1, 'pq-2225c'), + RgbInt8Color.rgbName(0x78, 0xbd, 0x70, 'pq-2464c'), + RgbInt8Color.rgbName(0x5c, 0xaa, 0x7f, 'pq-2249c'), + RgbInt8Color.rgbName(0x8c, 0xab, 0x19, 'pq-10327c'), + RgbInt8Color.rgbName(0x76, 0xb5, 0x83, 'absinthe green'), + RgbInt8Color.rgbName(0x5c, 0xb8, 0xb2, 'pq-7472c'), + RgbInt8Color.rgbName(0x88, 0xb0, 0x4b, 'greenery'), + RgbInt8Color.rgbName(0x77, 0xc1, 0x9a, 'pq-2247c'), + RgbInt8Color.rgbName(0x77, 0xcf, 0xb7, 'opal'), + RgbInt8Color.rgbName(0x77, 0xc5, 0xd5, 'pq-630c'), + RgbInt8Color.rgbName(0x51, 0x32, 0x35, 'decadent chocolate'), + RgbInt8Color.rgbName(0x65, 0x1d, 0x32, 'pq-7421c'), + RgbInt8Color.rgbName(0x49, 0x3b, 0x39, 'seal brown'), + RgbInt8Color.rgbName(0x53, 0x2d, 0x3b, 'fig'), + RgbInt8Color.rgbName(0x4b, 0x35, 0x3a, 'pq-2478c'), + RgbInt8Color.rgbName(0x61, 0x21, 0x41, 'pq-690c'), + RgbInt8Color.rgbName(0x53, 0x31, 0x46, 'italian plum'), + RgbInt8Color.rgbName(0x50, 0x31, 0x4c, 'deep purple'), + RgbInt8Color.rgbName(0x5f, 0x21, 0x67, 'pq-2623c'), + RgbInt8Color.rgbName(0x67, 0x1e, 0x75, 'pq-2613c'), + RgbInt8Color.rgbName(0x85, 0x45, 0x9f, 'pq-3559c'), + RgbInt8Color.rgbName(0x96, 0x3c, 0xbd, 'pq-7442c'), + RgbInt8Color.rgbName(0x64, 0x24, 0x2e, 'cabernet'), + RgbInt8Color.rgbName(0x61, 0x22, 0x4a, 'plum caspia'), + RgbInt8Color.rgbName(0x5e, 0x27, 0x51, 'pq-7652c'), + RgbInt8Color.rgbName(0x5d, 0x28, 0x5f, 'pq-261c'), + RgbInt8Color.rgbName(0x64, 0x26, 0x67, 'pq-260c'), + RgbInt8Color.rgbName(0x62, 0x26, 0x66, 'pq-8823c'), + RgbInt8Color.rgbName(0x5d, 0x2a, 0x2c, 'pq-490c'), + RgbInt8Color.rgbName(0x63, 0x32, 0x31, 'pq-7630c'), + RgbInt8Color.rgbName(0x5c, 0x29, 0x35, 'zinfandel'), + RgbInt8Color.rgbName(0x58, 0x2b, 0x36, 'windsor wine'), + RgbInt8Color.rgbName(0x5c, 0x2c, 0x35, 'tawny port'), + RgbInt8Color.rgbName(0x58, 0x2d, 0x40, 'pq-7644c'), + RgbInt8Color.rgbName(0x5a, 0x2f, 0x43, 'grape wine'), + RgbInt8Color.rgbName(0x5a, 0x31, 0x5d, 'plum'), + RgbInt8Color.rgbName(0x57, 0x2c, 0x5f, 'pq-525c'), + RgbInt8Color.rgbName(0x96, 0x5e, 0xc8, 'pq-2083c'), + RgbInt8Color.rgbName(0x90, 0x63, 0xcd, 'pq-265c'), + RgbInt8Color.rgbName(0x5b, 0x34, 0x27, 'pq-4695c'), + RgbInt8Color.rgbName(0x4b, 0x38, 0x4c, 'pq-7448c'), + RgbInt8Color.rgbName(0x5e, 0x54, 0x9b, 'pq-8163c'), + RgbInt8Color.rgbName(0x60, 0x3d, 0x20, 'pq-161c'), + RgbInt8Color.rgbName(0x5f, 0x40, 0x28, 'pq-2472c'), + RgbInt8Color.rgbName(0x52, 0x37, 0x5f, 'pq-8801c'), + RgbInt8Color.rgbName(0x59, 0x31, 0x5f, 'pq-519c'), + RgbInt8Color.rgbName(0x60, 0x3f, 0x83, 'royal purple'), + RgbInt8Color.rgbName(0x65, 0x38, 0x19, 'pq-1545c'), + RgbInt8Color.rgbName(0x54, 0x39, 0x2d, 'potting soil'), + RgbInt8Color.rgbName(0x56, 0x35, 0x2d, 'chocolate fondant'), + RgbInt8Color.rgbName(0x58, 0x34, 0x32, 'rum raisin'), + RgbInt8Color.rgbName(0x48, 0x3f, 0x39, 'turkish coffee'), + RgbInt8Color.rgbName(0x54, 0x35, 0x3b, 'sassafras'), + RgbInt8Color.rgbName(0x4a, 0x3f, 0x41, 'shale'), + RgbInt8Color.rgbName(0x55, 0x3b, 0x50, 'hortensia'), + RgbInt8Color.rgbName(0x50, 0x3b, 0x53, 'navy cosmos'), + RgbInt8Color.rgbName(0x58, 0x36, 0x59, 'pq-8800c'), + RgbInt8Color.rgbName(0x59, 0x37, 0x61, 'majesty'), + RgbInt8Color.rgbName(0x5e, 0x36, 0x6e, 'pq-7665c'), + RgbInt8Color.rgbName(0x57, 0x3e, 0x7a, 'pq-8805c'), + RgbInt8Color.rgbName(0x55, 0x4d, 0x8a, 'pq-10237c'), + RgbInt8Color.rgbName(0x5f, 0x6d, 0xb0, 'baja blue'), + RgbInt8Color.rgbName(0x60, 0x6e, 0xb2, 'pq-7456c'), + RgbInt8Color.rgbName(0x4a, 0x41, 0x39, 'wren'), + RgbInt8Color.rgbName(0x54, 0x3b, 0x35, 'shaved chocolate'), + RgbInt8Color.rgbName(0x50, 0x39, 0x38, 'puce'), + RgbInt8Color.rgbName(0x4e, 0x40, 0x3b, 'chocolate brown'), + RgbInt8Color.rgbName(0x4f, 0x3f, 0x3b, 'bracken'), + RgbInt8Color.rgbName(0x4d, 0x43, 0x45, 'pq-10387c'), + RgbInt8Color.rgbName(0x56, 0x45, 0x6b, 'purple reign'), + RgbInt8Color.rgbName(0x54, 0x42, 0x75, 'gentian violet'), + RgbInt8Color.rgbName(0x57, 0x46, 0x76, 'pq-3574c'), + RgbInt8Color.rgbName(0x60, 0x56, 0x9a, 'purple opulence'), + RgbInt8Color.rgbName(0x5c, 0x46, 0x2b, 'pq-462c'), + RgbInt8Color.rgbName(0x4a, 0x48, 0x43, 'beluga'), + RgbInt8Color.rgbName(0x4c, 0x44, 0x41, 'pq-8601c'), + RgbInt8Color.rgbName(0x4a, 0x4b, 0x4d, 'dark shadow'), + RgbInt8Color.rgbName(0x4e, 0x4b, 0x48, 'pq-2336c'), + RgbInt8Color.rgbName(0x4d, 0x4b, 0x4f, 'magnet'), + RgbInt8Color.rgbName(0x4d, 0x4b, 0x50, 'blackened pearl'), + RgbInt8Color.rgbName(0x5d, 0x47, 0x77, 'pq-7447c'), + RgbInt8Color.rgbName(0x5f, 0x4b, 0x8b, 'ultra violet'), + RgbInt8Color.rgbName(0x5e, 0x60, 0xa0, 'pq-10241c'), + RgbInt8Color.rgbName(0x5d, 0x81, 0xbb, 'granada sky'), + RgbInt8Color.rgbName(0x57, 0x4d, 0x35, 'dark olive'), + RgbInt8Color.rgbName(0x53, 0x50, 0x40, 'olive night'), + RgbInt8Color.rgbName(0x50, 0x54, 0x43, 'pq-8521c'), + RgbInt8Color.rgbName(0x50, 0x4d, 0x4a, 'pq-10397c'), + RgbInt8Color.rgbName(0x54, 0x51, 0x44, 'grape leaf'), + RgbInt8Color.rgbName(0x51, 0x53, 0x4a, 'pq-418c'), + RgbInt8Color.rgbName(0x53, 0x4e, 0x48, 'pq-8404c'), + RgbInt8Color.rgbName(0x52, 0x4d, 0x50, 'pavement'), + RgbInt8Color.rgbName(0x4e, 0x50, 0x55, 'iron gate'), + RgbInt8Color.rgbName(0x4e, 0x54, 0x58, 'pq-10392c'), + RgbInt8Color.rgbName(0x4e, 0x54, 0x5b, 'turbulence'), + RgbInt8Color.rgbName(0x50, 0x57, 0x59, 'pq-445c'), + RgbInt8Color.rgbName(0x4e, 0x53, 0x68, 'nightshadow blue'), + RgbInt8Color.rgbName(0x59, 0x54, 0x78, 'pq-5275c'), + RgbInt8Color.rgbName(0x53, 0x54, 0x86, 'pq-7673c'), + RgbInt8Color.rgbName(0x51, 0x5b, 0x87, 'marlin'), + RgbInt8Color.rgbName(0x75, 0x8c, 0xc0, 'pq-2135c'), + RgbInt8Color.rgbName(0x69, 0x5b, 0x24, 'pq-455c'), + RgbInt8Color.rgbName(0x5b, 0x62, 0x36, 'pq-7498c'), + RgbInt8Color.rgbName(0x5b, 0x5a, 0x41, 'winter moss'), + RgbInt8Color.rgbName(0x52, 0x5f, 0x48, 'bronze green'), + RgbInt8Color.rgbName(0x50, 0x57, 0x4c, 'thyme'), + RgbInt8Color.rgbName(0x55, 0x58, 0x4c, 'beetle'), + RgbInt8Color.rgbName(0x54, 0x58, 0x5a, 'pq-425c'), + RgbInt8Color.rgbName(0x53, 0x56, 0x5a, 'pq-coolgray11c'), + RgbInt8Color.rgbName(0x4e, 0x5b, 0x73, 'pq-2376c'), + RgbInt8Color.rgbName(0x50, 0x5d, 0x7e, 'coastal fjord'), + RgbInt8Color.rgbName(0x4e, 0x5e, 0x7f, 'bijou blue'), + RgbInt8Color.rgbName(0x50, 0x60, 0x77, 'pq-8481c'), + RgbInt8Color.rgbName(0x5b, 0x60, 0x9e, 'iris bloom'), + RgbInt8Color.rgbName(0x5e, 0x67, 0x37, 'cedar green'), + RgbInt8Color.rgbName(0x5d, 0x64, 0x39, 'pq-7762c'), + RgbInt8Color.rgbName(0x5e, 0x67, 0x38, 'pq-5753c'), + RgbInt8Color.rgbName(0x53, 0x66, 0x5c, 'duck green'), + RgbInt8Color.rgbName(0x4f, 0x6b, 0x58, 'myrtle'), + RgbInt8Color.rgbName(0x4c, 0x69, 0x69, 'sea pine'), + RgbInt8Color.rgbName(0x4e, 0x68, 0x66, 'silver pine'), + RgbInt8Color.rgbName(0x57, 0x66, 0x64, 'balsam green'), + RgbInt8Color.rgbName(0x58, 0x64, 0x6d, 'stormy weather'), + RgbInt8Color.rgbName(0x54, 0x64, 0x77, 'china blue'), + RgbInt8Color.rgbName(0x51, 0x6b, 0x84, 'copen blue'), + RgbInt8Color.rgbName(0x50, 0x68, 0x86, 'moonlight blue'), + RgbInt8Color.rgbName(0x82, 0x7a, 0x4, 'pq-392c'), + RgbInt8Color.rgbName(0x5a, 0x72, 0x47, 'kale'), + RgbInt8Color.rgbName(0x54, 0x70, 0x53, 'elm green'), + RgbInt8Color.rgbName(0x55, 0x69, 0x62, 'dark forest'), + RgbInt8Color.rgbName(0x53, 0x6d, 0x70, 'north atlantic'), + RgbInt8Color.rgbName(0x53, 0x73, 0x86, 'pq-10265c'), + RgbInt8Color.rgbName(0x55, 0x70, 0x88, 'captain\'s blue'), + RgbInt8Color.rgbName(0x57, 0x72, 0x84, 'bluestone'), + RgbInt8Color.rgbName(0x57, 0x72, 0x8b, 'pq-2166c'), + RgbInt8Color.rgbName(0x63, 0x84, 0xb8, 'blue bonnet'), + RgbInt8Color.rgbName(0x61, 0x8b, 0xb9, 'silver lake blue'), + RgbInt8Color.rgbName(0x5e, 0x8a, 0xb4, 'pq-646c'), + RgbInt8Color.rgbName(0x62, 0x76, 0x35, 'pq-10333c'), + RgbInt8Color.rgbName(0x7f, 0x85, 0xa, 'pq-8663c'), + RgbInt8Color.rgbName(0x55, 0x75, 0x55, 'pq-8721c'), + RgbInt8Color.rgbName(0x5b, 0x77, 0x63, 'dark ivy'), + RgbInt8Color.rgbName(0x57, 0x78, 0x69, 'pq-8501c'), + RgbInt8Color.rgbName(0x4f, 0x7c, 0x74, 'deep sea'), + RgbInt8Color.rgbName(0x56, 0x75, 0x72, 'sagebrush green'), + RgbInt8Color.rgbName(0x5a, 0x78, 0x9a, 'quiet harbor'), + RgbInt8Color.rgbName(0x58, 0x79, 0xa2, 'riviera'), + RgbInt8Color.rgbName(0x5c, 0x78, 0xa7, 'pq-10245c'), + RgbInt8Color.rgbName(0x5a, 0x77, 0xa8, 'blue yonder'), + RgbInt8Color.rgbName(0x64, 0x79, 0xb3, 'wedgewood'), + RgbInt8Color.rgbName(0x6b, 0x7f, 0x2a, 'pq-8682c'), + RgbInt8Color.rgbName(0x55, 0x83, 0x67, 'deep grass green'), + RgbInt8Color.rgbName(0x57, 0x82, 0x70, 'frosty spruce'), + RgbInt8Color.rgbName(0x5b, 0x7f, 0x95, 'pq-5415c'), + RgbInt8Color.rgbName(0x54, 0x87, 0xa4, 'niagara'), + RgbInt8Color.rgbName(0x5c, 0x80, 0xa9, 'pq-10258c'), + RgbInt8Color.rgbName(0x5c, 0x82, 0xa5, 'pq-2158c'), + RgbInt8Color.rgbName(0x5d, 0x89, 0xb3, 'lichen blue'), + RgbInt8Color.rgbName(0x5f, 0x9b, 0xc6, 'pq-2170c'), + RgbInt8Color.rgbName(0x62, 0x8d, 0x41, 'pq-8685c'), + RgbInt8Color.rgbName(0x5a, 0x86, 0x59, 'pq-8305c'), + RgbInt8Color.rgbName(0x5a, 0x8d, 0x84, 'pq-2462c'), + RgbInt8Color.rgbName(0x55, 0x8f, 0x91, 'bristol blue'), + RgbInt8Color.rgbName(0x53, 0x90, 0x9a, 'pq-10282c'), + RgbInt8Color.rgbName(0x5f, 0x8f, 0xb4, 'pq-7454c'), + RgbInt8Color.rgbName(0x5d, 0x96, 0xbc, 'heritage blue'), + RgbInt8Color.rgbName(0x5c, 0xa6, 0xce, 'ethereal blue'), + RgbInt8Color.rgbName(0x5e, 0x95, 0x8f, 'pq-8282c'), + RgbInt8Color.rgbName(0x5d, 0x99, 0xae, 'pq-10275c'), + RgbInt8Color.rgbName(0x61, 0x91, 0xb4, 'pq-2148c'), + RgbInt8Color.rgbName(0x5c, 0xac, 0xce, 'blue grotto'), + RgbInt8Color.rgbName(0x58, 0xa2, 0x91, 'pq-2241c'), + RgbInt8Color.rgbName(0x5d, 0x9c, 0xa4, 'porcelain'), + RgbInt8Color.rgbName(0x60, 0xa0, 0xa3, 'meadowbrook'), + RgbInt8Color.rgbName(0x5c, 0xa3, 0xb3, 'pq-2219c'), + RgbInt8Color.rgbName(0x61, 0xaa, 0xb1, 'aquarelle'), + RgbInt8Color.rgbName(0x5b, 0xac, 0xc3, 'blue mist'), + RgbInt8Color.rgbName(0x5d, 0xaf, 0xce, 'crystal seas'), + RgbInt8Color.rgbName(0x63, 0xb1, 0xbc, 'pq-7709c'), + RgbInt8Color.rgbName(0x80, 0x8c, 0x24, 'pq-2306c'), + RgbInt8Color.rgbName(0x93, 0xc9, 0xe, 'pq-2292c'), + RgbInt8Color.rgbName(0x7c, 0xcc, 0x6c, 'pq-2269c'), + RgbInt8Color.rgbName(0x79, 0xd9, 0x7c, 'pq-2268c'), + RgbInt8Color.rgbName(0x7e, 0xd3, 0x7f, 'summer green'), + RgbInt8Color.rgbName(0x79, 0xa5, 0x50, 'pq-10319c'), + RgbInt8Color.rgbName(0x75, 0xa1, 0x4f, 'foliage'), + RgbInt8Color.rgbName(0x80, 0xe0, 0xa7, 'pq-353c'), + RgbInt8Color.rgbName(0x7a, 0xe1, 0xbf, 'pq-3375c'), + RgbInt8Color.rgbName(0x7c, 0xe0, 0xd3, 'pq-3245c'), + RgbInt8Color.rgbName(0x7e, 0xdd, 0xd3, 'pq-7471c'), + RgbInt8Color.rgbName(0x79, 0xb4, 0x65, 'bud green'), + RgbInt8Color.rgbName(0x8f, 0xad, 0x15, 'pq-2301c'), + RgbInt8Color.rgbName(0x93, 0xda, 0x49, 'pq-2285c'), + RgbInt8Color.rgbName(0x8d, 0xe9, 0x71, 'pq-902c'), + RgbInt8Color.rgbName(0x8e, 0xdd, 0x65, 'pq-7487c'), + RgbInt8Color.rgbName(0x81, 0xd7, 0xd3, 'aruba blue'), + RgbInt8Color.rgbName(0x65, 0x30, 0x24, 'pq-483c'), + RgbInt8Color.rgbName(0x6a, 0x28, 0x2c, 'syrah'), + RgbInt8Color.rgbName(0x6c, 0x1d, 0x45, 'pq-222c'), + RgbInt8Color.rgbName(0x58, 0x36, 0x3d, 'vineyard wine'), + RgbInt8Color.rgbName(0x67, 0x21, 0x46, 'pq-229c'), + RgbInt8Color.rgbName(0x5b, 0x30, 0x43, 'pq-8543c'), + RgbInt8Color.rgbName(0x61, 0x2c, 0x51, 'pq-511c'), + RgbInt8Color.rgbName(0x83, 0x0, 0x65, 'pq-2425c'), + RgbInt8Color.rgbName(0x87, 0x2, 0x7b, 'pq-2355c'), + RgbInt8Color.rgbName(0x6d, 0x20, 0x77, 'pq-259c'), + RgbInt8Color.rgbName(0x9b, 0x26, 0xb6, 'pq-2592c'), + RgbInt8Color.rgbName(0x8f, 0x1a, 0x95, 'pq-2070c'), + RgbInt8Color.rgbName(0x98, 0x1d, 0x97, 'pq-254c'), + RgbInt8Color.rgbName(0x6c, 0x28, 0x31, 'pomegranate'), + RgbInt8Color.rgbName(0x69, 0x27, 0x46, 'purple potion'), + RgbInt8Color.rgbName(0x6b, 0x26, 0x4b, 'magenta purple'), + RgbInt8Color.rgbName(0x8a, 0x44, 0x90, 'pq-10213c'), + RgbInt8Color.rgbName(0x6a, 0x2e, 0x2a, 'fired brick'), + RgbInt8Color.rgbName(0x61, 0x2e, 0x35, 'chocolate truffle'), + RgbInt8Color.rgbName(0x62, 0x2e, 0x37, 'pq-8542c'), + RgbInt8Color.rgbName(0x63, 0x2a, 0x60, 'charisma'), + RgbInt8Color.rgbName(0x62, 0x2e, 0x5a, 'gloxinia'), + RgbInt8Color.rgbName(0x68, 0x29, 0x61, 'grape juice'), + RgbInt8Color.rgbName(0x64, 0x2f, 0x6c, 'pq-520c'), + RgbInt8Color.rgbName(0x6b, 0x30, 0x77, 'pq-7663c'), + RgbInt8Color.rgbName(0x65, 0x32, 0x79, 'pq-7664c'), + RgbInt8Color.rgbName(0x66, 0x32, 0x71, 'purple magic'), + RgbInt8Color.rgbName(0x8c, 0x47, 0x99, 'pq-258c'), + RgbInt8Color.rgbName(0x9f, 0x5c, 0xc0, 'pq-7441c'), + RgbInt8Color.rgbName(0x65, 0x36, 0x7e, 'pq-8825c'), + RgbInt8Color.rgbName(0x6a, 0x39, 0x7b, 'amaranth purple'), + RgbInt8Color.rgbName(0x6d, 0x43, 0x1e, 'pq-8583c'), + RgbInt8Color.rgbName(0x69, 0x3f, 0x23, 'pq-469c'), + RgbInt8Color.rgbName(0x5b, 0x36, 0x44, 'mauve wine'), + RgbInt8Color.rgbName(0x5a, 0x39, 0x5b, 'wineberry'), + RgbInt8Color.rgbName(0x6a, 0x2a, 0x5b, 'pq-7651c'), + RgbInt8Color.rgbName(0x65, 0x31, 0x65, 'pq-2622c'), + RgbInt8Color.rgbName(0x65, 0x34, 0x74, 'pq-8824c'), + RgbInt8Color.rgbName(0x6e, 0x4c, 0x1e, 'pq-1405c'), + RgbInt8Color.rgbName(0x6c, 0x47, 0x27, 'pq-8584c'), + RgbInt8Color.rgbName(0x60, 0x35, 0x35, 'andorra'), + RgbInt8Color.rgbName(0x55, 0x3b, 0x39, 'deep mahogany'), + RgbInt8Color.rgbName(0x52, 0x41, 0x44, 'raisin'), + RgbInt8Color.rgbName(0x5c, 0x3a, 0x4d, 'prune purple'), + RgbInt8Color.rgbName(0x5d, 0x37, 0x54, 'pq-7659c'), + RgbInt8Color.rgbName(0x68, 0x47, 0x8d, 'pq-7678c'), + RgbInt8Color.rgbName(0x8a, 0x69, 0xd4, 'pq-814c'), + RgbInt8Color.rgbName(0x88, 0x66, 0xbc, 'pq-2075c'), + RgbInt8Color.rgbName(0x62, 0x3b, 0x2a, 'pq-477c'), + RgbInt8Color.rgbName(0x5c, 0x3d, 0x31, 'pq-7596c'), + RgbInt8Color.rgbName(0x58, 0x40, 0x39, 'chestnut'), + RgbInt8Color.rgbName(0x5c, 0x3e, 0x35, 'chocolate lab'), + RgbInt8Color.rgbName(0x5a, 0x3e, 0x36, 'rocky road'), + RgbInt8Color.rgbName(0x59, 0x3c, 0x39, 'brown stone'), + RgbInt8Color.rgbName(0x58, 0x42, 0x3f, 'french roast'), + RgbInt8Color.rgbName(0x58, 0x3d, 0x3e, 'pq-7617c'), + RgbInt8Color.rgbName(0x5d, 0x3c, 0x43, 'catawba grape'), + RgbInt8Color.rgbName(0x58, 0x44, 0x46, 'pq-438c'), + RgbInt8Color.rgbName(0x61, 0x39, 0x51, 'pq-8544c'), + RgbInt8Color.rgbName(0x61, 0x3c, 0x56, 'pq-8545c'), + RgbInt8Color.rgbName(0x5a, 0x47, 0x69, 'loganberry'), + RgbInt8Color.rgbName(0x62, 0x40, 0x76, 'plum jam'), + RgbInt8Color.rgbName(0x65, 0x3d, 0x7c, 'pansy'), + RgbInt8Color.rgbName(0x65, 0x5a, 0x9a, 'pq-10231c'), + RgbInt8Color.rgbName(0x6d, 0x56, 0x98, 'passion flower'), + RgbInt8Color.rgbName(0x8a, 0x75, 0xd1, 'pq-2101c'), + RgbInt8Color.rgbName(0x77, 0x42, 0x12, 'pq-731c'), + RgbInt8Color.rgbName(0x5d, 0x42, 0x36, 'fondue fudge'), + RgbInt8Color.rgbName(0x5c, 0x47, 0x38, 'pq-7589c'), + RgbInt8Color.rgbName(0x5c, 0x49, 0x39, 'dark earth'), + RgbInt8Color.rgbName(0x5d, 0x47, 0x3a, 'carafe'), + RgbInt8Color.rgbName(0x5a, 0x47, 0x43, 'shopping bag'), + RgbInt8Color.rgbName(0x5b, 0x43, 0x49, 'huckleberry'), + RgbInt8Color.rgbName(0x5c, 0x4e, 0x63, 'pq-7666c'), + RgbInt8Color.rgbName(0x63, 0x48, 0x78, 'picasso lily'), + RgbInt8Color.rgbName(0x61, 0x4b, 0x79, 'pq-668c'), + RgbInt8Color.rgbName(0x6f, 0x79, 0xbd, 'pq-2115c'), + RgbInt8Color.rgbName(0x5b, 0x4f, 0x3b, 'beech'), + RgbInt8Color.rgbName(0x61, 0x4c, 0x37, 'pq-8621c'), + RgbInt8Color.rgbName(0x58, 0x54, 0x42, 'ivy green'), + RgbInt8Color.rgbName(0x5e, 0x4b, 0x3c, 'pq-7519c'), + RgbInt8Color.rgbName(0x63, 0x51, 0x3d, 'pq-7532c'), + RgbInt8Color.rgbName(0x5b, 0x51, 0x49, 'major brown'), + RgbInt8Color.rgbName(0x5a, 0x53, 0x48, 'tarmac'), + RgbInt8Color.rgbName(0x5e, 0x4f, 0x47, 'pq-2335c'), + RgbInt8Color.rgbName(0x5d, 0x4c, 0x46, 'pq-8425c'), + RgbInt8Color.rgbName(0x5a, 0x50, 0x52, 'pq-10386c'), + RgbInt8Color.rgbName(0x5f, 0x4e, 0x72, 'mystical'), + RgbInt8Color.rgbName(0x60, 0x4e, 0x7a, 'imperial palace'), + RgbInt8Color.rgbName(0x5d, 0x56, 0x8e, 'pq-10235c'), + RgbInt8Color.rgbName(0x5c, 0x61, 0x9d, 'violet storm'), + RgbInt8Color.rgbName(0x8b, 0x84, 0xd7, 'pq-2715c'), + RgbInt8Color.rgbName(0x67, 0x59, 0x2a, 'fir green'), + RgbInt8Color.rgbName(0x67, 0x5e, 0x33, 'pq-7757c'), + RgbInt8Color.rgbName(0x63, 0x59, 0x39, 'pq-7770c'), + RgbInt8Color.rgbName(0x63, 0x56, 0x3b, 'military olive'), + RgbInt8Color.rgbName(0x68, 0x59, 0x3c, 'pq-2329c'), + RgbInt8Color.rgbName(0x5e, 0x57, 0x49, 'sea turtle'), + RgbInt8Color.rgbName(0x5b, 0x56, 0x52, 'pq-8600c'), + RgbInt8Color.rgbName(0x5c, 0x5d, 0x5b, 'gunmetal'), + RgbInt8Color.rgbName(0x5c, 0x56, 0x58, 'eiffel tower'), + RgbInt8Color.rgbName(0x5e, 0x5b, 0x60, 'tornado'), + RgbInt8Color.rgbName(0x58, 0x5e, 0x6f, 'grisaille'), + RgbInt8Color.rgbName(0x5b, 0x61, 0x8f, 'pq-2110c'), + RgbInt8Color.rgbName(0x61, 0x5e, 0x9b, 'pq-7669c'), + RgbInt8Color.rgbName(0x67, 0x62, 0x32, 'avocado'), + RgbInt8Color.rgbName(0x65, 0x66, 0x35, 'pq-7750c'), + RgbInt8Color.rgbName(0x65, 0x66, 0x3f, 'mayfly'), + RgbInt8Color.rgbName(0x65, 0x63, 0x44, 'capulet olive'), + RgbInt8Color.rgbName(0x61, 0x66, 0x52, 'four leaf clover'), + RgbInt8Color.rgbName(0x5b, 0x61, 0x66, 'pq-10391c'), + RgbInt8Color.rgbName(0x5b, 0x67, 0x70, 'pq-431c'), + RgbInt8Color.rgbName(0x60, 0x68, 0x8d, 'velvet morning'), + RgbInt8Color.rgbName(0x69, 0x64, 0x96, 'pq-10234c'), + RgbInt8Color.rgbName(0x78, 0x71, 0x21, 'pq-385c'), + RgbInt8Color.rgbName(0x6d, 0x71, 0x2e, 'pq-5757c'), + RgbInt8Color.rgbName(0x6a, 0x6f, 0x34, 'calla green'), + RgbInt8Color.rgbName(0x59, 0x75, 0x4d, 'willow bough'), + RgbInt8Color.rgbName(0x61, 0x6f, 0x65, 'laurel wreath'), + RgbInt8Color.rgbName(0x5b, 0x75, 0x70, 'pq-2463c'), + RgbInt8Color.rgbName(0x5f, 0x72, 0x78, 'goblin blue'), + RgbInt8Color.rgbName(0x5c, 0x6d, 0x7c, 'blue mirage'), + RgbInt8Color.rgbName(0x59, 0x72, 0x8e, 'coronet blue'), + RgbInt8Color.rgbName(0x68, 0x6e, 0x9f, 'pq-7668c'), + RgbInt8Color.rgbName(0x68, 0x79, 0x42, 'pq-8701c'), + RgbInt8Color.rgbName(0x5c, 0x7e, 0x51, 'pq-2265c'), + RgbInt8Color.rgbName(0x60, 0x79, 0x5a, 'pq-10314c'), + RgbInt8Color.rgbName(0x5b, 0x79, 0x61, 'comfrey'), + RgbInt8Color.rgbName(0x5e, 0x74, 0x61, 'pq-5615c'), + RgbInt8Color.rgbName(0x5d, 0x79, 0x75, 'pq-5487c'), + RgbInt8Color.rgbName(0x5c, 0x7f, 0x71, 'pq-5555c'), + RgbInt8Color.rgbName(0x5c, 0x79, 0x8e, 'provincial blue'), + RgbInt8Color.rgbName(0x5b, 0x7e, 0x98, 'blue heaven'), + RgbInt8Color.rgbName(0x62, 0x79, 0xa7, 'pq-10253c'), + RgbInt8Color.rgbName(0x65, 0x8d, 0xc6, 'provence'), + RgbInt8Color.rgbName(0x6e, 0x80, 0x40, 'pq-10332c'), + RgbInt8Color.rgbName(0x61, 0x84, 0x5b, 'english ivy'), + RgbInt8Color.rgbName(0x5f, 0x8d, 0x66, 'pq-8304c'), + RgbInt8Color.rgbName(0x61, 0x91, 0x87, 'beryl green'), + RgbInt8Color.rgbName(0x65, 0x8c, 0x88, 'oil blue'), + RgbInt8Color.rgbName(0x5c, 0x89, 0x9b, 'adriatic blue'), + RgbInt8Color.rgbName(0x63, 0x8c, 0x9d, 'pq-8221c'), + RgbInt8Color.rgbName(0x66, 0x8e, 0x98, 'pq-8241c'), + RgbInt8Color.rgbName(0x5f, 0x90, 0xad, 'pq-10269c'), + RgbInt8Color.rgbName(0x6d, 0xa9, 0xd2, 'alaskan blue'), + RgbInt8Color.rgbName(0x6e, 0xa2, 0xd5, 'little boy blue'), + RgbInt8Color.rgbName(0x65, 0x99, 0x59, 'pq-10307c'), + RgbInt8Color.rgbName(0x67, 0x9a, 0x6f, 'pq-10300c'), + RgbInt8Color.rgbName(0x68, 0x97, 0x7c, 'pq-8302c'), + RgbInt8Color.rgbName(0x68, 0x98, 0x81, 'pq-2458c'), + RgbInt8Color.rgbName(0x61, 0x98, 0xae, 'delphinium blue'), + RgbInt8Color.rgbName(0x63, 0x99, 0xae, 'pq-7696c'), + RgbInt8Color.rgbName(0x65, 0x9a, 0xb1, 'pq-2207c'), + RgbInt8Color.rgbName(0x6c, 0x99, 0x5a, 'pq-8323c'), + RgbInt8Color.rgbName(0x69, 0x9e, 0x6d, 'peppermint'), + RgbInt8Color.rgbName(0x65, 0xa0, 0xa5, 'pq-10287c'), + RgbInt8Color.rgbName(0x64, 0x9b, 0x9e, 'dusty turquoise'), + RgbInt8Color.rgbName(0x64, 0xa1, 0xad, 'aqua'), + RgbInt8Color.rgbName(0x6b, 0xaa, 0xae, 'aqua sea'), + RgbInt8Color.rgbName(0x6a, 0xae, 0xaa, 'pq-2460c'), + RgbInt8Color.rgbName(0x67, 0xbc, 0xb3, 'pool blue'), + RgbInt8Color.rgbName(0x6b, 0xbb, 0xae, 'pq-563c'), + RgbInt8Color.rgbName(0x97, 0xd7, 0x0, 'pq-375c'), + RgbInt8Color.rgbName(0x8b, 0xd3, 0xe6, 'pq-636c'), + RgbInt8Color.rgbName(0x88, 0xdb, 0xdf, 'pq-318c'), + RgbInt8Color.rgbName(0x9e, 0xa7, 0x0, 'pq-2305c'), + RgbInt8Color.rgbName(0x86, 0xd2, 0x95, 'pq-2255c'), + RgbInt8Color.rgbName(0x8c, 0xe2, 0xd0, 'pq-332c'), + RgbInt8Color.rgbName(0x9f, 0xc1, 0x31, 'lime green'), + RgbInt8Color.rgbName(0x9b, 0xb5, 0x3e, 'macaw green'), + RgbInt8Color.rgbName(0x8b, 0xc2, 0x8c, 'greengage'), + RgbInt8Color.rgbName(0x87, 0xd7, 0xbe, 'cabbage'), + RgbInt8Color.rgbName(0x75, 0x23, 0x29, 'sun-dried tomato'), + RgbInt8Color.rgbName(0x72, 0x26, 0x2c, 'merlot'), + RgbInt8Color.rgbName(0x7d, 0x20, 0x27, 'red dahlia'), + RgbInt8Color.rgbName(0x77, 0x21, 0x2e, 'biking red'), + RgbInt8Color.rgbName(0x77, 0x20, 0x2f, 'rhubarb'), + RgbInt8Color.rgbName(0x66, 0x35, 0x2b, 'cherry mahogany'), + RgbInt8Color.rgbName(0x64, 0x33, 0x35, 'pq-1817c'), + RgbInt8Color.rgbName(0x64, 0x31, 0x3e, 'burgundy'), + RgbInt8Color.rgbName(0x70, 0x27, 0x3d, 'pq-2042c'), + RgbInt8Color.rgbName(0x6f, 0x26, 0x3d, 'pq-209c'), + RgbInt8Color.rgbName(0x91, 0x0, 0x48, 'pq-221c'), + RgbInt8Color.rgbName(0x67, 0x2e, 0x45, 'pq-7643c'), + RgbInt8Color.rgbName(0x84, 0xb, 0x55, 'pq-235c'), + RgbInt8Color.rgbName(0x96, 0x0, 0x51, 'pq-676c'), + RgbInt8Color.rgbName(0x72, 0x24, 0x6c, 'pq-255c'), + RgbInt8Color.rgbName(0x93, 0x32, 0x8e, 'pq-513c'), + RgbInt8Color.rgbName(0xa4, 0x38, 0xa8, 'pq-2069c'), + RgbInt8Color.rgbName(0x76, 0x23, 0x2f, 'pq-188c'), + RgbInt8Color.rgbName(0x72, 0x22, 0x57, 'pq-7650c'), + RgbInt8Color.rgbName(0x6a, 0x2c, 0x3e, 'pq-7428c'), + RgbInt8Color.rgbName(0x69, 0x2d, 0x5d, 'phlox'), + RgbInt8Color.rgbName(0x6e, 0x2b, 0x62, 'pq-7657c'), + RgbInt8Color.rgbName(0xa0, 0x5e, 0xb5, 'pq-2583c'), + RgbInt8Color.rgbName(0x90, 0x63, 0xad, 'pq-3593c'), + RgbInt8Color.rgbName(0x73, 0x38, 0x1d, 'pq-168c'), + RgbInt8Color.rgbName(0x6b, 0x35, 0x29, 'pq-175c'), + RgbInt8Color.rgbName(0x60, 0x37, 0x3d, 'red mahogany'), + RgbInt8Color.rgbName(0x60, 0x37, 0x49, 'prune'), + RgbInt8Color.rgbName(0x71, 0x46, 0x23, 'pq-2320c'), + RgbInt8Color.rgbName(0x66, 0x33, 0x36, 'port'), + RgbInt8Color.rgbName(0x68, 0x34, 0x31, 'pq-7610c'), + RgbInt8Color.rgbName(0x6f, 0x46, 0x85, 'purple sapphire'), + RgbInt8Color.rgbName(0x78, 0x43, 0x84, 'bright violet'), + RgbInt8Color.rgbName(0x70, 0x48, 0x22, 'monk\'s robe'), + RgbInt8Color.rgbName(0x74, 0x4f, 0x28, 'pq-463c'), + RgbInt8Color.rgbName(0x6a, 0x33, 0x31, 'madder brown'), + RgbInt8Color.rgbName(0x6d, 0x33, 0x32, 'pq-7629c'), + RgbInt8Color.rgbName(0x64, 0x3a, 0x4c, 'crushed violets'), + RgbInt8Color.rgbName(0x6a, 0x34, 0x60, 'pq-7658c'), + RgbInt8Color.rgbName(0x6d, 0x35, 0x66, 'pq-8822c'), + RgbInt8Color.rgbName(0x77, 0x4d, 0x8e, 'royal lilac'), + RgbInt8Color.rgbName(0x78, 0x4e, 0x90, 'pq-2082c'), + RgbInt8Color.rgbName(0x6f, 0x50, 0x91, 'pq-7677c'), + RgbInt8Color.rgbName(0x70, 0x4e, 0x94, 'pq-8143c'), + RgbInt8Color.rgbName(0x95, 0x69, 0xbe, 'pq-2074c'), + RgbInt8Color.rgbName(0x92, 0x6e, 0xbf, 'pq-3575c'), + RgbInt8Color.rgbName(0x74, 0x53, 0x1c, 'pq-140c'), + RgbInt8Color.rgbName(0x73, 0x53, 0x1d, 'pq-7552c'), + RgbInt8Color.rgbName(0x63, 0x3f, 0x33, 'cappuccino'), + RgbInt8Color.rgbName(0x6b, 0x3d, 0x2e, 'pq-7595c'), + RgbInt8Color.rgbName(0x63, 0x42, 0x35, 'tiramisu'), + RgbInt8Color.rgbName(0x68, 0x3b, 0x39, 'hot chocolate'), + RgbInt8Color.rgbName(0x63, 0x40, 0x3a, 'fudgesickle'), + RgbInt8Color.rgbName(0x61, 0x3f, 0x4c, 'eggplant'), + RgbInt8Color.rgbName(0x68, 0x3d, 0x62, 'purple passion'), + RgbInt8Color.rgbName(0x69, 0x3c, 0x5e, 'pq-5125c'), + RgbInt8Color.rgbName(0x66, 0x43, 0x5a, 'pq-5195c'), + RgbInt8Color.rgbName(0x72, 0x58, 0x99, 'pq-10225c'), + RgbInt8Color.rgbName(0x77, 0x54, 0x96, 'deep lavender'), + RgbInt8Color.rgbName(0x96, 0x78, 0xd3, 'pq-2655c'), + RgbInt8Color.rgbName(0x68, 0x48, 0x32, 'emperador'), + RgbInt8Color.rgbName(0x67, 0x42, 0x30, 'pq-7603c'), + RgbInt8Color.rgbName(0x61, 0x47, 0x3b, 'pinecone'), + RgbInt8Color.rgbName(0x67, 0x47, 0x36, 'pq-7582c'), + RgbInt8Color.rgbName(0x60, 0x4b, 0x3e, 'pq-10381c'), + RgbInt8Color.rgbName(0x5f, 0x4c, 0x40, 'rain drum'), + RgbInt8Color.rgbName(0x67, 0x45, 0x50, 'plum wine'), + RgbInt8Color.rgbName(0x5e, 0x51, 0x4d, 'pq-411c'), + RgbInt8Color.rgbName(0x63, 0x4f, 0x62, 'vintage violet'), + RgbInt8Color.rgbName(0x6f, 0x45, 0x6e, 'sunset purple'), + RgbInt8Color.rgbName(0x6e, 0x46, 0x75, 'pq-8145c'), + RgbInt8Color.rgbName(0x6a, 0x51, 0x3b, 'coffee liqueúr'), + RgbInt8Color.rgbName(0x5e, 0x53, 0x47, 'canteen'), + RgbInt8Color.rgbName(0x5d, 0x53, 0x48, 'crocodile'), + RgbInt8Color.rgbName(0x62, 0x53, 0x4f, 'pq-8424c'), + RgbInt8Color.rgbName(0x5f, 0x57, 0x5c, 'rabbit'), + RgbInt8Color.rgbName(0x6c, 0x4e, 0x79, 'patrician purple'), + RgbInt8Color.rgbName(0x71, 0x5c, 0x2a, 'pq-147c'), + RgbInt8Color.rgbName(0x6c, 0x5d, 0x34, 'pq-7561c'), + RgbInt8Color.rgbName(0x5f, 0x5b, 0x4c, 'kalamata'), + RgbInt8Color.rgbName(0x5f, 0x5c, 0x58, 'pq-10396c'), + RgbInt8Color.rgbName(0x68, 0x5a, 0x4e, 'chocolate chip'), + RgbInt8Color.rgbName(0x62, 0x5d, 0x5d, 'dark gull gray'), + RgbInt8Color.rgbName(0x61, 0x5c, 0x60, 'volcanic glass'), + RgbInt8Color.rgbName(0x61, 0x5e, 0x5f, 'granite gray'), + RgbInt8Color.rgbName(0x62, 0x5b, 0x5c, 'plum kitten'), + RgbInt8Color.rgbName(0x60, 0x5e, 0x5c, 'pq-8403c'), + RgbInt8Color.rgbName(0x5f, 0x5e, 0x62, 'castlerock'), + RgbInt8Color.rgbName(0x67, 0x5a, 0x74, 'mulled grape'), + RgbInt8Color.rgbName(0x60, 0x5d, 0x75, 'pq-2363c'), + RgbInt8Color.rgbName(0x66, 0x59, 0x6c, 'pq-2364c'), + RgbInt8Color.rgbName(0x62, 0x61, 0x7e, 'heron'), + RgbInt8Color.rgbName(0x64, 0x60, 0x93, 'corsican blue'), + RgbInt8Color.rgbName(0x71, 0x61, 0x35, 'pq-7769c'), + RgbInt8Color.rgbName(0x64, 0x60, 0x49, 'burnt olive'), + RgbInt8Color.rgbName(0x71, 0x64, 0x3e, 'lizard'), + RgbInt8Color.rgbName(0x6a, 0x6a, 0x45, 'olive branch'), + RgbInt8Color.rgbName(0x64, 0x63, 0x56, 'dusty olive'), + RgbInt8Color.rgbName(0x68, 0x5e, 0x4f, 'stone gray'), + RgbInt8Color.rgbName(0x65, 0x66, 0x5c, 'pq-417c'), + RgbInt8Color.rgbName(0x65, 0x64, 0x66, 'smoked pearl'), + RgbInt8Color.rgbName(0x64, 0x67, 0x62, 'castor gray'), + RgbInt8Color.rgbName(0x66, 0x65, 0x64, 'pewter'), + RgbInt8Color.rgbName(0x63, 0x66, 0x6a, 'pq-coolgray10c'), + RgbInt8Color.rgbName(0x66, 0x67, 0x6d, 'quiet shade'), + RgbInt8Color.rgbName(0x6a, 0x63, 0x78, 'cadet'), + RgbInt8Color.rgbName(0x62, 0x68, 0x79, 'folkstone gray'), + RgbInt8Color.rgbName(0x66, 0x64, 0x8b, 'twilight purple'), + RgbInt8Color.rgbName(0x6d, 0x66, 0x95, 'veronica'), + RgbInt8Color.rgbName(0x69, 0x63, 0x99, 'pq-8162c'), + RgbInt8Color.rgbName(0x69, 0x6b, 0xa0, 'dusted peri'), + RgbInt8Color.rgbName(0x70, 0x7b, 0xb4, 'iolite'), + RgbInt8Color.rgbName(0x70, 0x6a, 0x3a, 'pq-10339c'), + RgbInt8Color.rgbName(0x5f, 0x73, 0x55, 'vineyard green'), + RgbInt8Color.rgbName(0x64, 0x77, 0x55, 'dill'), + RgbInt8Color.rgbName(0x66, 0x6b, 0x54, 'olivine'), + RgbInt8Color.rgbName(0x68, 0x6d, 0x6c, 'sedona sage'), + RgbInt8Color.rgbName(0x67, 0x72, 0x83, 'flint stone'), + RgbInt8Color.rgbName(0x64, 0x6f, 0x9b, 'bleached denim'), + RgbInt8Color.rgbName(0x67, 0x6d, 0x99, 'pq-2109c'), + RgbInt8Color.rgbName(0x64, 0x76, 0x92, 'pq-2138c'), + RgbInt8Color.rgbName(0x6c, 0x6e, 0xa4, 'pq-10240c'), + RgbInt8Color.rgbName(0x7a, 0x93, 0xdc, 'pq-2123c'), + RgbInt8Color.rgbName(0x78, 0x7c, 0x32, 'pq-8681c'), + RgbInt8Color.rgbName(0x72, 0x73, 0x37, 'pq-7749c'), + RgbInt8Color.rgbName(0x69, 0x7a, 0x7e, 'trooper'), + RgbInt8Color.rgbName(0x64, 0x7e, 0x90, 'pq-10264c'), + RgbInt8Color.rgbName(0x65, 0x76, 0x9a, 'colony blue'), + RgbInt8Color.rgbName(0x73, 0x91, 0xc8, 'cornflower blue'), + RgbInt8Color.rgbName(0x94, 0x93, 0x0, 'pq-384c'), + RgbInt8Color.rgbName(0x87, 0x81, 0x1b, 'pq-8662c'), + RgbInt8Color.rgbName(0x6d, 0x83, 0x67, 'pq-10313c'), + RgbInt8Color.rgbName(0x64, 0x85, 0x89, 'arctic'), + RgbInt8Color.rgbName(0x6e, 0x80, 0x82, 'stormy sea'), + RgbInt8Color.rgbName(0x66, 0x82, 0x9a, 'blue shadow'), + RgbInt8Color.rgbName(0x68, 0x81, 0x97, 'pq-2165c'), + RgbInt8Color.rgbName(0x6a, 0x7f, 0x9d, 'pq-8181c'), + RgbInt8Color.rgbName(0x6e, 0x80, 0xa9, 'pq-2137c'), + RgbInt8Color.rgbName(0x67, 0x87, 0xb7, 'pq-7682c'), + RgbInt8Color.rgbName(0x8e, 0x8c, 0x13, 'pq-582c'), + RgbInt8Color.rgbName(0x72, 0x8c, 0x49, 'pq-8325c'), + RgbInt8Color.rgbName(0x6b, 0x8d, 0x53, 'forest green'), + RgbInt8Color.rgbName(0x69, 0x91, 0x58, 'fluorite green'), + RgbInt8Color.rgbName(0x65, 0x8e, 0x67, 'stone green'), + RgbInt8Color.rgbName(0x6b, 0x8d, 0x73, 'pq-2407c'), + RgbInt8Color.rgbName(0x6a, 0x89, 0x88, 'trellis'), + RgbInt8Color.rgbName(0x6a, 0x8e, 0x91, 'pq-8261c'), + RgbInt8Color.rgbName(0x6d, 0x89, 0x94, 'smoke blue'), + RgbInt8Color.rgbName(0x67, 0x89, 0x9c, 'pq-8201c'), + RgbInt8Color.rgbName(0x6d, 0x8a, 0xab, 'pq-10257c'), + RgbInt8Color.rgbName(0x80, 0x94, 0xdd, 'pq-7452c'), + RgbInt8Color.rgbName(0x71, 0x99, 0x49, 'pq-7490c'), + RgbInt8Color.rgbName(0x6b, 0x95, 0x60, 'pq-2264c'), + RgbInt8Color.rgbName(0x69, 0x98, 0xa0, 'pq-10281c'), + RgbInt8Color.rgbName(0x78, 0x9d, 0x4a, 'pq-576c'), + RgbInt8Color.rgbName(0x6f, 0xa2, 0x6b, 'shamrock'), + RgbInt8Color.rgbName(0x6f, 0xa2, 0x87, 'pq-556c'), + RgbInt8Color.rgbName(0x70, 0xa3, 0x8d, 'crème de menthe'), + RgbInt8Color.rgbName(0x6d, 0xa2, 0x9e, 'canton'), + RgbInt8Color.rgbName(0x6f, 0x9f, 0xa9, 'reef waters'), + RgbInt8Color.rgbName(0x6b, 0xa4, 0xb8, 'pq-549c'), + RgbInt8Color.rgbName(0x78, 0xbd, 0xd4, 'blue topaz'), + RgbInt8Color.rgbName(0x6d, 0xa7, 0x9f, 'pq-10293c'), + RgbInt8Color.rgbName(0x73, 0xa8, 0x9e, 'wasabi'), + RgbInt8Color.rgbName(0x71, 0xb0, 0xb4, 'pq-2232c'), + RgbInt8Color.rgbName(0x77, 0xac, 0xc7, 'air blue'), + RgbInt8Color.rgbName(0x71, 0xb2, 0xc9, 'pq-7458c'), + RgbInt8Color.rgbName(0x73, 0x99, 0x57, 'meadow green'), + RgbInt8Color.rgbName(0x71, 0xb7, 0x90, 'pq-2248c'), + RgbInt8Color.rgbName(0x72, 0xb0, 0xbd, 'pq-2218c'), + RgbInt8Color.rgbName(0x76, 0xc1, 0xb2, 'cascade'), + RgbInt8Color.rgbName(0x90, 0xa8, 0x2e, 'pq-10326c'), + RgbInt8Color.rgbName(0xa7, 0xd5, 0x0, 'pq-2291c'), + RgbInt8Color.rgbName(0xa8, 0xc7, 0x0, 'pq-3570c'), + RgbInt8Color.rgbName(0xaa, 0xdb, 0x1e, 'pq-2290c'), + RgbInt8Color.rgbName(0x95, 0xa8, 0x41, 'pq-10325c'), + RgbInt8Color.rgbName(0x91, 0xdc, 0xe8, 'tanager turquoise'), + RgbInt8Color.rgbName(0xa8, 0xad, 0x0, 'pq-383c'), + RgbInt8Color.rgbName(0x7b, 0xb3, 0x69, 'grass green'), + RgbInt8Color.rgbName(0x8f, 0xe2, 0xb0, 'pq-352c'), + RgbInt8Color.rgbName(0x7a, 0xcc, 0xb8, 'beveled glass'), + RgbInt8Color.rgbName(0x95, 0xde, 0xe3, 'island paradise'), + RgbInt8Color.rgbName(0x87, 0xd8, 0xc3, 'ice green'), + RgbInt8Color.rgbName(0xa4, 0xd2, 0x33, 'pq-2299c'), + RgbInt8Color.rgbName(0x7c, 0x25, 0x29, 'pq-1815c'), + RgbInt8Color.rgbName(0x6e, 0x36, 0x2c, 'smoked paprika'), + RgbInt8Color.rgbName(0x70, 0x2f, 0x3b, 'cordovan'), + RgbInt8Color.rgbName(0x72, 0x2b, 0x3f, 'rhododendron'), + RgbInt8Color.rgbName(0x7a, 0x1f, 0x3d, 'beet red'), + RgbInt8Color.rgbName(0x6f, 0x2c, 0x3f, 'pq-505c'), + RgbInt8Color.rgbName(0x7d, 0x22, 0x48, 'pq-216c'), + RgbInt8Color.rgbName(0x82, 0x1b, 0x60, 'pq-8843c'), + RgbInt8Color.rgbName(0x89, 0xc, 0x58, 'pq-228c'), + RgbInt8Color.rgbName(0x9e, 0x0, 0x7e, 'pq-2415c'), + RgbInt8Color.rgbName(0xad, 0x1a, 0xac, 'pq-253c'), + RgbInt8Color.rgbName(0xb0, 0x0, 0x8e, 'pq-2405c'), + RgbInt8Color.rgbName(0xac, 0x4f, 0xc6, 'pq-2582c'), + RgbInt8Color.rgbName(0xb1, 0x4e, 0xb5, 'pq-2068c'), + RgbInt8Color.rgbName(0x7c, 0x24, 0x39, 'rumba red'), + RgbInt8Color.rgbName(0x7c, 0x28, 0x55, 'pq-683c'), + RgbInt8Color.rgbName(0x80, 0x22, 0x5f, 'pq-242c'), + RgbInt8Color.rgbName(0x80, 0x27, 0x6c, 'pq-249c'), + RgbInt8Color.rgbName(0x81, 0x28, 0x6d, 'pq-8844c'), + RgbInt8Color.rgbName(0x81, 0x31, 0x2f, 'pq-181c'), + RgbInt8Color.rgbName(0x80, 0x2f, 0x2d, 'pq-7624c'), + RgbInt8Color.rgbName(0x78, 0x2a, 0x39, 'tibetan red'), + RgbInt8Color.rgbName(0x7c, 0x29, 0x46, 'red plum'), + RgbInt8Color.rgbName(0x73, 0x2e, 0x4a, 'pq-7642c'), + RgbInt8Color.rgbName(0x82, 0x32, 0x70, 'hollyhock'), + RgbInt8Color.rgbName(0x73, 0x36, 0x2a, 'brandy brown'), + RgbInt8Color.rgbName(0x77, 0x33, 0x76, 'sparkling grape'), + RgbInt8Color.rgbName(0x79, 0x65, 0xb2, 'pq-2095c'), + RgbInt8Color.rgbName(0x7d, 0x3f, 0x16, 'pq-725c'), + RgbInt8Color.rgbName(0x74, 0x33, 0x32, 'russet brown'), + RgbInt8Color.rgbName(0x6a, 0x37, 0x35, 'pq-498c'), + RgbInt8Color.rgbName(0x7a, 0x41, 0x83, 'pq-7662c'), + RgbInt8Color.rgbName(0x66, 0x42, 0x38, 'brunette'), + RgbInt8Color.rgbName(0x77, 0x33, 0x3b, 'ruby wine'), + RgbInt8Color.rgbName(0x73, 0x34, 0x38, 'pq-3523c'), + RgbInt8Color.rgbName(0x6f, 0x3c, 0x56, 'amaranth'), + RgbInt8Color.rgbName(0x70, 0x3f, 0x2a, 'pq-478c'), + RgbInt8Color.rgbName(0x6b, 0x41, 0x39, 'cinnamon'), + RgbInt8Color.rgbName(0x6e, 0x40, 0x3c, 'sable'), + RgbInt8Color.rgbName(0x70, 0x39, 0x3f, 'oxblood red'), + RgbInt8Color.rgbName(0x6d, 0x41, 0x46, 'pq-8541c'), + RgbInt8Color.rgbName(0x71, 0x3a, 0x42, 'pq-8562c'), + RgbInt8Color.rgbName(0x75, 0x40, 0x6a, 'wood violet'), + RgbInt8Color.rgbName(0x6d, 0x47, 0x73, 'spiced plum'), + RgbInt8Color.rgbName(0x6e, 0x49, 0x3a, 'friar brown'), + RgbInt8Color.rgbName(0x75, 0x47, 0x34, 'tortoise shell'), + RgbInt8Color.rgbName(0x68, 0x4b, 0x40, 'mustang'), + RgbInt8Color.rgbName(0x6b, 0x4c, 0x4c, 'pq-7616c'), + RgbInt8Color.rgbName(0x70, 0x48, 0x53, 'pq-8465c'), + RgbInt8Color.rgbName(0x67, 0x56, 0x57, 'plum truffle'), + RgbInt8Color.rgbName(0x6e, 0x4e, 0x60, 'pq-10195c'), + RgbInt8Color.rgbName(0x9b, 0x7d, 0xd4, 'pq-2087c'), + RgbInt8Color.rgbName(0x99, 0x7a, 0xdb, 'pq-928c'), + RgbInt8Color.rgbName(0x6f, 0x51, 0x37, 'pq-2321c'), + RgbInt8Color.rgbName(0x71, 0x4e, 0x30, 'pq-8585c'), + RgbInt8Color.rgbName(0x6e, 0x4f, 0x3a, 'bison'), + RgbInt8Color.rgbName(0x70, 0x4f, 0x37, 'dachshund'), + RgbInt8Color.rgbName(0x65, 0x53, 0x41, 'teak'), + RgbInt8Color.rgbName(0x6b, 0x54, 0x3e, 'sepia'), + RgbInt8Color.rgbName(0x6c, 0x50, 0x43, 'cocoa brown'), + RgbInt8Color.rgbName(0x6d, 0x4f, 0x47, 'pq-7518c'), + RgbInt8Color.rgbName(0x69, 0x59, 0x5c, 'sparrow'), + RgbInt8Color.rgbName(0x6c, 0x56, 0x56, 'peppercorn'), + RgbInt8Color.rgbName(0x67, 0x5e, 0x60, 'pq-10385c'), + RgbInt8Color.rgbName(0x6c, 0x57, 0x65, 'black plum'), + RgbInt8Color.rgbName(0x6f, 0x59, 0x65, 'ephemera'), + RgbInt8Color.rgbName(0x6c, 0x59, 0x71, 'montana grape'), + RgbInt8Color.rgbName(0x6b, 0x58, 0x76, 'grape compote'), + RgbInt8Color.rgbName(0x76, 0x4f, 0x82, 'meadow violet'), + RgbInt8Color.rgbName(0x74, 0x4f, 0x83, 'pq-8144c'), + RgbInt8Color.rgbName(0x7e, 0x6e, 0xac, 'dahlia purple'), + RgbInt8Color.rgbName(0x80, 0x5d, 0x24, 'tapenade'), + RgbInt8Color.rgbName(0x7d, 0x5a, 0x32, 'pq-10363c'), + RgbInt8Color.rgbName(0x70, 0x56, 0x41, 'pq-10375c'), + RgbInt8Color.rgbName(0x6d, 0x58, 0x4b, 'pq-10380c'), + RgbInt8Color.rgbName(0x69, 0x5e, 0x4b, 'capers'), + RgbInt8Color.rgbName(0x6e, 0x5c, 0x4b, 'cub'), + RgbInt8Color.rgbName(0x68, 0x5c, 0x53, 'morel'), + RgbInt8Color.rgbName(0x69, 0x61, 0x58, 'pq-405c'), + RgbInt8Color.rgbName(0x67, 0x60, 0x5f, 'pq-8423c'), + RgbInt8Color.rgbName(0x67, 0x61, 0x68, 'excalibur'), + RgbInt8Color.rgbName(0x73, 0x5b, 0x6a, 'arctic dusk'), + RgbInt8Color.rgbName(0x73, 0x66, 0x35, 'pq-7756c'), + RgbInt8Color.rgbName(0x79, 0x67, 0x34, 'pq-10345c'), + RgbInt8Color.rgbName(0x7a, 0x63, 0x32, 'plantation'), + RgbInt8Color.rgbName(0x75, 0x66, 0x3e, 'nutria'), + RgbInt8Color.rgbName(0x7a, 0x64, 0x3f, 'butternut'), + RgbInt8Color.rgbName(0x69, 0x61, 0x56, 'bungee cord'), + RgbInt8Color.rgbName(0x6d, 0x62, 0x5b, 'falcon'), + RgbInt8Color.rgbName(0x6e, 0x62, 0x59, 'pq-warmgray11c'), + RgbInt8Color.rgbName(0x68, 0x67, 0x67, 'gargoyle'), + RgbInt8Color.rgbName(0x6c, 0x64, 0x63, 'pq-2334c'), + RgbInt8Color.rgbName(0x6d, 0x63, 0x6b, 'shark'), + RgbInt8Color.rgbName(0x6c, 0x6a, 0x81, 'pq-2362c'), + RgbInt8Color.rgbName(0x6f, 0x65, 0x9c, 'pq-10230c'), + RgbInt8Color.rgbName(0x75, 0x66, 0xa0, 'pq-7676c'), + RgbInt8Color.rgbName(0xa0, 0x74, 0x0, 'pq-132c'), + RgbInt8Color.rgbName(0x74, 0x71, 0x36, 'pq-7761c'), + RgbInt8Color.rgbName(0x7a, 0x72, 0x3c, 'pq-8680c'), + RgbInt8Color.rgbName(0x75, 0x6d, 0x47, 'olive drab'), + RgbInt8Color.rgbName(0x71, 0x6a, 0x4d, 'martini olive'), + RgbInt8Color.rgbName(0x71, 0x74, 0x4c, 'pq-8700c'), + RgbInt8Color.rgbName(0x6e, 0x6e, 0x5c, 'deep lichen green'), + RgbInt8Color.rgbName(0x6e, 0x71, 0x53, 'loden green'), + RgbInt8Color.rgbName(0x6e, 0x6c, 0x69, 'pq-10395c'), + RgbInt8Color.rgbName(0x6b, 0x71, 0x69, 'agave green'), + RgbInt8Color.rgbName(0x6b, 0x71, 0x75, 'pq-10390c'), + RgbInt8Color.rgbName(0x72, 0x6f, 0x70, 'steel gray'), + RgbInt8Color.rgbName(0x71, 0x6e, 0x6a, 'pq-2333c'), + RgbInt8Color.rgbName(0x6f, 0x6e, 0x6d, 'pq-8402c'), + RgbInt8Color.rgbName(0x71, 0x73, 0x88, 'blue granite'), + RgbInt8Color.rgbName(0x70, 0x70, 0x8d, 'pq-2361c'), + RgbInt8Color.rgbName(0x8a, 0x7b, 0x19, 'pq-620c'), + RgbInt8Color.rgbName(0x88, 0x7c, 0x1b, 'pq-8661c'), + RgbInt8Color.rgbName(0x79, 0x7b, 0x3a, 'guacamole'), + RgbInt8Color.rgbName(0x7b, 0x7f, 0x32, 'woodbine'), + RgbInt8Color.rgbName(0x7c, 0x80, 0x34, 'pq-7748c'), + RgbInt8Color.rgbName(0x75, 0x7a, 0x4e, 'calliste green'), + RgbInt8Color.rgbName(0x73, 0x7b, 0x4c, 'pq-5763c'), + RgbInt8Color.rgbName(0x78, 0x76, 0x5b, 'pq-8520c'), + RgbInt8Color.rgbName(0x71, 0x7e, 0x6f, 'sea spray'), + RgbInt8Color.rgbName(0x70, 0x73, 0x72, 'pq-424c'), + RgbInt8Color.rgbName(0x71, 0x7c, 0x7d, 'pq-444c'), + RgbInt8Color.rgbName(0x75, 0x78, 0x7b, 'pq-coolgray9c'), + RgbInt8Color.rgbName(0x70, 0x78, 0x9b, 'blue ice'), + RgbInt8Color.rgbName(0x6e, 0x7e, 0x99, 'infinity'), + RgbInt8Color.rgbName(0x6e, 0x7c, 0xa0, 'pq-7667c'), + RgbInt8Color.rgbName(0x9a, 0x87, 0x0, 'pq-3985c'), + RgbInt8Color.rgbName(0x79, 0x86, 0x3c, 'pq-7491c'), + RgbInt8Color.rgbName(0x77, 0x82, 0x4a, 'grasshopper'), + RgbInt8Color.rgbName(0x70, 0x85, 0x73, 'pq-5625c'), + RgbInt8Color.rgbName(0x73, 0x81, 0x7e, 'pq-8500c'), + RgbInt8Color.rgbName(0x74, 0x80, 0x9a, 'stonewash'), + RgbInt8Color.rgbName(0x71, 0x7f, 0x9b, 'country blue'), + RgbInt8Color.rgbName(0x71, 0x81, 0xa4, 'english manor'), + RgbInt8Color.rgbName(0x72, 0x82, 0x9f, 'pq-2373c'), + RgbInt8Color.rgbName(0x6f, 0x86, 0xa9, 'pq-10244c'), + RgbInt8Color.rgbName(0x71, 0x85, 0xaa, 'pq-10252c'), + RgbInt8Color.rgbName(0x7c, 0x83, 0xbc, 'deep periwinkle'), + RgbInt8Color.rgbName(0x81, 0xa0, 0xd4, 'vista blue'), + RgbInt8Color.rgbName(0x7a, 0x9d, 0xcb, 'della robbia blue'), + RgbInt8Color.rgbName(0x9a, 0x95, 0x0, 'pq-391c'), + RgbInt8Color.rgbName(0xa0, 0x92, 0x0, 'pq-399c'), + RgbInt8Color.rgbName(0x83, 0x8e, 0x25, 'pq-8345c'), + RgbInt8Color.rgbName(0x85, 0x90, 0x26, 'pq-8664c'), + RgbInt8Color.rgbName(0x78, 0x87, 0x4d, 'pq-10331c'), + RgbInt8Color.rgbName(0x6f, 0x8c, 0x69, 'turf green'), + RgbInt8Color.rgbName(0x74, 0x8c, 0x69, 'watercress'), + RgbInt8Color.rgbName(0x6f, 0x8d, 0x6a, 'kashmir'), + RgbInt8Color.rgbName(0x73, 0x90, 0x72, 'shale green'), + RgbInt8Color.rgbName(0x76, 0x8a, 0x75, 'hedge green'), + RgbInt8Color.rgbName(0x6d, 0x91, 0x92, 'mineral blue'), + RgbInt8Color.rgbName(0x76, 0x8b, 0x99, 'pq-10263c'), + RgbInt8Color.rgbName(0x74, 0x89, 0x95, 'citadel'), + RgbInt8Color.rgbName(0x6b, 0x8f, 0x9c, 'pq-2178c'), + RgbInt8Color.rgbName(0x72, 0x91, 0xb4, 'allure'), + RgbInt8Color.rgbName(0x7b, 0xa4, 0xdb, 'pq-659c'), + RgbInt8Color.rgbName(0x7b, 0xa6, 0xde, 'pq-7453c'), + RgbInt8Color.rgbName(0x81, 0x95, 0x48, 'peridot'), + RgbInt8Color.rgbName(0x76, 0x93, 0x58, 'piquant green'), + RgbInt8Color.rgbName(0x77, 0x95, 0x57, 'pq-8324c'), + RgbInt8Color.rgbName(0x73, 0x9d, 0x66, 'pq-10306c'), + RgbInt8Color.rgbName(0x75, 0x94, 0x65, 'jade green'), + RgbInt8Color.rgbName(0x74, 0x95, 0x6c, 'pq-2263c'), + RgbInt8Color.rgbName(0x7a, 0x9b, 0x78, 'mineral green'), + RgbInt8Color.rgbName(0x72, 0x9b, 0x8b, 'feldspar'), + RgbInt8Color.rgbName(0x70, 0x9a, 0x89, 'malachite green'), + RgbInt8Color.rgbName(0x76, 0x96, 0x84, 'pq-8301c'), + RgbInt8Color.rgbName(0x70, 0x95, 0x92, 'pq-8281c'), + RgbInt8Color.rgbName(0x6f, 0x9b, 0xa4, 'pq-2211c'), + RgbInt8Color.rgbName(0x75, 0x99, 0xae, 'pq-10268c'), + RgbInt8Color.rgbName(0x75, 0x94, 0xb3, 'pq-2157c'), + RgbInt8Color.rgbName(0x7f, 0xad, 0xe3, 'pq-2142c'), + RgbInt8Color.rgbName(0x81, 0xb0, 0xd2, 'pq-2169c'), + RgbInt8Color.rgbName(0x7b, 0xaf, 0xd4, 'pq-542c'), + RgbInt8Color.rgbName(0x77, 0x9e, 0x7c, 'pq-10299c'), + RgbInt8Color.rgbName(0x77, 0xa2, 0x76, 'jadesheen'), + RgbInt8Color.rgbName(0x78, 0x9f, 0x90, 'pq-624c'), + RgbInt8Color.rgbName(0x74, 0x9f, 0xae, 'pq-10274c'), + RgbInt8Color.rgbName(0x70, 0xa4, 0xb0, 'stillwater'), + RgbInt8Color.rgbName(0x77, 0x9f, 0xb5, 'pq-2206c'), + RgbInt8Color.rgbName(0x72, 0xa8, 0xba, 'milky blue'), + RgbInt8Color.rgbName(0x7b, 0xa0, 0xc0, 'dusk blue'), + RgbInt8Color.rgbName(0x79, 0xb5, 0xd8, 'baltic sea'), + RgbInt8Color.rgbName(0x7c, 0xb0, 0x83, 'zephyr green'), + RgbInt8Color.rgbName(0x76, 0xa7, 0xab, 'nile blue'), + RgbInt8Color.rgbName(0x76, 0xaf, 0xb6, 'marine blue'), + RgbInt8Color.rgbName(0x7b, 0xa7, 0xbc, 'pq-7695c'), + RgbInt8Color.rgbName(0x7c, 0xb0, 0x8a, 'ming'), + RgbInt8Color.rgbName(0x7c, 0xb6, 0x8e, 'light grass green'), + RgbInt8Color.rgbName(0x7b, 0xb5, 0xa3, 'dusty jade green'), + RgbInt8Color.rgbName(0x7f, 0xbb, 0x9e, 'neptune green'), + RgbInt8Color.rgbName(0x82, 0xc2, 0xc7, 'tibetan stone'), + RgbInt8Color.rgbName(0x7b, 0xc4, 0xc4, 'aqua sky'), + RgbInt8Color.rgbName(0x8b, 0xbe, 0xe8, 'pq-2141c'), + RgbInt8Color.rgbName(0x81, 0xc3, 0xb4, 'holiday'), + RgbInt8Color.rgbName(0x8d, 0xc8, 0xe8, 'pq-2905c'), + RgbInt8Color.rgbName(0xad, 0xcb, 0x0, 'pq-3507c'), + RgbInt8Color.rgbName(0x9a, 0xdb, 0xe8, 'pq-304c'), + RgbInt8Color.rgbName(0x9f, 0xdd, 0xed, 'pq-9464c'), + RgbInt8Color.rgbName(0x9b, 0xe1, 0x98, 'pq-2267c'), + RgbInt8Color.rgbName(0x97, 0xbc, 0x62, 'bright lime green'), + RgbInt8Color.rgbName(0x85, 0xce, 0xd1, 'aqua splash'), + RgbInt8Color.rgbName(0x9d, 0xe7, 0xd7, 'pq-green0921c'), + RgbInt8Color.rgbName(0x91, 0xd6, 0xac, 'pq-345c'), + RgbInt8Color.rgbName(0x8f, 0xd6, 0xbd, 'pq-337c'), + RgbInt8Color.rgbName(0x9b, 0xe3, 0xbf, 'pq-7478c'), + RgbInt8Color.rgbName(0x98, 0xdd, 0xde, 'limpet shell'), + RgbInt8Color.rgbName(0x99, 0xd6, 0xea, 'pq-2975c'), + RgbInt8Color.rgbName(0x8a, 0x15, 0x38, 'pq-1955c'), + RgbInt8Color.rgbName(0xa5, 0x0, 0x34, 'pq-207c'), + RgbInt8Color.rgbName(0x86, 0x1f, 0x41, 'pq-208c'), + RgbInt8Color.rgbName(0x8c, 0x1c, 0x59, 'pq-8842c'), + RgbInt8Color.rgbName(0x8a, 0x1b, 0x61, 'pq-7649c'), + RgbInt8Color.rgbName(0xa5, 0x0, 0x50, 'pq-220c'), + RgbInt8Color.rgbName(0xa2, 0x0, 0x67, 'pq-234c'), + RgbInt8Color.rgbName(0xa5, 0x18, 0x90, 'pq-248c'), + RgbInt8Color.rgbName(0xbb, 0x16, 0xa3, 'pq-247c'), + RgbInt8Color.rgbName(0xbb, 0x29, 0xbb, 'pq-purplec'), + RgbInt8Color.rgbName(0x8a, 0x22, 0x32, 'rio red'), + RgbInt8Color.rgbName(0x86, 0x26, 0x33, 'pq-202c'), + RgbInt8Color.rgbName(0x87, 0x26, 0x51, 'pq-7435c'), + RgbInt8Color.rgbName(0x8a, 0x2a, 0x2b, 'pq-7623c'), + RgbInt8Color.rgbName(0x7f, 0x30, 0x35, 'pq-491c'), + RgbInt8Color.rgbName(0x78, 0x2f, 0x40, 'pq-195c'), + RgbInt8Color.rgbName(0x80, 0x2a, 0x50, 'raspberry radiance'), + RgbInt8Color.rgbName(0x83, 0x31, 0x77, 'pq-512c'), + RgbInt8Color.rgbName(0x8a, 0x39, 0x1b, 'pq-7526c'), + RgbInt8Color.rgbName(0x83, 0x39, 0x21, 'pq-1685c'), + RgbInt8Color.rgbName(0x7f, 0x37, 0x76, 'pq-8845c'), + RgbInt8Color.rgbName(0x7d, 0x35, 0x71, 'pq-10207c'), + RgbInt8Color.rgbName(0x85, 0x3b, 0x7b, 'byzantium'), + RgbInt8Color.rgbName(0x85, 0x43, 0x1e, 'pq-7517c'), + RgbInt8Color.rgbName(0x7e, 0x2d, 0x40, 'pq-7638c'), + RgbInt8Color.rgbName(0x83, 0x2e, 0x5d, 'pq-8821c'), + RgbInt8Color.rgbName(0x84, 0x3e, 0x83, 'dahlia'), + RgbInt8Color.rgbName(0x8b, 0x47, 0x20, 'pq-1615c'), + RgbInt8Color.rgbName(0x86, 0x4c, 0x24, 'caramel café'), + RgbInt8Color.rgbName(0x7c, 0x3a, 0x2d, 'pq-7594c'), + RgbInt8Color.rgbName(0x78, 0x39, 0x37, 'spiced apple'), + RgbInt8Color.rgbName(0x7b, 0x35, 0x39, 'red pear'), + RgbInt8Color.rgbName(0x80, 0x30, 0x4c, 'beaujolais'), + RgbInt8Color.rgbName(0x84, 0x34, 0x4e, 'pq-506c'), + RgbInt8Color.rgbName(0x85, 0x32, 0x5c, 'boysenberry'), + RgbInt8Color.rgbName(0x94, 0x45, 0xb, 'pq-1535c'), + RgbInt8Color.rgbName(0x7c, 0x42, 0x3c, 'henna'), + RgbInt8Color.rgbName(0x7a, 0x3e, 0x3a, 'pq-499c'), + RgbInt8Color.rgbName(0x76, 0x42, 0x42, 'pq-8561c'), + RgbInt8Color.rgbName(0x72, 0x43, 0x3f, 'pq-8563c'), + RgbInt8Color.rgbName(0x6e, 0x4c, 0x4b, 'marron'), + RgbInt8Color.rgbName(0x71, 0x4a, 0x41, 'root beer'), + RgbInt8Color.rgbName(0x73, 0x4d, 0x5b, 'pq-8464c'), + RgbInt8Color.rgbName(0x7b, 0x43, 0x68, 'grape kiss'), + RgbInt8Color.rgbName(0x8b, 0x58, 0x97, 'dewberry'), + RgbInt8Color.rgbName(0x91, 0x49, 0x10, 'pq-2315c'), + RgbInt8Color.rgbName(0x7b, 0x49, 0x31, 'pq-7602c'), + RgbInt8Color.rgbName(0x77, 0x51, 0x35, 'pq-7568c'), + RgbInt8Color.rgbName(0x73, 0x4b, 0x42, 'mink'), + RgbInt8Color.rgbName(0x79, 0x4c, 0x3c, 'pq-8560c'), + RgbInt8Color.rgbName(0x77, 0x4b, 0x4b, 'pq-8564c'), + RgbInt8Color.rgbName(0x76, 0x4e, 0x50, 'pq-8565c'), + RgbInt8Color.rgbName(0x7a, 0x4b, 0x56, 'nocturne'), + RgbInt8Color.rgbName(0x70, 0x58, 0x61, 'flint'), + RgbInt8Color.rgbName(0x7e, 0x49, 0x66, 'pq-2056c'), + RgbInt8Color.rgbName(0x76, 0x52, 0x69, 'berry conserve'), + RgbInt8Color.rgbName(0x72, 0x56, 0x71, 'grape jam'), + RgbInt8Color.rgbName(0x74, 0x55, 0x87, 'purple heart'), + RgbInt8Color.rgbName(0x7b, 0x5d, 0x9d, 'pq-10216c'), + RgbInt8Color.rgbName(0xa7, 0x7b, 0xca, 'pq-2577c'), + RgbInt8Color.rgbName(0x7c, 0x52, 0x2a, 'pq-8582c'), + RgbInt8Color.rgbName(0x75, 0x51, 0x39, 'toffee'), + RgbInt8Color.rgbName(0x72, 0x54, 0x40, 'partridge'), + RgbInt8Color.rgbName(0x7b, 0x4d, 0x35, 'pq-7588c'), + RgbInt8Color.rgbName(0x7c, 0x4d, 0x3a, 'pq-4705c'), + RgbInt8Color.rgbName(0x70, 0x58, 0x53, 'pq-2477c'), + RgbInt8Color.rgbName(0x80, 0x4f, 0x5a, 'crushed berry'), + RgbInt8Color.rgbName(0x7c, 0x53, 0x79, 'concord grape'), + RgbInt8Color.rgbName(0x7a, 0x54, 0x7f, 'crushed grape'), + RgbInt8Color.rgbName(0x89, 0x86, 0xca, 'pq-7446c'), + RgbInt8Color.rgbName(0x79, 0x5d, 0x34, 'breen'), + RgbInt8Color.rgbName(0x7d, 0x62, 0x2e, 'pq-7560c'), + RgbInt8Color.rgbName(0x83, 0x5d, 0x32, 'pq-7575c'), + RgbInt8Color.rgbName(0x83, 0x59, 0x31, 'pq-8581c'), + RgbInt8Color.rgbName(0x76, 0x5c, 0x40, 'pq-8620c'), + RgbInt8Color.rgbName(0x72, 0x5e, 0x43, 'kangaroo'), + RgbInt8Color.rgbName(0x7a, 0x57, 0x47, 'aztec'), + RgbInt8Color.rgbName(0x73, 0x62, 0x53, 'shitake'), + RgbInt8Color.rgbName(0x72, 0x5f, 0x69, 'moonscape'), + RgbInt8Color.rgbName(0x79, 0x5c, 0x6e, 'pq-10194c'), + RgbInt8Color.rgbName(0x7a, 0x59, 0x6f, 'purple gumdrop'), + RgbInt8Color.rgbName(0x7d, 0x5d, 0x99, 'chive blossom'), + RgbInt8Color.rgbName(0x7a, 0x5f, 0x97, 'pq-8142c'), + RgbInt8Color.rgbName(0x7a, 0x63, 0x9c, 'pq-10224c'), + RgbInt8Color.rgbName(0x89, 0x73, 0x22, 'pq-119c'), + RgbInt8Color.rgbName(0x88, 0x6b, 0x25, 'pq-1265c'), + RgbInt8Color.rgbName(0x78, 0x67, 0x48, 'pq-2328c'), + RgbInt8Color.rgbName(0x78, 0x64, 0x58, 'pq-10379c'), + RgbInt8Color.rgbName(0x73, 0x64, 0x60, 'iron'), + RgbInt8Color.rgbName(0x74, 0x66, 0x61, 'pq-410c'), + RgbInt8Color.rgbName(0x6c, 0x68, 0x68, 'charcoal gray'), + RgbInt8Color.rgbName(0x79, 0x62, 0x71, 'pq-8463c'), + RgbInt8Color.rgbName(0x75, 0x69, 0x7e, 'purple sage'), + RgbInt8Color.rgbName(0x89, 0x7a, 0x27, 'pq-105c'), + RgbInt8Color.rgbName(0x7a, 0x74, 0x48, 'pq-10338c'), + RgbInt8Color.rgbName(0x7c, 0x6e, 0x4f, 'gothic olive'), + RgbInt8Color.rgbName(0x74, 0x6c, 0x57, 'dusky green'), + RgbInt8Color.rgbName(0x77, 0x6a, 0x5f, 'walnut'), + RgbInt8Color.rgbName(0x77, 0x6e, 0x64, 'pq-404c'), + RgbInt8Color.rgbName(0x79, 0x6e, 0x65, 'pq-warmgray10c'), + RgbInt8Color.rgbName(0x76, 0x6d, 0x6f, 'pq-10384c'), + RgbInt8Color.rgbName(0x73, 0x70, 0x6f, 'brushed nickel'), + RgbInt8Color.rgbName(0x75, 0x71, 0x71, 'pq-8422c'), + RgbInt8Color.rgbName(0x78, 0x73, 0x76, 'storm front'), + RgbInt8Color.rgbName(0x76, 0x72, 0x75, 'december sky'), + RgbInt8Color.rgbName(0x76, 0x73, 0x9d, 'pq-10233c'), + RgbInt8Color.rgbName(0x80, 0x70, 0x96, 'pq-8141c'), + RgbInt8Color.rgbName(0x83, 0x6f, 0xa0, 'pq-10223c'), + RgbInt8Color.rgbName(0x79, 0x72, 0xa1, 'pq-10229c'), + RgbInt8Color.rgbName(0x7d, 0x74, 0xa8, 'aster purple'), + RgbInt8Color.rgbName(0x9a, 0x76, 0x11, 'pq-126c'), + RgbInt8Color.rgbName(0x89, 0x76, 0x30, 'pq-7755c'), + RgbInt8Color.rgbName(0x8c, 0x77, 0x32, 'pq-4495c'), + RgbInt8Color.rgbName(0x85, 0x79, 0x46, 'green moss'), + RgbInt8Color.rgbName(0x7a, 0x72, 0x56, 'pq-7497c'), + RgbInt8Color.rgbName(0x7b, 0x79, 0x8e, 'pq-2360c'), + RgbInt8Color.rgbName(0x76, 0x7b, 0xa5, 'lavender violet'), + RgbInt8Color.rgbName(0x7a, 0x7d, 0xa8, 'pq-10239c'), + RgbInt8Color.rgbName(0x77, 0x7f, 0xa8, 'pq-2108c'), + RgbInt8Color.rgbName(0x7c, 0x7f, 0xab, 'pq-7675c'), + RgbInt8Color.rgbName(0x84, 0x8d, 0xc5, 'jacaranda'), + RgbInt8Color.rgbName(0x83, 0x8d, 0xc8, 'pq-2114c'), + RgbInt8Color.rgbName(0x9c, 0x84, 0x12, 'pq-112c'), + RgbInt8Color.rgbName(0x89, 0x81, 0x3d, 'pq-5825c'), + RgbInt8Color.rgbName(0x80, 0x85, 0x6d, 'oil green'), + RgbInt8Color.rgbName(0x7e, 0x7f, 0x74, 'pq-416c'), + RgbInt8Color.rgbName(0x7b, 0x80, 0x85, 'pq-10389c'), + RgbInt8Color.rgbName(0x84, 0x82, 0x83, 'frost gray'), + RgbInt8Color.rgbName(0x84, 0x81, 0x82, 'gray flannel'), + RgbInt8Color.rgbName(0x7c, 0x87, 0x8e, 'pq-430c'), + RgbInt8Color.rgbName(0x76, 0x86, 0x92, 'pq-7544c'), + RgbInt8Color.rgbName(0x79, 0x83, 0x9b, 'tempest'), + RgbInt8Color.rgbName(0x83, 0x98, 0xca, 'grapemist'), + RgbInt8Color.rgbName(0x84, 0x9b, 0xcc, 'hydrangea'), + RgbInt8Color.rgbName(0xaa, 0x8a, 0x0, 'pq-111c'), + RgbInt8Color.rgbName(0xaa, 0x88, 0x5, 'golden palm'), + RgbInt8Color.rgbName(0x88, 0x8d, 0x30, 'pq-7747c'), + RgbInt8Color.rgbName(0x85, 0x95, 0x34, 'pq-8344c'), + RgbInt8Color.rgbName(0x84, 0x93, 0x37, 'pq-8665c'), + RgbInt8Color.rgbName(0x81, 0x89, 0x4e, 'turtle green'), + RgbInt8Color.rgbName(0x82, 0x8f, 0x5b, 'pq-10330c'), + RgbInt8Color.rgbName(0x7a, 0x8d, 0x74, 'pq-10312c'), + RgbInt8Color.rgbName(0x78, 0x8f, 0x74, 'loden frost'), + RgbInt8Color.rgbName(0x7c, 0x8c, 0x87, 'chinois green'), + RgbInt8Color.rgbName(0x7a, 0x89, 0x8f, 'lead'), + RgbInt8Color.rgbName(0x79, 0x90, 0x93, 'pq-8260c'), + RgbInt8Color.rgbName(0x78, 0x8f, 0x98, 'pq-3526c'), + RgbInt8Color.rgbName(0x79, 0x8f, 0x9b, 'pq-8200c'), + RgbInt8Color.rgbName(0x75, 0x8f, 0x9a, 'pq-8220c'), + RgbInt8Color.rgbName(0x79, 0x8e, 0xa4, 'faded denim'), + RgbInt8Color.rgbName(0x7a, 0x98, 0x6c, 'pq-8322c'), + RgbInt8Color.rgbName(0x7d, 0x95, 0x6d, 'green eyes'), + RgbInt8Color.rgbName(0x7e, 0x9b, 0x76, 'aspen green'), + RgbInt8Color.rgbName(0x82, 0x97, 0x78, 'pq-8321c'), + RgbInt8Color.rgbName(0x7e, 0x92, 0x85, 'green bay'), + RgbInt8Color.rgbName(0x83, 0x96, 0x8c, 'pq-8300c'), + RgbInt8Color.rgbName(0x82, 0x99, 0x95, 'pq-5497c'), + RgbInt8Color.rgbName(0x7f, 0x96, 0x95, 'pq-8280c'), + RgbInt8Color.rgbName(0x76, 0x9d, 0xa6, 'cameo blue'), + RgbInt8Color.rgbName(0x7d, 0x94, 0xac, 'pq-10256c'), + RgbInt8Color.rgbName(0x7a, 0x99, 0xac, 'pq-5425c'), + RgbInt8Color.rgbName(0x7d, 0x9b, 0xc1, 'pq-652c'), + RgbInt8Color.rgbName(0x89, 0xab, 0xe3, 'pq-7451c'), + RgbInt8Color.rgbName(0x8c, 0xad, 0xd3, 'placid blue'), + RgbInt8Color.rgbName(0x87, 0x9b, 0x4e, 'pq-8343c'), + RgbInt8Color.rgbName(0x81, 0xa1, 0x74, 'pq-10305c'), + RgbInt8Color.rgbName(0x81, 0x9e, 0x87, 'pq-2406c'), + RgbInt8Color.rgbName(0x7f, 0x9c, 0x90, 'pq-5565c'), + RgbInt8Color.rgbName(0x7d, 0x9f, 0xa5, 'pq-10280c'), + RgbInt8Color.rgbName(0x7a, 0xa4, 0xa7, 'pq-10286c'), + RgbInt8Color.rgbName(0x7f, 0xa0, 0xac, 'pq-2177c'), + RgbInt8Color.rgbName(0x7d, 0xa1, 0xc4, 'pq-645c'), + RgbInt8Color.rgbName(0x8b, 0xb8, 0xe8, 'pq-278c'), + RgbInt8Color.rgbName(0x89, 0xa8, 0x4f, 'pq-2276c'), + RgbInt8Color.rgbName(0x83, 0xa7, 0x5f, 'pq-10318c'), + RgbInt8Color.rgbName(0x86, 0xa9, 0x6f, 'green tea'), + RgbInt8Color.rgbName(0x7f, 0xa9, 0xa4, 'pq-10292c'), + RgbInt8Color.rgbName(0x7f, 0xa9, 0xae, 'pq-5493c'), + RgbInt8Color.rgbName(0x82, 0xb1, 0x85, 'peapod'), + RgbInt8Color.rgbName(0x85, 0xb0, 0x9a, 'pq-557c'), + RgbInt8Color.rgbName(0x85, 0xb3, 0xd1, 'pq-3577c'), + RgbInt8Color.rgbName(0x8b, 0xba, 0x94, 'meadow'), + RgbInt8Color.rgbName(0x87, 0xb9, 0xbc, 'aqua haze'), + RgbInt8Color.rgbName(0x83, 0xc2, 0xcd, 'antigua sand'), + RgbInt8Color.rgbName(0x83, 0xc5, 0xcd, 'angel blue'), + RgbInt8Color.rgbName(0x87, 0xc2, 0xd4, 'petit four'), + RgbInt8Color.rgbName(0x86, 0xc8, 0xbc, 'pq-564c'), + RgbInt8Color.rgbName(0x88, 0xc3, 0xd0, 'gulf stream'), + RgbInt8Color.rgbName(0xa4, 0xd6, 0x5e, 'pq-367c'), + RgbInt8Color.rgbName(0xa7, 0xe1, 0x63, 'pq-2283c'), + RgbInt8Color.rgbName(0xa1, 0xd8, 0x84, 'pq-359c'), + RgbInt8Color.rgbName(0xa9, 0xc2, 0x3f, 'pq-2300c'), + RgbInt8Color.rgbName(0x8d, 0xb0, 0x51, 'parrot green'), + RgbInt8Color.rgbName(0xb5, 0xbd, 0x0, 'pq-390c'), + RgbInt8Color.rgbName(0xa9, 0xee, 0x8a, 'pq-909c'), + RgbInt8Color.rgbName(0x96, 0xdf, 0xce, 'beach glass'), + RgbInt8Color.rgbName(0xb7, 0xbf, 0x10, 'pq-583c'), + RgbInt8Color.rgbName(0xa1, 0xca, 0x7b, 'jade lime'), + RgbInt8Color.rgbName(0xaa, 0xa, 0x27, 'barbados cherry'), + RgbInt8Color.rgbName(0x9e, 0x10, 0x30, 'jester red'), + RgbInt8Color.rgbName(0x97, 0x1b, 0x2f, 'pq-7427c'), + RgbInt8Color.rgbName(0x94, 0x1e, 0x32, 'scooter'), + RgbInt8Color.rgbName(0x96, 0x1d, 0x40, 'pq-8863c'), + RgbInt8Color.rgbName(0xaa, 0x0, 0x61, 'pq-227c'), + RgbInt8Color.rgbName(0xaf, 0x16, 0x85, 'pq-241c'), + RgbInt8Color.rgbName(0xc8, 0x0, 0xa1, 'pq-2395c'), + RgbInt8Color.rgbName(0xc5, 0x29, 0x9b, 'pq-240c'), + RgbInt8Color.rgbName(0xc7, 0x24, 0xb1, 'pq-246c'), + RgbInt8Color.rgbName(0xbf, 0x4d, 0xa5, 'pq-2353c'), + RgbInt8Color.rgbName(0x93, 0x27, 0x2c, 'pq-7622c'), + RgbInt8Color.rgbName(0xb4, 0x45, 0x8d, 'pq-2062c'), + RgbInt8Color.rgbName(0x84, 0x2c, 0x48, 'anemone'), + RgbInt8Color.rgbName(0x85, 0x2c, 0x4d, 'pq-2049c'), + RgbInt8Color.rgbName(0x8f, 0x2c, 0x6a, 'pq-8105c'), + RgbInt8Color.rgbName(0x92, 0x31, 0x6f, 'wild aster'), + RgbInt8Color.rgbName(0x96, 0x38, 0x21, 'pq-174c'), + RgbInt8Color.rgbName(0x8d, 0x39, 0x21, 'pq-2443c'), + RgbInt8Color.rgbName(0x7e, 0x39, 0x2f, 'burnt henna'), + RgbInt8Color.rgbName(0x8e, 0x3a, 0x80, 'pq-7656c'), + RgbInt8Color.rgbName(0x95, 0x39, 0x7d, 'pq-8104c'), + RgbInt8Color.rgbName(0x8c, 0x2e, 0x55, 'pq-8841c'), + RgbInt8Color.rgbName(0x8a, 0x33, 0x71, 'clover'), + RgbInt8Color.rgbName(0x8c, 0x35, 0x73, 'purple wine'), + RgbInt8Color.rgbName(0x8e, 0x44, 0x83, 'willowherb'), + RgbInt8Color.rgbName(0x8d, 0x46, 0x87, 'hyacinth violet'), + RgbInt8Color.rgbName(0x93, 0x4d, 0x11, 'pq-724c'), + RgbInt8Color.rgbName(0x81, 0x36, 0x39, 'rosewood'), + RgbInt8Color.rgbName(0x82, 0x3b, 0x34, 'pq-7609c'), + RgbInt8Color.rgbName(0x7e, 0x39, 0x40, 'burnt russet'), + RgbInt8Color.rgbName(0x89, 0x3b, 0x67, 'pq-689c'), + RgbInt8Color.rgbName(0x83, 0x43, 0x7b, 'pq-10206c'), + RgbInt8Color.rgbName(0x92, 0x4e, 0x8c, 'pq-2354c'), + RgbInt8Color.rgbName(0x83, 0x41, 0x2c, 'pq-7601c'), + RgbInt8Color.rgbName(0x88, 0x43, 0x32, 'arabian spice'), + RgbInt8Color.rgbName(0x89, 0x3c, 0x47, 'pq-697c'), + RgbInt8Color.rgbName(0x7c, 0x4c, 0x53, 'wild ginger'), + RgbInt8Color.rgbName(0x83, 0x46, 0x55, 'maroon'), + RgbInt8Color.rgbName(0x87, 0x3e, 0x5e, 'pq-8820c'), + RgbInt8Color.rgbName(0x8e, 0x3d, 0x56, 'pq-8840c'), + RgbInt8Color.rgbName(0x85, 0x4c, 0x65, 'damson'), + RgbInt8Color.rgbName(0x86, 0x45, 0x76, 'pq-8125c'), + RgbInt8Color.rgbName(0x90, 0x53, 0x96, 'pq-10212c'), + RgbInt8Color.rgbName(0x94, 0x4a, 0x1f, 'umber'), + RgbInt8Color.rgbName(0x80, 0x48, 0x39, 'sequoia'), + RgbInt8Color.rgbName(0x86, 0x4a, 0x33, 'pq-7581c'), + RgbInt8Color.rgbName(0x82, 0x4d, 0x46, 'mahogany'), + RgbInt8Color.rgbName(0x84, 0x4b, 0x4d, 'apple butter'), + RgbInt8Color.rgbName(0x87, 0x4b, 0x52, 'pq-4985c'), + RgbInt8Color.rgbName(0x84, 0x4a, 0x4f, 'pq-8540c'), + RgbInt8Color.rgbName(0x8c, 0x47, 0x59, 'dry rose'), + RgbInt8Color.rgbName(0x80, 0x54, 0x66, 'tulipwood'), + RgbInt8Color.rgbName(0x8b, 0x49, 0x63, 'violet quartz'), + RgbInt8Color.rgbName(0x7e, 0x54, 0x75, 'pq-5135c'), + RgbInt8Color.rgbName(0x86, 0x4d, 0x75, 'amethyst'), + RgbInt8Color.rgbName(0x83, 0x4f, 0x3d, 'brown patina'), + RgbInt8Color.rgbName(0x89, 0x53, 0x2f, 'pq-7567c'), + RgbInt8Color.rgbName(0x87, 0x4e, 0x3c, 'coconut shell'), + RgbInt8Color.rgbName(0x85, 0x51, 0x41, 'rustic brown'), + RgbInt8Color.rgbName(0x80, 0x56, 0x5b, 'rose brown'), + RgbInt8Color.rgbName(0x88, 0x51, 0x57, 'roan rouge'), + RgbInt8Color.rgbName(0x89, 0x50, 0x84, 'pq-10205c'), + RgbInt8Color.rgbName(0x86, 0x5e, 0x9c, 'pq-2081c'), + RgbInt8Color.rgbName(0x82, 0x5e, 0x2f, 'bronze brown'), + RgbInt8Color.rgbName(0x8b, 0x5b, 0x29, 'pq-464c'), + RgbInt8Color.rgbName(0x81, 0x5b, 0x37, 'rubber'), + RgbInt8Color.rgbName(0x8c, 0x59, 0x32, 'pq-10369c'), + RgbInt8Color.rgbName(0x8c, 0x5c, 0x30, 'pq-2319c'), + RgbInt8Color.rgbName(0x81, 0x60, 0x40, 'pq-7505c'), + RgbInt8Color.rgbName(0x7a, 0x61, 0x4d, 'pq-10374c'), + RgbInt8Color.rgbName(0x7e, 0x5e, 0x52, 'acorn'), + RgbInt8Color.rgbName(0x7e, 0x5c, 0x54, 'nutmeg'), + RgbInt8Color.rgbName(0x80, 0x60, 0x62, 'rose taupe'), + RgbInt8Color.rgbName(0x7b, 0x64, 0x69, 'pq-437c'), + RgbInt8Color.rgbName(0x83, 0x5e, 0x81, 'chinese violet'), + RgbInt8Color.rgbName(0x7c, 0x69, 0x92, 'pq-667c'), + RgbInt8Color.rgbName(0x8a, 0x5a, 0x94, 'pq-8123c'), + RgbInt8Color.rgbName(0x8f, 0x6a, 0x2a, 'pq-7559c'), + RgbInt8Color.rgbName(0x88, 0x69, 0x35, 'pq-10351c'), + RgbInt8Color.rgbName(0x86, 0x65, 0x3d, 'pq-10362c'), + RgbInt8Color.rgbName(0x7f, 0x67, 0x4f, 'otter'), + RgbInt8Color.rgbName(0x7a, 0x68, 0x55, 'pq-7531c'), + RgbInt8Color.rgbName(0x7b, 0x66, 0x60, 'deep taupe'), + RgbInt8Color.rgbName(0x83, 0x6a, 0x7a, 'pq-10193c'), + RgbInt8Color.rgbName(0x85, 0x67, 0x7b, 'grapeade'), + RgbInt8Color.rgbName(0x86, 0x64, 0x7a, 'pq-5205c'), + RgbInt8Color.rgbName(0x85, 0x6c, 0xa2, 'pq-10215c'), + RgbInt8Color.rgbName(0xaf, 0x6d, 0x4, 'pq-139c'), + RgbInt8Color.rgbName(0xad, 0x6c, 0x0, 'pq-8962c'), + RgbInt8Color.rgbName(0x96, 0x71, 0x26, 'pq-7558c'), + RgbInt8Color.rgbName(0x83, 0x71, 0x41, 'pq-10344c'), + RgbInt8Color.rgbName(0x8a, 0x6f, 0x48, 'dull gold'), + RgbInt8Color.rgbName(0x86, 0x6d, 0x4b, 'pq-873c'), + RgbInt8Color.rgbName(0x83, 0x6b, 0x4f, 'ermine'), + RgbInt8Color.rgbName(0x85, 0x71, 0x4d, 'pq-872c'), + RgbInt8Color.rgbName(0x86, 0x6f, 0x5b, 'pq-10373c'), + RgbInt8Color.rgbName(0x81, 0x6d, 0x5e, 'caribou'), + RgbInt8Color.rgbName(0x81, 0x6f, 0x64, 'pq-10378c'), + RgbInt8Color.rgbName(0x80, 0x6f, 0x63, 'fossil'), + RgbInt8Color.rgbName(0x82, 0x70, 0x64, 'pine bark'), + RgbInt8Color.rgbName(0x81, 0x72, 0x7d, 'pq-8462c'), + RgbInt8Color.rgbName(0x7f, 0x7c, 0x81, 'silver filigree'), + RgbInt8Color.rgbName(0x7f, 0x73, 0x84, 'pq-2359c'), + RgbInt8Color.rgbName(0x80, 0x73, 0x96, 'purple haze'), + RgbInt8Color.rgbName(0x8e, 0x78, 0x31, 'pq-8660c'), + RgbInt8Color.rgbName(0x84, 0x75, 0x4e, 'pq-871c'), + RgbInt8Color.rgbName(0x83, 0x79, 0x58, 'pq-2327c'), + RgbInt8Color.rgbName(0x81, 0x7a, 0x60, 'aloe'), + RgbInt8Color.rgbName(0x84, 0x7a, 0x59, 'dried herb'), + RgbInt8Color.rgbName(0x80, 0x76, 0x5f, 'covert green'), + RgbInt8Color.rgbName(0x81, 0x7a, 0x65, 'mermaid'), + RgbInt8Color.rgbName(0x80, 0x76, 0x69, 'fallen rock'), + RgbInt8Color.rgbName(0x82, 0x77, 0x6b, 'brindle'), + RgbInt8Color.rgbName(0x80, 0x7d, 0x6f, 'vetiver'), + RgbInt8Color.rgbName(0x83, 0x78, 0x6f, 'pq-warmgray9c'), + RgbInt8Color.rgbName(0x7e, 0x7b, 0x79, 'pq-10394c'), + RgbInt8Color.rgbName(0x84, 0x7a, 0x75, 'driftwood'), + RgbInt8Color.rgbName(0x85, 0x78, 0x74, 'pq-409c'), + RgbInt8Color.rgbName(0x84, 0x7d, 0x80, 'pq-10383c'), + RgbInt8Color.rgbName(0x7e, 0x7d, 0x88, 'quicksilver'), + RgbInt8Color.rgbName(0x80, 0x7d, 0x7f, 'titanium'), + RgbInt8Color.rgbName(0x84, 0x79, 0x86, 'gray ridge'), + RgbInt8Color.rgbName(0x7f, 0x7f, 0x7e, 'pq-8401c'), + RgbInt8Color.rgbName(0x87, 0x7c, 0x97, 'pq-8140c'), + RgbInt8Color.rgbName(0x80, 0x7f, 0x99, 'pq-8161c'), + RgbInt8Color.rgbName(0x84, 0x7e, 0xa5, 'pq-10228c'), + RgbInt8Color.rgbName(0x8b, 0x79, 0xb1, 'paisley purple'), + RgbInt8Color.rgbName(0x95, 0x95, 0xd2, 'pq-271c'), + RgbInt8Color.rgbName(0xac, 0x84, 0x0, 'pq-118c'), + RgbInt8Color.rgbName(0xad, 0x89, 0x0, 'pq-8643c'), + RgbInt8Color.rgbName(0x91, 0x85, 0x2c, 'pq-7760c'), + RgbInt8Color.rgbName(0x8f, 0x7e, 0x35, 'pq-7768c'), + RgbInt8Color.rgbName(0x84, 0x7d, 0x56, 'pq-10337c'), + RgbInt8Color.rgbName(0x81, 0x84, 0x55, 'iguana'), + RgbInt8Color.rgbName(0x85, 0x89, 0x61, 'mosstone'), + RgbInt8Color.rgbName(0x82, 0x7e, 0x7c, 'steeple gray'), + RgbInt8Color.rgbName(0x80, 0x81, 0x7d, 'moon mist'), + RgbInt8Color.rgbName(0x83, 0x7f, 0x7f, 'cloudburst'), + RgbInt8Color.rgbName(0x83, 0x84, 0x87, 'sharkskin'), + RgbInt8Color.rgbName(0x82, 0x80, 0x80, 'pq-8421c'), + RgbInt8Color.rgbName(0x7f, 0x87, 0x93, 'tradewinds'), + RgbInt8Color.rgbName(0x84, 0x89, 0x8c, 'monument'), + RgbInt8Color.rgbName(0x81, 0x83, 0x9a, 'silver bullet'), + RgbInt8Color.rgbName(0x84, 0x82, 0xa3, 'pq-10232c'), + RgbInt8Color.rgbName(0x89, 0x81, 0xa0, 'daybreak'), + RgbInt8Color.rgbName(0x87, 0x8c, 0xb4, 'pq-7674c'), + RgbInt8Color.rgbName(0x91, 0x9b, 0xc9, 'easter egg'), + RgbInt8Color.rgbName(0x94, 0x9c, 0xd0, 'pq-3558c'), + RgbInt8Color.rgbName(0x8a, 0x8d, 0x4a, 'pq-5767c'), + RgbInt8Color.rgbName(0x84, 0x91, 0x61, 'epsom'), + RgbInt8Color.rgbName(0x89, 0x90, 0x64, 'pq-5773c'), + RgbInt8Color.rgbName(0x81, 0x8f, 0x84, 'lily pad'), + RgbInt8Color.rgbName(0x88, 0x8d, 0x82, 'shadow'), + RgbInt8Color.rgbName(0x89, 0x8d, 0x8d, 'pq-423c'), + RgbInt8Color.rgbName(0x88, 0x8b, 0x8d, 'pq-coolgray8c'), + RgbInt8Color.rgbName(0x8a, 0x8b, 0x99, 'pq-8160c'), + RgbInt8Color.rgbName(0x86, 0x93, 0x97, 'pq-8240c'), + RgbInt8Color.rgbName(0x7e, 0x93, 0xa7, 'pq-2164c'), + RgbInt8Color.rgbName(0x87, 0x89, 0xa9, 'pq-10238c'), + RgbInt8Color.rgbName(0x81, 0x90, 0xab, 'pq-10251c'), + RgbInt8Color.rgbName(0x85, 0x8f, 0xb1, 'purple impression'), + RgbInt8Color.rgbName(0x81, 0x9a, 0xc1, 'bel air blue'), + RgbInt8Color.rgbName(0x83, 0x94, 0xb8, 'pq-2136c'), + RgbInt8Color.rgbName(0x88, 0x95, 0xc5, 'pale iris'), + RgbInt8Color.rgbName(0xaf, 0x98, 0x0, 'pq-104c'), + RgbInt8Color.rgbName(0xb3, 0x9b, 0x0, 'pq-613c'), + RgbInt8Color.rgbName(0x8f, 0x99, 0x3e, 'pq-7495c'), + RgbInt8Color.rgbName(0x88, 0x96, 0x83, 'pq-10311c'), + RgbInt8Color.rgbName(0x8a, 0x96, 0x91, 'slate gray'), + RgbInt8Color.rgbName(0x8d, 0x95, 0x8d, 'pq-8320c'), + RgbInt8Color.rgbName(0x87, 0x9b, 0xa3, 'arona'), + RgbInt8Color.rgbName(0x82, 0x9c, 0xa5, 'stone blue'), + RgbInt8Color.rgbName(0x86, 0x99, 0xab, 'ashley blue'), + RgbInt8Color.rgbName(0x8f, 0xac, 0xd9, 'pq-2121c'), + RgbInt8Color.rgbName(0xad, 0xa4, 0x0, 'pq-398c'), + RgbInt8Color.rgbName(0x90, 0x9b, 0x4c, 'spinach green'), + RgbInt8Color.rgbName(0x89, 0xa0, 0x6b, 'tendril'), + RgbInt8Color.rgbName(0x8a, 0xa2, 0x82, 'mistletoe'), + RgbInt8Color.rgbName(0x87, 0x9f, 0x84, 'basil'), + RgbInt8Color.rgbName(0x86, 0xa3, 0x8a, 'pq-10298c'), + RgbInt8Color.rgbName(0x86, 0xa2, 0x93, 'granite green'), + RgbInt8Color.rgbName(0x8c, 0x9f, 0xa1, 'slate'), + RgbInt8Color.rgbName(0x86, 0xa1, 0xa9, 'tourmaline'), + RgbInt8Color.rgbName(0x86, 0x9c, 0xae, 'pq-2163c'), + RgbInt8Color.rgbName(0x8d, 0xa8, 0x6e, 'pq-10317c'), + RgbInt8Color.rgbName(0x8c, 0xac, 0x89, 'pq-2262c'), + RgbInt8Color.rgbName(0x8b, 0xaa, 0x99, 'pq-2457c'), + RgbInt8Color.rgbName(0x89, 0xac, 0xac, 'aquifer'), + RgbInt8Color.rgbName(0x92, 0xc1, 0xe9, 'pq-283c'), + RgbInt8Color.rgbName(0x89, 0xb2, 0xc4, 'pq-2205c'), + RgbInt8Color.rgbName(0x8d, 0xb9, 0xca, 'pq-550c'), + RgbInt8Color.rgbName(0x8a, 0xba, 0xd3, 'sky blue'), + RgbInt8Color.rgbName(0x93, 0xb4, 0xd7, 'blue bell'), + RgbInt8Color.rgbName(0x92, 0xbc, 0xb3, 'pq-2455c'), + RgbInt8Color.rgbName(0x8e, 0xc5, 0xb6, 'ocean wave'), + RgbInt8Color.rgbName(0xb2, 0xaa, 0x3c, 'pq-10109c'), + RgbInt8Color.rgbName(0xc4, 0xd6, 0x0, 'pq-382c'), + RgbInt8Color.rgbName(0xab, 0xad, 0x23, 'pq-7745c'), + RgbInt8Color.rgbName(0xa4, 0xdb, 0xe8, 'pq-635c'), + RgbInt8Color.rgbName(0xc0, 0xdf, 0x16, 'pq-2297c'), + RgbInt8Color.rgbName(0xa0, 0xda, 0xa9, 'green ash'), + RgbInt8Color.rgbName(0xa2, 0xe4, 0xb8, 'pq-351c'), + RgbInt8Color.rgbName(0xbf, 0xb8, 0x0, 'pq-397c'), + RgbInt8Color.rgbName(0xb0, 0xc9, 0x65, 'green glow'), + RgbInt8Color.rgbName(0xad, 0xdc, 0x91, 'pq-358c'), + RgbInt8Color.rgbName(0xb2, 0xe7, 0x9f, 'paradise green'), + RgbInt8Color.rgbName(0x98, 0xdb, 0xce, 'pq-571c'), + RgbInt8Color.rgbName(0x9c, 0xdb, 0xd9, 'pq-324c'), + RgbInt8Color.rgbName(0x9b, 0x1b, 0x30, 'chili pepper'), + RgbInt8Color.rgbName(0x9d, 0x20, 0x2f, 'scarlet sage'), + RgbInt8Color.rgbName(0xa1, 0x17, 0x29, 'haute red'), + RgbInt8Color.rgbName(0xac, 0xe, 0x2e, 'tango red'), + RgbInt8Color.rgbName(0xba, 0x0, 0x20, 'pq-3517c'), + RgbInt8Color.rgbName(0xa6, 0x9, 0x3d, 'pq-1945c'), + RgbInt8Color.rgbName(0xa4, 0x12, 0x3f, 'pq-7426c'), + RgbInt8Color.rgbName(0xa4, 0x12, 0x47, 'cerise'), + RgbInt8Color.rgbName(0x99, 0x1e, 0x66, 'pq-7648c'), + RgbInt8Color.rgbName(0x9d, 0x22, 0x35, 'pq-201c'), + RgbInt8Color.rgbName(0x9b, 0x22, 0x42, 'pq-7420c'), + RgbInt8Color.rgbName(0x98, 0x25, 0x51, 'sangria'), + RgbInt8Color.rgbName(0x9e, 0x2a, 0x2f, 'pq-704c'), + RgbInt8Color.rgbName(0x9e, 0x2a, 0x2b, 'pq-7628c'), + RgbInt8Color.rgbName(0x8e, 0x2c, 0x48, 'pq-7641c'), + RgbInt8Color.rgbName(0x93, 0x2a, 0x51, 'pq-8864c'), + RgbInt8Color.rgbName(0x9e, 0x2c, 0x6a, 'festival fuchsia'), + RgbInt8Color.rgbName(0xc9, 0x64, 0xcf, 'pq-252c'), + RgbInt8Color.rgbName(0x9a, 0x33, 0x24, 'pq-484c'), + RgbInt8Color.rgbName(0x91, 0x2f, 0x46, 'pq-7637c'), + RgbInt8Color.rgbName(0x99, 0x3c, 0x7c, 'vivid viola'), + RgbInt8Color.rgbName(0x9e, 0x46, 0x24, 'potter\'s clay'), + RgbInt8Color.rgbName(0x8f, 0x32, 0x37, 'pq-492c'), + RgbInt8Color.rgbName(0x96, 0x2d, 0x47, 'pq-8862c'), + RgbInt8Color.rgbName(0x9d, 0x48, 0x15, 'pq-2021c'), + RgbInt8Color.rgbName(0x8d, 0x3f, 0x2d, 'picante'), + RgbInt8Color.rgbName(0x8d, 0x3f, 0x2b, 'pq-7600c'), + RgbInt8Color.rgbName(0x8e, 0x3c, 0x36, 'chili oil'), + RgbInt8Color.rgbName(0x91, 0x38, 0x32, 'red ochre'), + RgbInt8Color.rgbName(0x8c, 0x37, 0x3e, 'brick red'), + RgbInt8Color.rgbName(0x88, 0x43, 0x44, 'cowhide'), + RgbInt8Color.rgbName(0x9b, 0x32, 0x59, 'pq-7434c'), + RgbInt8Color.rgbName(0x90, 0x37, 0x5e, 'pq-8865c'), + RgbInt8Color.rgbName(0x93, 0x3f, 0x7a, 'pq-10201c'), + RgbInt8Color.rgbName(0x90, 0x3f, 0x75, 'deep orchid'), + RgbInt8Color.rgbName(0x91, 0x4b, 0x8b, 'pq-8103c'), + RgbInt8Color.rgbName(0x9b, 0x5a, 0x1a, 'pq-154c'), + RgbInt8Color.rgbName(0x8f, 0x42, 0x3b, 'barn red'), + RgbInt8Color.rgbName(0x92, 0x3c, 0x47, 'pq-8861c'), + RgbInt8Color.rgbName(0x93, 0x40, 0x54, 'pq-7640c'), + RgbInt8Color.rgbName(0x88, 0x4c, 0x5e, 'hawthorn rose'), + RgbInt8Color.rgbName(0x97, 0x3c, 0x6c, 'baton rouge'), + RgbInt8Color.rgbName(0x97, 0x39, 0x61, 'pq-2048c'), + RgbInt8Color.rgbName(0x8b, 0x4c, 0x84, 'pq-8124c'), + RgbInt8Color.rgbName(0x99, 0x60, 0x17, 'pq-1395c'), + RgbInt8Color.rgbName(0xa0, 0x5c, 0x17, 'pumpkin spice'), + RgbInt8Color.rgbName(0x9b, 0x47, 0x22, 'cinnamon stick'), + RgbInt8Color.rgbName(0x8c, 0x4a, 0x2f, 'ginger bread'), + RgbInt8Color.rgbName(0x86, 0x55, 0x60, 'renaissance rose'), + RgbInt8Color.rgbName(0x99, 0x48, 0x78, 'pq-682c'), + RgbInt8Color.rgbName(0xb5, 0x80, 0xd1, 'pq-528c'), + RgbInt8Color.rgbName(0x91, 0x55, 0x2b, 'glazed ginger'), + RgbInt8Color.rgbName(0x93, 0x55, 0x29, 'sugar almond'), + RgbInt8Color.rgbName(0x92, 0x4c, 0x2e, 'pq-7587c'), + RgbInt8Color.rgbName(0x8c, 0x54, 0x3a, 'mocha bisque'), + RgbInt8Color.rgbName(0x8b, 0x59, 0x3e, 'argan oil'), + RgbInt8Color.rgbName(0x8f, 0x57, 0x3a, 'pq-2469c'), + RgbInt8Color.rgbName(0x85, 0x5c, 0x4c, 'carob brown'), + RgbInt8Color.rgbName(0x89, 0x5c, 0x79, 'argyle purple'), + RgbInt8Color.rgbName(0x94, 0x4e, 0x87, 'striking purple'), + RgbInt8Color.rgbName(0xa0, 0x8b, 0xcb, 'pq-2086c'), + RgbInt8Color.rgbName(0xa0, 0x8a, 0xcc, 'pq-3543c'), + RgbInt8Color.rgbName(0x93, 0x59, 0x2b, 'roasted pecan'), + RgbInt8Color.rgbName(0x97, 0x57, 0x2b, 'leather brown'), + RgbInt8Color.rgbName(0x86, 0x5e, 0x49, 'rawhide'), + RgbInt8Color.rgbName(0x8f, 0x5f, 0x50, 'russet'), + RgbInt8Color.rgbName(0x87, 0x61, 0x55, 'clove'), + RgbInt8Color.rgbName(0x8d, 0x5c, 0x74, 'grape nectar'), + RgbInt8Color.rgbName(0x90, 0x5f, 0x8e, 'pq-10204c'), + RgbInt8Color.rgbName(0xb5, 0x63, 0x0, 'pq-8963c'), + RgbInt8Color.rgbName(0x91, 0x67, 0x2f, 'golden brown'), + RgbInt8Color.rgbName(0x99, 0x64, 0x2c, 'cathay spice'), + RgbInt8Color.rgbName(0x94, 0x60, 0x37, 'pq-4635c'), + RgbInt8Color.rgbName(0x94, 0x64, 0x3e, 'pq-10368c'), + RgbInt8Color.rgbName(0x87, 0x67, 0x4f, 'pq-875c'), + RgbInt8Color.rgbName(0x8b, 0x63, 0x4b, 'pq-876c'), + RgbInt8Color.rgbName(0x8b, 0x6a, 0x4f, 'toasted coconut'), + RgbInt8Color.rgbName(0x8b, 0x64, 0x5a, 'cognac'), + RgbInt8Color.rgbName(0x86, 0x67, 0x61, 'pq-7615c'), + RgbInt8Color.rgbName(0x87, 0x71, 0x5a, 'pq-8005c'), + RgbInt8Color.rgbName(0x82, 0x6b, 0x69, 'pq-2476c'), + RgbInt8Color.rgbName(0x88, 0x69, 0x71, 'grape shake'), + RgbInt8Color.rgbName(0x89, 0x6c, 0x93, 'pq-8122c'), + RgbInt8Color.rgbName(0x8d, 0x6e, 0x97, 'pq-7661c'), + RgbInt8Color.rgbName(0x94, 0x69, 0xa2, 'bellflower'), + RgbInt8Color.rgbName(0x93, 0x6c, 0xa7, 'hyacinth'), + RgbInt8Color.rgbName(0x92, 0x6a, 0xa6, 'amethyst orchid'), + RgbInt8Color.rgbName(0xa7, 0x6d, 0x11, 'pq-146c'), + RgbInt8Color.rgbName(0xb9, 0x70, 0x0, 'pq-2014c'), + RgbInt8Color.rgbName(0x9b, 0x70, 0x2c, 'pq-8960c'), + RgbInt8Color.rgbName(0x92, 0x6d, 0x39, 'pq-10357c'), + RgbInt8Color.rgbName(0x8e, 0x71, 0x43, 'pq-10350c'), + RgbInt8Color.rgbName(0x92, 0x72, 0x40, 'cumin'), + RgbInt8Color.rgbName(0x94, 0x6b, 0x3a, 'pq-8580c'), + RgbInt8Color.rgbName(0x8f, 0x70, 0x4b, 'pq-10361c'), + RgbInt8Color.rgbName(0x8b, 0x6f, 0x4e, 'pq-874c'), + RgbInt8Color.rgbName(0x88, 0x71, 0x57, 'pq-8006c'), + RgbInt8Color.rgbName(0x8b, 0x6f, 0x70, 'twilight mauve'), + RgbInt8Color.rgbName(0x95, 0x6d, 0x95, 'pq-10203c'), + RgbInt8Color.rgbName(0x92, 0x6d, 0x93, 'pq-8101c'), + RgbInt8Color.rgbName(0xb4, 0x7e, 0x0, 'pq-7551c'), + RgbInt8Color.rgbName(0x9f, 0x7d, 0x23, 'pq-7557c'), + RgbInt8Color.rgbName(0x92, 0x7b, 0x3c, 'ecru olive'), + RgbInt8Color.rgbName(0x8c, 0x7a, 0x4f, 'pq-10343c'), + RgbInt8Color.rgbName(0x90, 0x79, 0x54, 'antique bronze'), + RgbInt8Color.rgbName(0x8a, 0x79, 0x63, 'lead gray'), + RgbInt8Color.rgbName(0x89, 0x75, 0x60, 'sepia tint'), + RgbInt8Color.rgbName(0x8b, 0x7c, 0x5e, 'pq-2326c'), + RgbInt8Color.rgbName(0x8d, 0x79, 0x60, 'petrified oak'), + RgbInt8Color.rgbName(0x89, 0x7a, 0x69, 'pq-8004c'), + RgbInt8Color.rgbName(0x8a, 0x7e, 0x78, 'cinder'), + RgbInt8Color.rgbName(0x8c, 0x78, 0x85, 'pq-10192c'), + RgbInt8Color.rgbName(0x87, 0x7c, 0x86, 'pq-8461c'), + RgbInt8Color.rgbName(0x91, 0x77, 0x98, 'orchid mist'), + RgbInt8Color.rgbName(0x89, 0x7f, 0x98, 'dusk'), + RgbInt8Color.rgbName(0x8d, 0x7d, 0x96, 'pq-8121c'), + RgbInt8Color.rgbName(0x8b, 0x7c, 0xa4, 'pq-10222c'), + RgbInt8Color.rgbName(0x90, 0x7d, 0xa6, 'pq-10214c'), + RgbInt8Color.rgbName(0x8f, 0x7d, 0xa5, 'chalk violet'), + RgbInt8Color.rgbName(0x8e, 0x7f, 0xae, 'pq-2094c'), + RgbInt8Color.rgbName(0x94, 0x79, 0xaf, 'fairy wren'), + RgbInt8Color.rgbName(0x9f, 0x8f, 0xca, 'pq-2100c'), + RgbInt8Color.rgbName(0xb5, 0x85, 0x0, 'pq-125c'), + RgbInt8Color.rgbName(0x9a, 0x80, 0x3a, 'amber green'), + RgbInt8Color.rgbName(0x8e, 0x85, 0x5f, 'boa'), + RgbInt8Color.rgbName(0x8d, 0x87, 0x65, 'pq-10336c'), + RgbInt8Color.rgbName(0x8c, 0x7c, 0x61, 'elmwood'), + RgbInt8Color.rgbName(0x8c, 0x7d, 0x73, 'pq-10377c'), + RgbInt8Color.rgbName(0x8d, 0x80, 0x70, 'timber wolf'), + RgbInt8Color.rgbName(0x8d, 0x7e, 0x71, 'desert taupe'), + RgbInt8Color.rgbName(0x8b, 0x80, 0x75, 'pq-8003c'), + RgbInt8Color.rgbName(0x8f, 0x81, 0x77, 'fungi'), + RgbInt8Color.rgbName(0x8c, 0x85, 0x7b, 'pq-403c'), + RgbInt8Color.rgbName(0x8b, 0x84, 0x7c, 'pq-8002c'), + RgbInt8Color.rgbName(0x8c, 0x82, 0x79, 'pq-warmgray8c'), + RgbInt8Color.rgbName(0x86, 0x87, 0x87, 'pq-8400c'), + RgbInt8Color.rgbName(0x8f, 0x83, 0x95, 'purple ash'), + RgbInt8Color.rgbName(0x93, 0x7e, 0x96, 'pq-8100c'), + RgbInt8Color.rgbName(0x8e, 0x89, 0xa8, 'pq-10227c'), + RgbInt8Color.rgbName(0x8c, 0x8e, 0xb2, 'persian violet'), + RgbInt8Color.rgbName(0x98, 0x84, 0xb9, 'bougainvillea'), + RgbInt8Color.rgbName(0x9f, 0x91, 0x2a, 'pq-619c'), + RgbInt8Color.rgbName(0xa0, 0x86, 0x29, 'pq-7754c'), + RgbInt8Color.rgbName(0x8d, 0x8b, 0x55, 'green olive'), + RgbInt8Color.rgbName(0x92, 0x8e, 0x64, 'cedar'), + RgbInt8Color.rgbName(0x91, 0x94, 0x6e, 'sage'), + RgbInt8Color.rgbName(0x93, 0x8b, 0x78, 'silver sage'), + RgbInt8Color.rgbName(0x91, 0x8c, 0x7e, 'laurel oak'), + RgbInt8Color.rgbName(0x8f, 0x89, 0x82, 'elephant skin'), + RgbInt8Color.rgbName(0x8b, 0x8c, 0x89, 'wild dove'), + RgbInt8Color.rgbName(0x8c, 0x89, 0x85, 'pq-2332c'), + RgbInt8Color.rgbName(0x8c, 0x8b, 0x89, 'pq-8001c'), + RgbInt8Color.rgbName(0x91, 0x8c, 0x8f, 'gull'), + RgbInt8Color.rgbName(0x8d, 0x8f, 0x8f, 'griffin'), + RgbInt8Color.rgbName(0x90, 0x8d, 0x8d, 'pq-8420c'), + RgbInt8Color.rgbName(0x8a, 0x8d, 0x8f, 'pq-877c'), + RgbInt8Color.rgbName(0x8c, 0x90, 0x93, 'pq-10388c'), + RgbInt8Color.rgbName(0x90, 0x88, 0x98, 'pq-8120c'), + RgbInt8Color.rgbName(0x87, 0x90, 0x9a, 'pq-8180c'), + RgbInt8Color.rgbName(0x8f, 0x8b, 0x91, 'pq-8460c'), + RgbInt8Color.rgbName(0x8d, 0x89, 0xa5, 'pq-5285c'), + RgbInt8Color.rgbName(0x99, 0x9b, 0x30, 'pq-7746c'), + RgbInt8Color.rgbName(0x9a, 0x97, 0x38, 'golden lime'), + RgbInt8Color.rgbName(0x9c, 0x9a, 0x40, 'split pea'), + RgbInt8Color.rgbName(0x8c, 0x9b, 0x60, 'pq-8342c'), + RgbInt8Color.rgbName(0x8c, 0x97, 0x6a, 'pq-10329c'), + RgbInt8Color.rgbName(0x8d, 0x97, 0x70, 'pq-8341c'), + RgbInt8Color.rgbName(0x8f, 0x96, 0x7d, 'pq-8340c'), + RgbInt8Color.rgbName(0x95, 0x97, 0x78, 'pq-8360c'), + RgbInt8Color.rgbName(0x8a, 0x99, 0x92, 'green milieu'), + RgbInt8Color.rgbName(0x8e, 0x91, 0x8f, 'neutral gray'), + RgbInt8Color.rgbName(0x8a, 0x9a, 0x9a, 'silver blue'), + RgbInt8Color.rgbName(0x8c, 0x9c, 0x92, 'iceberg green'), + RgbInt8Color.rgbName(0x8c, 0x9a, 0xa3, 'pq-10262c'), + RgbInt8Color.rgbName(0x92, 0x94, 0x9b, 'sleet'), + RgbInt8Color.rgbName(0x8c, 0x9d, 0xad, 'dusty blue'), + RgbInt8Color.rgbName(0x89, 0x9b, 0xb8, 'forever blue'), + RgbInt8Color.rgbName(0x8c, 0x9c, 0xc1, 'lavender lustre'), + RgbInt8Color.rgbName(0x90, 0x99, 0xba, 'pq-2107c'), + RgbInt8Color.rgbName(0x9b, 0xae, 0xe4, 'pq-2122c'), + RgbInt8Color.rgbName(0x9f, 0xae, 0xe5, 'pq-2716c'), + RgbInt8Color.rgbName(0x8d, 0xa5, 0x83, 'pq-10304c'), + RgbInt8Color.rgbName(0x96, 0xa0, 0x94, 'pq-10310c'), + RgbInt8Color.rgbName(0x8f, 0x9e, 0x9d, 'abyss'), + RgbInt8Color.rgbName(0x91, 0x9d, 0x9d, 'pq-443c'), + RgbInt8Color.rgbName(0x91, 0x9c, 0xac, 'pq-10250c'), + RgbInt8Color.rgbName(0x8e, 0x9f, 0xbc, 'pq-535c'), + RgbInt8Color.rgbName(0x8b, 0xa6, 0xc1, 'pq-2156c'), + RgbInt8Color.rgbName(0x96, 0xa3, 0xc7, 'blue heron'), + RgbInt8Color.rgbName(0x91, 0xa8, 0xd0, 'serenity'), + RgbInt8Color.rgbName(0x93, 0xa5, 0xcf, 'pq-2134c'), + RgbInt8Color.rgbName(0x98, 0xb6, 0xe4, 'pq-2128c'), + RgbInt8Color.rgbName(0xbb, 0xa6, 0x0, 'pq-3975c'), + RgbInt8Color.rgbName(0x9b, 0xaa, 0x53, 'pq-10324c'), + RgbInt8Color.rgbName(0xa0, 0xac, 0x4f, 'dark citron'), + RgbInt8Color.rgbName(0x91, 0xac, 0x80, 'forest shade'), + RgbInt8Color.rgbName(0x94, 0xa5, 0x96, 'pq-5635c'), + RgbInt8Color.rgbName(0x90, 0xa8, 0xa4, 'blue surf'), + RgbInt8Color.rgbName(0x92, 0xac, 0xa0, 'pq-5575c'), + RgbInt8Color.rgbName(0x8f, 0xad, 0xbd, 'forget-me-not'), + RgbInt8Color.rgbName(0x94, 0xa9, 0xcb, 'pq-7681c'), + RgbInt8Color.rgbName(0x9e, 0xb3, 0x56, 'pq-2303c'), + RgbInt8Color.rgbName(0x92, 0xaf, 0x88, 'fair green'), + RgbInt8Color.rgbName(0x94, 0xb7, 0xbb, 'pq-5503c'), + RgbInt8Color.rgbName(0x92, 0xb6, 0xd5, 'airy blue'), + RgbInt8Color.rgbName(0x96, 0xb3, 0xd2, 'powder blue'), + RgbInt8Color.rgbName(0x9b, 0xcb, 0xeb, 'pq-291c'), + RgbInt8Color.rgbName(0xba, 0xbc, 0x16, 'pq-7744c'), + RgbInt8Color.rgbName(0xa0, 0xab, 0x4d, 'pq-2304c'), + RgbInt8Color.rgbName(0x97, 0xc1, 0xa1, 'hemlock'), + RgbInt8Color.rgbName(0x9b, 0xbe, 0xa9, 'grayed jade'), + RgbInt8Color.rgbName(0x9a, 0xbe, 0xaa, 'pq-558c'), + RgbInt8Color.rgbName(0x98, 0xbf, 0xca, 'sea angel'), + RgbInt8Color.rgbName(0x95, 0xc0, 0xcb, 'porcelain blue'), + RgbInt8Color.rgbName(0xb5, 0xcc, 0x39, 'tender shoots'), + RgbInt8Color.rgbName(0x9b, 0xd3, 0xdd, 'pq-629c'), + RgbInt8Color.rgbName(0xba, 0xdf, 0x30, 'acid lime'), + RgbInt8Color.rgbName(0xb7, 0xdb, 0x57, 'pq-2298c'), + RgbInt8Color.rgbName(0x9f, 0xc0, 0x9c, 'sprucestone'), + RgbInt8Color.rgbName(0xa0, 0xda, 0xb3, 'pq-344c'), + RgbInt8Color.rgbName(0x9f, 0xd9, 0xd7, 'blue tint'), + RgbInt8Color.rgbName(0xbb, 0xb3, 0x23, 'pq-7765c'), + RgbInt8Color.rgbName(0xb7, 0xdd, 0x79, 'pq-366c'), + RgbInt8Color.rgbName(0xce, 0xdc, 0x0, 'pq-381c'), + RgbInt8Color.rgbName(0xd0, 0xdf, 0x0, 'pq-389c'), + RgbInt8Color.rgbName(0xb5, 0xb6, 0x44, 'apple green'), + RgbInt8Color.rgbName(0xb9, 0xef, 0xa3, 'pq-916c'), + RgbInt8Color.rgbName(0xb5, 0xbf, 0x50, 'bright chartreuse'), + RgbInt8Color.rgbName(0xa3, 0xc5, 0x7d, 'opaline green'), + RgbInt8Color.rgbName(0xb3, 0xd5, 0x7d, 'pq-2284c'), + RgbInt8Color.rgbName(0xa7, 0xe6, 0xd7, 'pq-331c'), + RgbInt8Color.rgbName(0xaf, 0xea, 0xdc, 'pq-9524c'), + RgbInt8Color.rgbName(0xaa, 0x18, 0x2b, 'salsa'), + RgbInt8Color.rgbName(0xb9, 0x12, 0x28, 'goji berry'), + RgbInt8Color.rgbName(0xa6, 0x19, 0x2e, 'pq-187c'), + RgbInt8Color.rgbName(0xae, 0xe, 0x36, 'crimson'), + RgbInt8Color.rgbName(0xaf, 0x23, 0x1c, 'pq-2350c'), + RgbInt8Color.rgbName(0xc0, 0xd, 0x1e, 'pq-3546c'), + RgbInt8Color.rgbName(0xa2, 0x14, 0x41, 'persian red'), + RgbInt8Color.rgbName(0xba, 0xb, 0x32, 'lychee'), + RgbInt8Color.rgbName(0xb2, 0x10, 0x3c, 'jalapeño red'), + RgbInt8Color.rgbName(0xac, 0x14, 0x5a, 'pq-215c'), + RgbInt8Color.rgbName(0xc6, 0x0, 0x7e, 'pq-233c'), + RgbInt8Color.rgbName(0xd5, 0x39, 0xb5, 'pq-2385c'), + RgbInt8Color.rgbName(0xdb, 0x3e, 0xb1, 'pq-239c'), + RgbInt8Color.rgbName(0xd6, 0x25, 0x98, 'pq-pinkc'), + RgbInt8Color.rgbName(0xa2, 0x24, 0x2f, 'samba'), + RgbInt8Color.rgbName(0x9b, 0x27, 0x43, 'pq-194c'), + RgbInt8Color.rgbName(0xa5, 0x23, 0x50, 'granita'), + RgbInt8Color.rgbName(0xa2, 0x24, 0x52, 'cherries jubilee'), + RgbInt8Color.rgbName(0xa1, 0x22, 0x4e, 'pq-2041c'), + RgbInt8Color.rgbName(0xa4, 0x29, 0x2e, 'pompeian red'), + RgbInt8Color.rgbName(0xa7, 0x2b, 0x2a, 'pq-7627c'), + RgbInt8Color.rgbName(0x96, 0x2d, 0x49, 'red bud'), + RgbInt8Color.rgbName(0xa1, 0x2e, 0x64, 'pq-8085c'), + RgbInt8Color.rgbName(0xa5, 0x30, 0x7c, 'pq-2063c'), + RgbInt8Color.rgbName(0xaa, 0x32, 0x6f, 'pq-10177c'), + RgbInt8Color.rgbName(0xa2, 0x3c, 0x26, 'rooibos tea'), + RgbInt8Color.rgbName(0x9a, 0x38, 0x2d, 'ketchup'), + RgbInt8Color.rgbName(0xa3, 0x28, 0x57, 'vivacious'), + RgbInt8Color.rgbName(0xa9, 0x43, 0x1e, 'pq-1675c'), + RgbInt8Color.rgbName(0x95, 0x36, 0x40, 'garnet'), + RgbInt8Color.rgbName(0x97, 0x34, 0x43, 'deep claret'), + RgbInt8Color.rgbName(0x97, 0x3a, 0x36, 'bossa nova'), + RgbInt8Color.rgbName(0x95, 0x42, 0x4e, 'earth red'), + RgbInt8Color.rgbName(0xa5, 0x34, 0x5b, 'pq-8882c'), + RgbInt8Color.rgbName(0xc0, 0x69, 0xc2, 'pq-2067c'), + RgbInt8Color.rgbName(0xb9, 0x47, 0x0, 'pq-1525c'), + RgbInt8Color.rgbName(0xa1, 0x56, 0x1c, 'pq-160c'), + RgbInt8Color.rgbName(0x9d, 0x43, 0x2c, 'pq-7593c'), + RgbInt8Color.rgbName(0x9c, 0x45, 0x3b, 'cinnabar'), + RgbInt8Color.rgbName(0x97, 0x45, 0x42, 'pq-8860c'), + RgbInt8Color.rgbName(0x9b, 0x41, 0x52, 'pq-8881c'), + RgbInt8Color.rgbName(0x98, 0x48, 0x56, 'pq-696c'), + RgbInt8Color.rgbName(0xa7, 0x3a, 0x64, 'pq-7433c'), + RgbInt8Color.rgbName(0x9d, 0x44, 0x6e, 'magenta haze'), + RgbInt8Color.rgbName(0xa3, 0x3b, 0x74, 'pq-8084c'), + RgbInt8Color.rgbName(0x97, 0x4d, 0x84, 'pq-10200c'), + RgbInt8Color.rgbName(0xac, 0x75, 0xbd, 'pq-3520c'), + RgbInt8Color.rgbName(0xa8, 0x62, 0x17, 'honey ginger'), + RgbInt8Color.rgbName(0xa6, 0x63, 0x1b, 'pq-7512c'), + RgbInt8Color.rgbName(0xa9, 0x5f, 0x1c, 'pq-8941c'), + RgbInt8Color.rgbName(0x95, 0x4e, 0x4c, 'pq-8880c'), + RgbInt8Color.rgbName(0x94, 0x60, 0x9a, 'pq-10211c'), + RgbInt8Color.rgbName(0xbe, 0x4d, 0x0, 'pq-718c'), + RgbInt8Color.rgbName(0xa6, 0x68, 0x1e, 'pq-8961c'), + RgbInt8Color.rgbName(0xa1, 0x53, 0x25, 'autumnal'), + RgbInt8Color.rgbName(0x99, 0x55, 0x2b, 'pq-7516c'), + RgbInt8Color.rgbName(0x9f, 0x51, 0x30, 'bombay brown'), + RgbInt8Color.rgbName(0x9e, 0x53, 0x30, 'pq-7586c'), + RgbInt8Color.rgbName(0x96, 0x4f, 0x4c, 'marsala'), + RgbInt8Color.rgbName(0x9f, 0x50, 0x69, 'malaga'), + RgbInt8Color.rgbName(0x90, 0x5f, 0x7b, 'pq-2055c'), + RgbInt8Color.rgbName(0xa4, 0x50, 0x83, 'pq-10175c'), + RgbInt8Color.rgbName(0xa0, 0x4e, 0x85, 'pq-8083c'), + RgbInt8Color.rgbName(0x99, 0x5c, 0x8c, 'pq-10199c'), + RgbInt8Color.rgbName(0x92, 0x5f, 0x90, 'pq-8102c'), + RgbInt8Color.rgbName(0xae, 0x59, 0xb, 'pq-8942c'), + RgbInt8Color.rgbName(0xbd, 0x5a, 0x0, 'pq-8943c'), + RgbInt8Color.rgbName(0xa4, 0x5a, 0x2a, 'pq-470c'), + RgbInt8Color.rgbName(0x98, 0x5c, 0x41, 'sierra'), + RgbInt8Color.rgbName(0x98, 0x59, 0x4b, 'chutney'), + RgbInt8Color.rgbName(0x99, 0x63, 0x78, 'mellow mauve'), + RgbInt8Color.rgbName(0x96, 0x63, 0x7b, 'bordeaux'), + RgbInt8Color.rgbName(0x93, 0x6a, 0x98, 'lavender crystal'), + RgbInt8Color.rgbName(0xa1, 0x5a, 0x95, 'pq-7655c'), + RgbInt8Color.rgbName(0x98, 0x73, 0xac, 'pq-2080c'), + RgbInt8Color.rgbName(0xab, 0x92, 0xe1, 'pq-935c'), + RgbInt8Color.rgbName(0xa6, 0x62, 0x21, 'pq-10135c'), + RgbInt8Color.rgbName(0x9e, 0x65, 0x2e, 'pq-730c'), + RgbInt8Color.rgbName(0xa2, 0x63, 0x2a, 'pq-8940c'), + RgbInt8Color.rgbName(0xa2, 0x66, 0x32, 'pq-10141c'), + RgbInt8Color.rgbName(0x93, 0x6b, 0x4f, 'thrush'), + RgbInt8Color.rgbName(0x98, 0x5f, 0x68, 'deco rose'), + RgbInt8Color.rgbName(0x8f, 0x72, 0x65, 'brownie'), + RgbInt8Color.rgbName(0x93, 0x6d, 0x73, 'pq-7639c'), + RgbInt8Color.rgbName(0x94, 0x6c, 0x74, 'wistful mauve'), + RgbInt8Color.rgbName(0x9c, 0x62, 0x8b, 'pq-8082c'), + RgbInt8Color.rgbName(0x99, 0x6e, 0x9f, 'pq-10210c'), + RgbInt8Color.rgbName(0xa7, 0x6f, 0x1f, 'buckthorn brown'), + RgbInt8Color.rgbName(0x9e, 0x6a, 0x38, 'pq-7574c'), + RgbInt8Color.rgbName(0x97, 0x75, 0x47, 'medal bronze'), + RgbInt8Color.rgbName(0x97, 0x6f, 0x4c, 'chipmunk'), + RgbInt8Color.rgbName(0x92, 0x70, 0x5f, 'raw umber'), + RgbInt8Color.rgbName(0x95, 0x6c, 0x58, 'pq-4715c'), + RgbInt8Color.rgbName(0x94, 0x77, 0x64, 'woodsmoke'), + RgbInt8Color.rgbName(0x90, 0x7c, 0x6b, 'pq-10372c'), + RgbInt8Color.rgbName(0x8e, 0x7c, 0x71, 'taupe gray'), + RgbInt8Color.rgbName(0x9f, 0x6d, 0x79, 'pq-8062c'), + RgbInt8Color.rgbName(0x9a, 0x71, 0x82, 'dusky orchid'), + RgbInt8Color.rgbName(0x92, 0x72, 0x88, 'very grape'), + RgbInt8Color.rgbName(0x9e, 0x70, 0x8b, 'pq-2054c'), + RgbInt8Color.rgbName(0x9a, 0x71, 0x8f, 'pq-8081c'), + RgbInt8Color.rgbName(0x9d, 0x6b, 0x95, 'pq-10198c'), + RgbInt8Color.rgbName(0x9d, 0x7c, 0x2f, 'pq-8640c'), + RgbInt8Color.rgbName(0x99, 0x7b, 0x38, 'dried tobacco'), + RgbInt8Color.rgbName(0x99, 0x77, 0x47, 'pq-10356c'), + RgbInt8Color.rgbName(0x98, 0x75, 0x4a, 'bistre'), + RgbInt8Color.rgbName(0x97, 0x75, 0x4c, 'dijon'), + RgbInt8Color.rgbName(0x9d, 0x74, 0x46, 'bone brown'), + RgbInt8Color.rgbName(0x96, 0x7b, 0x50, 'pq-10349c'), + RgbInt8Color.rgbName(0x97, 0x7b, 0x59, 'pq-10360c'), + RgbInt8Color.rgbName(0x94, 0x79, 0x5d, 'pq-7504c'), + RgbInt8Color.rgbName(0x97, 0x7c, 0x61, 'tiger\'s eye'), + RgbInt8Color.rgbName(0x93, 0x7b, 0x6a, 'portabella'), + RgbInt8Color.rgbName(0x99, 0x78, 0x67, 'beaver fur'), + RgbInt8Color.rgbName(0x97, 0x7d, 0x70, 'ginger snap'), + RgbInt8Color.rgbName(0x91, 0x85, 0x79, 'roasted cashew'), + RgbInt8Color.rgbName(0x95, 0x7a, 0x76, 'antler'), + RgbInt8Color.rgbName(0x9b, 0x79, 0x83, 'pq-8061c'), + RgbInt8Color.rgbName(0x9b, 0x77, 0x93, 'pq-5145c'), + RgbInt8Color.rgbName(0x98, 0x79, 0xa2, 'diffused orchid'), + RgbInt8Color.rgbName(0x9d, 0x7b, 0xb0, 'english lavender'), + RgbInt8Color.rgbName(0x97, 0x87, 0xb8, 'sunlit allium'), + RgbInt8Color.rgbName(0xac, 0x8a, 0xb, 'pq-8642c'), + RgbInt8Color.rgbName(0xa8, 0x86, 0x22, 'pq-8641c'), + RgbInt8Color.rgbName(0x99, 0x85, 0x42, 'pq-4505c'), + RgbInt8Color.rgbName(0x9c, 0x7e, 0x41, 'bronze mist'), + RgbInt8Color.rgbName(0x93, 0x84, 0x5e, 'pq-10342c'), + RgbInt8Color.rgbName(0x99, 0x84, 0x56, 'fennel seed'), + RgbInt8Color.rgbName(0x9c, 0x83, 0x5d, 'pq-10348c'), + RgbInt8Color.rgbName(0x98, 0x84, 0x67, 'kelp'), + RgbInt8Color.rgbName(0x92, 0x84, 0x75, 'greige'), + RgbInt8Color.rgbName(0x93, 0x87, 0x72, 'coriander'), + RgbInt8Color.rgbName(0x94, 0x8a, 0x7a, 'winter twig'), + RgbInt8Color.rgbName(0x98, 0x87, 0x8c, 'purple dove'), + RgbInt8Color.rgbName(0x98, 0x86, 0x8c, 'quail'), + RgbInt8Color.rgbName(0x92, 0x89, 0x8a, 'zinc'), + RgbInt8Color.rgbName(0x99, 0x85, 0x8d, 'pq-8060c'), + RgbInt8Color.rgbName(0x95, 0x86, 0x91, 'pq-10191c'), + RgbInt8Color.rgbName(0x94, 0x87, 0x94, 'pq-7653c'), + RgbInt8Color.rgbName(0x95, 0x88, 0x96, 'pq-8080c'), + RgbInt8Color.rgbName(0x93, 0x87, 0xa7, 'pq-10221c'), + RgbInt8Color.rgbName(0xa2, 0x8e, 0x2a, 'pq-456c'), + RgbInt8Color.rgbName(0xa9, 0x8b, 0x2d, 'olive oil'), + RgbInt8Color.rgbName(0xa2, 0x8e, 0x35, 'pq-8365c'), + RgbInt8Color.rgbName(0x9a, 0x8b, 0x4f, 'willow'), + RgbInt8Color.rgbName(0x95, 0x90, 0x73, 'pq-10335c'), + RgbInt8Color.rgbName(0x9b, 0x8d, 0x6e, 'pq-10341c'), + RgbInt8Color.rgbName(0x98, 0x8c, 0x75, 'tree house'), + RgbInt8Color.rgbName(0x99, 0x89, 0x78, 'dune'), + RgbInt8Color.rgbName(0x97, 0x92, 0x79, 'pq-8381c'), + RgbInt8Color.rgbName(0x96, 0x8a, 0x83, 'pq-10376c'), + RgbInt8Color.rgbName(0x91, 0x8c, 0x86, 'rock ridge'), + RgbInt8Color.rgbName(0x95, 0x8b, 0x84, 'moon rock'), + RgbInt8Color.rgbName(0x97, 0x8c, 0x87, 'pq-408c'), + RgbInt8Color.rgbName(0x8e, 0x90, 0x89, 'pq-7539c'), + RgbInt8Color.rgbName(0x96, 0x8c, 0x83, 'pq-warmgray7c'), + RgbInt8Color.rgbName(0x97, 0x8d, 0x89, 'satellite'), + RgbInt8Color.rgbName(0x94, 0x90, 0x8b, 'mourning dove'), + RgbInt8Color.rgbName(0x92, 0x90, 0x90, 'wet weather'), + RgbInt8Color.rgbName(0x95, 0x90, 0x8d, 'pq-8040c'), + RgbInt8Color.rgbName(0x95, 0x90, 0x92, 'pq-10382c'), + RgbInt8Color.rgbName(0x94, 0x8d, 0x99, 'minimal gray'), + RgbInt8Color.rgbName(0x98, 0x90, 0xa2, 'lavender gray'), + RgbInt8Color.rgbName(0x96, 0x93, 0xaa, 'pq-10226c'), + RgbInt8Color.rgbName(0x94, 0x99, 0xbb, 'thistle down'), + RgbInt8Color.rgbName(0x9e, 0x91, 0xc3, 'violet tulip'), + RgbInt8Color.rgbName(0xa7, 0xa4, 0xe0, 'pq-2705c'), + RgbInt8Color.rgbName(0xa6, 0x94, 0x2a, 'pq-8645c'), + RgbInt8Color.rgbName(0xa1, 0x93, 0x41, 'pq-8364c'), + RgbInt8Color.rgbName(0x9b, 0x94, 0x5f, 'pq-451c'), + RgbInt8Color.rgbName(0xa0, 0x99, 0x58, 'pq-5835c'), + RgbInt8Color.rgbName(0x9d, 0x9a, 0x58, 'pq-8362c'), + RgbInt8Color.rgbName(0x98, 0x98, 0x69, 'pq-8361c'), + RgbInt8Color.rgbName(0x95, 0x9e, 0x7b, 'pq-10328c'), + RgbInt8Color.rgbName(0x9c, 0x98, 0x83, 'pq-10334c'), + RgbInt8Color.rgbName(0x95, 0x98, 0x89, 'seagrass'), + RgbInt8Color.rgbName(0x91, 0x93, 0x88, 'pq-415c'), + RgbInt8Color.rgbName(0x94, 0x93, 0x87, 'pq-8380c'), + RgbInt8Color.rgbName(0x94, 0x9a, 0x90, 'pq-7538c'), + RgbInt8Color.rgbName(0x98, 0x97, 0x9a, 'alloy'), + RgbInt8Color.rgbName(0x98, 0x9a, 0x98, 'limestone'), + RgbInt8Color.rgbName(0x98, 0x96, 0xa4, 'lilac gray'), + RgbInt8Color.rgbName(0x97, 0x99, 0x9b, 'pq-coolgray7c'), + RgbInt8Color.rgbName(0x9c, 0x94, 0xab, 'pq-10220c'), + RgbInt8Color.rgbName(0x9d, 0x96, 0xb2, 'heirloom lilac'), + RgbInt8Color.rgbName(0x95, 0x9e, 0xb7, 'eventide'), + RgbInt8Color.rgbName(0x9a, 0x9b, 0xc1, 'sweet lavender'), + RgbInt8Color.rgbName(0xa5, 0xb0, 0xe3, 'pq-2113c'), + RgbInt8Color.rgbName(0xaa, 0x9d, 0x2e, 'pq-7767c'), + RgbInt8Color.rgbName(0xa4, 0x9c, 0x41, 'pq-8363c'), + RgbInt8Color.rgbName(0xa3, 0xa0, 0x4e, 'oasis'), + RgbInt8Color.rgbName(0x9a, 0xa0, 0x67, 'fern'), + RgbInt8Color.rgbName(0xa0, 0x9d, 0x59, 'moss'), + RgbInt8Color.rgbName(0x97, 0xa9, 0x7f, 'pq-10316c'), + RgbInt8Color.rgbName(0x99, 0x9b, 0x85, 'tea'), + RgbInt8Color.rgbName(0x99, 0x9e, 0x98, 'wrought iron'), + RgbInt8Color.rgbName(0x98, 0xa0, 0xa5, 'quarry'), + RgbInt8Color.rgbName(0x95, 0xa6, 0x9f, 'jadeite'), + RgbInt8Color.rgbName(0x98, 0xa4, 0xae, 'pq-7543c'), + RgbInt8Color.rgbName(0x9a, 0x9e, 0xb3, 'aleutian'), + RgbInt8Color.rgbName(0xbf, 0xb0, 0x0, 'pq-10111c'), + RgbInt8Color.rgbName(0xc5, 0xa9, 0x0, 'pq-103c'), + RgbInt8Color.rgbName(0x9e, 0xa9, 0x62, 'pq-10323c'), + RgbInt8Color.rgbName(0x9c, 0xad, 0x60, 'herbal garden'), + RgbInt8Color.rgbName(0x9f, 0xaf, 0x6c, 'leaf green'), + RgbInt8Color.rgbName(0x99, 0xae, 0xae, 'gray mist'), + RgbInt8Color.rgbName(0x9b, 0xab, 0xbb, 'blue fog'), + RgbInt8Color.rgbName(0x9e, 0xa6, 0xb4, 'pq-2162c'), + RgbInt8Color.rgbName(0x9f, 0xa9, 0xbe, 'zen blue'), + RgbInt8Color.rgbName(0x9b, 0xa9, 0xca, 'brunnera blue'), + RgbInt8Color.rgbName(0xa7, 0xc6, 0xed, 'pq-2717c'), + RgbInt8Color.rgbName(0xa4, 0xc8, 0xe1, 'pq-543c'), + RgbInt8Color.rgbName(0xc4, 0xb0, 0x0, 'pq-612c'), + RgbInt8Color.rgbName(0xc4, 0xb2, 0x0, 'pq-7759c'), + RgbInt8Color.rgbName(0x9d, 0xb0, 0xac, 'pq-5507c'), + RgbInt8Color.rgbName(0x9a, 0xb9, 0xad, 'pq-623c'), + RgbInt8Color.rgbName(0x9e, 0xb6, 0xb8, 'ether'), + RgbInt8Color.rgbName(0x9e, 0xb5, 0xcb, 'pq-2155c'), + RgbInt8Color.rgbName(0x9b, 0xb7, 0xd4, 'cerulean'), + RgbInt8Color.rgbName(0x9e, 0xb4, 0xd3, 'chambray blue'), + RgbInt8Color.rgbName(0x9b, 0xb8, 0xd3, 'pq-644c'), + RgbInt8Color.rgbName(0x9a, 0xbb, 0x91, 'pq-2261c'), + RgbInt8Color.rgbName(0x9e, 0xbc, 0x97, 'quiet green'), + RgbInt8Color.rgbName(0x9b, 0xc2, 0xb1, 'lichen'), + RgbInt8Color.rgbName(0x99, 0xc5, 0xc4, 'pastel turquoise'), + RgbInt8Color.rgbName(0x99, 0xc1, 0xcc, 'aquatic'), + RgbInt8Color.rgbName(0x9c, 0xc2, 0xc5, 'canal blue'), + RgbInt8Color.rgbName(0xa9, 0xc4, 0x7f, 'pq-577c'), + RgbInt8Color.rgbName(0xa3, 0xc8, 0x93, 'arcadian green'), + RgbInt8Color.rgbName(0xa7, 0xc7, 0x96, 'nile green'), + RgbInt8Color.rgbName(0x9d, 0xc3, 0xd4, 'aquamarine'), + RgbInt8Color.rgbName(0xa3, 0xc7, 0xd2, 'pq-551c'), + RgbInt8Color.rgbName(0xa1, 0xc8, 0xdb, 'crystal blue'), + RgbInt8Color.rgbName(0xc0, 0xd7, 0x25, 'lime punch'), + RgbInt8Color.rgbName(0xa9, 0xd3, 0x9e, 'pistachio green'), + RgbInt8Color.rgbName(0xa1, 0xd7, 0xc9, 'yucca'), + RgbInt8Color.rgbName(0xa1, 0xd6, 0xca, 'pq-565c'), + RgbInt8Color.rgbName(0xa0, 0xd1, 0xca, 'pq-7464c'), + RgbInt8Color.rgbName(0xc0, 0xdb, 0x3a, 'love bird'), + RgbInt8Color.rgbName(0xa5, 0xdf, 0xd3, 'pq-572c'), + RgbInt8Color.rgbName(0xc5, 0xe8, 0x6c, 'pq-374c'), + RgbInt8Color.rgbName(0xc6, 0xe6, 0x7a, 'sharp green'), + RgbInt8Color.rgbName(0xa8, 0xd5, 0xba, 'pq-2246c'), + RgbInt8Color.rgbName(0xaa, 0xd5, 0xdb, 'clearwater'), + RgbInt8Color.rgbName(0xc8, 0xe3, 0x79, 'pq-2288c'), + RgbInt8Color.rgbName(0xbc, 0xe1, 0x94, 'pq-7486c'), + RgbInt8Color.rgbName(0xb9, 0xea, 0xb3, 'patina green'), + RgbInt8Color.rgbName(0xad, 0xdf, 0xb3, 'pq-2254c'), + RgbInt8Color.rgbName(0xac, 0xdf, 0xdd, 'blue light'), + RgbInt8Color.rgbName(0xb1, 0xe4, 0xe3, 'pq-317c'), + RgbInt8Color.rgbName(0xb6, 0x10, 0x32, 'toreador'), + RgbInt8Color.rgbName(0xba, 0xc, 0x2f, 'pq-200c'), + RgbInt8Color.rgbName(0xab, 0x23, 0x28, 'pq-7621c'), + RgbInt8Color.rgbName(0xb3, 0x1a, 0x38, 'lipstick red'), + RgbInt8Color.rgbName(0xc5, 0x0, 0x3e, 'pq-1935c'), + RgbInt8Color.rgbName(0xd0, 0x0, 0x6f, 'pq-226c'), + RgbInt8Color.rgbName(0xae, 0x25, 0x73, 'pq-675c'), + RgbInt8Color.rgbName(0xd1, 0x2b, 0x92, 'pq-3527c'), + RgbInt8Color.rgbName(0xe1, 0x0, 0x98, 'pq-rhodamineredc'), + RgbInt8Color.rgbName(0xaf, 0x27, 0x2f, 'pq-1805c'), + RgbInt8Color.rgbName(0xb4, 0x26, 0x2a, 'aura orange'), + RgbInt8Color.rgbName(0xab, 0x34, 0x75, 'fuchsia red'), + RgbInt8Color.rgbName(0xb3, 0x3d, 0x26, 'pq-7599c'), + RgbInt8Color.rgbName(0xa4, 0x34, 0x3a, 'pq-1807c'), + RgbInt8Color.rgbName(0xa6, 0x42, 0x79, 'pq-10176c'), + RgbInt8Color.rgbName(0xca, 0x36, 0x4, 'pq-2349c'), + RgbInt8Color.rgbName(0xa7, 0x33, 0x40, 'american beauty'), + RgbInt8Color.rgbName(0xa8, 0x34, 0x40, 'pq-8883c'), + RgbInt8Color.rgbName(0xa8, 0x3e, 0x6c, 'cactus flower'), + RgbInt8Color.rgbName(0xa8, 0x3d, 0x72, 'pq-7647c'), + RgbInt8Color.rgbName(0xb1, 0x4d, 0x92, 'pq-10189c'), + RgbInt8Color.rgbName(0xad, 0x4d, 0x8c, 'purple orchid'), + RgbInt8Color.rgbName(0xa6, 0x55, 0x23, 'pq-1605c'), + RgbInt8Color.rgbName(0xa9, 0x52, 0x25, 'pq-8025c'), + RgbInt8Color.rgbName(0x9f, 0x44, 0x40, 'tandoori spice'), + RgbInt8Color.rgbName(0xa4, 0x49, 0x3d, 'pq-7608c'), + RgbInt8Color.rgbName(0xa3, 0x3d, 0x4b, 'pq-8884c'), + RgbInt8Color.rgbName(0xa0, 0x45, 0x55, 'pq-8885c'), + RgbInt8Color.rgbName(0xa5, 0x45, 0x70, 'pq-2047c'), + RgbInt8Color.rgbName(0xa9, 0x56, 0x8c, 'meadow mauve'), + RgbInt8Color.rgbName(0xbe, 0x54, 0x0, 'pq-2020c'), + RgbInt8Color.rgbName(0xb7, 0x4f, 0xd, 'pq-8922c'), + RgbInt8Color.rgbName(0xa1, 0x4d, 0x3a, 'burnt brick'), + RgbInt8Color.rgbName(0x9d, 0x54, 0x56, 'pq-8065c'), + RgbInt8Color.rgbName(0xa6, 0x4f, 0x82, 'dahlia mauve'), + RgbInt8Color.rgbName(0xaf, 0x5b, 0x97, 'pq-10188c'), + RgbInt8Color.rgbName(0xad, 0x5e, 0x99, 'radiant orchid'), + RgbInt8Color.rgbName(0xab, 0x68, 0x19, 'thai curry'), + RgbInt8Color.rgbName(0xad, 0x66, 0x1c, 'pq-8964c'), + RgbInt8Color.rgbName(0xa3, 0x51, 0x38, 'pq-8900c'), + RgbInt8Color.rgbName(0x9c, 0x56, 0x42, 'baked clay'), + RgbInt8Color.rgbName(0xa1, 0x58, 0x43, 'auburn'), + RgbInt8Color.rgbName(0xa4, 0x52, 0x48, 'pq-7524c'), + RgbInt8Color.rgbName(0x9a, 0x60, 0x51, 'copper brown'), + RgbInt8Color.rgbName(0xa4, 0x59, 0x6d, 'rose wine'), + RgbInt8Color.rgbName(0xa3, 0x57, 0x76, 'red violet'), + RgbInt8Color.rgbName(0xa7, 0x67, 0xa2, 'iris orchid'), + RgbInt8Color.rgbName(0xc9, 0x8b, 0xdb, 'pq-2572c'), + RgbInt8Color.rgbName(0xb8, 0x84, 0xcb, 'pq-2573c'), + RgbInt8Color.rgbName(0xa3, 0x62, 0x3b, 'adobe'), + RgbInt8Color.rgbName(0xa2, 0x58, 0x40, 'pq-8045c'), + RgbInt8Color.rgbName(0xa1, 0x5d, 0x42, 'pq-8920c'), + RgbInt8Color.rgbName(0xa2, 0x57, 0x4b, 'etruscan red'), + RgbInt8Color.rgbName(0x9f, 0x5f, 0x53, 'pq-2442c'), + RgbInt8Color.rgbName(0xa1, 0x5b, 0x62, 'pq-8064c'), + RgbInt8Color.rgbName(0x9c, 0x61, 0x69, 'pq-4995c'), + RgbInt8Color.rgbName(0xa4, 0x5f, 0x6c, 'pq-8063c'), + RgbInt8Color.rgbName(0xa5, 0x5f, 0x8c, 'pq-10174c'), + RgbInt8Color.rgbName(0xad, 0x96, 0xdc, 'pq-2645c'), + RgbInt8Color.rgbName(0xa7, 0x66, 0x2b, 'pq-7573c'), + RgbInt8Color.rgbName(0xad, 0x64, 0x33, 'pq-7566c'), + RgbInt8Color.rgbName(0x97, 0x69, 0x4c, 'pq-2468c'), + RgbInt8Color.rgbName(0xa6, 0x66, 0x46, 'amber brown'), + RgbInt8Color.rgbName(0x9a, 0x6a, 0x4f, 'pq-7525c'), + RgbInt8Color.rgbName(0xa1, 0x65, 0x5b, 'cedar wood'), + RgbInt8Color.rgbName(0xa2, 0x66, 0x66, 'withered rose'), + RgbInt8Color.rgbName(0x9b, 0x71, 0x6b, 'burlwood'), + RgbInt8Color.rgbName(0xa7, 0x63, 0x89, 'pq-688c'), + RgbInt8Color.rgbName(0xa8, 0x69, 0x2e, 'pq-10134c'), + RgbInt8Color.rgbName(0xac, 0x6b, 0x29, 'sudan brown'), + RgbInt8Color.rgbName(0xa9, 0x6d, 0x2f, 'pq-8965c'), + RgbInt8Color.rgbName(0xa7, 0x70, 0x40, 'pq-10140c'), + RgbInt8Color.rgbName(0x9b, 0x70, 0x4d, 'pq-10367c'), + RgbInt8Color.rgbName(0xa4, 0x6f, 0x44, 'meerkat'), + RgbInt8Color.rgbName(0xa1, 0x72, 0x49, 'brown sugar'), + RgbInt8Color.rgbName(0x9a, 0x73, 0x52, 'tobacco brown'), + RgbInt8Color.rgbName(0xa0, 0x71, 0x4f, 'lion'), + RgbInt8Color.rgbName(0xa3, 0x6e, 0x51, 'pecan brown'), + RgbInt8Color.rgbName(0xa5, 0x6e, 0x60, 'pq-8043c'), + RgbInt8Color.rgbName(0xa4, 0x6e, 0x6e, 'pq-8442c'), + RgbInt8Color.rgbName(0xa6, 0x6e, 0x7a, 'mesa rose'), + RgbInt8Color.rgbName(0xa5, 0x6e, 0x87, 'pq-7646c'), + RgbInt8Color.rgbName(0xa5, 0x6d, 0x95, 'pq-10173c'), + RgbInt8Color.rgbName(0xa7, 0x6c, 0x97, 'mulberry'), + RgbInt8Color.rgbName(0xa1, 0x75, 0x9c, 'dusty lavender'), + RgbInt8Color.rgbName(0xa2, 0x77, 0xa6, 'pq-7440c'), + RgbInt8Color.rgbName(0xab, 0x91, 0x13, 'pq-8644c'), + RgbInt8Color.rgbName(0xa6, 0x7d, 0x34, 'pq-8385c'), + RgbInt8Color.rgbName(0xa4, 0x74, 0x49, 'pq-2318c'), + RgbInt8Color.rgbName(0xa4, 0x78, 0x64, 'mocha mousse'), + RgbInt8Color.rgbName(0x9e, 0x7e, 0x67, 'burro'), + RgbInt8Color.rgbName(0x9a, 0x7f, 0x61, 'pq-2470c'), + RgbInt8Color.rgbName(0x9f, 0x81, 0x70, 'pq-8021c'), + RgbInt8Color.rgbName(0x9e, 0x7b, 0x71, 'pq-8042c'), + RgbInt8Color.rgbName(0xa0, 0x7b, 0x7b, 'pq-8441c'), + RgbInt8Color.rgbName(0xa4, 0x77, 0x7e, 'nostalgia rose'), + RgbInt8Color.rgbName(0x98, 0x80, 0x88, 'toadstool'), + RgbInt8Color.rgbName(0x98, 0x84, 0x85, 'pq-8440c'), + RgbInt8Color.rgbName(0x9d, 0x84, 0x8e, 'elderberry'), + RgbInt8Color.rgbName(0x9f, 0x7a, 0x93, 'valerian'), + RgbInt8Color.rgbName(0x9c, 0x7e, 0x9e, 'pq-10202c'), + RgbInt8Color.rgbName(0xa2, 0x78, 0x9c, 'pq-7654c'), + RgbInt8Color.rgbName(0xa1, 0x7d, 0x9e, 'pq-10197c'), + RgbInt8Color.rgbName(0x9f, 0x7c, 0xa4, 'pq-10209c'), + RgbInt8Color.rgbName(0x9b, 0x7e, 0xa4, 'pq-2079c'), + RgbInt8Color.rgbName(0xa5, 0x7f, 0xb2, 'pq-521c'), + RgbInt8Color.rgbName(0x9f, 0x90, 0xc1, 'sand verbena'), + RgbInt8Color.rgbName(0xaf, 0x95, 0xd3, 'pq-2073c'), + RgbInt8Color.rgbName(0xad, 0x84, 0x1f, 'pq-1255c'), + RgbInt8Color.rgbName(0xa4, 0x7d, 0x43, 'wood thrush'), + RgbInt8Color.rgbName(0xa6, 0x83, 0x40, 'pq-8384c'), + RgbInt8Color.rgbName(0x9e, 0x7f, 0x56, 'pq-10355c'), + RgbInt8Color.rgbName(0xa2, 0x7c, 0x5c, 'pq-10366c'), + RgbInt8Color.rgbName(0x9d, 0x86, 0x69, 'pq-10359c'), + RgbInt8Color.rgbName(0x9f, 0x86, 0x72, 'amphora'), + RgbInt8Color.rgbName(0x98, 0x89, 0x7b, 'pq-10371c'), + RgbInt8Color.rgbName(0x9a, 0x88, 0x7b, 'pq-8020c'), + RgbInt8Color.rgbName(0x9c, 0x84, 0x7c, 'pq-8041c'), + RgbInt8Color.rgbName(0xa0, 0x86, 0x7f, 'pq-2475c'), + RgbInt8Color.rgbName(0x9f, 0x86, 0xaa, 'rhapsody'), + RgbInt8Color.rgbName(0xb0, 0x9f, 0xca, 'purple rose'), + RgbInt8Color.rgbName(0xb3, 0xa0, 0xc9, 'lilac breeze'), + RgbInt8Color.rgbName(0xae, 0x8e, 0x2c, 'green sulphur'), + RgbInt8Color.rgbName(0xb2, 0x8b, 0x33, 'pq-10128c'), + RgbInt8Color.rgbName(0xa2, 0x8d, 0x5b, 'pq-8383c'), + RgbInt8Color.rgbName(0xa1, 0x8b, 0x6b, 'pq-10347c'), + RgbInt8Color.rgbName(0xa4, 0x8a, 0x66, 'pq-10354c'), + RgbInt8Color.rgbName(0xa3, 0x92, 0x64, 'khaki'), + RgbInt8Color.rgbName(0x9c, 0x8f, 0x69, 'pq-8382c'), + RgbInt8Color.rgbName(0xa6, 0x8a, 0x6d, 'tannin'), + RgbInt8Color.rgbName(0xa0, 0x90, 0x74, 'pq-2325c'), + RgbInt8Color.rgbName(0x9a, 0x92, 0x7f, 'seneca rock'), + RgbInt8Color.rgbName(0x9c, 0x8e, 0x7b, 'chinchilla'), + RgbInt8Color.rgbName(0x9f, 0x8d, 0x7c, 'silver mink'), + RgbInt8Color.rgbName(0x9a, 0x91, 0x86, 'vintage khaki'), + RgbInt8Color.rgbName(0x9e, 0x95, 0x9d, 'pq-10190c'), + RgbInt8Color.rgbName(0x99, 0x91, 0xa4, 'pq-7660c'), + RgbInt8Color.rgbName(0xa3, 0x8b, 0xa8, 'pq-10208c'), + RgbInt8Color.rgbName(0xa1, 0x92, 0xb2, 'pq-666c'), + RgbInt8Color.rgbName(0xaf, 0x98, 0x41, 'golden olive'), + RgbInt8Color.rgbName(0xac, 0x9f, 0x3c, 'pq-618c'), + RgbInt8Color.rgbName(0xac, 0x97, 0x51, 'pq-10126c'), + RgbInt8Color.rgbName(0xa4, 0x97, 0x75, 'sponge'), + RgbInt8Color.rgbName(0xa1, 0x96, 0x7e, 'pq-10340c'), + RgbInt8Color.rgbName(0xa2, 0x90, 0x7a, 'pq-10358c'), + RgbInt8Color.rgbName(0xa4, 0x9a, 0x79, 'gray green'), + RgbInt8Color.rgbName(0xa0, 0x98, 0x7c, 'slate green'), + RgbInt8Color.rgbName(0x9f, 0x95, 0x86, 'aluminum'), + RgbInt8Color.rgbName(0x9d, 0x96, 0x8d, 'pq-402c'), + RgbInt8Color.rgbName(0xa3, 0x93, 0x82, 'pq-7530c'), + RgbInt8Color.rgbName(0xa1, 0x98, 0x8f, 'pq-10370c'), + RgbInt8Color.rgbName(0x9e, 0x97, 0x8e, 'pq-black0961c'), + RgbInt8Color.rgbName(0xa0, 0x99, 0x98, 'ash'), + RgbInt8Color.rgbName(0x9c, 0x9b, 0x98, 'ghost gray'), + RgbInt8Color.rgbName(0x9c, 0x9b, 0xa7, 'dapple gray'), + RgbInt8Color.rgbName(0xa1, 0x98, 0xaf, 'wisteria'), + RgbInt8Color.rgbName(0x9f, 0x99, 0xaa, 'lavender aura'), + RgbInt8Color.rgbName(0xa6, 0x99, 0xc1, 'pq-2093c'), + RgbInt8Color.rgbName(0xb4, 0xa9, 0x1f, 'pq-7766c'), + RgbInt8Color.rgbName(0xab, 0x9d, 0x62, 'pq-10125c'), + RgbInt8Color.rgbName(0xa2, 0xa5, 0x69, 'pq-5777c'), + RgbInt8Color.rgbName(0xa3, 0x9f, 0x86, 'elm'), + RgbInt8Color.rgbName(0xa7, 0x9b, 0x82, 'twill'), + RgbInt8Color.rgbName(0xa2, 0x9e, 0x92, 'london fog'), + RgbInt8Color.rgbName(0x9f, 0x9c, 0x99, 'paloma'), + RgbInt8Color.rgbName(0xa0, 0x9f, 0x9c, 'drizzle'), + RgbInt8Color.rgbName(0xa0, 0x9c, 0x98, 'flint gray'), + RgbInt8Color.rgbName(0xa2, 0xa2, 0xa1, 'silver'), + RgbInt8Color.rgbName(0xa4, 0x9e, 0x9e, 'opal gray'), + RgbInt8Color.rgbName(0xa4, 0x9c, 0xa0, 'gull gray'), + RgbInt8Color.rgbName(0xa1, 0x9f, 0xa5, 'silver sconce'), + RgbInt8Color.rgbName(0x9e, 0xa2, 0xa2, 'pq-422c'), + RgbInt8Color.rgbName(0xa2, 0xa1, 0xba, 'languid lavender'), + RgbInt8Color.rgbName(0xb4, 0xb5, 0xdf, 'pq-270c'), + RgbInt8Color.rgbName(0xb0, 0xa5, 0x49, 'pq-10115c'), + RgbInt8Color.rgbName(0xab, 0xa4, 0x4d, 'lentil sprout'), + RgbInt8Color.rgbName(0xb0, 0xab, 0x4f, 'pq-10108c'), + RgbInt8Color.rgbName(0xac, 0xaa, 0x62, 'pq-10107c'), + RgbInt8Color.rgbName(0xa3, 0xa9, 0x69, 'sweet pea'), + RgbInt8Color.rgbName(0xac, 0xa9, 0x70, 'pq-10113c'), + RgbInt8Color.rgbName(0xa3, 0xab, 0x76, 'pq-10322c'), + RgbInt8Color.rgbName(0xa4, 0xae, 0x77, 'tarragon'), + RgbInt8Color.rgbName(0xa3, 0xaa, 0x83, 'pq-5783c'), + RgbInt8Color.rgbName(0x9c, 0xaf, 0x88, 'pq-7494c'), + RgbInt8Color.rgbName(0xaa, 0xaa, 0x88, 'pq-10112c'), + RgbInt8Color.rgbName(0xa1, 0xad, 0x92, 'reseda'), + RgbInt8Color.rgbName(0xa3, 0xa9, 0xa6, 'belgian block'), + RgbInt8Color.rgbName(0xa8, 0xa9, 0x9e, 'pq-414c'), + RgbInt8Color.rgbName(0xa7, 0xac, 0xa2, 'pq-7537c'), + RgbInt8Color.rgbName(0xa2, 0xaa, 0xad, 'pq-429c'), + RgbInt8Color.rgbName(0xa2, 0xac, 0xab, 'pq-442c'), + RgbInt8Color.rgbName(0xa7, 0xa8, 0xaa, 'pq-coolgray6c'), + RgbInt8Color.rgbName(0xa6, 0xa9, 0xaa, 'pq-silverc'), + RgbInt8Color.rgbName(0xa2, 0xb2, 0xc8, 'pq-536c'), + RgbInt8Color.rgbName(0xb0, 0xb4, 0x54, 'green oasis'), + RgbInt8Color.rgbName(0xae, 0xb8, 0x62, 'pq-2302c'), + RgbInt8Color.rgbName(0xa8, 0xb1, 0x97, 'swamp'), + RgbInt8Color.rgbName(0xa3, 0xb5, 0xa6, 'frosty green'), + RgbInt8Color.rgbName(0xa3, 0xb2, 0xa4, 'pq-5645c'), + RgbInt8Color.rgbName(0xa5, 0xb2, 0xaa, 'aqua gray'), + RgbInt8Color.rgbName(0xa2, 0xb6, 0xb9, 'cloud blue'), + RgbInt8Color.rgbName(0xa3, 0xb4, 0xc4, 'celestial blue'), + RgbInt8Color.rgbName(0xa2, 0xb9, 0xc2, 'sterling blue'), + RgbInt8Color.rgbName(0xab, 0xca, 0xe9, 'pq-277c'), + RgbInt8Color.rgbName(0xa8, 0xbb, 0xa2, 'smoke green'), + RgbInt8Color.rgbName(0xa7, 0xbd, 0xb1, 'pq-5585c'), + RgbInt8Color.rgbName(0xa9, 0xbd, 0xb1, 'silt green'), + RgbInt8Color.rgbName(0xa5, 0xbc, 0xbb, 'blue haze'), + RgbInt8Color.rgbName(0xa4, 0xbc, 0xc2, 'pq-7542c'), + RgbInt8Color.rgbName(0x9e, 0xc1, 0xcc, 'stratosphere'), + RgbInt8Color.rgbName(0xa0, 0xbc, 0xd0, 'dream blue'), + RgbInt8Color.rgbName(0xa6, 0xbb, 0xc8, 'pq-5435c'), + RgbInt8Color.rgbName(0xa3, 0xbd, 0xd3, 'angel falls'), + RgbInt8Color.rgbName(0xaf, 0xcb, 0x80, 'sap green'), + RgbInt8Color.rgbName(0xa3, 0xcc, 0xc9, 'eggshell blue'), + RgbInt8Color.rgbName(0xab, 0xc7, 0xca, 'pq-5513c'), + RgbInt8Color.rgbName(0xa9, 0xca, 0xda, 'corydalis blue'), + RgbInt8Color.rgbName(0xa5, 0xc5, 0xd9, 'cool blue'), + RgbInt8Color.rgbName(0xb1, 0xc9, 0xe8, 'pq-658c'), + RgbInt8Color.rgbName(0xcc, 0xdb, 0x1e, 'evening primrose'), + RgbInt8Color.rgbName(0xaa, 0xce, 0xbc, 'mist green'), + RgbInt8Color.rgbName(0xa5, 0xcf, 0xd5, 'plume'), + RgbInt8Color.rgbName(0xab, 0xd3, 0xdb, 'iced aqua'), + RgbInt8Color.rgbName(0xaf, 0xdd, 0xcc, 'brook green'), + RgbInt8Color.rgbName(0xcf, 0xb5, 0x0, 'pq-606c'), + RgbInt8Color.rgbName(0xc3, 0xd3, 0x63, 'wild lime'), + RgbInt8Color.rgbName(0xcd, 0xea, 0x80, 'pq-373c'), + RgbInt8Color.rgbName(0xb4, 0xd3, 0xb2, 'pastel green'), + RgbInt8Color.rgbName(0xb2, 0xd4, 0xdd, 'blue glow'), + RgbInt8Color.rgbName(0xc2, 0xe1, 0x89, 'pq-365c'), + RgbInt8Color.rgbName(0xc7, 0xe9, 0x95, 'pq-2282c'), + RgbInt8Color.rgbName(0xbe, 0xe9, 0xe7, 'pq-9500c'), + RgbInt8Color.rgbName(0xbe, 0x13, 0x2d, 'chinese red'), + RgbInt8Color.rgbName(0xbd, 0x16, 0x2c, 'racing red'), + RgbInt8Color.rgbName(0xd6, 0x0, 0x1c, 'pq-2035c'), + RgbInt8Color.rgbName(0xbb, 0x12, 0x37, 'ski patrol'), + RgbInt8Color.rgbName(0xb6, 0x1c, 0x50, 'jazzy'), + RgbInt8Color.rgbName(0xda, 0x18, 0x84, 'pq-219c'), + RgbInt8Color.rgbName(0xea, 0x27, 0xc2, 'pq-807c'), + RgbInt8Color.rgbName(0xdf, 0x19, 0x95, 'pq-225c'), + RgbInt8Color.rgbName(0xf0, 0x4e, 0x98, 'pq-212c'), + RgbInt8Color.rgbName(0xe9, 0x3c, 0xac, 'pq-232c'), + RgbInt8Color.rgbName(0xbc, 0x27, 0x31, 'mars red'), + RgbInt8Color.rgbName(0xb9, 0x26, 0x36, 'ribbon red'), + RgbInt8Color.rgbName(0xb5, 0x25, 0x55, 'pq-7425c'), + RgbInt8Color.rgbName(0xbc, 0x32, 0x2c, 'valiant poppy'), + RgbInt8Color.rgbName(0xb7, 0x31, 0x2c, 'pq-7620c'), + RgbInt8Color.rgbName(0xb7, 0x32, 0x75, 'very berry'), + RgbInt8Color.rgbName(0xe4, 0x5d, 0xbf, 'pq-238c'), + RgbInt8Color.rgbName(0xb5, 0x33, 0x2e, 'molten lava'), + RgbInt8Color.rgbName(0xb5, 0x46, 0x80, 'pq-10183c'), + RgbInt8Color.rgbName(0xb8, 0x4a, 0x1f, 'pq-8923c'), + RgbInt8Color.rgbName(0xad, 0x3e, 0x48, 'cardinal'), + RgbInt8Color.rgbName(0xb4, 0x3d, 0x63, 'pq-10170c'), + RgbInt8Color.rgbName(0xbe, 0x53, 0x1c, 'pq-167c'), + RgbInt8Color.rgbName(0xb9, 0x3a, 0x32, 'aurora red'), + RgbInt8Color.rgbName(0xb0, 0x4a, 0x5a, 'pq-7419c'), + RgbInt8Color.rgbName(0xbb, 0x5c, 0x14, 'hawaiian sunset'), + RgbInt8Color.rgbName(0xb8, 0x5e, 0x17, 'pq-8944c'), + RgbInt8Color.rgbName(0xaa, 0x4b, 0x40, 'pq-8445c'), + RgbInt8Color.rgbName(0xab, 0x4f, 0x41, 'hot sauce'), + RgbInt8Color.rgbName(0xb3, 0x46, 0x46, 'baked apple'), + RgbInt8Color.rgbName(0xac, 0x4b, 0x55, 'garnet rose'), + RgbInt8Color.rgbName(0xa8, 0x55, 0x66, 'pq-2343c'), + RgbInt8Color.rgbName(0xb4, 0x4b, 0x70, 'pq-10169c'), + RgbInt8Color.rgbName(0xad, 0x53, 0x89, 'pq-2061c'), + RgbInt8Color.rgbName(0xb6, 0x5f, 0x9a, 'rosebud'), + RgbInt8Color.rgbName(0xbe, 0x6a, 0x14, 'pq-153c'), + RgbInt8Color.rgbName(0xb4, 0x54, 0x22, 'gold flame'), + RgbInt8Color.rgbName(0xb3, 0x52, 0x29, 'pq-8921c'), + RgbInt8Color.rgbName(0xb4, 0x4f, 0x2d, 'pq-8924c'), + RgbInt8Color.rgbName(0xb1, 0x55, 0x33, 'pq-7592c'), + RgbInt8Color.rgbName(0xaf, 0x54, 0x38, 'pq-8925c'), + RgbInt8Color.rgbName(0xb2, 0x4f, 0x41, 'pq-10159c'), + RgbInt8Color.rgbName(0xb5, 0x50, 0x3c, 'pq-8901c'), + RgbInt8Color.rgbName(0xa7, 0x59, 0x49, 'bruschetta'), + RgbInt8Color.rgbName(0xa6, 0x59, 0x4c, 'redwood'), + RgbInt8Color.rgbName(0xae, 0x53, 0x4c, 'pq-8444c'), + RgbInt8Color.rgbName(0xa7, 0x5d, 0x67, 'mauvewood'), + RgbInt8Color.rgbName(0xb1, 0x54, 0x87, 'pq-10182c'), + RgbInt8Color.rgbName(0xb5, 0x65, 0xa7, 'pq-2352c'), + RgbInt8Color.rgbName(0xba, 0x69, 0xa1, 'spring crocus'), + RgbInt8Color.rgbName(0xb7, 0x6b, 0xa3, 'bodacious'), + RgbInt8Color.rgbName(0xad, 0x5b, 0x2f, 'pq-8024c'), + RgbInt8Color.rgbName(0xaf, 0x61, 0x2c, 'pq-8945c'), + RgbInt8Color.rgbName(0xb5, 0x5a, 0x30, 'rust'), + RgbInt8Color.rgbName(0xaf, 0x5c, 0x37, 'pq-7585c'), + RgbInt8Color.rgbName(0xa5, 0x5f, 0x49, 'pq-8044c'), + RgbInt8Color.rgbName(0xad, 0x5d, 0x5d, 'dusty cedar'), + RgbInt8Color.rgbName(0xab, 0x5c, 0x57, 'pq-7523c'), + RgbInt8Color.rgbName(0xb3, 0x5a, 0x66, 'baroque rose'), + RgbInt8Color.rgbName(0xb4, 0x5a, 0x7c, 'pq-10168c'), + RgbInt8Color.rgbName(0xb5, 0x5c, 0x80, 'pq-7432c'), + RgbInt8Color.rgbName(0xb0, 0x62, 0x8f, 'pq-10181c'), + RgbInt8Color.rgbName(0xad, 0x68, 0x9c, 'pq-10187c'), + RgbInt8Color.rgbName(0xb3, 0x69, 0x24, 'pq-723c'), + RgbInt8Color.rgbName(0xaa, 0x64, 0x43, 'pq-8023c'), + RgbInt8Color.rgbName(0xa4, 0x71, 0x49, 'cashew'), + RgbInt8Color.rgbName(0xa6, 0x6e, 0x4a, 'bran'), + RgbInt8Color.rgbName(0xaa, 0x61, 0x5f, 'pq-8443c'), + RgbInt8Color.rgbName(0xad, 0x6d, 0x7f, 'heather rose'), + RgbInt8Color.rgbName(0xb0, 0x6c, 0x96, 'pq-681c'), + RgbInt8Color.rgbName(0xac, 0x72, 0x3b, 'pq-10133c'), + RgbInt8Color.rgbName(0xa7, 0x75, 0x4d, 'almond'), + RgbInt8Color.rgbName(0xa7, 0x6e, 0x5e, 'pq-2441c'), + RgbInt8Color.rgbName(0xa8, 0x73, 0x57, 'pq-8022c'), + RgbInt8Color.rgbName(0xaf, 0x6c, 0x67, 'canyon rose'), + RgbInt8Color.rgbName(0xad, 0x6d, 0x68, 'light mahogany'), + RgbInt8Color.rgbName(0xb0, 0x6f, 0x76, 'pq-2447c'), + RgbInt8Color.rgbName(0xb0, 0x70, 0x97, 'pq-10180c'), + RgbInt8Color.rgbName(0xa5, 0x7d, 0x9c, 'pq-10172c'), + RgbInt8Color.rgbName(0xad, 0x75, 0xa0, 'pq-10186c'), + RgbInt8Color.rgbName(0xb7, 0x77, 0x29, 'pq-7511c'), + RgbInt8Color.rgbName(0xac, 0x76, 0x44, 'pq-2314c'), + RgbInt8Color.rgbName(0xa9, 0x79, 0x4d, 'pq-10139c'), + RgbInt8Color.rgbName(0xad, 0x7c, 0x59, 'pq-4645c'), + RgbInt8Color.rgbName(0xb0, 0x77, 0x6c, 'pq-10156c'), + RgbInt8Color.rgbName(0xa3, 0x7f, 0x74, 'pq-7614c'), + RgbInt8Color.rgbName(0xa2, 0x87, 0x76, 'chanterelle'), + RgbInt8Color.rgbName(0xb0, 0x7c, 0x83, 'pq-5005c'), + RgbInt8Color.rgbName(0xb8, 0x96, 0xd4, 'pq-2072c'), + RgbInt8Color.rgbName(0xb9, 0x85, 0x24, 'pq-10129c'), + RgbInt8Color.rgbName(0xb1, 0x83, 0x2f, 'chai tea'), + RgbInt8Color.rgbName(0xb7, 0x8b, 0x20, 'pq-7556c'), + RgbInt8Color.rgbName(0xb5, 0x81, 0x50, 'pq-729c'), + RgbInt8Color.rgbName(0xac, 0x83, 0x5e, 'pq-10138c'), + RgbInt8Color.rgbName(0xad, 0x85, 0x67, 'indian tan'), + RgbInt8Color.rgbName(0xaa, 0x80, 0x66, 'pq-479c'), + RgbInt8Color.rgbName(0xa7, 0x8a, 0x70, 'pq-10365c'), + RgbInt8Color.rgbName(0xab, 0x85, 0x6f, 'tawny brown'), + RgbInt8Color.rgbName(0xa5, 0x88, 0x76, 'pq-2471c'), + RgbInt8Color.rgbName(0xa5, 0x8d, 0x7f, 'stucco'), + RgbInt8Color.rgbName(0xa2, 0x91, 0x9b, 'nirvana'), + RgbInt8Color.rgbName(0xae, 0x83, 0xa6, 'pq-10185c'), + RgbInt8Color.rgbName(0xa4, 0x90, 0xa6, 'pq-10196c'), + RgbInt8Color.rgbName(0xb0, 0x85, 0xb7, 'african violet'), + RgbInt8Color.rgbName(0xa9, 0x8b, 0xaf, 'regal orchid'), + RgbInt8Color.rgbName(0xa6, 0x92, 0xba, 'viola'), + RgbInt8Color.rgbName(0xbc, 0x8d, 0x1f, 'arrowwood'), + RgbInt8Color.rgbName(0xae, 0x91, 0x42, 'pq-10127c'), + RgbInt8Color.rgbName(0xb6, 0x8a, 0x3a, 'harvest gold'), + RgbInt8Color.rgbName(0xb0, 0x8e, 0x51, 'mustard gold'), + RgbInt8Color.rgbName(0xb0, 0x88, 0x5a, 'apple cinnamon'), + RgbInt8Color.rgbName(0xa8, 0x93, 0x79, 'pq-10353c'), + RgbInt8Color.rgbName(0xa7, 0x8c, 0x7b, 'almondine'), + RgbInt8Color.rgbName(0xae, 0x8a, 0x79, 'pq-4725c'), + RgbInt8Color.rgbName(0xa5, 0x95, 0x8f, 'etherea'), + RgbInt8Color.rgbName(0xae, 0x8c, 0x8e, 'woodrose'), + RgbInt8Color.rgbName(0xa5, 0x92, 0x9d, 'sea fog'), + RgbInt8Color.rgbName(0xb0, 0x8b, 0xa3, 'pq-10178c'), + RgbInt8Color.rgbName(0xad, 0x90, 0xa9, 'pq-10184c'), + RgbInt8Color.rgbName(0xb1, 0x8e, 0xaa, 'lavender herb'), + RgbInt8Color.rgbName(0xb8, 0x9d, 0x18, 'pq-457c'), + RgbInt8Color.rgbName(0xaa, 0x98, 0x55, 'burnished gold'), + RgbInt8Color.rgbName(0xa8, 0x99, 0x68, 'pq-7503c'), + RgbInt8Color.rgbName(0xb1, 0x96, 0x64, 'antelope'), + RgbInt8Color.rgbName(0xa5, 0x95, 0x7d, 'pq-10346c'), + RgbInt8Color.rgbName(0xa6, 0x99, 0x7a, 'olive gray'), + RgbInt8Color.rgbName(0xa9, 0x94, 0x7a, 'cornstalk'), + RgbInt8Color.rgbName(0xaa, 0x98, 0x87, 'pq-10364c'), + RgbInt8Color.rgbName(0xa4, 0x98, 0x87, 'crockery'), + RgbInt8Color.rgbName(0xa5, 0x97, 0x88, 'tuffet'), + RgbInt8Color.rgbName(0xa8, 0x9a, 0x91, 'goat'), + RgbInt8Color.rgbName(0xa8, 0x9a, 0x8e, 'cobblestone'), + RgbInt8Color.rgbName(0xa9, 0x95, 0x92, 'bark'), + RgbInt8Color.rgbName(0xa8, 0x9c, 0x94, 'atmosphere'), + RgbInt8Color.rgbName(0xab, 0x98, 0x95, 'sphinx'), + RgbInt8Color.rgbName(0xa5, 0x9c, 0x94, 'pq-warmgray6c'), + RgbInt8Color.rgbName(0xab, 0x98, 0x9d, 'pq-436c'), + RgbInt8Color.rgbName(0xaf, 0x95, 0xa6, 'pq-5215c'), + RgbInt8Color.rgbName(0xa7, 0xa2, 0xc3, 'pq-7445c'), + RgbInt8Color.rgbName(0xbf, 0x9b, 0xde, 'pq-violet0631c'), + RgbInt8Color.rgbName(0xba, 0xa3, 0x1f, 'pq-10117c'), + RgbInt8Color.rgbName(0xb9, 0xa0, 0x23, 'antique moss'), + RgbInt8Color.rgbName(0xb7, 0xab, 0x26, 'pq-10110c'), + RgbInt8Color.rgbName(0xb5, 0xa5, 0x36, 'pq-10116c'), + RgbInt8Color.rgbName(0xba, 0x9b, 0x37, 'pq-10121c'), + RgbInt8Color.rgbName(0xb5, 0x9f, 0x4a, 'pq-10120c'), + RgbInt8Color.rgbName(0xae, 0xa7, 0x5c, 'pq-10114c'), + RgbInt8Color.rgbName(0xb2, 0xa2, 0x5c, 'pq-10119c'), + RgbInt8Color.rgbName(0xae, 0xa4, 0x6f, 'pq-10118c'), + RgbInt8Color.rgbName(0xaa, 0xa2, 0x75, 'pq-10124c'), + RgbInt8Color.rgbName(0xaf, 0xa9, 0x6e, 'pq-5845c'), + RgbInt8Color.rgbName(0xa6, 0x9f, 0x88, 'pq-7536c'), + RgbInt8Color.rgbName(0xaa, 0x9f, 0x8e, 'pq-10352c'), + RgbInt8Color.rgbName(0xa7, 0xa1, 0x9e, 'porpoise'), + RgbInt8Color.rgbName(0xad, 0xa3, 0x96, 'pure cashmere'), + RgbInt8Color.rgbName(0xaa, 0x9f, 0x96, 'string'), + RgbInt8Color.rgbName(0xb1, 0xa2, 0xca, 'pq-2099c'), + RgbInt8Color.rgbName(0xaf, 0xa4, 0xce, 'lavender'), + RgbInt8Color.rgbName(0xb6, 0xb8, 0xdc, 'pq-7444c'), + RgbInt8Color.rgbName(0xb8, 0xaf, 0x23, 'citronelle'), + RgbInt8Color.rgbName(0xbc, 0xa9, 0x49, 'cress green'), + RgbInt8Color.rgbName(0xaf, 0xaf, 0x5e, 'palm'), + RgbInt8Color.rgbName(0xab, 0xab, 0x74, 'pq-10106c'), + RgbInt8Color.rgbName(0xb0, 0xaa, 0x7e, 'pq-452c'), + RgbInt8Color.rgbName(0xab, 0xa7, 0x98, 'abbey stone'), + RgbInt8Color.rgbName(0xaf, 0xab, 0x97, 'moss gray'), + RgbInt8Color.rgbName(0xa7, 0xae, 0x9e, 'desert sage'), + RgbInt8Color.rgbName(0xae, 0xac, 0xa1, 'pussywillow gray'), + RgbInt8Color.rgbName(0xaf, 0xa9, 0xa0, 'pq-401c'), + RgbInt8Color.rgbName(0xad, 0xa7, 0x9e, 'pq-9084c'), + RgbInt8Color.rgbName(0xaa, 0xad, 0xae, 'pq-10105c'), + RgbInt8Color.rgbName(0xa8, 0xb0, 0xae, 'puritan gray'), + RgbInt8Color.rgbName(0xa9, 0xaf, 0xaa, 'pigeon'), + RgbInt8Color.rgbName(0xb1, 0xaa, 0xb3, 'raindrops'), + RgbInt8Color.rgbName(0xa9, 0xad, 0xc2, 'icelandic blue'), + RgbInt8Color.rgbName(0xaa, 0xaa, 0xc4, 'cosmic sky'), + RgbInt8Color.rgbName(0xa5, 0xb3, 0xcc, 'kentucky blue'), + RgbInt8Color.rgbName(0xa5, 0xb8, 0xd0, 'cashmere blue'), + RgbInt8Color.rgbName(0xbd, 0xc6, 0xdc, 'halogen blue'), + RgbInt8Color.rgbName(0xb3, 0xb1, 0x7b, 'weeping willow'), + RgbInt8Color.rgbName(0xb0, 0xb4, 0x87, 'winter pear'), + RgbInt8Color.rgbName(0xa5, 0xb9, 0x9c, 'pq-2404c'), + RgbInt8Color.rgbName(0xad, 0xbb, 0xa1, 'laurel green'), + RgbInt8Color.rgbName(0xab, 0xaf, 0xae, 'mirage gray'), + RgbInt8Color.rgbName(0xad, 0xb0, 0xb1, 'pq-10104c'), + RgbInt8Color.rgbName(0xaf, 0xb1, 0xb4, 'harbor mist'), + RgbInt8Color.rgbName(0xae, 0xb2, 0xb5, 'high-rise'), + RgbInt8Color.rgbName(0xb2, 0xb4, 0xb2, 'pq-421c'), + RgbInt8Color.rgbName(0xb1, 0xb3, 0xb3, 'pq-coolgray5c'), + RgbInt8Color.rgbName(0xb0, 0xb7, 0xbe, 'pearl blue'), + RgbInt8Color.rgbName(0xa6, 0xb8, 0xc1, 'pq-2176c'), + RgbInt8Color.rgbName(0xa7, 0xbc, 0xd6, 'pq-651c'), + RgbInt8Color.rgbName(0xba, 0xbc, 0x72, 'green banana'), + RgbInt8Color.rgbName(0xb4, 0xbb, 0x85, 'nile'), + RgbInt8Color.rgbName(0xaa, 0xc0, 0xad, 'cameo green'), + RgbInt8Color.rgbName(0xa8, 0xc0, 0xbb, 'harbor gray'), + RgbInt8Color.rgbName(0xad, 0xc3, 0xb4, 'aqua foam'), + RgbInt8Color.rgbName(0xb0, 0xbd, 0xb0, 'pq-5655c'), + RgbInt8Color.rgbName(0xa9, 0xc0, 0xcb, 'winter sky'), + RgbInt8Color.rgbName(0xad, 0xbe, 0xd3, 'skyway'), + RgbInt8Color.rgbName(0xb4, 0xc7, 0x9c, 'foam green'), + RgbInt8Color.rgbName(0xaa, 0xcc, 0xb9, 'bird\'s egg green'), + RgbInt8Color.rgbName(0xad, 0xca, 0xb8, 'pq-559c'), + RgbInt8Color.rgbName(0xb8, 0xcc, 0xea, 'pq-2708c'), + RgbInt8Color.rgbName(0xd5, 0xd7, 0x17, 'sulphur spring'), + RgbInt8Color.rgbName(0xbe, 0xd3, 0x8e, 'lettuce green'), + RgbInt8Color.rgbName(0xb7, 0xce, 0x95, 'pq-578c'), + RgbInt8Color.rgbName(0xb2, 0xcf, 0xbe, 'gossamer green'), + RgbInt8Color.rgbName(0xb0, 0xd3, 0xd1, 'icy morn'), + RgbInt8Color.rgbName(0xb9, 0xdc, 0xd2, 'pq-566c'), + RgbInt8Color.rgbName(0xbb, 0xdd, 0xe6, 'pq-7457c'), + RgbInt8Color.rgbName(0xb9, 0xd9, 0xeb, 'pq-290c'), + RgbInt8Color.rgbName(0xdb, 0xe4, 0x42, 'pq-380c'), + RgbInt8Color.rgbName(0xbd, 0xe9, 0xc9, 'pq-2253c'), + RgbInt8Color.rgbName(0xba, 0xe5, 0xd6, 'bay'), + RgbInt8Color.rgbName(0xba, 0xe1, 0xd3, 'honeydew'), + RgbInt8Color.rgbName(0xb5, 0xe3, 0xd8, 'pq-573c'), + RgbInt8Color.rgbName(0xb8, 0xe2, 0xdc, 'fair aqua'), + RgbInt8Color.rgbName(0xb9, 0xe0, 0xdd, 'pq-9501c'), + RgbInt8Color.rgbName(0xbe, 0xe2, 0xe7, 'pq-9461c'), + RgbInt8Color.rgbName(0xd4, 0xc3, 0x4, 'pq-7758c'), + RgbInt8Color.rgbName(0xd6, 0xe8, 0x65, 'pq-2296c'), + RgbInt8Color.rgbName(0xbc, 0xe3, 0xdf, 'bleached aqua'), + RgbInt8Color.rgbName(0xb8, 0xdd, 0xe1, 'pq-628c'), + RgbInt8Color.rgbName(0xbe, 0xdd, 0xe7, 'pq-9442c'), + RgbInt8Color.rgbName(0xd7, 0xc8, 0x26, 'pq-611c'), + RgbInt8Color.rgbName(0xc5, 0xd9, 0x7a, 'pq-2289c'), + RgbInt8Color.rgbName(0xc8, 0x10, 0x2e, 'pq-186c'), + RgbInt8Color.rgbName(0xbf, 0x19, 0x32, 'true red'), + RgbInt8Color.rgbName(0xd5, 0x0, 0x32, 'pq-199c'), + RgbInt8Color.rgbName(0xce, 0x0, 0x37, 'pq-206c'), + RgbInt8Color.rgbName(0xe1, 0x6, 0x0, 'pq-2347c'), + RgbInt8Color.rgbName(0xbf, 0x19, 0x45, 'barberry'), + RgbInt8Color.rgbName(0xbf, 0xd, 0x3e, 'pq-193c'), + RgbInt8Color.rgbName(0xc6, 0x17, 0x4e, 'virtual pink'), + RgbInt8Color.rgbName(0xc0, 0x13, 0x52, 'love potion'), + RgbInt8Color.rgbName(0xc5, 0x19, 0x59, 'bright rose'), + RgbInt8Color.rgbName(0xce, 0x0, 0x58, 'pq-rubineredc'), + RgbInt8Color.rgbName(0xce, 0xf, 0x69, 'pq-214c'), + RgbInt8Color.rgbName(0xe6, 0x38, 0x88, 'pq-2039c'), + RgbInt8Color.rgbName(0xd0, 0x1c, 0x1f, 'fiery red'), + RgbInt8Color.rgbName(0xc7, 0x1f, 0x2d, 'high risk red'), + RgbInt8Color.rgbName(0xbc, 0x20, 0x4b, 'pq-7636c'), + RgbInt8Color.rgbName(0xc6, 0x21, 0x68, 'pink peacock'), + RgbInt8Color.rgbName(0xc0, 0x42, 0x8a, 'rose violet'), + RgbInt8Color.rgbName(0xb7, 0x2d, 0x54, 'pq-10171c'), + RgbInt8Color.rgbName(0xc6, 0x35, 0x27, 'pq-7626c'), + RgbInt8Color.rgbName(0xc2, 0x36, 0x6f, 'pq-2452c'), + RgbInt8Color.rgbName(0xc6, 0x57, 0x9a, 'pq-674c'), + RgbInt8Color.rgbName(0xd1, 0x35, 0xf, 'pq-3516c'), + RgbInt8Color.rgbName(0xc3, 0x41, 0x21, 'pureed pumpkin'), + RgbInt8Color.rgbName(0xbc, 0x2b, 0x3d, 'scarlet'), + RgbInt8Color.rgbName(0xb6, 0x37, 0x53, 'raspberry wine'), + RgbInt8Color.rgbName(0xbe, 0x3a, 0x34, 'pq-180c'), + RgbInt8Color.rgbName(0xbb, 0x36, 0x3f, 'rococco red'), + RgbInt8Color.rgbName(0xc5, 0x33, 0x46, 'tomato puree'), + RgbInt8Color.rgbName(0xb8, 0x3a, 0x4b, 'pq-703c'), + RgbInt8Color.rgbName(0xc6, 0x36, 0x63, 'pq-7635c'), + RgbInt8Color.rgbName(0xb7, 0x42, 0x71, 'pq-2451c'), + RgbInt8Color.rgbName(0xe5, 0x6d, 0xb1, 'pq-218c'), + RgbInt8Color.rgbName(0xdc, 0x44, 0x5, 'pq-1665c'), + RgbInt8Color.rgbName(0xba, 0x58, 0x26, 'pq-7584c'), + RgbInt8Color.rgbName(0xbd, 0x47, 0x2a, 'pq-7598c'), + RgbInt8Color.rgbName(0xbd, 0x42, 0x75, 'lilac rose'), + RgbInt8Color.rgbName(0xe2, 0x77, 0xcd, 'pq-2375c'), + RgbInt8Color.rgbName(0xc4, 0x62, 0x15, 'autumn maple'), + RgbInt8Color.rgbName(0xc2, 0x5e, 0x1c, 'pq-2429c'), + RgbInt8Color.rgbName(0xc2, 0x45, 0x2d, 'red clay'), + RgbInt8Color.rgbName(0xbb, 0x4f, 0x35, 'burnt ochre'), + RgbInt8Color.rgbName(0xbe, 0x4b, 0x3b, 'summer fig'), + RgbInt8Color.rgbName(0xb6, 0x52, 0x3d, 'pq-2436c'), + RgbInt8Color.rgbName(0xbd, 0x46, 0x49, 'pq-8903c'), + RgbInt8Color.rgbName(0xbb, 0x4a, 0x4d, 'cranberry'), + RgbInt8Color.rgbName(0xbe, 0x45, 0x4f, 'chrysanthemum'), + RgbInt8Color.rgbName(0xb7, 0x50, 0x4f, 'pq-8902c'), + RgbInt8Color.rgbName(0xb3, 0x54, 0x57, 'mineral red'), + RgbInt8Color.rgbName(0xb4, 0x4e, 0x5d, 'holly berry'), + RgbInt8Color.rgbName(0xb5, 0x52, 0x5d, 'pq-8905c'), + RgbInt8Color.rgbName(0xbc, 0x48, 0x69, 'carmine'), + RgbInt8Color.rgbName(0xdd, 0x7f, 0xd3, 'pq-245c'), + RgbInt8Color.rgbName(0xc1, 0x65, 0x12, 'marmalade'), + RgbInt8Color.rgbName(0xc1, 0x6c, 0x18, 'pq-7414c'), + RgbInt8Color.rgbName(0xc0, 0x51, 0x31, 'pq-7580c'), + RgbInt8Color.rgbName(0xb3, 0x57, 0x3f, 'autumn glaze'), + RgbInt8Color.rgbName(0xb0, 0x5b, 0x4d, 'pq-10158c'), + RgbInt8Color.rgbName(0xb4, 0x58, 0x65, 'slate rose'), + RgbInt8Color.rgbName(0xc8, 0x6b, 0xa8, 'pq-2060c'), + RgbInt8Color.rgbName(0xd4, 0x8b, 0xc8, 'pq-514c'), + RgbInt8Color.rgbName(0xb8, 0x61, 0x25, 'pq-471c'), + RgbInt8Color.rgbName(0xb9, 0x5b, 0x3f, 'spice route'), + RgbInt8Color.rgbName(0xb7, 0x5e, 0x41, 'mango'), + RgbInt8Color.rgbName(0xb6, 0x5d, 0x4b, 'ginger spice'), + RgbInt8Color.rgbName(0xb6, 0x5a, 0x65, 'pq-2342c'), + RgbInt8Color.rgbName(0xb5, 0x68, 0x4c, 'autumn leaf'), + RgbInt8Color.rgbName(0xb0, 0x64, 0x55, 'aragon'), + RgbInt8Color.rgbName(0xae, 0x72, 0x50, 'hazel'), + RgbInt8Color.rgbName(0xaf, 0x69, 0x5b, 'pq-10157c'), + RgbInt8Color.rgbName(0xb6, 0x6c, 0x6d, 'pq-2341c'), + RgbInt8Color.rgbName(0xb4, 0x6b, 0x7a, 'pq-695c'), + RgbInt8Color.rgbName(0xb3, 0x6b, 0x88, 'pq-10167c'), + RgbInt8Color.rgbName(0xbd, 0x7a, 0xb3, 'pq-2351c'), + RgbInt8Color.rgbName(0xc1, 0x7f, 0xb5, 'violet'), + RgbInt8Color.rgbName(0xb6, 0x72, 0x33, 'pq-7572c'), + RgbInt8Color.rgbName(0xb3, 0x72, 0x56, 'sunburn'), + RgbInt8Color.rgbName(0xb9, 0x71, 0x4f, 'raw sienna'), + RgbInt8Color.rgbName(0xb4, 0x6a, 0x55, 'pq-7522c'), + RgbInt8Color.rgbName(0xb0, 0x70, 0x69, 'brick dust'), + RgbInt8Color.rgbName(0xbb, 0x6f, 0x82, 'pq-10161c'), + RgbInt8Color.rgbName(0xb2, 0x7b, 0x93, 'pq-10166c'), + RgbInt8Color.rgbName(0xaf, 0x7d, 0x9d, 'pq-10179c'), + RgbInt8Color.rgbName(0xb2, 0x88, 0xb9, 'pq-7439c'), + RgbInt8Color.rgbName(0xc8, 0x94, 0x3, 'pq-10123c'), + RgbInt8Color.rgbName(0xbb, 0x7a, 0x2c, 'inca gold'), + RgbInt8Color.rgbName(0xbe, 0x75, 0x2d, 'golden oak'), + RgbInt8Color.rgbName(0xb0, 0x7c, 0x4c, 'pq-10132c'), + RgbInt8Color.rgbName(0xae, 0x85, 0x6c, 'tawny birch'), + RgbInt8Color.rgbName(0xb4, 0x7b, 0x77, 'old rose'), + RgbInt8Color.rgbName(0xba, 0x79, 0x7d, 'dusty rose'), + RgbInt8Color.rgbName(0xb3, 0x80, 0x9d, 'pq-2053c'), + RgbInt8Color.rgbName(0xb8, 0x7b, 0xa1, 'pq-2059c'), + RgbInt8Color.rgbName(0xc1, 0x93, 0xc0, 'violet tulle'), + RgbInt8Color.rgbName(0xb7, 0x93, 0xc0, 'sheer lilac'), + RgbInt8Color.rgbName(0xb8, 0x96, 0xc3, 'pq-2453c'), + RgbInt8Color.rgbName(0xc6, 0x92, 0x14, 'pq-1245c'), + RgbInt8Color.rgbName(0xc1, 0x87, 0x22, 'pq-3547c'), + RgbInt8Color.rgbName(0xb0, 0x85, 0x5c, 'pq-10131c'), + RgbInt8Color.rgbName(0xb4, 0x83, 0x5b, 'biscuit'), + RgbInt8Color.rgbName(0xb4, 0x87, 0x5e, 'pq-2317c'), + RgbInt8Color.rgbName(0xb0, 0x84, 0x6a, 'camel'), + RgbInt8Color.rgbName(0xae, 0x87, 0x74, 'café au lait'), + RgbInt8Color.rgbName(0xaf, 0x86, 0x7c, 'pq-10155c'), + RgbInt8Color.rgbName(0xaa, 0x90, 0x7d, 'natural'), + RgbInt8Color.rgbName(0xad, 0x8b, 0x75, 'praline'), + RgbInt8Color.rgbName(0xb5, 0x81, 0x7d, 'ash rose'), + RgbInt8Color.rgbName(0xb0, 0x90, 0x80, 'roebuck'), + RgbInt8Color.rgbName(0xb9, 0x7e, 0x90, 'pq-10160c'), + RgbInt8Color.rgbName(0xb9, 0x83, 0x91, 'foxglove'), + RgbInt8Color.rgbName(0xb5, 0x82, 0x99, 'mauve orchid'), + RgbInt8Color.rgbName(0xaf, 0x92, 0x94, 'deauville mauve'), + RgbInt8Color.rgbName(0xb8, 0x89, 0x95, 'lilas'), + RgbInt8Color.rgbName(0xb0, 0x87, 0x9b, 'orchid haze'), + RgbInt8Color.rgbName(0xae, 0x90, 0xa7, 'lavender mist'), + RgbInt8Color.rgbName(0xbb, 0x85, 0xab, 'pq-2058c'), + RgbInt8Color.rgbName(0xc1, 0xa0, 0xda, 'pq-2567c'), + RgbInt8Color.rgbName(0xba, 0x92, 0x38, 'honey'), + RgbInt8Color.rgbName(0xbe, 0x8a, 0x4a, 'spruce yellow'), + RgbInt8Color.rgbName(0xb6, 0x8f, 0x52, 'honey mustard'), + RgbInt8Color.rgbName(0xb1, 0x8f, 0x6a, 'iced coffee'), + RgbInt8Color.rgbName(0xb2, 0x90, 0x70, 'pq-10130c'), + RgbInt8Color.rgbName(0xae, 0x8f, 0x72, 'pq-10137c'), + RgbInt8Color.rgbName(0xb7, 0x8e, 0x6c, 'pq-10142c'), + RgbInt8Color.rgbName(0xb3, 0x8b, 0x71, 'macaroon'), + RgbInt8Color.rgbName(0xaf, 0x94, 0x83, 'warm taupe'), + RgbInt8Color.rgbName(0xae, 0x96, 0x90, 'pq-10154c'), + RgbInt8Color.rgbName(0xae, 0x94, 0x90, 'fawn'), + RgbInt8Color.rgbName(0xb4, 0x92, 0x89, 'pq-2440c'), + RgbInt8Color.rgbName(0xb8, 0x8a, 0xac, 'smoky grape'), + RgbInt8Color.rgbName(0xc1, 0xa7, 0xe2, 'pq-264c'), + RgbInt8Color.rgbName(0xbf, 0x97, 0x24, 'pq-10122c'), + RgbInt8Color.rgbName(0xc8, 0x97, 0x20, 'nugget gold'), + RgbInt8Color.rgbName(0xc1, 0xa0, 0x1e, 'pq-7753c'), + RgbInt8Color.rgbName(0xc4, 0x96, 0x2c, 'tawny olive'), + RgbInt8Color.rgbName(0xb9, 0x97, 0x5b, 'pq-465c'), + RgbInt8Color.rgbName(0xbd, 0x98, 0x65, 'pale gold'), + RgbInt8Color.rgbName(0xb5, 0x9a, 0x6a, 'prairie sand'), + RgbInt8Color.rgbName(0xb0, 0x9a, 0x77, 'starfish'), + RgbInt8Color.rgbName(0xb6, 0x95, 0x74, 'tan'), + RgbInt8Color.rgbName(0xb7, 0x91, 0x6c, 'pq-2467c'), + RgbInt8Color.rgbName(0xae, 0x99, 0x7d, 'travertine'), + RgbInt8Color.rgbName(0xaf, 0x9a, 0x7e, 'incense'), + RgbInt8Color.rgbName(0xae, 0x9b, 0x89, 'pq-10136c'), + RgbInt8Color.rgbName(0xb6, 0x98, 0x85, 'nougat'), + RgbInt8Color.rgbName(0xb7, 0x9a, 0x81, 'pq-2312c'), + RgbInt8Color.rgbName(0xb1, 0x9d, 0x8d, 'light taupe'), + RgbInt8Color.rgbName(0xad, 0x9f, 0x93, 'simply taupe'), + RgbInt8Color.rgbName(0xb0, 0xa0, 0x98, 'pq-2474c'), + RgbInt8Color.rgbName(0xb5, 0x98, 0xa3, 'mauve shadows'), + RgbInt8Color.rgbName(0xad, 0xa4, 0xae, 'pq-2358c'), + RgbInt8Color.rgbName(0xb5, 0x9d, 0xbb, 'pq-2078c'), + RgbInt8Color.rgbName(0xb9, 0x9b, 0xc5, 'crocus petal'), + RgbInt8Color.rgbName(0xc0, 0xae, 0xe7, 'pq-942c'), + RgbInt8Color.rgbName(0xc7, 0xb2, 0xde, 'pq-2071c'), + RgbInt8Color.rgbName(0xb8, 0xac, 0xd6, 'pq-2092c'), + RgbInt8Color.rgbName(0xc5, 0xb4, 0xe3, 'pq-2635c'), + RgbInt8Color.rgbName(0xb5, 0x9e, 0x5f, 'antique gold'), + RgbInt8Color.rgbName(0xb3, 0xa3, 0x69, 'pq-4515c'), + RgbInt8Color.rgbName(0xb4, 0x9f, 0x89, 'nomad'), + RgbInt8Color.rgbName(0xb2, 0xa3, 0x84, 'pq-2324c'), + RgbInt8Color.rgbName(0xb3, 0x9f, 0x8d, 'gilded beige'), + RgbInt8Color.rgbName(0xae, 0xa6, 0x92, 'spray green'), + RgbInt8Color.rgbName(0xae, 0xa3, 0x93, 'plaza taupe'), + RgbInt8Color.rgbName(0xac, 0xa3, 0x9a, 'pq-warmgray5c'), + RgbInt8Color.rgbName(0xae, 0xa8, 0xa5, 'pq-2331c'), + RgbInt8Color.rgbName(0xba, 0x9c, 0xc5, 'pq-522c'), + RgbInt8Color.rgbName(0xb7, 0xb1, 0x7a, 'leek green'), + RgbInt8Color.rgbName(0xbb, 0xaa, 0x7e, 'silver fern'), + RgbInt8Color.rgbName(0xb2, 0xac, 0x88, 'sage green'), + RgbInt8Color.rgbName(0xb5, 0xad, 0x88, 'pale olive green'), + RgbInt8Color.rgbName(0xb1, 0xa9, 0x92, 'eucalyptus'), + RgbInt8Color.rgbName(0xb6, 0xa8, 0x93, 'white pepper'), + RgbInt8Color.rgbName(0xb1, 0xb0, 0x9f, 'agate gray'), + RgbInt8Color.rgbName(0xb2, 0xa8, 0xa2, 'pq-407c'), + RgbInt8Color.rgbName(0xb3, 0xad, 0xa7, 'dove'), + RgbInt8Color.rgbName(0xb5, 0xac, 0xab, 'ashes of roses'), + RgbInt8Color.rgbName(0xb7, 0xa9, 0xac, 'cloud gray'), + RgbInt8Color.rgbName(0xbd, 0xab, 0xbe, 'lavender frost'), + RgbInt8Color.rgbName(0xb3, 0xb0, 0xc4, 'pq-5295c'), + RgbInt8Color.rgbName(0xb1, 0xb5, 0xce, 'pq-2106c'), + RgbInt8Color.rgbName(0xc7, 0xb6, 0x3c, 'warm olive'), + RgbInt8Color.rgbName(0xc0, 0xb5, 0x61, 'pq-617c'), + RgbInt8Color.rgbName(0xbd, 0xb3, 0x69, 'golden green'), + RgbInt8Color.rgbName(0xb3, 0xb9, 0x95, 'pq-5793c'), + RgbInt8Color.rgbName(0xb6, 0xba, 0x99, 'lint'), + RgbInt8Color.rgbName(0xba, 0xb6, 0x96, 'bog'), + RgbInt8Color.rgbName(0xb8, 0xb2, 0x98, 'pq-2323c'), + RgbInt8Color.rgbName(0xb7, 0xb5, 0x9f, 'alfalfa'), + RgbInt8Color.rgbName(0xb2, 0xb6, 0xac, 'mineral gray'), + RgbInt8Color.rgbName(0xb5, 0xba, 0xb6, 'storm gray'), + RgbInt8Color.rgbName(0xb9, 0xb3, 0xc5, 'thistle'), + RgbInt8Color.rgbName(0xbe, 0xca, 0xea, 'pq-2120c'), + RgbInt8Color.rgbName(0xc4, 0xbf, 0x71, 'linden green'), + RgbInt8Color.rgbName(0xba, 0xbd, 0x8b, 'pq-5787c'), + RgbInt8Color.rgbName(0xb5, 0xc3, 0x8e, 'margarita'), + RgbInt8Color.rgbName(0xb5, 0xc1, 0xa5, 'celadon green'), + RgbInt8Color.rgbName(0xb9, 0xbc, 0xb6, 'blue fox'), + RgbInt8Color.rgbName(0xb7, 0xc2, 0xb2, 'sea foam'), + RgbInt8Color.rgbName(0xb1, 0xc0, 0xbc, 'pq-5517c'), + RgbInt8Color.rgbName(0xba, 0xbc, 0xc0, 'micro chip'), + RgbInt8Color.rgbName(0xb9, 0xba, 0xbd, 'quiet gray'), + RgbInt8Color.rgbName(0xba, 0xbf, 0xbc, 'metal'), + RgbInt8Color.rgbName(0xb7, 0xc0, 0xd7, 'xenon blue'), + RgbInt8Color.rgbName(0xb7, 0xc0, 0xd6, 'heather'), + RgbInt8Color.rgbName(0xb8, 0xc9, 0xe1, 'pq-2127c'), + RgbInt8Color.rgbName(0xbf, 0xcc, 0x80, 'pq-7492c'), + RgbInt8Color.rgbName(0xbb, 0xc5, 0x92, 'pq-7493c'), + RgbInt8Color.rgbName(0xb6, 0xcf, 0xae, 'pq-2260c'), + RgbInt8Color.rgbName(0xb4, 0xc8, 0xc2, 'surf spray'), + RgbInt8Color.rgbName(0xb5, 0xcb, 0xbb, 'subtle green'), + RgbInt8Color.rgbName(0xbc, 0xc8, 0xc6, 'sky gray'), + RgbInt8Color.rgbName(0xb5, 0xce, 0xd4, 'starlight blue'), + RgbInt8Color.rgbName(0xb5, 0xc7, 0xd3, 'baby blue'), + RgbInt8Color.rgbName(0xaf, 0xcd, 0xd7, 'pq-2204c'), + RgbInt8Color.rgbName(0xb7, 0xc9, 0xd3, 'pq-5445c'), + RgbInt8Color.rgbName(0xb5, 0xce, 0xdf, 'omphalodes'), + RgbInt8Color.rgbName(0xe1, 0xcd, 0x0, 'pq-605c'), + RgbInt8Color.rgbName(0xc5, 0xcc, 0x7b, 'celery green'), + RgbInt8Color.rgbName(0xbc, 0xd1, 0x9b, 'pq-579c'), + RgbInt8Color.rgbName(0xbf, 0xd1, 0xad, 'gleam'), + RgbInt8Color.rgbName(0xbf, 0xd1, 0xb3, 'seacrest'), + RgbInt8Color.rgbName(0xb7, 0xcd, 0xc2, 'pq-622c'), + RgbInt8Color.rgbName(0xb6, 0xcf, 0xd0, 'pq-5523c'), + RgbInt8Color.rgbName(0xb9, 0xd3, 0xdc, 'pq-552c'), + RgbInt8Color.rgbName(0xe1, 0xe0, 0x0, 'pq-396c'), + RgbInt8Color.rgbName(0xc3, 0xdc, 0x93, 'pq-2275c'), + RgbInt8Color.rgbName(0xbc, 0xd9, 0xc8, 'misty jade'), + RgbInt8Color.rgbName(0xb9, 0xdb, 0xe0, 'pq-9462c'), + RgbInt8Color.rgbName(0xbd, 0xda, 0xdd, 'pq-9463c'), + RgbInt8Color.rgbName(0xbd, 0xd6, 0xe6, 'pq-544c'), + RgbInt8Color.rgbName(0xc3, 0xd7, 0xee, 'pq-2707c'), + RgbInt8Color.rgbName(0xc0, 0xe0, 0xec, 'pq-9441c'), + RgbInt8Color.rgbName(0xc1, 0xe0, 0xea, 'pq-9440c'), + RgbInt8Color.rgbName(0xe0, 0xe7, 0x21, 'pq-388c'), + RgbInt8Color.rgbName(0xe3, 0xe8, 0x29, 'pq-809c'), + RgbInt8Color.rgbName(0xe3, 0xe9, 0x35, 'pq-387c'), + RgbInt8Color.rgbName(0xc3, 0xe9, 0xe4, 'soothing sea'), + RgbInt8Color.rgbName(0xc3, 0xe3, 0xe7, 'pq-9424c'), + RgbInt8Color.rgbName(0xc1, 0xe3, 0xe4, 'pq-9482c'), + RgbInt8Color.rgbName(0xc5, 0xe9, 0xea, 'pq-9481c'), + RgbInt8Color.rgbName(0xd2, 0xd7, 0x55, 'pq-584c'), + RgbInt8Color.rgbName(0xc4, 0xd6, 0xa4, 'pq-580c'), + RgbInt8Color.rgbName(0xc3, 0xd3, 0xa8, 'reed'), + RgbInt8Color.rgbName(0xc8, 0xe9, 0xe9, 'pq-9480c'), + RgbInt8Color.rgbName(0xd3, 0xd9, 0x5f, 'limeade'), + RgbInt8Color.rgbName(0xd4, 0xeb, 0x8e, 'pq-372c'), + RgbInt8Color.rgbName(0xc0, 0xdc, 0xcd, 'dusty aqua'), + RgbInt8Color.rgbName(0xc3, 0xdd, 0xd6, 'opal blue'), + RgbInt8Color.rgbName(0xc8, 0xde, 0xda, 'pq-9045c'), + RgbInt8Color.rgbName(0xc6, 0xdc, 0xda, 'pq-9483c'), + RgbInt8Color.rgbName(0xc6, 0xe3, 0xe1, 'blue glass'), + RgbInt8Color.rgbName(0xc7, 0xe5, 0xdf, 'moonlight jade'), + RgbInt8Color.rgbName(0xc8, 0xe0, 0xe0, 'skylight'), + RgbInt8Color.rgbName(0xe4, 0x0, 0x2b, 'pq-185c'), + RgbInt8Color.rgbName(0xcc, 0x1c, 0x3b, 'lollipop'), + RgbInt8Color.rgbName(0xdb, 0xa, 0x5b, 'pq-2040c'), + RgbInt8Color.rgbName(0xe3, 0x1c, 0x79, 'pq-213c'), + RgbInt8Color.rgbName(0xff, 0x3e, 0xb5, 'pq-806c'), + RgbInt8Color.rgbName(0xfb, 0x48, 0xc4, 'pq-813c'), + RgbInt8Color.rgbName(0xd2, 0x26, 0x30, 'pq-1795c'), + RgbInt8Color.rgbName(0xcd, 0x21, 0x2a, 'flame scarlet'), + RgbInt8Color.rgbName(0xc9, 0x23, 0x51, 'rose red'), + RgbInt8Color.rgbName(0xcc, 0x43, 0x85, 'raspberry rose'), + RgbInt8Color.rgbName(0xcb, 0x2c, 0x30, 'pq-711c'), + RgbInt8Color.rgbName(0xcf, 0x2d, 0x71, 'beetroot purple'), + RgbInt8Color.rgbName(0xce, 0x31, 0x75, 'pink yarrow'), + RgbInt8Color.rgbName(0xca, 0x34, 0x22, 'poinciana'), + RgbInt8Color.rgbName(0xcb, 0x33, 0x73, 'cabaret'), + RgbInt8Color.rgbName(0xd2, 0x3c, 0x77, 'magenta'), + RgbInt8Color.rgbName(0xf4, 0x69, 0xdb, 'pq-907c'), + RgbInt8Color.rgbName(0xeb, 0x33, 0x0, 'pq-2028c'), + RgbInt8Color.rgbName(0xda, 0x29, 0x1c, 'pq-485c'), + RgbInt8Color.rgbName(0xcf, 0x45, 0x20, 'pq-173c'), + RgbInt8Color.rgbName(0xd1, 0x41, 0x24, 'pq-7597c'), + RgbInt8Color.rgbName(0xce, 0x29, 0x39, 'tomato'), + RgbInt8Color.rgbName(0xef, 0x60, 0xa3, 'pq-2038c'), + RgbInt8Color.rgbName(0xda, 0x32, 0x1c, 'orange.com'), + RgbInt8Color.rgbName(0xcb, 0x33, 0x3b, 'pq-1797c'), + RgbInt8Color.rgbName(0xcb, 0x34, 0x41, 'poinsettia'), + RgbInt8Color.rgbName(0xc7, 0x43, 0x75, 'fuchsia rose'), + RgbInt8Color.rgbName(0xc5, 0x41, 0x49, 'pq-10165c'), + RgbInt8Color.rgbName(0xc1, 0x4b, 0x58, 'pq-10164c'), + RgbInt8Color.rgbName(0xbc, 0x4e, 0x57, 'pq-8904c'), + RgbInt8Color.rgbName(0xeb, 0x6f, 0xbd, 'pq-224c'), + RgbInt8Color.rgbName(0xc9, 0x61, 0x15, 'pq-10147c'), + RgbInt8Color.rgbName(0xcb, 0x60, 0x15, 'pq-159c'), + RgbInt8Color.rgbName(0xd4, 0x5d, 0x0, 'pq-717c'), + RgbInt8Color.rgbName(0xc0, 0x4c, 0x36, 'pq-7619c'), + RgbInt8Color.rgbName(0xbe, 0x51, 0x41, 'chili'), + RgbInt8Color.rgbName(0xc5, 0x46, 0x44, 'pq-2033c'), + RgbInt8Color.rgbName(0xbe, 0x54, 0x66, 'pq-10163c'), + RgbInt8Color.rgbName(0xce, 0x5e, 0x9a, 'phlox pink'), + RgbInt8Color.rgbName(0xc9, 0x52, 0x2a, 'pq-10153c'), + RgbInt8Color.rgbName(0xc2, 0x5a, 0x3c, 'orange rust'), + RgbInt8Color.rgbName(0xbd, 0x57, 0x45, 'mecca orange'), + RgbInt8Color.rgbName(0xce, 0x6b, 0xa4, 'super pink'), + RgbInt8Color.rgbName(0xec, 0x86, 0xd0, 'pq-237c'), + RgbInt8Color.rgbName(0xc4, 0x62, 0x2d, 'pq-7583c'), + RgbInt8Color.rgbName(0xc4, 0x5b, 0x39, 'pq-10152c'), + RgbInt8Color.rgbName(0xbf, 0x64, 0x64, 'faded rose'), + RgbInt8Color.rgbName(0xbd, 0x60, 0x74, 'pq-10162c'), + RgbInt8Color.rgbName(0xc1, 0x67, 0x84, 'pq-7634c'), + RgbInt8Color.rgbName(0xd2, 0x8d, 0xd3, 'pq-2066c'), + RgbInt8Color.rgbName(0xcf, 0x7f, 0x0, 'pq-145c'), + RgbInt8Color.rgbName(0xc5, 0x69, 0x26, 'pq-10146c'), + RgbInt8Color.rgbName(0xc8, 0x67, 0x33, 'burnt orange'), + RgbInt8Color.rgbName(0xc0, 0x64, 0x48, 'pq-10151c'), + RgbInt8Color.rgbName(0xba, 0x6b, 0x57, 'copper coin'), + RgbInt8Color.rgbName(0xc2, 0x6a, 0x5a, 'apricot brandy'), + RgbInt8Color.rgbName(0xc8, 0x68, 0x9a, 'pq-3582c'), + RgbInt8Color.rgbName(0xc6, 0x7f, 0xae, 'crocus'), + RgbInt8Color.rgbName(0xca, 0x80, 0xb1, 'opera mauve'), + RgbInt8Color.rgbName(0xcc, 0x8a, 0x0, 'pq-131c'), + RgbInt8Color.rgbName(0xc8, 0x76, 0x29, 'desert sun'), + RgbInt8Color.rgbName(0xc2, 0x72, 0x37, 'pq-10145c'), + RgbInt8Color.rgbName(0xc5, 0x73, 0x3d, 'peach caramel'), + RgbInt8Color.rgbName(0xc8, 0x6b, 0x3c, 'apricot orange'), + RgbInt8Color.rgbName(0xbe, 0x7a, 0x47, 'pq-10144c'), + RgbInt8Color.rgbName(0xbe, 0x6e, 0x58, 'pq-10150c'), + RgbInt8Color.rgbName(0xc6, 0x6e, 0x4e, 'pq-7618c'), + RgbInt8Color.rgbName(0xc1, 0x6f, 0x58, 'pq-2435c'), + RgbInt8Color.rgbName(0xc2, 0x6e, 0x60, 'pq-7607c'), + RgbInt8Color.rgbName(0xd1, 0x90, 0x0, 'pq-7550c'), + RgbInt8Color.rgbName(0xcd, 0x79, 0x25, 'pq-7565c'), + RgbInt8Color.rgbName(0xc6, 0x7d, 0x30, 'pq-7571c'), + RgbInt8Color.rgbName(0xc7, 0x79, 0x43, 'golden ochre'), + RgbInt8Color.rgbName(0xc5, 0x76, 0x44, 'tomato cream'), + RgbInt8Color.rgbName(0xbb, 0x84, 0x59, 'pq-10143c'), + RgbInt8Color.rgbName(0xc0, 0x7d, 0x59, 'pq-7591c'), + RgbInt8Color.rgbName(0xbc, 0x7b, 0x6a, 'pq-10149c'), + RgbInt8Color.rgbName(0xbd, 0x7b, 0x74, 'desert sand'), + RgbInt8Color.rgbName(0xbe, 0x84, 0xa3, 'pq-687c'), + RgbInt8Color.rgbName(0xc9, 0x97, 0x0, 'pq-117c'), + RgbInt8Color.rgbName(0xcb, 0x8e, 0x16, 'golden yellow'), + RgbInt8Color.rgbName(0xc8, 0x82, 0x42, 'pq-722c'), + RgbInt8Color.rgbName(0xc6, 0x89, 0x3f, 'pq-7510c'), + RgbInt8Color.rgbName(0xc4, 0x7e, 0x5a, 'copper'), + RgbInt8Color.rgbName(0xba, 0x86, 0x71, 'cork'), + RgbInt8Color.rgbName(0xb9, 0x87, 0x7b, 'pq-10148c'), + RgbInt8Color.rgbName(0xc0, 0x8a, 0x80, 'cameo brown'), + RgbInt8Color.rgbName(0xbc, 0x8a, 0x7e, 'pq-7613c'), + RgbInt8Color.rgbName(0xc6, 0x85, 0x8f, 'pq-500c'), + RgbInt8Color.rgbName(0xc4, 0x84, 0x90, 'pq-694c'), + RgbInt8Color.rgbName(0xc2, 0x87, 0x99, 'polignac'), + RgbInt8Color.rgbName(0xc3, 0x94, 0x49, 'narcissus'), + RgbInt8Color.rgbName(0xc1, 0x95, 0x52, 'amber gold'), + RgbInt8Color.rgbName(0xbd, 0x8c, 0x66, 'pastry shell'), + RgbInt8Color.rgbName(0xb9, 0x8e, 0x68, 'doe'), + RgbInt8Color.rgbName(0xbd, 0x8b, 0x69, 'sandstorm'), + RgbInt8Color.rgbName(0xca, 0xa2, 0xdd, 'pq-529c'), + RgbInt8Color.rgbName(0xbc, 0xa4, 0xcb, 'lavendula'), + RgbInt8Color.rgbName(0xcb, 0xa3, 0xd8, 'pq-2563c'), + RgbInt8Color.rgbName(0xd2, 0x9f, 0x13, 'pq-7555c'), + RgbInt8Color.rgbName(0xc6, 0x97, 0x3f, 'golden spice'), + RgbInt8Color.rgbName(0xc3, 0x96, 0x4d, 'tinsel'), + RgbInt8Color.rgbName(0xbd, 0x9b, 0x60, 'pq-7562c'), + RgbInt8Color.rgbName(0xb8, 0x9b, 0x72, 'lark'), + RgbInt8Color.rgbName(0xbd, 0x9a, 0x7a, 'pq-2316c'), + RgbInt8Color.rgbName(0xbf, 0x94, 0x74, 'pq-4655c'), + RgbInt8Color.rgbName(0xbe, 0x97, 0x85, 'tuscany'), + RgbInt8Color.rgbName(0xb9, 0x99, 0x84, 'brush'), + RgbInt8Color.rgbName(0xba, 0x9f, 0x99, 'adobe rose'), + RgbInt8Color.rgbName(0xbb, 0xa5, 0xa0, 'shadow gray'), + RgbInt8Color.rgbName(0xbe, 0x9c, 0xc1, 'lupine'), + RgbInt8Color.rgbName(0xcd, 0xa3, 0x23, 'lemon curry'), + RgbInt8Color.rgbName(0xc4, 0xa6, 0x47, 'oil yellow'), + RgbInt8Color.rgbName(0xc5, 0xa2, 0x53, 'sauterne'), + RgbInt8Color.rgbName(0xcb, 0xa0, 0x52, 'pq-7407c'), + RgbInt8Color.rgbName(0xc1, 0xa6, 0x5c, 'olivenite'), + RgbInt8Color.rgbName(0xbc, 0xa6, 0x6a, 'southern moss'), + RgbInt8Color.rgbName(0xbe, 0x9e, 0x6f, 'curry'), + RgbInt8Color.rgbName(0xba, 0xa3, 0x8b, 'sesame'), + RgbInt8Color.rgbName(0xbc, 0xa4, 0x83, 'curds & whey'), + RgbInt8Color.rgbName(0xc0, 0x9c, 0x83, 'pq-7521c'), + RgbInt8Color.rgbName(0xbf, 0xa5, 0x8a, 'ginger root'), + RgbInt8Color.rgbName(0xb7, 0xa7, 0x93, 'humus'), + RgbInt8Color.rgbName(0xb8, 0xa9, 0x9a, 'oxford tan'), + RgbInt8Color.rgbName(0xb7, 0xa9, 0x9a, 'pq-7529c'), + RgbInt8Color.rgbName(0xb8, 0xad, 0x9e, 'feather gray'), + RgbInt8Color.rgbName(0xbf, 0xa3, 0xaf, 'dawn pink'), + RgbInt8Color.rgbName(0xc0, 0xa5, 0xae, 'keepsake lilac'), + RgbInt8Color.rgbName(0xb6, 0xad, 0xa5, 'pq-warmgray4c'), + RgbInt8Color.rgbName(0xc4, 0x9d, 0xb4, 'mauve mist'), + RgbInt8Color.rgbName(0xbf, 0xa5, 0xb8, 'pq-5155c'), + RgbInt8Color.rgbName(0xc6, 0xa1, 0xcf, 'pq-257c'), + RgbInt8Color.rgbName(0xba, 0xb8, 0xd3, 'purple heather'), + RgbInt8Color.rgbName(0xd1, 0xb6, 0xe4, 'pq-9344c'), + RgbInt8Color.rgbName(0xcf, 0xb0, 0x23, 'pq-7752c'), + RgbInt8Color.rgbName(0xc0, 0xad, 0x7c, 'hemp'), + RgbInt8Color.rgbName(0xbf, 0xa7, 0x7f, 'taos taupe'), + RgbInt8Color.rgbName(0xc6, 0xaa, 0x76, 'pq-466c'), + RgbInt8Color.rgbName(0xba, 0xaa, 0x91, 'safari'), + RgbInt8Color.rgbName(0xc1, 0xa6, 0x8d, 'cuban sand'), + RgbInt8Color.rgbName(0xbd, 0xab, 0x9b, 'doeskin'), + RgbInt8Color.rgbName(0xb7, 0xb0, 0x9c, 'pq-7535c'), + RgbInt8Color.rgbName(0xbd, 0xac, 0xa3, 'mushroom'), + RgbInt8Color.rgbName(0xbb, 0xb1, 0xa8, 'chateau gray'), + RgbInt8Color.rgbName(0xba, 0xaf, 0xbc, 'iris'), + RgbInt8Color.rgbName(0xc2, 0xac, 0xb1, 'violet ice'), + RgbInt8Color.rgbName(0xc0, 0xaa, 0xc0, 'fair orchid'), + RgbInt8Color.rgbName(0xbd, 0xb0, 0xd0, 'pastel lilac'), + RgbInt8Color.rgbName(0xca, 0xb6, 0x4b, 'pq-7751c'), + RgbInt8Color.rgbName(0xc5, 0xb7, 0x83, 'pq-4525c'), + RgbInt8Color.rgbName(0xc0, 0xbb, 0x87, 'pq-5855c'), + RgbInt8Color.rgbName(0xbf, 0xaf, 0x92, 'pale khaki'), + RgbInt8Color.rgbName(0xc7, 0xb5, 0x95, 'mojave desert'), + RgbInt8Color.rgbName(0xbf, 0xbb, 0x98, 'pq-453c'), + RgbInt8Color.rgbName(0xbd, 0xb6, 0xab, 'silver lining'), + RgbInt8Color.rgbName(0xbe, 0xb7, 0xb0, 'silver cloud'), + RgbInt8Color.rgbName(0xba, 0xbb, 0xb1, 'pq-413c'), + RgbInt8Color.rgbName(0xc1, 0xb2, 0xb6, 'pq-435c'), + RgbInt8Color.rgbName(0xb9, 0xbb, 0xbb, 'pq-10103c'), + RgbInt8Color.rgbName(0xbb, 0xbc, 0xbc, 'gray violet'), + RgbInt8Color.rgbName(0xbe, 0xbd, 0xbd, 'vapor blue'), + RgbInt8Color.rgbName(0xbc, 0xb4, 0xc4, 'misty lilac'), + RgbInt8Color.rgbName(0xc3, 0xb7, 0xbc, 'pq-2473c'), + RgbInt8Color.rgbName(0xbb, 0xbc, 0xbc, 'pq-coolgray4c'), + RgbInt8Color.rgbName(0xbf, 0xb4, 0xcb, 'orchid petal'), + RgbInt8Color.rgbName(0xbd, 0xb8, 0xc7, 'evening haze'), + RgbInt8Color.rgbName(0xce, 0xc1, 0x53, 'celery'), + RgbInt8Color.rgbName(0xc2, 0xc1, 0x8d, 'beechnut'), + RgbInt8Color.rgbName(0xbf, 0xb9, 0xa3, 'tidal foam'), + RgbInt8Color.rgbName(0xc3, 0xbd, 0xab, 'overcast'), + RgbInt8Color.rgbName(0xc1, 0xbc, 0xac, 'pelican'), + RgbInt8Color.rgbName(0xc2, 0xbe, 0xb6, 'moonstruck'), + RgbInt8Color.rgbName(0xba, 0xc2, 0xba, 'mercury'), + RgbInt8Color.rgbName(0xba, 0xc5, 0xb9, 'pq-5665c'), + RgbInt8Color.rgbName(0xbb, 0xc1, 0xcc, 'gray dawn'), + RgbInt8Color.rgbName(0xbb, 0xc7, 0xd6, 'pq-537c'), + RgbInt8Color.rgbName(0xbd, 0xc5, 0xdb, 'pq-7450c'), + RgbInt8Color.rgbName(0xc6, 0xc8, 0x9b, 'pq-5797c'), + RgbInt8Color.rgbName(0xc0, 0xcb, 0xa1, 'seedling'), + RgbInt8Color.rgbName(0xbc, 0xca, 0xb3, 'bok choy'), + RgbInt8Color.rgbName(0xc3, 0xc6, 0xa8, 'pq-5803c'), + RgbInt8Color.rgbName(0xc2, 0xcb, 0xb4, 'fog green'), + RgbInt8Color.rgbName(0xb8, 0xcc, 0xba, 'celadon'), + RgbInt8Color.rgbName(0xbf, 0xc8, 0xc3, 'smoke'), + RgbInt8Color.rgbName(0xbe, 0xc6, 0xc4, 'pq-441c'), + RgbInt8Color.rgbName(0xbc, 0xc9, 0xc5, 'pq-5527c'), + RgbInt8Color.rgbName(0xc3, 0xc6, 0xc8, 'oyster mushroom'), + RgbInt8Color.rgbName(0xc1, 0xc6, 0xc8, 'pq-428c'), + RgbInt8Color.rgbName(0xbf, 0xc7, 0xd6, 'arctic ice'), + RgbInt8Color.rgbName(0xbf, 0xca, 0xd6, 'plein air'), + RgbInt8Color.rgbName(0xc9, 0xd7, 0x7e, 'daiquiri green'), + RgbInt8Color.rgbName(0xc5, 0xcf, 0x98, 'lily green'), + RgbInt8Color.rgbName(0xbe, 0xd3, 0xbb, 'spray'), + RgbInt8Color.rgbName(0xbf, 0xce, 0xc2, 'pq-5595c'), + RgbInt8Color.rgbName(0xbf, 0xcd, 0xcc, 'misty blue'), + RgbInt8Color.rgbName(0xbc, 0xd3, 0xd5, 'pastel blue'), + RgbInt8Color.rgbName(0xc6, 0xd2, 0xd2, 'ice flow'), + RgbInt8Color.rgbName(0xbf, 0xce, 0xd6, 'pq-5455c'), + RgbInt8Color.rgbName(0xc0, 0xce, 0xda, 'ballad blue'), + RgbInt8Color.rgbName(0xc0, 0xd1, 0xda, 'pq-9423c'), + RgbInt8Color.rgbName(0xb9, 0xd5, 0xde, 'pq-9443c'), + RgbInt8Color.rgbName(0xef, 0xdf, 0x0, 'pq-3955c'), + RgbInt8Color.rgbName(0xee, 0xdc, 0x0, 'pq-3965c'), + RgbInt8Color.rgbName(0xcd, 0xd7, 0x8a, 'lime sherbet'), + RgbInt8Color.rgbName(0xca, 0xde, 0xa5, 'butterfly'), + RgbInt8Color.rgbName(0xc3, 0xdb, 0xd4, 'glacier'), + RgbInt8Color.rgbName(0xc6, 0xda, 0xe7, 'pq-545c'), + RgbInt8Color.rgbName(0xec, 0xe8, 0x1a, 'pq-395c'), + RgbInt8Color.rgbName(0xed, 0xe9, 0x39, 'pq-394c'), + RgbInt8Color.rgbName(0xcf, 0xe0, 0x9d, 'shadow lime'), + RgbInt8Color.rgbName(0xea, 0xda, 0x24, 'pq-604c'), + RgbInt8Color.rgbName(0xd2, 0xe7, 0xca, 'ambrosia'), + RgbInt8Color.rgbName(0xe2, 0xe8, 0x68, 'pq-379c'), + RgbInt8Color.rgbName(0xec, 0xf1, 0x66, 'pq-923c'), + RgbInt8Color.rgbName(0xdb, 0xde, 0x70, 'pq-585c'), + RgbInt8Color.rgbName(0xcf, 0xdc, 0xb1, 'pq-2274c'), + RgbInt8Color.rgbName(0xd0, 0xde, 0xbb, 'pq-7485c'), + RgbInt8Color.rgbName(0xce, 0xe1, 0xd4, 'clearly aqua'), + RgbInt8Color.rgbName(0xc9, 0xe2, 0xe0, 'pq-9044c'), + RgbInt8Color.rgbName(0xd1, 0xe2, 0xec, 'pq-9420c'), + RgbInt8Color.rgbName(0xce, 0xdf, 0xe9, 'pq-9421c'), + RgbInt8Color.rgbName(0xe0, 0x0, 0x4d, 'pq-1925c'), + RgbInt8Color.rgbName(0xd3, 0x34, 0x79, 'fuchsia purple'), + RgbInt8Color.rgbName(0xd6, 0x43, 0x88, 'pq-2450c'), + RgbInt8Color.rgbName(0xd4, 0x2e, 0x5b, 'azalea'), + RgbInt8Color.rgbName(0xd3, 0x2e, 0x5e, 'raspberry'), + RgbInt8Color.rgbName(0xd7, 0x3c, 0x26, 'spicy orange'), + RgbInt8Color.rgbName(0xd2, 0x38, 0x6c, 'raspberry sorbet'), + RgbInt8Color.rgbName(0xfc, 0x76, 0xd9, 'pq-927c'), + RgbInt8Color.rgbName(0xda, 0x3d, 0x58, 'geranium'), + RgbInt8Color.rgbName(0xc8, 0x4c, 0x61, 'claret red'), + RgbInt8Color.rgbName(0xcf, 0x57, 0x8a, 'pq-2046c'), + RgbInt8Color.rgbName(0xf2, 0x77, 0xc6, 'pq-231c'), + RgbInt8Color.rgbName(0xd8, 0x60, 0x18, 'pq-1595c'), + RgbInt8Color.rgbName(0xe3, 0x52, 0x5, 'pq-166c'), + RgbInt8Color.rgbName(0xca, 0x62, 0x8f, 'ibis rose'), + RgbInt8Color.rgbName(0xf5, 0x7f, 0xe0, 'pq-914c'), + RgbInt8Color.rgbName(0xd7, 0x6b, 0x0, 'pq-2019c'), + RgbInt8Color.rgbName(0xce, 0x4d, 0x42, 'paprika'), + RgbInt8Color.rgbName(0xc6, 0x5d, 0x52, 'burnt sienna'), + RgbInt8Color.rgbName(0xcd, 0x54, 0x5b, 'pq-7418c'), + RgbInt8Color.rgbName(0xce, 0x5b, 0x78, 'fruit dove'), + RgbInt8Color.rgbName(0xd3, 0x50, 0x7a, 'pink flambé'), + RgbInt8Color.rgbName(0xd5, 0x78, 0x0, 'pq-1385c'), + RgbInt8Color.rgbName(0xd1, 0x58, 0x37, 'koi'), + RgbInt8Color.rgbName(0xc9, 0x65, 0x51, 'ginger'), + RgbInt8Color.rgbName(0xd0, 0x5a, 0x57, 'pq-2032c'), + RgbInt8Color.rgbName(0xd2, 0x5b, 0x73, 'pq-702c'), + RgbInt8Color.rgbName(0xd1, 0x62, 0x77, 'rapture rose'), + RgbInt8Color.rgbName(0xe8, 0x68, 0x0, 'exuberance'), + RgbInt8Color.rgbName(0xd5, 0x62, 0x31, 'harvest pumpkin'), + RgbInt8Color.rgbName(0xcf, 0x69, 0x77, 'desert rose'), + RgbInt8Color.rgbName(0xdb, 0x8a, 0x6, 'pq-7564c'), + RgbInt8Color.rgbName(0xca, 0x6c, 0x56, 'langoustino'), + RgbInt8Color.rgbName(0xd1, 0x6f, 0x52, 'arabesque'), + RgbInt8Color.rgbName(0xcf, 0x6f, 0x77, 'pq-2340c'), + RgbInt8Color.rgbName(0xd2, 0x73, 0x8f, 'chateau rose'), + RgbInt8Color.rgbName(0xd6, 0x87, 0xba, 'cyclamen'), + RgbInt8Color.rgbName(0xd9, 0x86, 0xba, 'pq-673c'), + RgbInt8Color.rgbName(0xc3, 0x7c, 0x54, 'caramel'), + RgbInt8Color.rgbName(0xce, 0x7b, 0x5b, 'brandied melon'), + RgbInt8Color.rgbName(0xce, 0x78, 0x5d, 'carnelian'), + RgbInt8Color.rgbName(0xc0, 0x87, 0x68, 'toasted nut'), + RgbInt8Color.rgbName(0xc6, 0x84, 0x63, 'pheasant'), + RgbInt8Color.rgbName(0xc4, 0x85, 0x71, 'pq-2439c'), + RgbInt8Color.rgbName(0xc2, 0x87, 0x7b, 'rose dawn'), + RgbInt8Color.rgbName(0xca, 0x84, 0x8a, 'brandied apricot'), + RgbInt8Color.rgbName(0xc9, 0x80, 0x9e, 'pq-7431c'), + RgbInt8Color.rgbName(0xd3, 0x83, 0x2b, 'pq-7570c'), + RgbInt8Color.rgbName(0xd3, 0x82, 0x35, 'pq-7412c'), + RgbInt8Color.rgbName(0xd7, 0x88, 0x25, 'pq-7569c'), + RgbInt8Color.rgbName(0xd0, 0x89, 0x3f, 'yam'), + RgbInt8Color.rgbName(0xd0, 0x83, 0x44, 'topaz'), + RgbInt8Color.rgbName(0xcf, 0x88, 0x48, 'nugget'), + RgbInt8Color.rgbName(0xcd, 0x7e, 0x4d, 'apricot buff'), + RgbInt8Color.rgbName(0xc4, 0x8a, 0x69, 'sandstone'), + RgbInt8Color.rgbName(0xc5, 0x8b, 0x68, 'pq-7515c'), + RgbInt8Color.rgbName(0xc0, 0x91, 0x6c, 'fenugreek'), + RgbInt8Color.rgbName(0xce, 0x84, 0x77, 'canyon clay'), + RgbInt8Color.rgbName(0xd1, 0x84, 0x89, 'mauveglow'), + RgbInt8Color.rgbName(0xd0, 0x85, 0x8a, 'pq-2446c'), + RgbInt8Color.rgbName(0xce, 0x84, 0x98, 'wild rose'), + RgbInt8Color.rgbName(0xce, 0x87, 0x9f, 'cashmere rose'), + RgbInt8Color.rgbName(0xd5, 0x9e, 0xd7, 'pq-7438c'), + RgbInt8Color.rgbName(0xda, 0xaa, 0x0, 'pq-110c'), + RgbInt8Color.rgbName(0xc6, 0x8f, 0x65, 'butterum'), + RgbInt8Color.rgbName(0xc3, 0x93, 0x67, 'pq-2313c'), + RgbInt8Color.rgbName(0xce, 0x8e, 0x8b, 'rosette'), + RgbInt8Color.rgbName(0xc9, 0x96, 0xb6, 'pq-680c'), + RgbInt8Color.rgbName(0xd7, 0xa9, 0xe3, 'pq-2562c'), + RgbInt8Color.rgbName(0xd7, 0x94, 0x2d, 'golden orange'), + RgbInt8Color.rgbName(0xd6, 0x9a, 0x2d, 'pq-7563c'), + RgbInt8Color.rgbName(0xd3, 0x92, 0x37, 'sunflower'), + RgbInt8Color.rgbName(0xca, 0x94, 0x56, 'honey yellow'), + RgbInt8Color.rgbName(0xc3, 0x9b, 0x6a, 'taffy'), + RgbInt8Color.rgbName(0xca, 0x99, 0x78, 'toast'), + RgbInt8Color.rgbName(0xc7, 0x96, 0x85, 'café crème'), + RgbInt8Color.rgbName(0xbf, 0xa3, 0x87, 'candied ginger'), + RgbInt8Color.rgbName(0xc3, 0x9d, 0x88, 'sirocco'), + RgbInt8Color.rgbName(0xca, 0x9a, 0x8e, 'pq-7612c'), + RgbInt8Color.rgbName(0xc2, 0xa5, 0x94, 'rugby tan'), + RgbInt8Color.rgbName(0xc5, 0xa1, 0x93, 'mahogany rose'), + RgbInt8Color.rgbName(0xc0, 0xa3, 0x92, 'pq-4735c'), + RgbInt8Color.rgbName(0xc8, 0x9f, 0xa5, 'zephyr'), + RgbInt8Color.rgbName(0xd2, 0x94, 0xaa, 'orchid smoke'), + RgbInt8Color.rgbName(0xc4, 0xa4, 0xa7, 'pq-7633c'), + RgbInt8Color.rgbName(0xc8, 0x9f, 0xb6, 'pq-2052c'), + RgbInt8Color.rgbName(0xd1, 0x98, 0xc5, 'orchid'), + RgbInt8Color.rgbName(0xdd, 0x9c, 0xdf, 'pq-251c'), + RgbInt8Color.rgbName(0xd6, 0x9c, 0x2f, 'mango mojito'), + RgbInt8Color.rgbName(0xd3, 0x9c, 0x43, 'mineral yellow'), + RgbInt8Color.rgbName(0xd1, 0xa0, 0x54, 'honey gold'), + RgbInt8Color.rgbName(0xcf, 0x9f, 0x52, 'bright gold'), + RgbInt8Color.rgbName(0xcd, 0xa0, 0x77, 'pq-728c'), + RgbInt8Color.rgbName(0xc5, 0xa5, 0x82, 'lattè'), + RgbInt8Color.rgbName(0xc9, 0xa3, 0x8d, 'maple sugar'), + RgbInt8Color.rgbName(0xc0, 0xac, 0x92, 'irish cream'), + RgbInt8Color.rgbName(0xca, 0xa3, 0x9a, 'misty rose'), + RgbInt8Color.rgbName(0xc6, 0xa4, 0xa4, 'pale mauve'), + RgbInt8Color.rgbName(0xcc, 0xa1, 0xa6, 'pq-5015c'), + RgbInt8Color.rgbName(0xc5, 0xae, 0xcf, 'orchid bloom'), + RgbInt8Color.rgbName(0xd7, 0xb9, 0xe4, 'pq-530c'), + RgbInt8Color.rgbName(0xd4, 0xae, 0x40, 'ceylon yellow'), + RgbInt8Color.rgbName(0xd2, 0xb0, 0x4c, 'bamboo'), + RgbInt8Color.rgbName(0xd8, 0xae, 0x47, 'spicy mustard'), + RgbInt8Color.rgbName(0xc9, 0xa8, 0x6a, 'fall leaf'), + RgbInt8Color.rgbName(0xc4, 0xab, 0x86, 'croissant'), + RgbInt8Color.rgbName(0xc5, 0xae, 0x91, 'warm sand'), + RgbInt8Color.rgbName(0xc6, 0xa9, 0x92, 'pq-480c'), + RgbInt8Color.rgbName(0xc5, 0xb1, 0xa0, 'moonlight'), + RgbInt8Color.rgbName(0xc5, 0xae, 0xb1, 'burnished lilac'), + RgbInt8Color.rgbName(0xc1, 0xb7, 0xb0, 'silver gray'), + RgbInt8Color.rgbName(0xbf, 0xb8, 0xaf, 'pq-warmgray3c'), + RgbInt8Color.rgbName(0xce, 0xad, 0xbe, 'fragrant lilac'), + RgbInt8Color.rgbName(0xc6, 0xb0, 0xbc, 'pq-5225c'), + RgbInt8Color.rgbName(0xc9, 0xb1, 0xd0, 'pq-523c'), + RgbInt8Color.rgbName(0xcc, 0xae, 0xd0, 'pq-7437c'), + RgbInt8Color.rgbName(0xd6, 0xbf, 0xdd, 'pq-256c'), + RgbInt8Color.rgbName(0xd7, 0xc6, 0xe6, 'pq-263c'), + RgbInt8Color.rgbName(0xc8, 0xb2, 0x73, 'rich gold'), + RgbInt8Color.rgbName(0xd1, 0xb2, 0x72, 'rattan'), + RgbInt8Color.rgbName(0xc9, 0xb2, 0x7c, 'cocoon'), + RgbInt8Color.rgbName(0xcc, 0xb3, 0x90, 'almond buff'), + RgbInt8Color.rgbName(0xca, 0xb6, 0x98, 'pebble'), + RgbInt8Color.rgbName(0xc4, 0xb6, 0xa6, 'cement'), + RgbInt8Color.rgbName(0xc5, 0xbb, 0xae, 'peyote'), + RgbInt8Color.rgbName(0xc5, 0xb9, 0xac, 'pq-7528c'), + RgbInt8Color.rgbName(0xc4, 0xbc, 0xb7, 'pq-406c'), + RgbInt8Color.rgbName(0xc3, 0xba, 0xbf, 'lilac marble'), + RgbInt8Color.rgbName(0xc5, 0xc0, 0xd0, 'lavender blue'), + RgbInt8Color.rgbName(0xc6, 0xbc, 0xd0, 'pq-665c'), + RgbInt8Color.rgbName(0xcc, 0xb9, 0x7e, 'dried moss'), + RgbInt8Color.rgbName(0xcf, 0xbb, 0x7b, 'pampas'), + RgbInt8Color.rgbName(0xc7, 0xbb, 0xa4, 'brown rice'), + RgbInt8Color.rgbName(0xcb, 0xbf, 0xa2, 'gravel'), + RgbInt8Color.rgbName(0xc8, 0xc1, 0xab, 'castle wall'), + RgbInt8Color.rgbName(0xc4, 0xbf, 0xb6, 'pq-400c'), + RgbInt8Color.rgbName(0xca, 0xbe, 0xb5, 'gray morn'), + RgbInt8Color.rgbName(0xc3, 0xc5, 0xc4, 'pq-10102c'), + RgbInt8Color.rgbName(0xc6, 0xc5, 0xc6, 'antarctica'), + RgbInt8Color.rgbName(0xc5, 0xc6, 0xc7, 'glacier gray'), + RgbInt8Color.rgbName(0xc5, 0xc5, 0xc5, 'lunar rock'), + RgbInt8Color.rgbName(0xc6, 0xc4, 0xd2, 'pq-5305c'), + RgbInt8Color.rgbName(0xcb, 0xd3, 0xeb, 'pq-2706c'), + RgbInt8Color.rgbName(0xd9, 0xce, 0x52, 'green sheen'), + RgbInt8Color.rgbName(0xd9, 0xc7, 0x56, 'pq-458c'), + RgbInt8Color.rgbName(0xda, 0xcd, 0x65, 'acacia'), + RgbInt8Color.rgbName(0xd1, 0xc8, 0x7c, 'muted lime'), + RgbInt8Color.rgbName(0xd0, 0xc8, 0x83, 'pq-616c'), + RgbInt8Color.rgbName(0xd2, 0xcc, 0x81, 'endive'), + RgbInt8Color.rgbName(0xcf, 0xc4, 0x86, 'shadow green'), + RgbInt8Color.rgbName(0xcb, 0xce, 0x91, 'pale green'), + RgbInt8Color.rgbName(0xcb, 0xc7, 0x93, 'pq-5865c'), + RgbInt8Color.rgbName(0xca, 0xc4, 0xa4, 'green haze'), + RgbInt8Color.rgbName(0xca, 0xc7, 0xa7, 'pq-454c'), + RgbInt8Color.rgbName(0xc5, 0xcf, 0xb6, 'tender greens'), + RgbInt8Color.rgbName(0xcb, 0xc3, 0xb4, 'oatmeal'), + RgbInt8Color.rgbName(0xc1, 0xcc, 0xc2, 'pale aqua'), + RgbInt8Color.rgbName(0xc5, 0xcc, 0xc0, 'green tint'), + RgbInt8Color.rgbName(0xc1, 0xce, 0xc1, 'green lily'), + RgbInt8Color.rgbName(0xcc, 0xc8, 0xbf, 'pq-9083c'), + RgbInt8Color.rgbName(0xc7, 0xc9, 0xc7, 'pq-420c'), + RgbInt8Color.rgbName(0xc8, 0xc9, 0xc7, 'pq-coolgray3c'), + RgbInt8Color.rgbName(0xc5, 0xcf, 0xda, 'pq-538c'), + RgbInt8Color.rgbName(0xd0, 0xd1, 0xab, 'pq-5807c'), + RgbInt8Color.rgbName(0xcb, 0xd5, 0xb1, 'seafoam green'), + RgbInt8Color.rgbName(0xcd, 0xd2, 0xba, 'pq-9583c'), + RgbInt8Color.rgbName(0xc4, 0xd1, 0xc2, 'dewkist'), + RgbInt8Color.rgbName(0xca, 0xd3, 0xc1, 'almost aqua'), + RgbInt8Color.rgbName(0xcb, 0xce, 0xbe, 'celadon tint'), + RgbInt8Color.rgbName(0xc7, 0xd7, 0xc9, 'pq-9543c'), + RgbInt8Color.rgbName(0xc4, 0xd6, 0xd3, 'pale blue'), + RgbInt8Color.rgbName(0xc9, 0xd3, 0xdc, 'illusion blue'), + RgbInt8Color.rgbName(0xc6, 0xd6, 0xe3, 'pq-643c'), + RgbInt8Color.rgbName(0xcd, 0xd2, 0xe6, 'pq-9382c'), + RgbInt8Color.rgbName(0xc8, 0xd8, 0xeb, 'pq-657c'), + RgbInt8Color.rgbName(0xd4, 0xdb, 0xb2, 'white jade'), + RgbInt8Color.rgbName(0xcb, 0xd7, 0xd2, 'sprout green'), + RgbInt8Color.rgbName(0xcf, 0xdb, 0xd1, 'milky green'), + RgbInt8Color.rgbName(0xc6, 0xda, 0xd7, 'pq-9504c'), + RgbInt8Color.rgbName(0xc9, 0xdc, 0xdc, 'whispering blue'), + RgbInt8Color.rgbName(0xcb, 0xdc, 0xdf, 'wan blue'), + RgbInt8Color.rgbName(0xca, 0xd9, 0xe3, 'pq-9422c'), + RgbInt8Color.rgbName(0xf3, 0xe5, 0x0, 'pq-3945c'), + RgbInt8Color.rgbName(0xd9, 0xea, 0x9a, 'pq-2281c'), + RgbInt8Color.rgbName(0xd7, 0xe8, 0xbc, 'lime cream'), + RgbInt8Color.rgbName(0xf7, 0xea, 0x48, 'pq-101c'), + RgbInt8Color.rgbName(0xd7, 0xe8, 0xd2, 'pq-9561c'), + RgbInt8Color.rgbName(0xd8, 0xeb, 0xe6, 'hint of mint'), + RgbInt8Color.rgbName(0xd7, 0xef, 0xe7, 'pq-9520c'), + RgbInt8Color.rgbName(0xd5, 0xeb, 0xee, 'pq-9460c'), + RgbInt8Color.rgbName(0xed, 0xe0, 0x4b, 'pq-603c'), + RgbInt8Color.rgbName(0xe9, 0xec, 0x6b, 'pq-386c'), + RgbInt8Color.rgbName(0xdf, 0xef, 0x87, 'sunny lime'), + RgbInt8Color.rgbName(0xd3, 0xde, 0xc4, 'meadow mist'), + RgbInt8Color.rgbName(0xdc, 0xeb, 0xec, 'pq-9040c'), + RgbInt8Color.rgbName(0xe4, 0x0, 0x46, 'pq-192c'), + RgbInt8Color.rgbName(0xe2, 0x45, 0x85, 'pq-7424c'), + RgbInt8Color.rgbName(0xff, 0x5f, 0xa2, 'pq-812c'), + RgbInt8Color.rgbName(0xe6, 0x34, 0x22, 'pq-3556c'), + RgbInt8Color.rgbName(0xdd, 0x41, 0x24, 'tangerine tango'), + RgbInt8Color.rgbName(0xdc, 0x34, 0x3b, 'poppy red'), + RgbInt8Color.rgbName(0xd9, 0x37, 0x44, 'bittersweet'), + RgbInt8Color.rgbName(0xe0, 0x45, 0x7b, 'pq-205c'), + RgbInt8Color.rgbName(0xdd, 0x38, 0x48, 'hibiscus'), + RgbInt8Color.rgbName(0xdc, 0x38, 0x55, 'teaberry'), + RgbInt8Color.rgbName(0xdf, 0x3f, 0x32, 'grenadine'), + RgbInt8Color.rgbName(0xdd, 0x41, 0x32, 'fiesta'), + RgbInt8Color.rgbName(0xe0, 0x3c, 0x31, 'pq-179c'), + RgbInt8Color.rgbName(0xe0, 0x3e, 0x52, 'pq-710c'), + RgbInt8Color.rgbName(0xfc, 0x4c, 0x2, 'pq-1655c'), + RgbInt8Color.rgbName(0xe0, 0x49, 0x51, 'cayenne'), + RgbInt8Color.rgbName(0xe2, 0x46, 0x66, 'rouge red'), + RgbInt8Color.rgbName(0xdf, 0x46, 0x61, 'pq-198c'), + RgbInt8Color.rgbName(0xd9, 0x4f, 0x70, 'honeysuckle'), + RgbInt8Color.rgbName(0xde, 0x5b, 0x8c, 'shocking pink'), + RgbInt8Color.rgbName(0xe3, 0x5b, 0x8f, 'carmine rose'), + RgbInt8Color.rgbName(0xff, 0x7c, 0xd6, 'pq-906c'), + RgbInt8Color.rgbName(0xfe, 0x50, 0x0, 'pq-orange021c'), + RgbInt8Color.rgbName(0xdc, 0x58, 0x2a, 'pq-7579c'), + RgbInt8Color.rgbName(0xe2, 0x55, 0x2c, 'orangeade'), + RgbInt8Color.rgbName(0xe0, 0x4e, 0x39, 'pq-7417c'), + RgbInt8Color.rgbName(0xe1, 0x52, 0x3d, 'pq-7625c'), + RgbInt8Color.rgbName(0xe0, 0x4f, 0x80, 'fandango pink'), + RgbInt8Color.rgbName(0xe5, 0x72, 0x0, 'pq-152c'), + RgbInt8Color.rgbName(0xdf, 0x75, 0x0, 'orange pepper'), + RgbInt8Color.rgbName(0xf0, 0x64, 0x0, 'pq-3564c'), + RgbInt8Color.rgbName(0xd7, 0x5c, 0x5d, 'spiced coral'), + RgbInt8Color.rgbName(0xd9, 0x61, 0x5b, 'deep sea coral'), + RgbInt8Color.rgbName(0xdc, 0x5b, 0x62, 'rose of sharon'), + RgbInt8Color.rgbName(0xdd, 0x74, 0xa1, 'pq-2045c'), + RgbInt8Color.rgbName(0xde, 0x7c, 0x0, 'pq-138c'), + RgbInt8Color.rgbName(0xe0, 0x81, 0x19, 'dark cheddar'), + RgbInt8Color.rgbName(0xdc, 0x6b, 0x2f, 'pq-7578c'), + RgbInt8Color.rgbName(0xd8, 0x6d, 0x39, 'jaffa orange'), + RgbInt8Color.rgbName(0xcc, 0x73, 0x57, 'dusted clay'), + RgbInt8Color.rgbName(0xda, 0x62, 0x53, 'pq-2448c'), + RgbInt8Color.rgbName(0xd6, 0x69, 0x65, 'pq-2031c'), + RgbInt8Color.rgbName(0xe0, 0x62, 0x87, 'pq-7423c'), + RgbInt8Color.rgbName(0xe4, 0x71, 0x27, 'russet orange'), + RgbInt8Color.rgbName(0xdc, 0x71, 0x78, 'tea rose'), + RgbInt8Color.rgbName(0xd9, 0x79, 0xa2, 'wild orchid'), + RgbInt8Color.rgbName(0xdf, 0x88, 0xb7, 'fuchsia pink'), + RgbInt8Color.rgbName(0xdc, 0x79, 0x3a, 'orange ochre'), + RgbInt8Color.rgbName(0xdc, 0x79, 0x3e, 'amberglow'), + RgbInt8Color.rgbName(0xd2, 0x7d, 0x56, 'coral gold'), + RgbInt8Color.rgbName(0xdb, 0x7a, 0x51, 'pq-2433c'), + RgbInt8Color.rgbName(0xd2, 0x7f, 0x63, 'sun baked'), + RgbInt8Color.rgbName(0xd7, 0x7e, 0x70, 'crabapple'), + RgbInt8Color.rgbName(0xd3, 0x7f, 0x6f, 'tawny orange'), + RgbInt8Color.rgbName(0xd3, 0x83, 0x77, 'terra cotta'), + RgbInt8Color.rgbName(0xda, 0x7e, 0x7a, 'lantana'), + RgbInt8Color.rgbName(0xdd, 0x79, 0x75, 'pq-2030c'), + RgbInt8Color.rgbName(0xcf, 0x92, 0xb7, 'pq-2057c'), + RgbInt8Color.rgbName(0xdd, 0x87, 0x2c, 'pq-2428c'), + RgbInt8Color.rgbName(0xdc, 0x86, 0x33, 'pq-7413c'), + RgbInt8Color.rgbName(0xe0, 0x7e, 0x3c, 'pq-7577c'), + RgbInt8Color.rgbName(0xd2, 0x8f, 0xb0, 'moonlite mauve'), + RgbInt8Color.rgbName(0xe5, 0x9b, 0xdc, 'pq-244c'), + RgbInt8Color.rgbName(0xdf, 0xa0, 0xc9, 'pq-672c'), + RgbInt8Color.rgbName(0xd9, 0x92, 0x2e, 'autumn blaze'), + RgbInt8Color.rgbName(0xd1, 0x8e, 0x54, 'buckskin'), + RgbInt8Color.rgbName(0xdd, 0x8c, 0x59, 'pq-2432c'), + RgbInt8Color.rgbName(0xd2, 0x93, 0x80, 'muted clay'), + RgbInt8Color.rgbName(0xd6, 0x93, 0x8a, 'pq-7606c'), + RgbInt8Color.rgbName(0xd1, 0x96, 0x9a, 'blush'), + RgbInt8Color.rgbName(0xd5, 0x92, 0xaa, 'pq-507c'), + RgbInt8Color.rgbName(0xe0, 0xa2, 0xd4, 'pq-2064c'), + RgbInt8Color.rgbName(0xde, 0xa8, 0xdd, 'pq-2065c'), + RgbInt8Color.rgbName(0xd9, 0x99, 0x38, 'golden glow'), + RgbInt8Color.rgbName(0xe1, 0x96, 0x40, 'butterscotch'), + RgbInt8Color.rgbName(0xcf, 0x9c, 0x63, 'oak buff'), + RgbInt8Color.rgbName(0xd2, 0x9b, 0x83, 'dusty coral'), + RgbInt8Color.rgbName(0xd1, 0x9c, 0x97, 'rose tan'), + RgbInt8Color.rgbName(0xd0, 0xa1, 0xba, 'pq-686c'), + RgbInt8Color.rgbName(0xe2, 0xac, 0xd7, 'pq-515c'), + RgbInt8Color.rgbName(0xdd, 0xb6, 0x14, 'sulphur'), + RgbInt8Color.rgbName(0xe0, 0xa5, 0x26, 'pq-2007c'), + RgbInt8Color.rgbName(0xe2, 0xa8, 0x29, 'golden rod'), + RgbInt8Color.rgbName(0xd6, 0xa4, 0x61, 'pq-7509c'), + RgbInt8Color.rgbName(0xd2, 0xa1, 0x72, 'clay'), + RgbInt8Color.rgbName(0xcc, 0xa5, 0x80, 'porcini'), + RgbInt8Color.rgbName(0xcc, 0xa6, 0x7f, 'sand'), + RgbInt8Color.rgbName(0xd7, 0xa1, 0x79, 'pq-2430c'), + RgbInt8Color.rgbName(0xcd, 0xa7, 0x86, 'pq-2311c'), + RgbInt8Color.rgbName(0xcd, 0xa7, 0x88, 'pq-4665c'), + RgbInt8Color.rgbName(0xd3, 0xa2, 0x97, 'peach beige'), + RgbInt8Color.rgbName(0xd6, 0x9f, 0xa2, 'bridal rose'), + RgbInt8Color.rgbName(0xd7, 0xa3, 0xab, 'pq-693c'), + RgbInt8Color.rgbName(0xd8, 0xa1, 0xc4, 'pastel lavender'), + RgbInt8Color.rgbName(0xd1, 0xac, 0xce, 'orchid bouquet'), + RgbInt8Color.rgbName(0xe6, 0xbe, 0xdd, 'pq-516c'), + RgbInt8Color.rgbName(0xdd, 0xa7, 0x58, 'golden apricot'), + RgbInt8Color.rgbName(0xd6, 0xaf, 0x66, 'ochre'), + RgbInt8Color.rgbName(0xcf, 0xb0, 0x95, 'hazelnut'), + RgbInt8Color.rgbName(0xcd, 0xb2, 0xa5, 'rose dust'), + RgbInt8Color.rgbName(0xcd, 0xb5, 0xa7, 'pq-4745c'), + RgbInt8Color.rgbName(0xd8, 0xaa, 0xb7, 'pink nectar'), + RgbInt8Color.rgbName(0xdf, 0xc8, 0xe7, 'pq-531c'), + RgbInt8Color.rgbName(0xe2, 0xb0, 0x51, 'yolk yellow'), + RgbInt8Color.rgbName(0xda, 0xb9, 0x65, 'misted yellow'), + RgbInt8Color.rgbName(0xd7, 0xb5, 0x7f, 'new wheat'), + RgbInt8Color.rgbName(0xce, 0xb8, 0x88, 'pq-7502c'), + RgbInt8Color.rgbName(0xd2, 0xb4, 0x9c, 'toasted almond'), + RgbInt8Color.rgbName(0xce, 0xb8, 0x99, 'semolina'), + RgbInt8Color.rgbName(0xd1, 0xb7, 0xa0, 'frappé'), + RgbInt8Color.rgbName(0xd4, 0xb5, 0x9e, 'pq-7590c'), + RgbInt8Color.rgbName(0xce, 0xba, 0xa8, 'smoke gray'), + RgbInt8Color.rgbName(0xd3, 0xb4, 0xad, 'rose smoke'), + RgbInt8Color.rgbName(0xca, 0xc2, 0xb9, 'pumice stone'), + RgbInt8Color.rgbName(0xcb, 0xc4, 0xbc, 'pq-warmgray2c'), + RgbInt8Color.rgbName(0xd4, 0xb9, 0xcb, 'winsome orchid'), + RgbInt8Color.rgbName(0xd0, 0xbe, 0xc7, 'pq-5235c'), + RgbInt8Color.rgbName(0xe4, 0xbf, 0x45, 'super lemon'), + RgbInt8Color.rgbName(0xde, 0xc0, 0x5f, 'cream gold'), + RgbInt8Color.rgbName(0xd7, 0xbb, 0x77, 'pq-3599c'), + RgbInt8Color.rgbName(0xda, 0xbe, 0x81, 'jojoba'), + RgbInt8Color.rgbName(0xcf, 0xc4, 0x93, 'pq-4535c'), + RgbInt8Color.rgbName(0xd3, 0xbc, 0x8d, 'pq-467c'), + RgbInt8Color.rgbName(0xd1, 0xbe, 0x9b, 'boulder'), + RgbInt8Color.rgbName(0xd5, 0xba, 0x98, 'beige'), + RgbInt8Color.rgbName(0xd2, 0xc2, 0x9d, 'soybean'), + RgbInt8Color.rgbName(0xd2, 0xc2, 0xac, 'frosted almond'), + RgbInt8Color.rgbName(0xcb, 0xc1, 0xae, 'oyster gray'), + RgbInt8Color.rgbName(0xd3, 0xbb, 0xa8, 'pq-481c'), + RgbInt8Color.rgbName(0xd0, 0xc5, 0xb1, 'fog'), + RgbInt8Color.rgbName(0xd4, 0xba, 0xb6, 'sepia rose'), + RgbInt8Color.rgbName(0xcd, 0xc6, 0xbd, 'moonbeam'), + RgbInt8Color.rgbName(0xd1, 0xc0, 0xbf, 'hushed violet'), + RgbInt8Color.rgbName(0xca, 0xc5, 0xc2, 'wind chime'), + RgbInt8Color.rgbName(0xd0, 0xc4, 0xc5, 'pq-434c'), + RgbInt8Color.rgbName(0xd3, 0xc0, 0xcd, 'pq-5165c'), + RgbInt8Color.rgbName(0xce, 0xc3, 0xd2, 'orchid hush'), + RgbInt8Color.rgbName(0xd2, 0xc4, 0xd6, 'lavender fog'), + RgbInt8Color.rgbName(0xd5, 0xc2, 0xd8, 'pq-524c'), + RgbInt8Color.rgbName(0xd1, 0xc7, 0xd9, 'pq-9363c'), + RgbInt8Color.rgbName(0xf2, 0xcd, 0x0, 'pq-7405c'), + RgbInt8Color.rgbName(0xf1, 0xc4, 0x0, 'pq-7406c'), + RgbInt8Color.rgbName(0xde, 0xcd, 0x63, 'pq-459c'), + RgbInt8Color.rgbName(0xda, 0xc4, 0x83, 'raffia'), + RgbInt8Color.rgbName(0xd6, 0xcf, 0x8d, 'pq-615c'), + RgbInt8Color.rgbName(0xd4, 0xcc, 0x9a, 'dusty yellow'), + RgbInt8Color.rgbName(0xd5, 0xcd, 0x94, 'golden mist'), + RgbInt8Color.rgbName(0xd6, 0xc6, 0x9a, 'parsnip'), + RgbInt8Color.rgbName(0xd3, 0xcc, 0xa3, 'hay'), + RgbInt8Color.rgbName(0xd8, 0xc9, 0xa3, 'sea mist'), + RgbInt8Color.rgbName(0xd5, 0xcb, 0x9f, 'pq-4545c'), + RgbInt8Color.rgbName(0xd2, 0xce, 0x9e, 'pq-5875c'), + RgbInt8Color.rgbName(0xd9, 0xc8, 0x9e, 'pq-7501c'), + RgbInt8Color.rgbName(0xd2, 0xcb, 0xaf, 'moth'), + RgbInt8Color.rgbName(0xd4, 0xca, 0xb0, 'putty'), + RgbInt8Color.rgbName(0xd2, 0xca, 0xaf, 'oyster white'), + RgbInt8Color.rgbName(0xda, 0xc7, 0xab, 'biscotti'), + RgbInt8Color.rgbName(0xd2, 0xcd, 0xb4, 'asparagus green'), + RgbInt8Color.rgbName(0xcf, 0xc8, 0xbd, 'rainy day'), + RgbInt8Color.rgbName(0xd1, 0xcc, 0xbd, 'pq-7534c'), + RgbInt8Color.rgbName(0xca, 0xcc, 0xcb, 'dawn blue'), + RgbInt8Color.rgbName(0xcf, 0xcd, 0xc9, 'pq-2330c'), + RgbInt8Color.rgbName(0xd6, 0xc9, 0xca, 'pq-7632c'), + RgbInt8Color.rgbName(0xd8, 0xc8, 0xd1, 'pq-5175c'), + RgbInt8Color.rgbName(0xd0, 0xd0, 0xda, 'lilac hint'), + RgbInt8Color.rgbName(0xce, 0xd9, 0xe5, 'pq-650c'), + RgbInt8Color.rgbName(0xf7, 0xd0, 0x0, 'empire yellow'), + RgbInt8Color.rgbName(0xe1, 0xd5, 0x55, 'pq-610c'), + RgbInt8Color.rgbName(0xd5, 0xd5, 0x93, 'mellow green'), + RgbInt8Color.rgbName(0xd0, 0xd3, 0xb7, 'aloe wash'), + RgbInt8Color.rgbName(0xd6, 0xce, 0xbe, 'almond milk'), + RgbInt8Color.rgbName(0xd2, 0xcf, 0xc4, 'silver birch'), + RgbInt8Color.rgbName(0xd0, 0xd0, 0xce, 'pq-coolgray2c'), + RgbInt8Color.rgbName(0xd4, 0xd5, 0xd4, 'pq-10101c'), + RgbInt8Color.rgbName(0xcc, 0xda, 0xd7, 'chalk blue'), + RgbInt8Color.rgbName(0xd2, 0xd8, 0xd2, 'murmur'), + RgbInt8Color.rgbName(0xd0, 0xd9, 0xd4, 'blue flower'), + RgbInt8Color.rgbName(0xd1, 0xd5, 0xd0, 'foggy dew'), + RgbInt8Color.rgbName(0xd0, 0xd3, 0xd4, 'pq-427c'), + RgbInt8Color.rgbName(0xce, 0xd5, 0xdf, 'pq-9385c'), + RgbInt8Color.rgbName(0xcb, 0xde, 0xda, 'pq-9503c'), + RgbInt8Color.rgbName(0xd2, 0xd9, 0xe8, 'pq-9381c'), + RgbInt8Color.rgbName(0xd1, 0xd5, 0xe3, 'pq-9383c'), + RgbInt8Color.rgbName(0xce, 0xd9, 0xe4, 'pq-9403c'), + RgbInt8Color.rgbName(0xe6, 0xde, 0x77, 'pq-609c'), + RgbInt8Color.rgbName(0xdf, 0xd8, 0x7e, 'canary yellow'), + RgbInt8Color.rgbName(0xcd, 0xda, 0xcd, 'pq-9542c'), + RgbInt8Color.rgbName(0xd9, 0xdb, 0xbd, 'pq-9602c'), + RgbInt8Color.rgbName(0xd6, 0xde, 0xc9, 'canary green'), + RgbInt8Color.rgbName(0xd7, 0xdb, 0xc8, 'pq-9582c'), + RgbInt8Color.rgbName(0xd7, 0xdb, 0xc6, 'pq-9585c'), + RgbInt8Color.rgbName(0xd3, 0xd9, 0xd1, 'zephyr blue'), + RgbInt8Color.rgbName(0xcf, 0xdf, 0xdb, 'morning mist'), + RgbInt8Color.rgbName(0xd1, 0xdd, 0xe6, 'pq-642c'), + RgbInt8Color.rgbName(0xd5, 0xe1, 0xed, 'pq-9401c'), + RgbInt8Color.rgbName(0xfc, 0xe3, 0x0, 'pq-102c'), + RgbInt8Color.rgbName(0xff, 0xe9, 0x0, 'pq-803c'), + RgbInt8Color.rgbName(0xfe, 0xe7, 0x15, 'blazing yellow'), + RgbInt8Color.rgbName(0xfb, 0xe1, 0x22, 'pq-107c'), + RgbInt8Color.rgbName(0xf3, 0xdd, 0x3e, 'golden kiwi'), + RgbInt8Color.rgbName(0xe0, 0xe2, 0x7c, 'pq-586c'), + RgbInt8Color.rgbName(0xe0, 0xec, 0x89, 'pq-2295c'), + RgbInt8Color.rgbName(0xe5, 0xe7, 0x90, 'charlock'), + RgbInt8Color.rgbName(0xe3, 0xe4, 0x8d, 'pq-587c'), + RgbInt8Color.rgbName(0xdf, 0xe6, 0x9f, 'pale lime yellow'), + RgbInt8Color.rgbName(0xe1, 0xe3, 0xa9, 'young wheat'), + RgbInt8Color.rgbName(0xd6, 0xe2, 0xcf, 'pq-9562c'), + RgbInt8Color.rgbName(0xd1, 0xe0, 0xd7, 'pq-621c'), + RgbInt8Color.rgbName(0xd2, 0xe8, 0xe0, 'aqua glass'), + RgbInt8Color.rgbName(0xcd, 0xe3, 0xe0, 'pq-9502c'), + RgbInt8Color.rgbName(0xd6, 0xe6, 0xdf, 'pq-9522c'), + RgbInt8Color.rgbName(0xd6, 0xe3, 0xdc, 'pq-9523c'), + RgbInt8Color.rgbName(0xd8, 0xe7, 0xe7, 'billowing sail'), + RgbInt8Color.rgbName(0xd6, 0xe1, 0xec, 'pq-9400c'), + RgbInt8Color.rgbName(0xfa, 0xe0, 0x3c, 'buttercup'), + RgbInt8Color.rgbName(0xf9, 0xe5, 0x47, 'pq-106c'), + RgbInt8Color.rgbName(0xf3, 0xea, 0x5d, 'pq-3935c'), + RgbInt8Color.rgbName(0xe3, 0xea, 0xa5, 'luminary green'), + RgbInt8Color.rgbName(0xe1, 0xef, 0xce, 'pq-9580c'), + RgbInt8Color.rgbName(0xd5, 0xe9, 0xe1, 'pq-9521c'), + RgbInt8Color.rgbName(0xdf, 0xef, 0xdb, 'pq-9560c'), + RgbInt8Color.rgbName(0xd8, 0xe9, 0xe5, 'hushed green'), + RgbInt8Color.rgbName(0xe1, 0xf0, 0xe5, 'pq-9540c'), + RgbInt8Color.rgbName(0xfe, 0xdb, 0x0, 'pq-108c'), + RgbInt8Color.rgbName(0xfe, 0xdd, 0x0, 'pq-yellowc'), + RgbInt8Color.rgbName(0xea, 0xd9, 0x4e, 'meadowlark'), + RgbInt8Color.rgbName(0xdf, 0xde, 0x9b, 'citron'), + RgbInt8Color.rgbName(0xe4, 0xe2, 0xb7, 'pq-9122c'), + RgbInt8Color.rgbName(0xd5, 0xdd, 0xce, 'pq-9563c'), + RgbInt8Color.rgbName(0xde, 0xe7, 0xcd, 'pq-9581c'), + RgbInt8Color.rgbName(0xee, 0x27, 0x37, 'pq-1788c'), + RgbInt8Color.rgbName(0xeb, 0x3c, 0x27, 'cherry tomato'), + RgbInt8Color.rgbName(0xef, 0x42, 0x6f, 'pq-191c'), + RgbInt8Color.rgbName(0xe7, 0x3c, 0x3e, 'pq-2034c'), + RgbInt8Color.rgbName(0xef, 0x33, 0x40, 'pq-red032c'), + RgbInt8Color.rgbName(0xef, 0x4a, 0x81, 'pq-1915c'), + RgbInt8Color.rgbName(0xf0, 0x56, 0x27, 'red orange'), + RgbInt8Color.rgbName(0xe4, 0x44, 0x5e, 'paradise pink'), + RgbInt8Color.rgbName(0xe5, 0x59, 0x82, 'hot pink'), + RgbInt8Color.rgbName(0xe9, 0x5c, 0x20, 'puffin\'s bill'), + RgbInt8Color.rgbName(0xe7, 0x4a, 0x33, 'mandarin red'), + RgbInt8Color.rgbName(0xf5, 0x7e, 0xb6, 'pq-211c'), + RgbInt8Color.rgbName(0xe2, 0x58, 0x3e, 'tigerlily'), + RgbInt8Color.rgbName(0xe5, 0x55, 0x4f, 'pq-2348c'), + RgbInt8Color.rgbName(0xe9, 0x6a, 0x97, 'azalea pink'), + RgbInt8Color.rgbName(0xea, 0x76, 0x0, 'pq-716c'), + RgbInt8Color.rgbName(0xfc, 0x8d, 0xe0, 'pq-934c'), + RgbInt8Color.rgbName(0xef, 0x95, 0xcf, 'pq-223c'), + RgbInt8Color.rgbName(0xff, 0x69, 0x0, 'pq-1505c'), + RgbInt8Color.rgbName(0xea, 0x66, 0x76, 'sun kissed coral'), + RgbInt8Color.rgbName(0xeb, 0x60, 0x81, 'camellia rose'), + RgbInt8Color.rgbName(0xed, 0x8b, 0x0, 'pq-144c'), + RgbInt8Color.rgbName(0xe8, 0x77, 0x22, 'pq-158c'), + RgbInt8Color.rgbName(0xe8, 0x70, 0x3a, 'celosia orange'), + RgbInt8Color.rgbName(0xdf, 0x72, 0x53, 'flamingo'), + RgbInt8Color.rgbName(0xe5, 0x6a, 0x54, 'pq-7416c'), + RgbInt8Color.rgbName(0xef, 0x96, 0x0, 'pq-2012c'), + RgbInt8Color.rgbName(0xe2, 0x7a, 0x53, 'dusty orange'), + RgbInt8Color.rgbName(0xdb, 0x86, 0x4e, 'pq-7576c'), + RgbInt8Color.rgbName(0xe3, 0x77, 0x5e, 'pq-2434c'), + RgbInt8Color.rgbName(0xde, 0x82, 0x86, 'peach blossom'), + RgbInt8Color.rgbName(0xe6, 0x79, 0x8e, 'confetti'), + RgbInt8Color.rgbName(0xdd, 0x87, 0x8d, 'pq-2445c'), + RgbInt8Color.rgbName(0xdc, 0x86, 0x99, 'pq-493c'), + RgbInt8Color.rgbName(0xe8, 0x81, 0xa6, 'aurora pink'), + RgbInt8Color.rgbName(0xe7, 0x82, 0xa9, 'pq-204c'), + RgbInt8Color.rgbName(0xde, 0x9b, 0xc4, 'lilac chiffon'), + RgbInt8Color.rgbName(0xea, 0xaa, 0x0, 'pq-124c'), + RgbInt8Color.rgbName(0xde, 0x92, 0x52, 'pq-2431c'), + RgbInt8Color.rgbName(0xdb, 0x9b, 0x59, 'golden nugget'), + RgbInt8Color.rgbName(0xde, 0x8e, 0x65, 'copper tan'), + RgbInt8Color.rgbName(0xe1, 0x92, 0x7a, 'canyon sunset'), + RgbInt8Color.rgbName(0xe3, 0x8e, 0x84, 'coral haze'), + RgbInt8Color.rgbName(0xdd, 0x92, 0x89, 'lobster bisque'), + RgbInt8Color.rgbName(0xde, 0x98, 0xab, 'sea pink'), + RgbInt8Color.rgbName(0xe2, 0x90, 0xb2, 'rosebloom'), + RgbInt8Color.rgbName(0xee, 0x96, 0x26, 'cadmium yellow'), + RgbInt8Color.rgbName(0xed, 0x9b, 0x33, 'pq-2011c'), + RgbInt8Color.rgbName(0xdd, 0x97, 0x60, 'apricot tan'), + RgbInt8Color.rgbName(0xdd, 0x9c, 0x6b, 'gold earth'), + RgbInt8Color.rgbName(0xd9, 0x9b, 0x7c, 'peach bloom'), + RgbInt8Color.rgbName(0xd5, 0xa2, 0x86, 'pq-7514c'), + RgbInt8Color.rgbName(0xd9, 0xa6, 0xa1, 'mellow rose'), + RgbInt8Color.rgbName(0xec, 0xa8, 0x25, 'old gold'), + RgbInt8Color.rgbName(0xe5, 0x9e, 0x6d, 'pq-472c'), + RgbInt8Color.rgbName(0xdd, 0xa4, 0x6f, 'pq-721c'), + RgbInt8Color.rgbName(0xe3, 0xa1, 0x84, 'pq-2438c'), + RgbInt8Color.rgbName(0xde, 0xa3, 0x9c, 'pq-2338c'), + RgbInt8Color.rgbName(0xdc, 0xa5, 0x9c, 'pq-2444c'), + RgbInt8Color.rgbName(0xe0, 0xa4, 0xa1, 'pq-3519c'), + RgbInt8Color.rgbName(0xda, 0xa5, 0xad, 'pq-501c'), + RgbInt8Color.rgbName(0xdb, 0xa9, 0xb8, 'cameo pink'), + RgbInt8Color.rgbName(0xdc, 0xa9, 0xbf, 'pq-7430c'), + RgbInt8Color.rgbName(0xd9, 0xaf, 0xca, 'pink lavender'), + RgbInt8Color.rgbName(0xea, 0xb8, 0xe4, 'pq-243c'), + RgbInt8Color.rgbName(0xe7, 0xba, 0xe4, 'pq-250c'), + RgbInt8Color.rgbName(0xef, 0xba, 0xe1, 'pq-2365c'), + RgbInt8Color.rgbName(0xf8, 0xa3, 0xe6, 'pq-921c'), + RgbInt8Color.rgbName(0xe7, 0xaa, 0x56, 'jurassic gold'), + RgbInt8Color.rgbName(0xeb, 0xa8, 0x51, 'beeswax'), + RgbInt8Color.rgbName(0xe6, 0xa6, 0x5d, 'pq-7411c'), + RgbInt8Color.rgbName(0xde, 0xaa, 0x9b, 'dusty pink'), + RgbInt8Color.rgbName(0xdb, 0xb0, 0xa2, 'rose cloud'), + RgbInt8Color.rgbName(0xe2, 0xa9, 0xa1, 'coral cloud'), + RgbInt8Color.rgbName(0xd7, 0xb8, 0xab, 'cameo rose'), + RgbInt8Color.rgbName(0xdc, 0xb1, 0xaf, 'silver pink'), + RgbInt8Color.rgbName(0xe4, 0xa9, 0xbb, 'pq-508c'), + RgbInt8Color.rgbName(0xdc, 0xb6, 0xc9, 'pq-685c'), + RgbInt8Color.rgbName(0xeb, 0xc6, 0xdf, 'pq-517c'), + RgbInt8Color.rgbName(0xf0, 0xb3, 0x23, 'pq-7409c'), + RgbInt8Color.rgbName(0xde, 0xb6, 0x81, 'pq-3596c'), + RgbInt8Color.rgbName(0xda, 0xb5, 0x8f, 'sheepskin'), + RgbInt8Color.rgbName(0xe0, 0xb5, 0x89, 'desert mist'), + RgbInt8Color.rgbName(0xd9, 0xb4, 0x8f, 'pq-727c'), + RgbInt8Color.rgbName(0xd8, 0xb9, 0x98, 'mellow buff'), + RgbInt8Color.rgbName(0xe1, 0xb6, 0xa1, 'pq-3544c'), + RgbInt8Color.rgbName(0xdd, 0xb6, 0xab, 'evening sand'), + RgbInt8Color.rgbName(0xdf, 0xba, 0xa9, 'spanish villa'), + RgbInt8Color.rgbName(0xd9, 0xc0, 0xa9, 'pq-2310c'), + RgbInt8Color.rgbName(0xdf, 0xb8, 0xb6, 'peachskin'), + RgbInt8Color.rgbName(0xdb, 0xb7, 0xbb, 'pq-5025c'), + RgbInt8Color.rgbName(0xde, 0xbe, 0xd2, 'pq-679c'), + RgbInt8Color.rgbName(0xde, 0xcd, 0xe7, 'pq-2085c'), + RgbInt8Color.rgbName(0xee, 0xc8, 0x43, 'maize'), + RgbInt8Color.rgbName(0xeb, 0xbc, 0x4e, 'pq-2006c'), + RgbInt8Color.rgbName(0xf0, 0xc0, 0x5a, 'mimosa'), + RgbInt8Color.rgbName(0xdf, 0xc0, 0x8a, 'sahara sun'), + RgbInt8Color.rgbName(0xd8, 0xc0, 0x9d, 'marzipan'), + RgbInt8Color.rgbName(0xda, 0xc0, 0xa7, 'ivory cream'), + RgbInt8Color.rgbName(0xdd, 0xbc, 0xa0, 'appleblossom'), + RgbInt8Color.rgbName(0xdc, 0xbd, 0x9e, 'honey peach'), + RgbInt8Color.rgbName(0xdf, 0xc0, 0x9f, 'winter wheat'), + RgbInt8Color.rgbName(0xdc, 0xbf, 0xa6, 'pq-4675c'), + RgbInt8Color.rgbName(0xe0, 0xc0, 0x9f, 'pq-726c'), + RgbInt8Color.rgbName(0xd8, 0xc0, 0xad, 'shifting sand'), + RgbInt8Color.rgbName(0xe2, 0xbd, 0xb3, 'peachy keen'), + RgbInt8Color.rgbName(0xdb, 0xbe, 0xb7, 'peach whip'), + RgbInt8Color.rgbName(0xd7, 0xc4, 0xb7, 'pq-4755c'), + RgbInt8Color.rgbName(0xe1, 0xbb, 0xb4, 'pq-7605c'), + RgbInt8Color.rgbName(0xdd, 0xbc, 0xb0, 'pq-7611c'), + RgbInt8Color.rgbName(0xd2, 0xcd, 0xc3, 'pq-9082c'), + RgbInt8Color.rgbName(0xd4, 0xca, 0xcd, 'gray lilac'), + RgbInt8Color.rgbName(0xe2, 0xbc, 0xcb, 'pq-7429c'), + RgbInt8Color.rgbName(0xdd, 0xc2, 0xcf, 'pq-2051c'), + RgbInt8Color.rgbName(0xdc, 0xd3, 0xe7, 'pq-9361c'), + RgbInt8Color.rgbName(0xe3, 0xcc, 0x81, 'dusky citron'), + RgbInt8Color.rgbName(0xdc, 0xc9, 0x9e, 'reed yellow'), + RgbInt8Color.rgbName(0xe0, 0xc9, 0x92, 'straw'), + RgbInt8Color.rgbName(0xd9, 0xca, 0xa5, 'chino green'), + RgbInt8Color.rgbName(0xd7, 0xca, 0xb0, 'wood ash'), + RgbInt8Color.rgbName(0xd8, 0xcf, 0xb2, 'frozen dew'), + RgbInt8Color.rgbName(0xd8, 0xcc, 0xbb, 'sandshell'), + RgbInt8Color.rgbName(0xdb, 0xcc, 0xb5, 'crème brûlée'), + RgbInt8Color.rgbName(0xda, 0xcc, 0xb4, 'bleached sand'), + RgbInt8Color.rgbName(0xda, 0xca, 0xb7, 'brazilian sand'), + RgbInt8Color.rgbName(0xdb, 0xc8, 0xb6, 'pq-482c'), + RgbInt8Color.rgbName(0xd7, 0xd0, 0xc0, 'bone white'), + RgbInt8Color.rgbName(0xd7, 0xcf, 0xbb, 'pistachio shell'), + RgbInt8Color.rgbName(0xdc, 0xcd, 0xbc, 'tapioca'), + RgbInt8Color.rgbName(0xdb, 0xcb, 0xbd, 'pink tint'), + RgbInt8Color.rgbName(0xde, 0xcd, 0xbe, 'sand dollar'), + RgbInt8Color.rgbName(0xda, 0xcb, 0xbe, 'whisper pink'), + RgbInt8Color.rgbName(0xd7, 0xcb, 0xc4, 'crystal gray'), + RgbInt8Color.rgbName(0xd7, 0xcd, 0xcd, 'lilac ash'), + RgbInt8Color.rgbName(0xde, 0xc6, 0xd3, 'light lilac'), + RgbInt8Color.rgbName(0xdb, 0xcd, 0xd3, 'pq-5245c'), + RgbInt8Color.rgbName(0xe0, 0xc7, 0xd7, 'lilac snow'), + RgbInt8Color.rgbName(0xdb, 0xd2, 0xdb, 'orchid tint'), + RgbInt8Color.rgbName(0xd5, 0xd5, 0xd8, 'nimbus cloud'), + RgbInt8Color.rgbName(0xdc, 0xd4, 0xe5, 'pq-9362c'), + RgbInt8Color.rgbName(0xff, 0xd1, 0x0, 'pq-109c'), + RgbInt8Color.rgbName(0xdc, 0xd4, 0x94, 'lemon grass'), + RgbInt8Color.rgbName(0xe1, 0xd5, 0x90, 'lima bean'), + RgbInt8Color.rgbName(0xdc, 0xd5, 0x9a, 'pq-614c'), + RgbInt8Color.rgbName(0xdc, 0xd8, 0xa8, 'garden glade'), + RgbInt8Color.rgbName(0xdf, 0xd1, 0xa7, 'pq-7500c'), + RgbInt8Color.rgbName(0xd8, 0xcf, 0xb9, 'pq-9163c'), + RgbInt8Color.rgbName(0xdf, 0xd1, 0xbe, 'parchment'), + RgbInt8Color.rgbName(0xd6, 0xd2, 0xc4, 'pq-7527c'), + RgbInt8Color.rgbName(0xda, 0xd8, 0xc9, 'light gray'), + RgbInt8Color.rgbName(0xd7, 0xd7, 0xc7, 'silver green'), + RgbInt8Color.rgbName(0xdd, 0xd5, 0xc7, 'birch'), + RgbInt8Color.rgbName(0xd7, 0xd2, 0xcb, 'pq-warmgray1c'), + RgbInt8Color.rgbName(0xdb, 0xd5, 0xd1, 'white sand'), + RgbInt8Color.rgbName(0xd5, 0xd8, 0xd2, 'pq-9103c'), + RgbInt8Color.rgbName(0xd3, 0xde, 0xdf, 'spa blue'), + RgbInt8Color.rgbName(0xd6, 0xdb, 0xd9, 'blue blush'), + RgbInt8Color.rgbName(0xe0, 0xd0, 0xdb, 'orchid ice'), + RgbInt8Color.rgbName(0xd8, 0xd7, 0xdf, 'pq-5315c'), + RgbInt8Color.rgbName(0xe0, 0xd4, 0xe2, 'pq-9342c'), + RgbInt8Color.rgbName(0xde, 0xd1, 0xe1, 'pq-9343c'), + RgbInt8Color.rgbName(0xde, 0xd8, 0xeb, 'pq-9360c'), + RgbInt8Color.rgbName(0xda, 0xdf, 0xec, 'pq-9384c'), + RgbInt8Color.rgbName(0xd5, 0xe0, 0xea, 'pq-9402c'), + RgbInt8Color.rgbName(0xff, 0xd7, 0x0, 'pq-yellow012c'), + RgbInt8Color.rgbName(0xfd, 0xda, 0x24, 'pq-115c'), + RgbInt8Color.rgbName(0xff, 0xda, 0x29, 'vibrant yellow'), + RgbInt8Color.rgbName(0xed, 0xdd, 0x59, 'aurora'), + RgbInt8Color.rgbName(0xeb, 0xdf, 0x67, 'celandine'), + RgbInt8Color.rgbName(0xe4, 0xd7, 0x7e, 'pq-460c'), + RgbInt8Color.rgbName(0xe5, 0xd6, 0x8e, 'custard'), + RgbInt8Color.rgbName(0xdc, 0xd9, 0xb9, 'pq-9123c'), + RgbInt8Color.rgbName(0xd9, 0xd9, 0xc3, 'pq-9603c'), + RgbInt8Color.rgbName(0xe1, 0xdb, 0xc8, 'white asparagus'), + RgbInt8Color.rgbName(0xda, 0xdc, 0xd0, 'icicle'), + RgbInt8Color.rgbName(0xde, 0xd7, 0xc8, 'turtledove'), + RgbInt8Color.rgbName(0xdf, 0xdc, 0xd4, 'pq-9081c'), + RgbInt8Color.rgbName(0xd9, 0xdb, 0xd5, 'pq-9102c'), + RgbInt8Color.rgbName(0xd9, 0xd9, 0xd6, 'pq-coolgray1c'), + RgbInt8Color.rgbName(0xdd, 0xda, 0xe8, 'pq-7443c'), + RgbInt8Color.rgbName(0xd9, 0xe1, 0xe2, 'pq-7541c'), + RgbInt8Color.rgbName(0xdb, 0xe2, 0xe9, 'pq-649c'), + RgbInt8Color.rgbName(0xdd, 0xe5, 0xed, 'pq-656c'), + RgbInt8Color.rgbName(0xde, 0xe1, 0xec, 'pq-9380c'), + RgbInt8Color.rgbName(0xf0, 0xe8, 0x7b, 'pq-602c'), + RgbInt8Color.rgbName(0xe9, 0xe1, 0x86, 'pq-608c'), + RgbInt8Color.rgbName(0xdc, 0xe1, 0xcb, 'pq-9584c'), + RgbInt8Color.rgbName(0xdd, 0xe3, 0xd5, 'water lily'), + RgbInt8Color.rgbName(0xe0, 0xe6, 0xd7, 'whisper green'), + RgbInt8Color.rgbName(0xd8, 0xe3, 0xd7, 'fairest jade'), + RgbInt8Color.rgbName(0xdd, 0xe2, 0xd6, 'frost'), + RgbInt8Color.rgbName(0xdc, 0xe4, 0xd7, 'phantom green'), + RgbInt8Color.rgbName(0xf0, 0xec, 0x74, 'pq-393c'), + RgbInt8Color.rgbName(0xf0, 0xe8, 0x7d, 'limelight'), + RgbInt8Color.rgbName(0xee, 0xf3, 0x86, 'pq-930c'), + RgbInt8Color.rgbName(0xee, 0xe7, 0x8e, 'yellow iris'), + RgbInt8Color.rgbName(0xee, 0xea, 0x97, 'elfin yellow'), + RgbInt8Color.rgbName(0xec, 0xe9, 0x9b, 'yellow pear'), + RgbInt8Color.rgbName(0xef, 0xf4, 0xa4, 'pq-937c'), + RgbInt8Color.rgbName(0xed, 0xe9, 0xad, 'wax yellow'), + RgbInt8Color.rgbName(0xed, 0xed, 0xb7, 'tender yellow'), + RgbInt8Color.rgbName(0xe7, 0xed, 0xc8, 'pq-9600c'), + RgbInt8Color.rgbName(0xe7, 0xea, 0xcb, 'sylvan green'), + RgbInt8Color.rgbName(0xe9, 0xea, 0xc8, 'green essence'), + RgbInt8Color.rgbName(0xee, 0xee, 0xc8, 'pq-9020c'), + RgbInt8Color.rgbName(0xe5, 0xef, 0xda, 'pq-9544c'), + RgbInt8Color.rgbName(0xdf, 0xec, 0xe2, 'pq-9541c'), + RgbInt8Color.rgbName(0xdf, 0xec, 0xe4, 'pq-9041c'), + RgbInt8Color.rgbName(0xe7, 0xef, 0xe7, 'pq-9063c'), + RgbInt8Color.rgbName(0xe5, 0xef, 0xe2, 'pq-9525c'), + RgbInt8Color.rgbName(0xe2, 0xea, 0xeb, 'bit of blue'), + RgbInt8Color.rgbName(0xe6, 0xee, 0xec, 'pq-9062c'), + RgbInt8Color.rgbName(0xed, 0xf1, 0xfe, 'brilliant white'), + RgbInt8Color.rgbName(0xff, 0xd4, 0x0, 'cyber yellow'), + RgbInt8Color.rgbName(0xf4, 0xda, 0x40, 'pq-7404c'), + RgbInt8Color.rgbName(0xef, 0xdc, 0x75, 'yellow cream'), + RgbInt8Color.rgbName(0xf0, 0xe9, 0x91, 'pq-601c'), + RgbInt8Color.rgbName(0xf9, 0x38, 0x22, 'pq-brightredc'), + RgbInt8Color.rgbName(0xf4, 0x36, 0x4c, 'pq-1787c'), + RgbInt8Color.rgbName(0xfa, 0x46, 0x16, 'pq-172c'), + RgbInt8Color.rgbName(0xf4, 0x55, 0x20, 'scarlet ibis'), + RgbInt8Color.rgbName(0xf2, 0x55, 0x2c, 'flame'), + RgbInt8Color.rgbName(0xf9, 0x67, 0x14, 'orange tiger'), + RgbInt8Color.rgbName(0xee, 0x53, 0x40, 'pq-2027c'), + RgbInt8Color.rgbName(0xf6, 0x52, 0x75, 'pq-184c'), + RgbInt8Color.rgbName(0xf3, 0x5b, 0x53, 'hot coral'), + RgbInt8Color.rgbName(0xee, 0x5c, 0x6c, 'calypso coral'), + RgbInt8Color.rgbName(0xef, 0x60, 0x79, 'pq-709c'), + RgbInt8Color.rgbName(0xff, 0x92, 0xda, 'pq-913c'), + RgbInt8Color.rgbName(0xf3, 0x95, 0xc7, 'pq-2037c'), + RgbInt8Color.rgbName(0xff, 0x75, 0x0, 'pq-2018c'), + RgbInt8Color.rgbName(0xec, 0x6a, 0x37, 'mandarin orange'), + RgbInt8Color.rgbName(0xf9, 0x65, 0x31, 'exotic orange'), + RgbInt8Color.rgbName(0xf5, 0x67, 0x33, 'golden poppy'), + RgbInt8Color.rgbName(0xf4, 0x63, 0x3a, 'pq-2026c'), + RgbInt8Color.rgbName(0xf9, 0x63, 0x3b, 'vermillion orange'), + RgbInt8Color.rgbName(0xf3, 0x69, 0x44, 'firecracker'), + RgbInt8Color.rgbName(0xea, 0x67, 0x59, 'emberglow'), + RgbInt8Color.rgbName(0xea, 0x6b, 0x6a, 'porcelain rose'), + RgbInt8Color.rgbName(0xee, 0x6d, 0x8a, 'pink lemonade'), + RgbInt8Color.rgbName(0xea, 0x73, 0x8d, 'bubblegum'), + RgbInt8Color.rgbName(0xf4, 0x73, 0x27, 'persimmon orange'), + RgbInt8Color.rgbName(0xed, 0x74, 0x64, 'coral'), + RgbInt8Color.rgbName(0xed, 0x7a, 0x9e, 'pink carnation'), + RgbInt8Color.rgbName(0xf1, 0x8a, 0xad, 'sachet pink'), + RgbInt8Color.rgbName(0xfe, 0x7e, 0x3, 'tangelo'), + RgbInt8Color.rgbName(0xff, 0x82, 0x0, 'pq-151c'), + RgbInt8Color.rgbName(0xf3, 0x77, 0x4d, 'coral rose'), + RgbInt8Color.rgbName(0xe6, 0x86, 0x99, 'pq-701c'), + RgbInt8Color.rgbName(0xee, 0x81, 0x9f, 'morning glory'), + RgbInt8Color.rgbName(0xe7, 0x93, 0xb7, 'pq-2044c'), + RgbInt8Color.rgbName(0xf4, 0x80, 0x37, 'sun orange'), + RgbInt8Color.rgbName(0xf1, 0x80, 0x70, 'pq-2344c'), + RgbInt8Color.rgbName(0xe9, 0x89, 0x7e, 'burnt coral'), + RgbInt8Color.rgbName(0xf2, 0x82, 0x7f, 'pq-2029c'), + RgbInt8Color.rgbName(0xe7, 0x8b, 0x90, 'strawberry ice'), + RgbInt8Color.rgbName(0xec, 0x9a, 0xbe, 'begonia pink'), + RgbInt8Color.rgbName(0xf9, 0x9f, 0xc9, 'pq-210c'), + RgbInt8Color.rgbName(0xf2, 0xa9, 0x0, 'pq-130c'), + RgbInt8Color.rgbName(0xff, 0x8d, 0x0, 'bright marigold'), + RgbInt8Color.rgbName(0xf6, 0x8d, 0x2e, 'pq-715c'), + RgbInt8Color.rgbName(0xf1, 0x90, 0x35, 'apricot'), + RgbInt8Color.rgbName(0xe8, 0x92, 0x7c, 'pq-486c'), + RgbInt8Color.rgbName(0xe2, 0x9a, 0x86, 'shrimp'), + RgbInt8Color.rgbName(0xe2, 0x9d, 0x94, 'coral almond'), + RgbInt8Color.rgbName(0xf4, 0xa6, 0xd7, 'pq-230c'), + RgbInt8Color.rgbName(0xf1, 0xa7, 0xdc, 'pq-236c'), + RgbInt8Color.rgbName(0xff, 0x98, 0x0, 'pq-2013c'), + RgbInt8Color.rgbName(0xf1, 0xb3, 0x0, 'pq-3514c'), + RgbInt8Color.rgbName(0xf4, 0x96, 0x3a, 'iceland poppy'), + RgbInt8Color.rgbName(0xec, 0x93, 0x5e, 'muskmelon'), + RgbInt8Color.rgbName(0xea, 0x95, 0x75, 'shell coral'), + RgbInt8Color.rgbName(0xeb, 0x96, 0x87, 'blooming dahlia'), + RgbInt8Color.rgbName(0xed, 0x9c, 0xa8, 'peony'), + RgbInt8Color.rgbName(0xe8, 0x9c, 0xae, 'pq-197c'), + RgbInt8Color.rgbName(0xf1, 0xb2, 0xdc, 'pq-magenta0521c'), + RgbInt8Color.rgbName(0xf6, 0xbe, 0x0, 'pq-7408c'), + RgbInt8Color.rgbName(0xec, 0xa1, 0x54, 'pq-157c'), + RgbInt8Color.rgbName(0xe8, 0xa7, 0x98, 'coral pink'), + RgbInt8Color.rgbName(0xea, 0xa7, 0x94, 'pq-487c'), + RgbInt8Color.rgbName(0xee, 0xa0, 0xa6, 'pink icing'), + RgbInt8Color.rgbName(0xe9, 0xa2, 0xb2, 'pq-494c'), + RgbInt8Color.rgbName(0xf0, 0xa1, 0xbf, 'prism pink'), + RgbInt8Color.rgbName(0xe6, 0xbc, 0xd8, 'pq-671c'), + RgbInt8Color.rgbName(0xfc, 0xa9, 0xe6, 'pq-941c'), + RgbInt8Color.rgbName(0xf3, 0xbf, 0x8, 'lemon'), + RgbInt8Color.rgbName(0xf7, 0xb7, 0x18, 'spectra yellow'), + RgbInt8Color.rgbName(0xf9, 0xac, 0x2f, 'citrus'), + RgbInt8Color.rgbName(0xf1, 0xb4, 0x34, 'pq-143c'), + RgbInt8Color.rgbName(0xf2, 0xab, 0x46, 'artisan\'s gold'), + RgbInt8Color.rgbName(0xef, 0xad, 0x55, 'amber'), + RgbInt8Color.rgbName(0xec, 0xaa, 0x79, 'apricot nectar'), + RgbInt8Color.rgbName(0xed, 0xaa, 0x86, 'coral sands'), + RgbInt8Color.rgbName(0xe1, 0xb8, 0x7f, 'pq-7508c'), + RgbInt8Color.rgbName(0xe6, 0xaf, 0x91, 'peach nougat'), + RgbInt8Color.rgbName(0xdf, 0xb1, 0x9b, 'pink sand'), + RgbInt8Color.rgbName(0xe1, 0xb7, 0xa7, 'pq-7513c'), + RgbInt8Color.rgbName(0xe6, 0xb2, 0xb8, 'coral blush'), + RgbInt8Color.rgbName(0xe9, 0xad, 0xca, 'lilac sachet'), + RgbInt8Color.rgbName(0xf3, 0xc1, 0x2c, 'freesia'), + RgbInt8Color.rgbName(0xf4, 0xbf, 0x3a, 'solar power'), + RgbInt8Color.rgbName(0xf1, 0xbe, 0x48, 'pq-142c'), + RgbInt8Color.rgbName(0xef, 0xb6, 0x61, 'pq-2009c'), + RgbInt8Color.rgbName(0xe3, 0xbc, 0x8e, 'desert dust'), + RgbInt8Color.rgbName(0xe7, 0xb7, 0x8a, 'pq-720c'), + RgbInt8Color.rgbName(0xe5, 0xb3, 0x9b, 'almost apricot'), + RgbInt8Color.rgbName(0xe6, 0xba, 0xa8, 'pq-7415c'), + RgbInt8Color.rgbName(0xec, 0xb2, 0xb3, 'powder pink'), + RgbInt8Color.rgbName(0xe2, 0xc1, 0xc0, 'lotus'), + RgbInt8Color.rgbName(0xe5, 0xba, 0xc1, 'pq-502c'), + RgbInt8Color.rgbName(0xe8, 0xb3, 0xc3, 'pq-509c'), + RgbInt8Color.rgbName(0xe8, 0xb5, 0xce, 'sweet lilac'), + RgbInt8Color.rgbName(0xec, 0xb3, 0xcb, 'pq-203c'), + RgbInt8Color.rgbName(0xe6, 0xbc, 0xcd, 'roseate spoonbill'), + RgbInt8Color.rgbName(0xea, 0xbe, 0xdb, 'pq-217c'), + RgbInt8Color.rgbName(0xf3, 0xc9, 0xe4, 'pq-9324c'), + RgbInt8Color.rgbName(0xed, 0xc3, 0x73, 'cornsilk'), + RgbInt8Color.rgbName(0xf1, 0xbf, 0x70, 'buff yellow'), + RgbInt8Color.rgbName(0xef, 0xc0, 0x6e, 'pq-2008c'), + RgbInt8Color.rgbName(0xef, 0xbe, 0x7d, 'pq-156c'), + RgbInt8Color.rgbName(0xe6, 0xbd, 0x8f, 'golden straw'), + RgbInt8Color.rgbName(0xde, 0xc5, 0xa5, 'wheat'), + RgbInt8Color.rgbName(0xe2, 0xbe, 0xa2, 'amberlight'), + RgbInt8Color.rgbName(0xe2, 0xc4, 0xa6, 'apricot illusion'), + RgbInt8Color.rgbName(0xe0, 0xc6, 0xad, 'pq-4685c'), + RgbInt8Color.rgbName(0xe4, 0xbf, 0xb3, 'pale blush'), + RgbInt8Color.rgbName(0xdf, 0xc2, 0xc3, 'pq-5035c'), + RgbInt8Color.rgbName(0xe4, 0xbe, 0xc3, 'pq-692c'), + RgbInt8Color.rgbName(0xe1, 0xc6, 0xcc, 'pale lilac'), + RgbInt8Color.rgbName(0xeb, 0xbe, 0xcb, 'pq-510c'), + RgbInt8Color.rgbName(0xe4, 0xc6, 0xd4, 'pq-684c'), + RgbInt8Color.rgbName(0xe3, 0xc8, 0xd8, 'pq-678c'), + RgbInt8Color.rgbName(0xe3, 0xd7, 0xe6, 'pq-9341c'), + RgbInt8Color.rgbName(0xf3, 0xd0, 0x3e, 'pq-129c'), + RgbInt8Color.rgbName(0xf2, 0xc7, 0x5c, 'pq-141c'), + RgbInt8Color.rgbName(0xdd, 0xcb, 0xa4, 'pq-468c'), + RgbInt8Color.rgbName(0xe4, 0xc7, 0xb8, 'cream tan'), + RgbInt8Color.rgbName(0xdf, 0xd1, 0xbb, 'angora'), + RgbInt8Color.rgbName(0xdf, 0xcd, 0xc6, 'morganite'), + RgbInt8Color.rgbName(0xe1, 0xcf, 0xc6, 'shell'), + RgbInt8Color.rgbName(0xe4, 0xcc, 0xc6, 'peach blush'), + RgbInt8Color.rgbName(0xe6, 0xc5, 0xca, 'chalk pink'), + RgbInt8Color.rgbName(0xe7, 0xc9, 0xca, 'potpourri'), + RgbInt8Color.rgbName(0xe1, 0xd3, 0xc7, 'pq-9223c'), + RgbInt8Color.rgbName(0xe1, 0xce, 0xc6, 'pq-9243c'), + RgbInt8Color.rgbName(0xe2, 0xcc, 0xd6, 'pq-9323c'), + RgbInt8Color.rgbName(0xe5, 0xce, 0xdb, 'pq-677c'), + RgbInt8Color.rgbName(0xf3, 0xd5, 0x4e, 'pq-128c'), + RgbInt8Color.rgbName(0xf6, 0xd1, 0x55, 'primrose yellow'), + RgbInt8Color.rgbName(0xeb, 0xcf, 0x89, 'sundress'), + RgbInt8Color.rgbName(0xee, 0xd4, 0x84, 'pq-7403c'), + RgbInt8Color.rgbName(0xe7, 0xd3, 0x91, 'pineapple slice'), + RgbInt8Color.rgbName(0xe7, 0xd1, 0xa1, 'italian straw'), + RgbInt8Color.rgbName(0xe7, 0xd3, 0xad, 'banana crepe'), + RgbInt8Color.rgbName(0xe8, 0xd0, 0xa7, 'chamomile'), + RgbInt8Color.rgbName(0xe4, 0xcf, 0xb6, 'macadamia'), + RgbInt8Color.rgbName(0xe5, 0xd0, 0xb1, 'lamb\'s wool'), + RgbInt8Color.rgbName(0xe7, 0xce, 0xb5, 'pq-2309c'), + RgbInt8Color.rgbName(0xe0, 0xd5, 0xc6, 'whitecap gray'), + RgbInt8Color.rgbName(0xe7, 0xcf, 0xbd, 'novelle peach'), + RgbInt8Color.rgbName(0xe9, 0xd1, 0xbf, 'pastel rose tan'), + RgbInt8Color.rgbName(0xe1, 0xd3, 0xc4, 'pq-9186c'), + RgbInt8Color.rgbName(0xe4, 0xd5, 0xc4, 'pq-9203c'), + RgbInt8Color.rgbName(0xe6, 0xd5, 0xc8, 'pq-9222c'), + RgbInt8Color.rgbName(0xe4, 0xd1, 0xcd, 'pq-9263c'), + RgbInt8Color.rgbName(0xe5, 0xd0, 0xcf, 'mauve chalk'), + RgbInt8Color.rgbName(0xe4, 0xd5, 0xd3, 'pq-7604c'), + RgbInt8Color.rgbName(0xe7, 0xd2, 0xd6, 'pq-9303c'), + RgbInt8Color.rgbName(0xe9, 0xd0, 0xdc, 'pq-9322c'), + RgbInt8Color.rgbName(0xe0, 0xdb, 0xe3, 'pq-664c'), + RgbInt8Color.rgbName(0xea, 0xd3, 0xe2, 'pq-670c'), + RgbInt8Color.rgbName(0xfa, 0xe0, 0x53, 'pq-113c'), + RgbInt8Color.rgbName(0xf9, 0xd8, 0x57, 'lemon zest'), + RgbInt8Color.rgbName(0xf3, 0xdd, 0x6d, 'pq-127c'), + RgbInt8Color.rgbName(0xf8, 0xdc, 0x6c, 'goldfinch'), + RgbInt8Color.rgbName(0xe7, 0xdf, 0x99, 'chardonnay'), + RgbInt8Color.rgbName(0xe9, 0xdf, 0x97, 'pq-461c'), + RgbInt8Color.rgbName(0xec, 0xd8, 0x98, 'pq-7402c'), + RgbInt8Color.rgbName(0xe7, 0xdb, 0xb9, 'pq-9161c'), + RgbInt8Color.rgbName(0xe6, 0xdd, 0xc5, 'cloud cream'), + RgbInt8Color.rgbName(0xec, 0xdd, 0xbe, 'rutabaga'), + RgbInt8Color.rgbName(0xe3, 0xdf, 0xc3, 'pq-9143c'), + RgbInt8Color.rgbName(0xe2, 0xd9, 0xc2, 'pq-9162c'), + RgbInt8Color.rgbName(0xe4, 0xd7, 0xc5, 'white swan'), + RgbInt8Color.rgbName(0xe6, 0xda, 0xc4, 'seedpearl'), + RgbInt8Color.rgbName(0xec, 0xdc, 0xc8, 'pq-9182c'), + RgbInt8Color.rgbName(0xe5, 0xd9, 0xd3, 'pastel parchment'), + RgbInt8Color.rgbName(0xdf, 0xdd, 0xd7, 'vaporous gray'), + RgbInt8Color.rgbName(0xe2, 0xe2, 0xda, 'lily white'), + RgbInt8Color.rgbName(0xe1, 0xe3, 0xde, 'mystic blue'), + RgbInt8Color.rgbName(0xe0, 0xe4, 0xd9, 'ice'), + RgbInt8Color.rgbName(0xe7, 0xdc, 0xd9, 'almost mauve'), + RgbInt8Color.rgbName(0xdd, 0xe0, 0xdf, 'barely blue'), + RgbInt8Color.rgbName(0xe4, 0xe2, 0xdb, 'pq-9080c'), + RgbInt8Color.rgbName(0xe3, 0xe3, 0xdd, 'pq-9101c'), + RgbInt8Color.rgbName(0xe5, 0xe1, 0xe6, 'pq-663c'), + RgbInt8Color.rgbName(0xe7, 0xdc, 0xea, 'pq-9340c'), + RgbInt8Color.rgbName(0xf6, 0xeb, 0x61, 'pq-100c'), + RgbInt8Color.rgbName(0xf9, 0xe2, 0x67, 'pq-2003c'), + RgbInt8Color.rgbName(0xf3, 0xe7, 0x79, 'lemon verbena'), + RgbInt8Color.rgbName(0xeb, 0xe4, 0x9a, 'pq-607c'), + RgbInt8Color.rgbName(0xf0, 0xe7, 0x9d, 'lemonade'), + RgbInt8Color.rgbName(0xef, 0xe1, 0xa7, 'french vanilla'), + RgbInt8Color.rgbName(0xf2, 0xe6, 0xb1, 'pastel yellow'), + RgbInt8Color.rgbName(0xf1, 0xe6, 0xb2, 'pq-7499c'), + RgbInt8Color.rgbName(0xe9, 0xe4, 0xc5, 'pq-9142c'), + RgbInt8Color.rgbName(0xe5, 0xe8, 0xcd, 'pq-9601c'), + RgbInt8Color.rgbName(0xe4, 0xea, 0xdf, 'lightest sky'), + RgbInt8Color.rgbName(0xe2, 0xe6, 0xe0, 'bluewash'), + RgbInt8Color.rgbName(0xe8, 0xe6, 0xdf, 'pq-9043c'), + RgbInt8Color.rgbName(0xe7, 0xe9, 0xe7, 'blanc de blanc'), + RgbInt8Color.rgbName(0xe3, 0xe8, 0xe3, 'pq-9042c'), + RgbInt8Color.rgbName(0xf1, 0xeb, 0x9c, 'pq-600c'), + RgbInt8Color.rgbName(0xf7, 0xf4, 0xa2, 'pq-917c'), + RgbInt8Color.rgbName(0xf2, 0xf0, 0xa1, 'pq-yellow0131c'), + RgbInt8Color.rgbName(0xf1, 0xef, 0xb7, 'pq-9120c'), + RgbInt8Color.rgbName(0xf1, 0xf0, 0xb0, 'pq-9121c'), + RgbInt8Color.rgbName(0xf2, 0xed, 0xc0, 'pq-9141c'), + RgbInt8Color.rgbName(0xf1, 0xec, 0xca, 'ethereal green'), + RgbInt8Color.rgbName(0xf2, 0xee, 0xca, 'pq-9140c'), + RgbInt8Color.rgbName(0xec, 0xea, 0xd0, 'glass green'), + RgbInt8Color.rgbName(0xe5, 0xeb, 0xe3, 'summer shower'), + RgbInt8Color.rgbName(0xfb, 0xdd, 0x40, 'pq-114c'), + RgbInt8Color.rgbName(0xf4, 0xf5, 0xf0, 'bright white'), + RgbInt8Color.rgbName(0xf9, 0x42, 0x3a, 'pq-warmredc'), + RgbInt8Color.rgbName(0xf8, 0x48, 0x5e, 'pq-1785c'), + RgbInt8Color.rgbName(0xff, 0x6a, 0x13, 'pq-1585c'), + RgbInt8Color.rgbName(0xff, 0x67, 0x1f, 'pq-165c'), + RgbInt8Color.rgbName(0xf2, 0x5f, 0x66, 'dubarry'), + RgbInt8Color.rgbName(0xff, 0x85, 0xbd, 'pq-926c'), + RgbInt8Color.rgbName(0xff, 0x74, 0x20, 'vibrant orange'), + RgbInt8Color.rgbName(0xfc, 0x64, 0x2d, 'dragon fire'), + RgbInt8Color.rgbName(0xff, 0x5c, 0x39, 'pq-171c'), + RgbInt8Color.rgbName(0xfe, 0x63, 0x47, 'nasturtium'), + RgbInt8Color.rgbName(0xff, 0x58, 0x5d, 'pq-178c'), + RgbInt8Color.rgbName(0xff, 0x58, 0x69, 'pq-2346c'), + RgbInt8Color.rgbName(0xfb, 0x63, 0x7e, 'pq-1777c'), + RgbInt8Color.rgbName(0xf6, 0x75, 0x99, 'pq-190c'), + RgbInt8Color.rgbName(0xff, 0x79, 0x13, 'oriole'), + RgbInt8Color.rgbName(0xf5, 0x6c, 0x73, 'sugar coral'), + RgbInt8Color.rgbName(0xfe, 0x8c, 0x18, 'carrot curl'), + RgbInt8Color.rgbName(0xff, 0x88, 0x12, 'autumn glory'), + RgbInt8Color.rgbName(0xfe, 0x84, 0xe, 'turmeric'), + RgbInt8Color.rgbName(0xfd, 0x6f, 0x3b, 'carrot'), + RgbInt8Color.rgbName(0xff, 0x6a, 0x39, 'pq-1645c'), + RgbInt8Color.rgbName(0xf6, 0x74, 0x5f, 'camellia'), + RgbInt8Color.rgbName(0xf7, 0x74, 0x64, 'coral quartz'), + RgbInt8Color.rgbName(0xf9, 0x72, 0x72, 'georgia peach'), + RgbInt8Color.rgbName(0xff, 0x8f, 0x1c, 'pq-1495c'), + RgbInt8Color.rgbName(0xfe, 0x8f, 0x1d, 'pq-3588c'), + RgbInt8Color.rgbName(0xfa, 0x7a, 0x35, 'orange peel'), + RgbInt8Color.rgbName(0xff, 0x7f, 0x32, 'pq-1575c'), + RgbInt8Color.rgbName(0xf3, 0x85, 0x54, 'autumn sunset'), + RgbInt8Color.rgbName(0xf8, 0x7c, 0x56, 'pq-2024c'), + RgbInt8Color.rgbName(0xf6, 0x78, 0x66, 'persimmon'), + RgbInt8Color.rgbName(0xf7, 0x78, 0x6b, 'peach echo'), + RgbInt8Color.rgbName(0xf5, 0x7f, 0x8e, 'strawberry pink'), + RgbInt8Color.rgbName(0xfb, 0x8b, 0x23, 'flame orange'), + RgbInt8Color.rgbName(0xff, 0x7f, 0x41, 'pq-164c'), + RgbInt8Color.rgbName(0xf8, 0x81, 0x80, 'shell pink'), + RgbInt8Color.rgbName(0xff, 0x9b, 0xcb, 'pq-933c'), + RgbInt8Color.rgbName(0xff, 0xa3, 0x0, 'pq-137c'), + RgbInt8Color.rgbName(0xff, 0xa5, 0x0, 'saffron'), + RgbInt8Color.rgbName(0xff, 0x8a, 0x3d, 'pq-2025c'), + RgbInt8Color.rgbName(0xf8, 0x8f, 0x58, 'tangerine'), + RgbInt8Color.rgbName(0xf0, 0x94, 0x91, 'pq-2339c'), + RgbInt8Color.rgbName(0xf6, 0x90, 0x9d, 'geranium pink'), + RgbInt8Color.rgbName(0xf7, 0x96, 0x9e, 'flamingo pink'), + RgbInt8Color.rgbName(0xff, 0x8d, 0xa1, 'pq-1775c'), + RgbInt8Color.rgbName(0xf8, 0x90, 0xa5, 'pq-708c'), + RgbInt8Color.rgbName(0xf5, 0x9b, 0xbb, 'pq-1905c'), + RgbInt8Color.rgbName(0xff, 0xa0, 0x10, 'zinnia'), + RgbInt8Color.rgbName(0xff, 0xb0, 0x0, 'gold fusion'), + RgbInt8Color.rgbName(0xff, 0xad, 0x0, 'pq-2010c'), + RgbInt8Color.rgbName(0xff, 0x9e, 0x1b, 'pq-1375c'), + RgbInt8Color.rgbName(0xfc, 0x9e, 0x21, 'radiant yellow'), + RgbInt8Color.rgbName(0xf9, 0x94, 0x71, 'cadmium orange'), + RgbInt8Color.rgbName(0xfa, 0x93, 0x70, 'pq-2023c'), + RgbInt8Color.rgbName(0xef, 0xa6, 0xaa, 'quartz pink'), + RgbInt8Color.rgbName(0xff, 0xad, 0xe3, 'pq-920c'), + RgbInt8Color.rgbName(0xff, 0xb5, 0x0, 'pq-7549c'), + RgbInt8Color.rgbName(0xf5, 0xa2, 0x6f, 'pumpkin'), + RgbInt8Color.rgbName(0xfa, 0xa1, 0x81, 'coral reef'), + RgbInt8Color.rgbName(0xf8, 0xa3, 0xbc, 'pq-189c'), + RgbInt8Color.rgbName(0xff, 0xb6, 0xd9, 'pq-940c'), + RgbInt8Color.rgbName(0xff, 0xc3, 0x0, 'lemon chrome'), + RgbInt8Color.rgbName(0xff, 0xc6, 0x0, 'pq-7548c'), + RgbInt8Color.rgbName(0xff, 0xb8, 0x1c, 'pq-1235c'), + RgbInt8Color.rgbName(0xfb, 0xaa, 0x4c, 'kumquat'), + RgbInt8Color.rgbName(0xff, 0xaa, 0x4d, 'pq-804c'), + RgbInt8Color.rgbName(0xfd, 0xac, 0x53, 'marigold'), + RgbInt8Color.rgbName(0xff, 0xa6, 0x4f, 'blazing orange'), + RgbInt8Color.rgbName(0xfd, 0xaa, 0x63, 'pq-714c'), + RgbInt8Color.rgbName(0xf8, 0xad, 0x6d, 'pq-2017c'), + RgbInt8Color.rgbName(0xf9, 0xaa, 0x7d, 'orange chiffon'), + RgbInt8Color.rgbName(0xf2, 0xa9, 0x87, 'peach'), + RgbInt8Color.rgbName(0xfb, 0xac, 0x82, 'apricot wash'), + RgbInt8Color.rgbName(0xfa, 0xaa, 0x8d, 'pq-2022c'), + RgbInt8Color.rgbName(0xf4, 0xa6, 0xa3, 'peaches n\' cream'), + RgbInt8Color.rgbName(0xf2, 0xac, 0xb9, 'pq-700c'), + RgbInt8Color.rgbName(0xf5, 0xb0, 0xbd, 'candy pink'), + RgbInt8Color.rgbName(0xff, 0xb5, 0x49, 'pq-1365c'), + RgbInt8Color.rgbName(0xfc, 0xb9, 0x53, 'banana'), + RgbInt8Color.rgbName(0xfa, 0xb7, 0x5a, 'amber yellow'), + RgbInt8Color.rgbName(0xff, 0xb2, 0x5b, 'pq-150c'), + RgbInt8Color.rgbName(0xf7, 0xb2, 0x6a, 'chamois'), + RgbInt8Color.rgbName(0xeb, 0xc3, 0x96, 'buff'), + RgbInt8Color.rgbName(0xf5, 0xb8, 0x95, 'peach quartz'), + RgbInt8Color.rgbName(0xec, 0xba, 0xa8, 'pq-488c'), + RgbInt8Color.rgbName(0xf2, 0xb2, 0xae, 'blossom'), + RgbInt8Color.rgbName(0xea, 0xbe, 0xb0, 'pq-7520c'), + RgbInt8Color.rgbName(0xef, 0xb8, 0xcd, 'pq-3595c'), + RgbInt8Color.rgbName(0xe9, 0xc3, 0xcf, 'parfait pink'), + RgbInt8Color.rgbName(0xea, 0xc4, 0xd2, 'pq-2043c'), + RgbInt8Color.rgbName(0xed, 0xd0, 0xdd, 'cradle pink'), + RgbInt8Color.rgbName(0xff, 0xcd, 0x0, 'pq-116c'), + RgbInt8Color.rgbName(0xff, 0xc7, 0x2c, 'pq-123c'), + RgbInt8Color.rgbName(0xff, 0xd0, 0x2e, 'dandelion'), + RgbInt8Color.rgbName(0xff, 0xbf, 0x3f, 'pq-136c'), + RgbInt8Color.rgbName(0xff, 0xc8, 0x45, 'pq-1225c'), + RgbInt8Color.rgbName(0xfd, 0xc0, 0x4e, 'daffodil'), + RgbInt8Color.rgbName(0xf7, 0xbf, 0x68, 'golden cream'), + RgbInt8Color.rgbName(0xf7, 0xc4, 0x6c, 'sunset gold'), + RgbInt8Color.rgbName(0xf1, 0xbd, 0x89, 'apricot cream'), + RgbInt8Color.rgbName(0xf0, 0xbf, 0x9b, 'pq-473c'), + RgbInt8Color.rgbName(0xf1, 0xbf, 0x9f, 'pq-2437c'), + RgbInt8Color.rgbName(0xec, 0xc3, 0xb2, 'pq-489c'), + RgbInt8Color.rgbName(0xee, 0xc4, 0xbe, 'chintz rose'), + RgbInt8Color.rgbName(0xf5, 0xbe, 0xc7, 'almond blossom'), + RgbInt8Color.rgbName(0xf1, 0xbd, 0xc8, 'pq-495c'), + RgbInt8Color.rgbName(0xe9, 0xc4, 0xc7, 'pq-503c'), + RgbInt8Color.rgbName(0xf2, 0xc1, 0xd1, 'fairy tale'), + RgbInt8Color.rgbName(0xef, 0xc1, 0xd6, 'pink lady'), + RgbInt8Color.rgbName(0xee, 0xda, 0xea, 'pq-7436c'), + RgbInt8Color.rgbName(0xff, 0xd6, 0x35, 'pq-810c'), + RgbInt8Color.rgbName(0xfe, 0xd1, 0x41, 'pq-122c'), + RgbInt8Color.rgbName(0xff, 0xc6, 0x58, 'pq-135c'), + RgbInt8Color.rgbName(0xfb, 0xc8, 0x5f, 'samoan sun'), + RgbInt8Color.rgbName(0xfa, 0xce, 0x6d, 'yarrow'), + RgbInt8Color.rgbName(0xff, 0xc6, 0x6e, 'pale marigold'), + RgbInt8Color.rgbName(0xff, 0xc5, 0x6e, 'pq-1355c'), + RgbInt8Color.rgbName(0xed, 0xc8, 0xa3, 'pq-719c'), + RgbInt8Color.rgbName(0xe5, 0xcc, 0xaf, 'gray sand'), + RgbInt8Color.rgbName(0xf1, 0xc6, 0xa7, 'pq-474c'), + RgbInt8Color.rgbName(0xed, 0xca, 0xb5, 'bisque'), + RgbInt8Color.rgbName(0xed, 0xcd, 0xc2, 'pale dogwood'), + RgbInt8Color.rgbName(0xe7, 0xcf, 0xc7, 'silver peony'), + RgbInt8Color.rgbName(0xec, 0xc7, 0xcd, 'pq-196c'), + RgbInt8Color.rgbName(0xe9, 0xcd, 0xd0, 'pq-691c'), + RgbInt8Color.rgbName(0xeb, 0xce, 0xd5, 'ballet slipper'), + RgbInt8Color.rgbName(0xe9, 0xce, 0xd5, 'pq-9302c'), + RgbInt8Color.rgbName(0xed, 0xd5, 0xe2, 'pq-9321c'), + RgbInt8Color.rgbName(0xfe, 0xd4, 0x50, 'habañero gold'), + RgbInt8Color.rgbName(0xfd, 0xd7, 0x57, 'pq-121c'), + RgbInt8Color.rgbName(0xfe, 0xd5, 0x5d, 'minion yellow'), + RgbInt8Color.rgbName(0xfb, 0xdb, 0x65, 'pq-120c'), + RgbInt8Color.rgbName(0xff, 0xd6, 0x62, 'aspen gold'), + RgbInt8Color.rgbName(0xfd, 0xd2, 0x6e, 'pq-134c'), + RgbInt8Color.rgbName(0xed, 0xd5, 0x9e, 'sunlight'), + RgbInt8Color.rgbName(0xef, 0xd1, 0x9f, 'pq-155c'), + RgbInt8Color.rgbName(0xf2, 0xd1, 0xa0, 'golden fleece'), + RgbInt8Color.rgbName(0xea, 0xd3, 0xae, 'summer melon'), + RgbInt8Color.rgbName(0xeb, 0xd2, 0xb7, 'dawn'), + RgbInt8Color.rgbName(0xee, 0xd0, 0xae, 'autumn blonde'), + RgbInt8Color.rgbName(0xeb, 0xd1, 0xbb, 'sun kiss'), + RgbInt8Color.rgbName(0xf1, 0xce, 0xb3, 'alesan'), + RgbInt8Color.rgbName(0xf2, 0xd3, 0xbc, 'nude'), + RgbInt8Color.rgbName(0xe9, 0xd4, 0xc3, 'mother of pearl'), + RgbInt8Color.rgbName(0xed, 0xd2, 0xc0, 'linen'), + RgbInt8Color.rgbName(0xe5, 0xd7, 0xc5, 'pq-9183c'), + RgbInt8Color.rgbName(0xe9, 0xd5, 0xcd, 'pq-9242c'), + RgbInt8Color.rgbName(0xed, 0xd0, 0xce, 'crystal pink'), + RgbInt8Color.rgbName(0xec, 0xd6, 0xd6, 'mauve morn'), + RgbInt8Color.rgbName(0xea, 0xd5, 0xd2, 'pq-9262c'), + RgbInt8Color.rgbName(0xe9, 0xd8, 0xd7, 'pq-9283c'), + RgbInt8Color.rgbName(0xee, 0xd4, 0xd9, 'primrose pink'), + RgbInt8Color.rgbName(0xf2, 0xcf, 0xdc, 'ballerina'), + RgbInt8Color.rgbName(0xef, 0xd7, 0xe5, 'pq-2050c'), + RgbInt8Color.rgbName(0xea, 0xe3, 0xea, 'pq-9023c'), + RgbInt8Color.rgbName(0xfb, 0xd8, 0x72, 'pq-1215c'), + RgbInt8Color.rgbName(0xfd, 0xd8, 0x78, 'lemon drop'), + RgbInt8Color.rgbName(0xfb, 0xdd, 0x7a, 'pq-2004c'), + RgbInt8Color.rgbName(0xfa, 0xde, 0x85, 'sunshine'), + RgbInt8Color.rgbName(0xf8, 0xde, 0x8d, 'popcorn'), + RgbInt8Color.rgbName(0xf0, 0xdd, 0x9d, 'mellow yellow'), + RgbInt8Color.rgbName(0xf3, 0xe0, 0xac, 'double cream'), + RgbInt8Color.rgbName(0xef, 0xdb, 0xb2, 'pq-7506c'), + RgbInt8Color.rgbName(0xef, 0xdc, 0xc3, 'shortbread'), + RgbInt8Color.rgbName(0xf0, 0xde, 0xbd, 'alabaster gleam'), + RgbInt8Color.rgbName(0xf3, 0xe0, 0xbe, 'vanilla custard'), + RgbInt8Color.rgbName(0xed, 0xdc, 0xc9, 'white smoke'), + RgbInt8Color.rgbName(0xed, 0xde, 0xcd, 'pq-9202c'), + RgbInt8Color.rgbName(0xed, 0xe3, 0xd2, 'antique white'), + RgbInt8Color.rgbName(0xe8, 0xe3, 0xd9, 'tofu'), + RgbInt8Color.rgbName(0xec, 0xe1, 0xd3, 'eggnog'), + RgbInt8Color.rgbName(0xee, 0xde, 0xd1, 'dew'), + RgbInt8Color.rgbName(0xed, 0xe1, 0xcf, 'pq-9185c'), + RgbInt8Color.rgbName(0xf0, 0xdd, 0xd7, 'pq-9241c'), + RgbInt8Color.rgbName(0xef, 0xd7, 0xd4, 'pq-9261c'), + RgbInt8Color.rgbName(0xee, 0xe2, 0xdd, 'bridal blush'), + RgbInt8Color.rgbName(0xe7, 0xe7, 0xe0, 'pq-9100c'), + RgbInt8Color.rgbName(0xf2, 0xdd, 0xde, 'pq-9281c'), + RgbInt8Color.rgbName(0xef, 0xda, 0xdb, 'pq-9282c'), + RgbInt8Color.rgbName(0xf0, 0xdb, 0xe1, 'pq-9301c'), + RgbInt8Color.rgbName(0xf2, 0xde, 0xe9, 'pq-9320c'), + RgbInt8Color.rgbName(0xff, 0xe6, 0x71, 'pq-924c'), + RgbInt8Color.rgbName(0xf9, 0xe1, 0x7d, 'pq-2002c'), + RgbInt8Color.rgbName(0xf6, 0xe3, 0xb4, 'flan'), + RgbInt8Color.rgbName(0xf4, 0xe3, 0xb5, 'anise flower'), + RgbInt8Color.rgbName(0xf4, 0xe4, 0xc1, 'almond oil'), + RgbInt8Color.rgbName(0xf4, 0xe5, 0xc0, 'pq-9160c'), + RgbInt8Color.rgbName(0xf3, 0xe6, 0xc9, 'afterglow'), + RgbInt8Color.rgbName(0xf4, 0xe3, 0xc9, 'pq-9181c'), + RgbInt8Color.rgbName(0xef, 0xe4, 0xce, 'pq-9184c'), + RgbInt8Color.rgbName(0xed, 0xe6, 0xdb, 'whisper white'), + RgbInt8Color.rgbName(0xf0, 0xe6, 0xd8, 'pq-9225c'), + RgbInt8Color.rgbName(0xeb, 0xe3, 0xd7, 'pq-9226c'), + RgbInt8Color.rgbName(0xed, 0xe6, 0xde, 'jet stream'), + RgbInt8Color.rgbName(0xf1, 0xe6, 0xde, 'sea salt'), + RgbInt8Color.rgbName(0xef, 0xeb, 0xe7, 'white alyssum'), + RgbInt8Color.rgbName(0xf1, 0xe7, 0xe4, 'pq-9021c'), + RgbInt8Color.rgbName(0xf0, 0xe7, 0xe9, 'pq-9022c'), + RgbInt8Color.rgbName(0xee, 0xe9, 0xea, 'pq-9345c'), + RgbInt8Color.rgbName(0xff, 0xf3, 0x6d, 'pq-903c'), + RgbInt8Color.rgbName(0xff, 0xe9, 0x83, 'pq-931c'), + RgbInt8Color.rgbName(0xfd, 0xf3, 0x8a, 'pq-910c'), + RgbInt8Color.rgbName(0xfc, 0xee, 0xa8, 'pq-938c'), + RgbInt8Color.rgbName(0xf3, 0xea, 0xc3, 'pear sorbet'), + RgbInt8Color.rgbName(0xf4, 0xec, 0xc2, 'transparent yellow'), + RgbInt8Color.rgbName(0xf6, 0xeb, 0xc8, 'lemon icing'), + RgbInt8Color.rgbName(0xf0, 0xea, 0xd6, 'sweet corn'), + RgbInt8Color.rgbName(0xf5, 0xed, 0xd6, 'papyrus'), + RgbInt8Color.rgbName(0xf5, 0xec, 0xd2, 'winter white'), + RgbInt8Color.rgbName(0xf1, 0xf0, 0xd8, 'pq-9060c'), + RgbInt8Color.rgbName(0xf0, 0xea, 0xda, 'vanilla ice'), + RgbInt8Color.rgbName(0xf0, 0xef, 0xe2, 'cannoli cream'), + RgbInt8Color.rgbName(0xf1, 0xf1, 0xde, 'pq-9064c'), + RgbInt8Color.rgbName(0xf3, 0xee, 0xe7, 'sugar swizzle'), + RgbInt8Color.rgbName(0xf0, 0xed, 0xe5, 'coconut milk'), + RgbInt8Color.rgbName(0xf0, 0xee, 0xe9, 'cloud dancer'), + RgbInt8Color.rgbName(0xef, 0xef, 0xe8, 'star white'), + RgbInt8Color.rgbName(0xf0, 0xee, 0xe4, 'marshmallow'), + RgbInt8Color.rgbName(0xf2, 0xf0, 0xeb, 'snow white'), + RgbInt8Color.rgbName(0xff, 0x6f, 0x61, 'living coral'), + RgbInt8Color.rgbName(0xff, 0x6d, 0x6a, 'pq-2345c'), + RgbInt8Color.rgbName(0xff, 0x72, 0x76, 'pq-805c'), + RgbInt8Color.rgbName(0xff, 0x80, 0x8b, 'pq-177c'), + RgbInt8Color.rgbName(0xfe, 0x88, 0x63, 'melon'), + RgbInt8Color.rgbName(0xff, 0x7f, 0x6a, 'fresh salmon'), + RgbInt8Color.rgbName(0xff, 0x85, 0x76, 'fusion coral'), + RgbInt8Color.rgbName(0xff, 0x86, 0x56, 'nectarine'), + RgbInt8Color.rgbName(0xff, 0x8c, 0x55, 'bird of paradise'), + RgbInt8Color.rgbName(0xff, 0x8d, 0x6d, 'pq-1635c'), + RgbInt8Color.rgbName(0xff, 0x86, 0x74, 'pq-170c'), + RgbInt8Color.rgbName(0xff, 0x8f, 0x6c, 'pq-811c'), + RgbInt8Color.rgbName(0xfc, 0x8f, 0x9b, 'conch shell'), + RgbInt8Color.rgbName(0xff, 0x8d, 0x94, 'salmon rose'), + RgbInt8Color.rgbName(0xfc, 0x9b, 0xb3, 'pq-183c'), + RgbInt8Color.rgbName(0xff, 0x96, 0x87, 'desert flower'), + RgbInt8Color.rgbName(0xfa, 0x9a, 0x85, 'peach pink'), + RgbInt8Color.rgbName(0xfe, 0x9b, 0x96, 'pq-3572c'), + RgbInt8Color.rgbName(0xfe, 0xa1, 0x66, 'papaya'), + RgbInt8Color.rgbName(0xff, 0x9d, 0x6e, 'pq-163c'), + RgbInt8Color.rgbName(0xff, 0xa1, 0x77, 'cantaloupe'), + RgbInt8Color.rgbName(0xfb, 0x9f, 0x93, 'peach amber'), + RgbInt8Color.rgbName(0xfc, 0xa2, 0x89, 'papaya punch'), + RgbInt8Color.rgbName(0xf8, 0xa3, 0x9d, 'candlelight peach'), + RgbInt8Color.rgbName(0xff, 0x9d, 0xa7, 'pq-905c'), + RgbInt8Color.rgbName(0xff, 0xa3, 0xb5, 'pq-1765c'), + RgbInt8Color.rgbName(0xff, 0xa3, 0x68, 'mock orange'), + RgbInt8Color.rgbName(0xff, 0xa0, 0x6a, 'pq-1565c'), + RgbInt8Color.rgbName(0xff, 0xa3, 0x8b, 'pq-1625c'), + RgbInt8Color.rgbName(0xfa, 0xaa, 0x94, 'salmon'), + RgbInt8Color.rgbName(0xf5, 0xb6, 0xcd, 'pq-1895c'), + RgbInt8Color.rgbName(0xf8, 0xbe, 0xd6, 'pq-2036c'), + RgbInt8Color.rgbName(0xff, 0xae, 0x62, 'pq-1485c'), + RgbInt8Color.rgbName(0xfe, 0xad, 0x77, 'pq-7410c'), + RgbInt8Color.rgbName(0xfe, 0xaa, 0x7b, 'salmon buff'), + RgbInt8Color.rgbName(0xff, 0xb1, 0x81, 'peach cobbler'), + RgbInt8Color.rgbName(0xf4, 0xba, 0x94, 'caramel cream'), + RgbInt8Color.rgbName(0xff, 0xad, 0x93, 'pq-925c'), + RgbInt8Color.rgbName(0xfe, 0xae, 0xa5, 'apricot blush'), + RgbInt8Color.rgbName(0xfd, 0xb2, 0xa8, 'peach bud'), + RgbInt8Color.rgbName(0xff, 0xac, 0xb6, 'pq-912c'), + RgbInt8Color.rgbName(0xfc, 0xae, 0xbb, 'pq-red0331c'), + RgbInt8Color.rgbName(0xfc, 0xaf, 0xc0, 'pq-1767c'), + RgbInt8Color.rgbName(0xff, 0xb1, 0xbb, 'pq-176c'), + RgbInt8Color.rgbName(0xf3, 0xbb, 0xca, 'orchid pink'), + RgbInt8Color.rgbName(0xf9, 0xb5, 0xc4, 'pq-707c'), + RgbInt8Color.rgbName(0xf1, 0xc3, 0xd3, 'pq-3568c'), + RgbInt8Color.rgbName(0xff, 0xb8, 0x65, 'warm apricot'), + RgbInt8Color.rgbName(0xff, 0xb6, 0x73, 'pq-2016c'), + RgbInt8Color.rgbName(0xf6, 0xc2, 0x89, 'sunburst'), + RgbInt8Color.rgbName(0xff, 0xb9, 0x90, 'pq-1555c'), + RgbInt8Color.rgbName(0xfb, 0xb9, 0x95, 'beach sand'), + RgbInt8Color.rgbName(0xff, 0xb5, 0x9b, 'peach nectar'), + RgbInt8Color.rgbName(0xf4, 0xc2, 0x9f, 'almond cream'), + RgbInt8Color.rgbName(0xff, 0xb2, 0xa5, 'peach pearl'), + RgbInt8Color.rgbName(0xf8, 0xbf, 0xa8, 'peach parfait'), + RgbInt8Color.rgbName(0xff, 0xb3, 0xab, 'pq-169c'), + RgbInt8Color.rgbName(0xfa, 0xbb, 0xcb, 'pq-182c'), + RgbInt8Color.rgbName(0xf2, 0xc6, 0xcf, 'pq-496c'), + RgbInt8Color.rgbName(0xf7, 0xce, 0xe0, 'cherry blossom'), + RgbInt8Color.rgbName(0xff, 0xbb, 0x7c, 'buff orange'), + RgbInt8Color.rgbName(0xff, 0xc2, 0x7b, 'pq-149c'), + RgbInt8Color.rgbName(0xfd, 0xbe, 0x87, 'pq-713c'), + RgbInt8Color.rgbName(0xf8, 0xc1, 0x9a, 'cream blush'), + RgbInt8Color.rgbName(0xfb, 0xbe, 0x99, 'apricot ice'), + RgbInt8Color.rgbName(0xff, 0xbe, 0x98, 'peach fuzz'), + RgbInt8Color.rgbName(0xff, 0xbe, 0x9f, 'pq-162c'), + RgbInt8Color.rgbName(0xfb, 0xbd, 0xaf, 'peach melba'), + RgbInt8Color.rgbName(0xf4, 0xc9, 0xb1, 'bellini'), + RgbInt8Color.rgbName(0xf8, 0xc1, 0xb8, 'pq-2337c'), + RgbInt8Color.rgbName(0xf4, 0xc6, 0xc3, 'english rose'), + RgbInt8Color.rgbName(0xf4, 0xc3, 0xc4, 'strawberry cream'), + RgbInt8Color.rgbName(0xf4, 0xc3, 0xcc, 'pq-699c'), + RgbInt8Color.rgbName(0xff, 0xc0, 0xc8, 'pq-919c'), + RgbInt8Color.rgbName(0xff, 0xcf, 0x73, 'banana cream'), + RgbInt8Color.rgbName(0xff, 0xc8, 0x7d, 'flax'), + RgbInt8Color.rgbName(0xfd, 0xd0, 0x86, 'pq-1345c'), + RgbInt8Color.rgbName(0xfe, 0xcb, 0x8b, 'pq-148c'), + RgbInt8Color.rgbName(0xff, 0xcd, 0x8a, 'pq-904c'), + RgbInt8Color.rgbName(0xf8, 0xce, 0x97, 'impala'), + RgbInt8Color.rgbName(0xfc, 0xc8, 0x9b, 'pq-712c'), + RgbInt8Color.rgbName(0xfa, 0xcd, 0x9e, 'apricot sherbet'), + RgbInt8Color.rgbName(0xfc, 0xca, 0xac, 'bleached apricot'), + RgbInt8Color.rgbName(0xf8, 0xcf, 0xa9, 'pq-2015c'), + RgbInt8Color.rgbName(0xf3, 0xcf, 0xb3, 'pq-475c'), + RgbInt8Color.rgbName(0xef, 0xcf, 0xba, 'peach purée'), + RgbInt8Color.rgbName(0xf4, 0xce, 0xc5, 'pearl blush'), + RgbInt8Color.rgbName(0xf7, 0xc8, 0xc2, 'seashell pink'), + RgbInt8Color.rgbName(0xfa, 0xc8, 0xc3, 'gossamer pink'), + RgbInt8Color.rgbName(0xf8, 0xcd, 0xc9, 'veiled rose'), + RgbInt8Color.rgbName(0xf5, 0xd1, 0xc8, 'cloud pink'), + RgbInt8Color.rgbName(0xf7, 0xcd, 0xc7, 'pink salt'), + RgbInt8Color.rgbName(0xf7, 0xca, 0xc9, 'rose quartz'), + RgbInt8Color.rgbName(0xf4, 0xcd, 0xd4, 'pq-7422c'), + RgbInt8Color.rgbName(0xfa, 0xc9, 0xd1, 'pq-9284c'), + RgbInt8Color.rgbName(0xf2, 0xd4, 0xd7, 'pq-698c'), + RgbInt8Color.rgbName(0xf7, 0xce, 0xd7, 'pq-706c'), + RgbInt8Color.rgbName(0xfe, 0xd7, 0x77, 'snapdragon'), + RgbInt8Color.rgbName(0xfe, 0xd8, 0x80, 'pq-2005c'), + RgbInt8Color.rgbName(0xf8, 0xe0, 0x8e, 'pq-1205c'), + RgbInt8Color.rgbName(0xfb, 0xd8, 0x97, 'golden haze'), + RgbInt8Color.rgbName(0xfc, 0xd2, 0x99, 'pq-7507c'), + RgbInt8Color.rgbName(0xf2, 0xd6, 0xae, 'cornhusk'), + RgbInt8Color.rgbName(0xf5, 0xd7, 0xaf, 'apricot gelato'), + RgbInt8Color.rgbName(0xf8, 0xd5, 0xb8, 'tender peach'), + RgbInt8Color.rgbName(0xfe, 0xd1, 0xbd, 'pale peach'), + RgbInt8Color.rgbName(0xed, 0xd6, 0xc4, 'pq-9221c'), + RgbInt8Color.rgbName(0xf4, 0xd8, 0xc6, 'vanilla cream'), + RgbInt8Color.rgbName(0xf0, 0xd8, 0xcc, 'pink champagne'), + RgbInt8Color.rgbName(0xf5, 0xd6, 0xc6, 'crème de pêche'), + RgbInt8Color.rgbName(0xf2, 0xd8, 0xcd, 'soft pink'), + RgbInt8Color.rgbName(0xf7, 0xd5, 0xcc, 'creole pink'), + RgbInt8Color.rgbName(0xf7, 0xd1, 0xd1, 'pink dogwood'), + RgbInt8Color.rgbName(0xf7, 0xd1, 0xd4, 'mary\'s rose'), + RgbInt8Color.rgbName(0xfb, 0xd3, 0xd9, 'blushing bride'), + RgbInt8Color.rgbName(0xf8, 0xd7, 0xdd, 'barely pink'), + RgbInt8Color.rgbName(0xf4, 0xe1, 0xe6, 'shrinking violet'), + RgbInt8Color.rgbName(0xf5, 0xda, 0xdf, 'pq-705c'), + RgbInt8Color.rgbName(0xf4, 0xdd, 0xe2, 'pq-9300c'), + RgbInt8Color.rgbName(0xf6, 0xe1, 0x99, 'lemon meringue'), + RgbInt8Color.rgbName(0xfa, 0xe1, 0x99, 'pale banana'), + RgbInt8Color.rgbName(0xf8, 0xe5, 0x9a, 'pq-2001c'), + RgbInt8Color.rgbName(0xf5, 0xe1, 0xa4, 'pq-7401c'), + RgbInt8Color.rgbName(0xff, 0xdf, 0xb4, 'pq-918c'), + RgbInt8Color.rgbName(0xf0, 0xdf, 0xcc, 'pearled ivory'), + RgbInt8Color.rgbName(0xf4, 0xe1, 0xc1, 'vanilla'), + RgbInt8Color.rgbName(0xef, 0xe0, 0xcd, 'buttercream'), + RgbInt8Color.rgbName(0xf3, 0xdf, 0xca, 'ecru'), + RgbInt8Color.rgbName(0xf5, 0xe1, 0xcc, 'pq-9200c'), + RgbInt8Color.rgbName(0xf3, 0xdf, 0xd7, 'angel wing'), + RgbInt8Color.rgbName(0xf3, 0xe0, 0xd6, 'powder puff'), + RgbInt8Color.rgbName(0xf6, 0xdb, 0xd8, 'rosewater'), + RgbInt8Color.rgbName(0xf5, 0xe0, 0xcf, 'pq-9220c'), + RgbInt8Color.rgbName(0xf2, 0xe2, 0xe0, 'petal pink'), + RgbInt8Color.rgbName(0xf9, 0xdb, 0xd8, 'pearl'), + RgbInt8Color.rgbName(0xf4, 0xde, 0xde, 'heavenly pink'), + RgbInt8Color.rgbName(0xf5, 0xde, 0xda, 'pq-9260c'), + RgbInt8Color.rgbName(0xf6, 0xdf, 0xe0, 'pq-9286c'), + RgbInt8Color.rgbName(0xf5, 0xe3, 0xe2, 'delicacy'), + RgbInt8Color.rgbName(0xf8, 0xe0, 0xe7, 'rose water'), + RgbInt8Color.rgbName(0xf5, 0xe2, 0xe2, 'pq-9280c'), + RgbInt8Color.rgbName(0xf2, 0xe9, 0xea, 'pq-9061c'), + RgbInt8Color.rgbName(0xf3, 0xe4, 0xcd, 'pq-9180c'), + RgbInt8Color.rgbName(0xf5, 0xe3, 0xcc, 'pq-9201c'), + RgbInt8Color.rgbName(0xf2, 0xe8, 0xda, 'pristine'), + RgbInt8Color.rgbName(0xf2, 0xe9, 0xdb, 'pq-9224c'), + RgbInt8Color.rgbName(0xf3, 0xec, 0xe0, 'egret'), + RgbInt8Color.rgbName(0xf1, 0xe8, 0xdf, 'gardenia'), + RgbInt8Color.rgbName(0xf6, 0xe4, 0xd9, 'cream pink'), + RgbInt8Color.rgbName(0xf6, 0xe5, 0xdb, 'sheer pink'), + RgbInt8Color.rgbName(0xf4, 0xe5, 0xde, 'pq-9240c'), + RgbInt8Color.rgbName(0xf3, 0xe9, 0xe2, 'pq-9244c'), + RgbInt8Color.rgbName(0xf2, 0xeb, 0xe7, 'pq-9285c'), + RgbInt8Color.rgbName(0xff, 0xbb, 0x9e, 'prairie sunset'), + RgbInt8Color.rgbName(0xff, 0xbb, 0xa4, 'pq-932c'), + RgbInt8Color.rgbName(0xfd, 0xc3, 0xc6, 'crystal rose'), + RgbInt8Color.rgbName(0xf9, 0xc2, 0xcd, 'rose shadow'), + RgbInt8Color.rgbName(0xff, 0xc4, 0xb2, 'tropical peach'), + RgbInt8Color.rgbName(0xff, 0xc4, 0xbc, 'impatiens pink'), + RgbInt8Color.rgbName(0xff, 0xcd, 0xa8, 'creampuff'), + RgbInt8Color.rgbName(0xff, 0xcf, 0xbe, 'pq-939c'), + RgbInt8Color.rgbName(0xfb, 0xd8, 0xc9, 'scallop shell'), + RgbInt8Color.rgbName(0xff, 0xd9, 0xa4, 'pq-911c'), +]; diff --git a/lib/src/palettes/ral.dart b/lib/src/palettes/ral.dart new file mode 100644 index 0000000..d698b7b --- /dev/null +++ b/lib/src/palettes/ral.dart @@ -0,0 +1,19283 @@ +part of '../../uni_color_palette.dart'; + +/// Source: https://ral-farben.de/alle-ral-farben +/// Helper sheet: https://docs.google.com/spreadsheets/d/1f8wvrgqfGcXFAiAXx-p9CgLXo3__IoEn8-Us-uRyfok/edit#gid=783654737 +final ralColors = [ + RgbInt8Color.rgbNames( + 0x25, + 0x26, + 0x26, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ink black']), + ), + RgbInt8Color.rgbNames( + 0x2e, + 0x2f, + 0x2f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['slate black']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x3c, + 0x3d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['onyx black']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x45, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['medium black']), + ), + RgbInt8Color.rgbNames( + 0x50, + 0x51, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['briquette grey']), + ), + RgbInt8Color.rgbNames( + 0x5c, + 0x5c, + 0x5c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark grey']), + ), + RgbInt8Color.rgbNames( + 0x69, + 0x69, + 0x69, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['architecture grey']), + ), + RgbInt8Color.rgbNames( + 0x73, + 0x75, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['steel grey']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x80, + 0x81, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['medium grey']), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x8d, + 0x8d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ash grey']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0x9c, + 0x9d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mortar grey']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0xaa, + 0xaa, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'light grey', + 'світло-сірий', + 'lichtgrau', + 'gris clair', + 'gris luminoso', + 'grigio luce', + 'lichtgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0xb8, + 0xb8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['marble grey']), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0xc6, + 0xc5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['foggy grey']), + ), + RgbInt8Color.rgbNames( + 0xd3, + 0xd4, + 0xd2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['shadow white']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0xe1, + 0xdf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['winter white']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x2d, + 0x2f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wenge black']), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x27, + 0x2c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cherry black']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x24, + 0x2b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark mahogany']), + ), + RgbInt8Color.rgbNames( + 0x48, + 0x20, + 0x2b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rusty red']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x42, + 0x44, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['laurel nut rusty brown']), + ), + RgbInt8Color.rgbNames( + 0x57, + 0x3e, + 0x43, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['night mauve']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x3b, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pinkish brown']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x36, + 0x40, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chestnut red']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x32, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['leather red']), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0x2b, + 0x3b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['anthracite red']), + ), + RgbInt8Color.rgbNames( + 0x73, + 0x21, + 0x39, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brown magenta']), + ), + RgbInt8Color.rgbNames( + 0x79, + 0x14, + 0x3b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['atlas red']), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0x59, + 0x5b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['caput mortuum grey red']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x54, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rust brown']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x52, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sunset red']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x4e, + 0x57, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mineral red']), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x49, + 0x55, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dull magenta']), + ), + RgbInt8Color.rgbNames( + 0x85, + 0x44, + 0x52, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['velvet red']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x3d, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['algae red']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0x38, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['raspberry ice cream red']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x30, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fuchsia red']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x27, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['primal red']), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x70, + 0x74, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['old mahogany']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0x6c, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dull dusky pink']), + ), + RgbInt8Color.rgbNames( + 0x8d, + 0x68, + 0x6f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brickwork red']), + ), + RgbInt8Color.rgbNames( + 0x95, + 0x64, + 0x6e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['matte carmine']), + ), + RgbInt8Color.rgbNames( + 0x9d, + 0x5f, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['marble red']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0x5a, + 0x6a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['geranium red']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0x57, + 0x6a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['slate pink']), + ), + RgbInt8Color.rgbNames( + 0xab, + 0x51, + 0x68, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tulip red']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0x48, + 0x67, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vibrant red']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0x89, + 0x8c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lilac grey']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0x86, + 0x8b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice orchid red']), + ), + RgbInt8Color.rgbNames( + 0xab, + 0x82, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lime pink']), + ), + RgbInt8Color.rgbNames( + 0xb2, + 0x7c, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lipstick pink']), + ), + RgbInt8Color.rgbNames( + 0xb8, + 0x78, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['japanese coral']), + ), + RgbInt8Color.rgbNames( + 0xc0, + 0x73, + 0x84, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rose red']), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0x6e, + 0x82, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['strawberry milkshake red']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0x69, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['luminous pink']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0xa4, + 0xa7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pale mauve']), + ), + RgbInt8Color.rgbNames( + 0xbf, + 0xa0, + 0xa5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['powder rose']), + ), + RgbInt8Color.rgbNames( + 0xc8, + 0x9c, + 0xa4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silver rose']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0x97, + 0xa2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['flamingo pink']), + ), + RgbInt8Color.rgbNames( + 0xd5, + 0x94, + 0xa0, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cherry blossom pink']), + ), + RgbInt8Color.rgbNames( + 0xdd, + 0x8e, + 0x9d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['baby pink']), + ), + RgbInt8Color.rgbNames( + 0xd5, + 0xbe, + 0xc0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mud pink']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xba, + 0xbf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice hot pink']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xb7, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pastel pink']), + ), + RgbInt8Color.rgbNames( + 0xd8, + 0xce, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pearl rose']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xca, + 0xce, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['salmon rose']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0xc8, + 0xce, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['milkshake pink']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xc7, + 0xce, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['carnation pink']), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xde, + 0xdc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rose cream']), + ), + RgbInt8Color.rgbNames( + 0xed, + 0xd8, + 0xd6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light apricot']), + ), + RgbInt8Color.rgbNames( + 0xed, + 0xe3, + 0xe5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['white-red']), + ), + RgbInt8Color.rgbNames( + 0x35, + 0x2e, + 0x2e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deep brown']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x2a, + 0x2b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['night red']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x26, + 0x29, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark red brown']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x1a, + 0x23, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['burgundy']), + ), + RgbInt8Color.rgbNames( + 0x4b, + 0x43, + 0x43, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rhodonite brown']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x40, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['budapest brown']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x3a, + 0x3b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kremlin red']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x30, + 0x35, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crystal dark red']), + ), + RgbInt8Color.rgbNames( + 0x72, + 0x24, + 0x32, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['amaranth blossom']), + ), + RgbInt8Color.rgbNames( + 0x7a, + 0x0b, + 0x2d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sweet cherry red']), + ), + RgbInt8Color.rgbNames( + 0x64, + 0x5b, + 0x5b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['greyish brown']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x57, + 0x57, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'nut brown', + 'горіхово-коричневий', + 'nussbraun', + 'brun noisette', + 'pardo nuez', + 'marrone noce', + 'notenbruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x51, + 0x52, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['antique red']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x49, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hermosa pink']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x3e, + 0x47, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['october red']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0x2e, + 0x40, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bright red']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x73, + 0x72, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['zircon grey']), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x6f, + 0x6f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sandstone red grey']), + ), + RgbInt8Color.rgbNames( + 0x8e, + 0x69, + 0x69, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['red grey']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0x61, + 0x63, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['venetian red']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0x56, + 0x5e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['alsike clover red']), + ), + RgbInt8Color.rgbNames( + 0xb1, + 0x4b, + 0x59, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'flame red', + 'вогняно-червоний', + 'feuerrot', + 'rouge feu', + 'rojo vivo', + 'rosso fuoco', + 'vuurrood' + ]), + ), + RgbInt8Color.rgbNames( + 0xbf, + 0x43, + 0x55, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lingonberry red']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x8b, + 0x8b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['globe thistle grey rose']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x88, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tin pink']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0x82, + 0x83, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['retro pink']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0x79, + 0x7c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['begonia rusty rose']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0x70, + 0x78, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lotus red']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0xa6, + 0xa6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fashion mauve']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0xa2, + 0xa2, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tourmaline mauve']), + ), + RgbInt8Color.rgbNames( + 0xc7, + 0x9d, + 0x9f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rosewood apricot']), + ), + RgbInt8Color.rgbNames( + 0xd5, + 0x95, + 0x98, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['marker pink']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xc3, + 0xc2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aurora grey']), + ), + RgbInt8Color.rgbNames( + 0xd3, + 0xbd, + 0xbd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['quartz rose']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xb7, + 0xba, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['marzipan pink']), + ), + RgbInt8Color.rgbNames( + 0xda, + 0xcf, + 0xce, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['almond blossom pink']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0xca, + 0xca, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['salmon cream']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xc7, + 0xc6, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['elegant light rose']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0xe1, + 0xdc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mussel white']), + ), + RgbInt8Color.rgbNames( + 0xed, + 0xdb, + 0xd7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['peach cream']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xe4, + 0xe1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blossom white']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x43, + 0x40, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['laurel nut rusty brown']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x3c, + 0x38, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['autumn leaf red']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x34, + 0x30, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['macore veneer red']), + ), + RgbInt8Color.rgbNames( + 0x72, + 0x2b, + 0x2c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crimson red']), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x25, + 0x29, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blood red']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x58, + 0x55, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['peat red brown']), + ), + RgbInt8Color.rgbNames( + 0x75, + 0x54, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cranberry red']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x4d, + 0x48, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brick brown']), + ), + RgbInt8Color.rgbNames( + 0x8a, + 0x43, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spicy red']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x38, + 0x38, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hibiscus red']), + ), + RgbInt8Color.rgbNames( + 0x9f, + 0x28, + 0x33, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['emperor cherry red']), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x6f, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['earth red']), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x6a, + 0x64, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['terracotta red brown']), + ), + RgbInt8Color.rgbNames( + 0x99, + 0x63, + 0x5c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clay red']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0x5c, + 0x55, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vermilion red']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0x52, + 0x4e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['maple red']), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0x44, + 0x44, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['holland red']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0x89, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['storm red']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0x83, + 0x7e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['desert red']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0x76, + 0x74, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'antique pink', + 'антично-рожевий', + 'altrosa', + 'vieux rose', + 'rojo viejo', + 'rosa antico', + 'oudroze' + ]), + ), + RgbInt8Color.rgbNames( + 0xc1, + 0x75, + 0x6e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light tomato']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0x6b, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['calypso red']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0xa3, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['florida grey']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0x9b, + 0x95, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dull apricot']), + ), + RgbInt8Color.rgbNames( + 0xd3, + 0x95, + 0x8d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['salmon pink red']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0x8d, + 0x85, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['flamingo red']), + ), + RgbInt8Color.rgbNames( + 0xd3, + 0xbd, + 0xba, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['salt pink']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xb6, + 0xb2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['magnolia pink']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xcc, + 0xc7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['almond cream']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xca, + 0xc5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soft ice rose']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0xc9, + 0xbf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['peach red']), + ), + RgbInt8Color.rgbNames( + 0xea, + 0xde, + 0xda, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['antique white']), + ), + RgbInt8Color.rgbNames( + 0xf0, + 0xdd, + 0xd6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wedding pink']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xe8, + 0xe4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['parchment white']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x2b, + 0x21, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wild brown']), + ), + RgbInt8Color.rgbNames( + 0x4b, + 0x44, + 0x41, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['basalt black']), + ), + RgbInt8Color.rgbNames( + 0x4e, + 0x41, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['caviar black']), + ), + RgbInt8Color.rgbNames( + 0x59, + 0x3d, + 0x32, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['coffee brown']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x37, + 0x29, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['root brown']), + ), + RgbInt8Color.rgbNames( + 0x6d, + 0x34, + 0x25, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['corrosion red']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x5b, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ash brown']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x59, + 0x52, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['somali brown']), + ), + RgbInt8Color.rgbNames( + 0x72, + 0x55, + 0x4a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vandyck brown']), + ), + RgbInt8Color.rgbNames( + 0x7b, + 0x4e, + 0x3e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'chestnut brown', + 'каштаново-коричневий', + 'kastanienbraun', + 'marron', + 'castaño', + 'marrone castagna', + 'kastanjebruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x85, + 0x45, + 0x32, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brick red']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0x41, + 0x2a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['henna red']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x34, + 0x1e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['copper red']), + ), + RgbInt8Color.rgbNames( + 0xa0, + 0x33, + 0x26, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['china red']), + ), + RgbInt8Color.rgbNames( + 0x7b, + 0x73, + 0x70, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nomad grey']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x71, + 0x6a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['umbra sand']), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x6c, + 0x60, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['agate brown']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x66, + 0x55, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rust coloured']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0x60, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ant red']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0x58, + 0x40, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['english red']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0x52, + 0x37, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fox red']), + ), + RgbInt8Color.rgbNames( + 0xbf, + 0x4a, + 0x30, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pompeii red']), + ), + RgbInt8Color.rgbNames( + 0x95, + 0x8c, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['warm grey']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x8a, + 0x82, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light caramel']), + ), + RgbInt8Color.rgbNames( + 0xa5, + 0x83, + 0x76, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sienna yellow']), + ), + RgbInt8Color.rgbNames( + 0xb3, + 0x80, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cedar red']), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0x79, + 0x61, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['terra orange']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0x73, + 0x57, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mandarin orange']), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0x6c, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['coral orange']), + ), + RgbInt8Color.rgbNames( + 0xaf, + 0xa6, + 0xa3, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['passepartout grey']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0xa4, + 0x9c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mohair mauve']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0x9f, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soft sienna']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0x99, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['industrial rose']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0x95, + 0x7c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['apricot red']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0x8d, + 0x6f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fruit red']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0xc3, + 0xbf, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['natural silk grey']), + ), + RgbInt8Color.rgbNames( + 0xd5, + 0xc2, + 0xb9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['thulite rose']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xbe, + 0xaf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['madder orange']), + ), + RgbInt8Color.rgbNames( + 0xf0, + 0xb8, + 0xa3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nature apricot']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xd0, + 0xcb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pandora grey']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xcf, + 0xc5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fine alabaster']), + ), + RgbInt8Color.rgbNames( + 0xf0, + 0xca, + 0xb9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['delicate sweet apricot']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0xe0, + 0xd9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sahara light red']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xdf, + 0xd3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['delicate rose']), + ), + RgbInt8Color.rgbNames( + 0xf2, + 0xe8, + 0xe1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['natural white']), + ), + RgbInt8Color.rgbNames( + 0x3a, + 0x30, + 0x28, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['granite brown']), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x2d, + 0x21, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['night brown']), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x41, + 0x37, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['obsidian brown']), + ), + RgbInt8Color.rgbNames( + 0x57, + 0x3f, + 0x2d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tropical wood brown']), + ), + RgbInt8Color.rgbNames( + 0x61, + 0x3c, + 0x26, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tobacco brown']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x3b, + 0x20, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rosewood brown']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x5a, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mocha black']), + ), + RgbInt8Color.rgbNames( + 0x6e, + 0x56, + 0x44, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['florentine brown']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0x52, + 0x39, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['curry brown']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x4d, + 0x2a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['madeira brown']), + ), + RgbInt8Color.rgbNames( + 0x8a, + 0x49, + 0x24, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['autumn red']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x74, + 0x69, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['teakwood brown']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x70, + 0x5c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['milk coffee brown']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0x6b, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['golden brown']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0x65, + 0x43, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['copper-metal red']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0x61, + 0x36, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gold varnish brown']), + ), + RgbInt8Color.rgbNames( + 0xaa, + 0x5a, + 0x2a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['titian red']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0x51, + 0x0e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['poppy red']), + ), + RgbInt8Color.rgbNames( + 0xbe, + 0x5b, + 0x1c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['persian orange']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x8b, + 0x7f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ecru ochre']), + ), + RgbInt8Color.rgbNames( + 0xa2, + 0x86, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['caramel brown']), + ), + RgbInt8Color.rgbNames( + 0xb1, + 0x84, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['medium brown']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0x7f, + 0x59, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['apricot brown']), + ), + RgbInt8Color.rgbNames( + 0xc3, + 0x7c, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orange yellow']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0x76, + 0x3e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['camel red']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0x6c, + 0x31, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['carrot orange']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0x66, + 0x21, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gerbera red']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0xa7, + 0x9c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bamboo beige']), + ), + RgbInt8Color.rgbNames( + 0xc0, + 0xa4, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['amber grey']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0x9f, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sienna ochre']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0x9a, + 0x73, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light amber orange']), + ), + RgbInt8Color.rgbNames( + 0xdf, + 0x95, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['melon red']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0x8f, + 0x57, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mango orange']), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0xc3, + 0xb6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pale sienna']), + ), + RgbInt8Color.rgbNames( + 0xdd, + 0xbe, + 0xa6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soft orange']), + ), + RgbInt8Color.rgbNames( + 0xe8, + 0xb9, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pallid orange']), + ), + RgbInt8Color.rgbNames( + 0xdd, + 0xd1, + 0xc9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ocean sand']), + ), + RgbInt8Color.rgbNames( + 0xdd, + 0xcd, + 0xbf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pure beige']), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xcb, + 0xb2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['biscuit cream']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xde, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['eggshell white']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xe1, + 0xd3, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light peach rose']), + ), + RgbInt8Color.rgbNames( + 0xf3, + 0xea, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tulle white']), + ), + RgbInt8Color.rgbNames( + 0x35, + 0x32, + 0x2f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['industrial black']), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x45, + 0x3f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vehicle body grey']), + ), + RgbInt8Color.rgbNames( + 0x4d, + 0x43, + 0x38, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nutria fur brown']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x42, + 0x2d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['peat brown']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x41, + 0x25, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cassiterite brown']), + ), + RgbInt8Color.rgbNames( + 0x61, + 0x5d, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['zinc grey']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x5a, + 0x4e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['moor oak grey']), + ), + RgbInt8Color.rgbNames( + 0x6e, + 0x5a, + 0x42, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['coffee bean brown']), + ), + RgbInt8Color.rgbNames( + 0x75, + 0x57, + 0x35, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brazilian brown']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x56, + 0x2b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['plane brown']), + ), + RgbInt8Color.rgbNames( + 0x7a, + 0x75, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chinchilla grey']), + ), + RgbInt8Color.rgbNames( + 0x7e, + 0x74, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sandstone grey']), + ), + RgbInt8Color.rgbNames( + 0x87, + 0x72, + 0x59, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mushroom brown']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0x70, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mustard brown']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x6c, + 0x3d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['camel brown']), + ), + RgbInt8Color.rgbNames( + 0xa0, + 0x69, + 0x32, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['date fruit brown']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0x62, + 0x17, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['elm brown red']), + ), + RgbInt8Color.rgbNames( + 0xac, + 0x63, + 0x0f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dry clay']), + ), + RgbInt8Color.rgbNames( + 0x95, + 0x90, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['screed grey']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0x8e, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['oak brown']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0x8b, + 0x71, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light topaz ochre']), + ), + RgbInt8Color.rgbNames( + 0xac, + 0x8a, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cognac brown']), + ), + RgbInt8Color.rgbNames( + 0xb8, + 0x8b, + 0x55, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['maple syrup brown']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0x80, + 0x44, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['turmeric red']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0x7e, + 0x32, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bitter orange']), + ), + RgbInt8Color.rgbNames( + 0xc8, + 0x7a, + 0x1e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gold orange']), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0x76, + 0x10, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['accent orange']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0xaa, + 0xa2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cement greige']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0xa9, + 0x9a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['putty grey']), + ), + RgbInt8Color.rgbNames( + 0xbd, + 0xa6, + 0x8a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['peanut butter']), + ), + RgbInt8Color.rgbNames( + 0xc4, + 0xa0, + 0x79, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['peach yellow']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0xa1, + 0x6f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['candle yellow']), + ), + RgbInt8Color.rgbNames( + 0xd8, + 0x9d, + 0x5f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['topaz yellow']), + ), + RgbInt8Color.rgbNames( + 0xdd, + 0x97, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['melon orange']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0x95, + 0x39, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['indian yellow']), + ), + RgbInt8Color.rgbNames( + 0xcc, + 0xc6, + 0xbc, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light chamois beige']), + ), + RgbInt8Color.rgbNames( + 0xd0, + 0xc3, + 0xb4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soft greige']), + ), + RgbInt8Color.rgbNames( + 0xdb, + 0xc2, + 0xa5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['biscuit beige']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0xbf, + 0x93, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mild orange']), + ), + RgbInt8Color.rgbNames( + 0xed, + 0xba, + 0x82, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['apricot orange']), + ), + RgbInt8Color.rgbNames( + 0xdb, + 0xd3, + 0xc9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['champagne rose']), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0xd3, + 0xc1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cornmeal beige']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xcf, + 0xb2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dough yellow']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xcd, + 0xa1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light saffron orange']), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xe2, + 0xd7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grain white']), + ), + RgbInt8Color.rgbNames( + 0xf0, + 0xe0, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vanilla cream']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xdd, + 0xc6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['apricot cream']), + ), + RgbInt8Color.rgbNames( + 0xf3, + 0xeb, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wool white']), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x44, + 0x37, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mineral brown']), + ), + RgbInt8Color.rgbNames( + 0x53, + 0x45, + 0x2e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['beech brown']), + ), + RgbInt8Color.rgbNames( + 0x62, + 0x5c, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mink brown']), + ), + RgbInt8Color.rgbNames( + 0x69, + 0x5a, + 0x3e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['huckleberry brown']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x5a, + 0x33, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['arable brown']), + ), + RgbInt8Color.rgbNames( + 0x75, + 0x58, + 0x23, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['autumn gold']), + ), + RgbInt8Color.rgbNames( + 0x7a, + 0x74, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['saruk grey']), + ), + RgbInt8Color.rgbNames( + 0x83, + 0x73, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ash gold']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0x71, + 0x45, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lion\\\'s mane blonde']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0x6f, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['antique gold']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0x70, + 0x31, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stage gold']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x71, + 0x2b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['theatre gold']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x8c, + 0x7c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light mahogany']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0x8d, + 0x6f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark blond']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0x89, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light oak brown']), + ), + RgbInt8Color.rgbNames( + 0xaa, + 0x89, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grain brown']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0x89, + 0x3b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mud yellow']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0x86, + 0x2a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mustard yellow']), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0x83, + 0x18, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['sea buckthorn yellow brown']), + ), + RgbInt8Color.rgbNames( + 0xbd, + 0x82, + 0x09, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['autumn leaf orange']), + ), + RgbInt8Color.rgbNames( + 0xaf, + 0xa8, + 0x97, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ginger grey yellow']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0xa7, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light ash brown']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xa8, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['golden beige']), + ), + RgbInt8Color.rgbNames( + 0xc9, + 0xa5, + 0x65, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dechant pear yellow']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xa4, + 0x56, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['honeycomb yellow']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xa3, + 0x44, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gorse yellow orange']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0x9d, + 0x2c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['naples yellow']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0x99, + 0x14, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['saffron gold']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xc5, + 0xb2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['flax beige']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xc6, + 0xa2, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['buttercup yellow']), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0xc3, + 0x92, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['golden oat coloured']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xc3, + 0x83, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['apricot yellow']), + ), + RgbInt8Color.rgbNames( + 0xf0, + 0xc1, + 0x70, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['warm apricot']), + ), + RgbInt8Color.rgbNames( + 0xf8, + 0xbf, + 0x5d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['golden rain yellow']), + ), + RgbInt8Color.rgbNames( + 0xd8, + 0xd2, + 0xc6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['almond beige']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xd3, + 0xbf, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silver thistle beige']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0xd1, + 0xab, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sandalwood beige']), + ), + RgbInt8Color.rgbNames( + 0xef, + 0xd2, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hair blonde']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0xe4, + 0xd9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['off white']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xe3, + 0xd0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light corn']), + ), + RgbInt8Color.rgbNames( + 0xf7, + 0xe2, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chalk yellow']), + ), + RgbInt8Color.rgbNames( + 0xf3, + 0xed, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['anemone white']), + ), + RgbInt8Color.rgbNames( + 0x62, + 0x5d, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tree bark brown']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x5b, + 0x40, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['caraway brown']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x59, + 0x30, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bark brown']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x5a, + 0x23, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lizard brown']), + ), + RgbInt8Color.rgbNames( + 0x7b, + 0x75, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rye dough brown']), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x74, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['china cinnamon']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x75, + 0x47, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grog yellow']), + ), + RgbInt8Color.rgbNames( + 0x8d, + 0x73, + 0x37, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['amber brown']), + ), + RgbInt8Color.rgbNames( + 0x91, + 0x72, + 0x24, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cinnamon brown']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0x6f, + 0x04, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cumin ochre']), + ), + RgbInt8Color.rgbNames( + 0x97, + 0x90, + 0x7f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['putty yellow']), + ), + RgbInt8Color.rgbNames( + 0x9d, + 0x8e, + 0x6e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['walnut shell brown']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0x8e, + 0x5f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clay ochre']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0x8e, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['funchal yellow']), + ), + RgbInt8Color.rgbNames( + 0xac, + 0x8c, + 0x3c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mango brown']), + ), + RgbInt8Color.rgbNames( + 0xb2, + 0x89, + 0x25, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['turmeric brown']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0x88, + 0x04, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bamboo brown']), + ), + RgbInt8Color.rgbNames( + 0xb1, + 0xab, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['flax fibre grey']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0xa9, + 0x85, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light pumpkin brown']), + ), + RgbInt8Color.rgbNames( + 0xbf, + 0xa9, + 0x76, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['golden thistle yellow']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0xa7, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brick yellow']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xa6, + 0x55, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deep bamboo yellow']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0xa4, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['intense yellow']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0xa4, + 0x27, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pumpkin yellow']), + ), + RgbInt8Color.rgbNames( + 0xd6, + 0xa2, + 0x09, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['autumn yellow']), + ), + RgbInt8Color.rgbNames( + 0xd0, + 0xc6, + 0xb3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chalk beige']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0xc6, + 0xa2, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light corn yellow']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xc5, + 0x8f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark yellow']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xc3, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ash yellow']), + ), + RgbInt8Color.rgbNames( + 0xe8, + 0xc0, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orient yellow']), + ), + RgbInt8Color.rgbNames( + 0xef, + 0xbf, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['carriage yellow']), + ), + RgbInt8Color.rgbNames( + 0xdf, + 0xd5, + 0xc0, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['water lily white']), + ), + RgbInt8Color.rgbNames( + 0xe6, + 0xd4, + 0xae, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['banana ice cream']), + ), + RgbInt8Color.rgbNames( + 0xed, + 0xd3, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['maple beige']), + ), + RgbInt8Color.rgbNames( + 0xf3, + 0xd2, + 0x8d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['goldenrod yellow']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xe6, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dessert cream']), + ), + RgbInt8Color.rgbNames( + 0xf5, + 0xe2, + 0xbd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['butter white']), + ), + RgbInt8Color.rgbNames( + 0xf2, + 0xee, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vanilla white']), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x31, + 0x2b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['night brown black']), + ), + RgbInt8Color.rgbNames( + 0x35, + 0x31, + 0x22, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vanilla bean brown']), + ), + RgbInt8Color.rgbNames( + 0x49, + 0x45, + 0x3e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['earth black']), + ), + RgbInt8Color.rgbNames( + 0x49, + 0x44, + 0x35, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['olive black']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x44, + 0x28, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clove yellow brown']), + ), + RgbInt8Color.rgbNames( + 0x52, + 0x44, + 0x1f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['smoked oak brown']), + ), + RgbInt8Color.rgbNames( + 0x61, + 0x5d, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['office grey']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x5e, + 0x4e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stone brown']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x5b, + 0x3c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pimento grain brown']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x5b, + 0x2f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ochre green']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x5c, + 0x1b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['autumn leaf brown']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x75, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dusk grey']), + ), + RgbInt8Color.rgbNames( + 0x7b, + 0x76, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rye brown']), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x76, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['greyish yellow']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0x75, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chili green']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0x74, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dirt yellow']), + ), + RgbInt8Color.rgbNames( + 0x8d, + 0x75, + 0x24, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chamois yellow']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0x8f, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['flannel grey']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x8e, + 0x7c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light khaki']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x8f, + 0x6c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spelt grain brown']), + ), + RgbInt8Color.rgbNames( + 0xa0, + 0x8e, + 0x5b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['golden quartz ochre']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0x8e, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bamboo yellow']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0x8e, + 0x3c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brass yellow']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0x8e, + 0x23, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fig mustard yellow']), + ), + RgbInt8Color.rgbNames( + 0xaf, + 0x8d, + 0x08, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['yellow gold']), + ), + RgbInt8Color.rgbNames( + 0xae, + 0xaa, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['garlic beige']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0xaa, + 0x97, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fine greige']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0xaa, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['yellow brown']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0xa9, + 0x76, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mustard seed beige']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xaa, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['diamond yellow']), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0xa9, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['antique brass']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xaa, + 0x40, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['courgette yellow']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xaa, + 0x2c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grapefruit yellow']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0xa7, + 0x06, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sunflower yellow']), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0xa6, + 0x00, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['arnica yellow']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xc6, + 0xbc, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['micaceous light grey']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xc7, + 0xb3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pastel sand']), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0xc6, + 0x9f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['natural rice beige']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xc5, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['yellow beige']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0xc5, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['straw yellow']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xc5, + 0x6c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mirabelle yellow']), + ), + RgbInt8Color.rgbNames( + 0xea, + 0xc5, + 0x57, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['full yellow']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0xc3, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pear yellow']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xc1, + 0x2b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fire yellow']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xc2, + 0x08, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['summer yellow']), + ), + RgbInt8Color.rgbNames( + 0xd8, + 0xd2, + 0xc6, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wheat flour white']), + ), + RgbInt8Color.rgbNames( + 0xdb, + 0xd2, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['onion white']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xd4, + 0xaf, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nashi pear beige']), + ), + RgbInt8Color.rgbNames( + 0xe8, + 0xd3, + 0x9d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vespa yellow']), + ), + RgbInt8Color.rgbNames( + 0xef, + 0xd3, + 0x8a, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['puff pastry yellow']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0xe6, + 0xd9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['japanese white']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0xe3, + 0xcd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mushroom white']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xe1, + 0xbb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['macadamia beige']), + ), + RgbInt8Color.rgbNames( + 0xf8, + 0xe3, + 0xab, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['horseradish yellow']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xeb, + 0xdf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['milk star white']), + ), + RgbInt8Color.rgbNames( + 0x62, + 0x60, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mineral green']), + ), + RgbInt8Color.rgbNames( + 0x64, + 0x5e, + 0x3e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['khaki green']), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0x60, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['moss brown']), + ), + RgbInt8Color.rgbNames( + 0x7a, + 0x77, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['coriander ochre']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x77, + 0x56, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pyrite slate green']), + ), + RgbInt8Color.rgbNames( + 0x83, + 0x78, + 0x47, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sepia yellow']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0x76, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['marshy green']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0x77, + 0x25, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['honey yellow green']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x90, + 0x7f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['matte olive']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0x90, + 0x6e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pond green']), + ), + RgbInt8Color.rgbNames( + 0x9e, + 0x90, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wood green']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0x91, + 0x4e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lichen green']), + ), + RgbInt8Color.rgbNames( + 0xa5, + 0x92, + 0x3b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mineral umber']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0x92, + 0x24, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['loden yellow']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0xaa, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['raffia greige']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0xaa, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['feldspar grey']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0xab, + 0x74, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hay yellow']), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0xaa, + 0x65, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['winter pear beige']), + ), + RgbInt8Color.rgbNames( + 0xc1, + 0xab, + 0x51, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['autumn apple yellow']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xab, + 0x3d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pitmaston pear yellow']), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0xa9, + 0x31, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['immortelle yellow']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0xab, + 0x1f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['golden beryl yellow']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xc6, + 0xb1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['velvet beige']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0xc7, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mineral beige']), + ), + RgbInt8Color.rgbNames( + 0xd8, + 0xc8, + 0x8e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['moonlight yellow']), + ), + RgbInt8Color.rgbNames( + 0xdb, + 0xc8, + 0x7d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['table pear yellow']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xc7, + 0x6b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fruit yellow']), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0xc6, + 0x58, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['adonis rose yellow']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xc6, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['barberry yellow']), + ), + RgbInt8Color.rgbNames( + 0xe6, + 0xc5, + 0x2e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dandelion yellow']), + ), + RgbInt8Color.rgbNames( + 0xe6, + 0xc5, + 0x26, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['decor yellow']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xd2, + 0xbc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['alabaster white']), + ), + RgbInt8Color.rgbNames( + 0xdf, + 0xd3, + 0xab, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light blond']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xd3, + 0x9a, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['willow-flower yellow']), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xd5, + 0x8b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light ginger yellow']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xe7, + 0xd1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tulip white']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xe4, + 0xbb, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['alpine berry yellow']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xe2, + 0xa9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['china clay yellow']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xee, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vintage white']), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x47, + 0x38, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['limonite brown']), + ), + RgbInt8Color.rgbNames( + 0x4d, + 0x48, + 0x29, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bark green']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x5f, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['boulder brown']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x5e, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['plum green']), + ), + RgbInt8Color.rgbNames( + 0x69, + 0x60, + 0x33, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vine leaf green']), + ), + RgbInt8Color.rgbNames( + 0x79, + 0x76, + 0x67, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['graphite grey green']), + ), + RgbInt8Color.rgbNames( + 0x7d, + 0x76, + 0x57, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pesto green']), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x78, + 0x46, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['giant cactus green']), + ), + RgbInt8Color.rgbNames( + 0x83, + 0x78, + 0x38, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aubergine green']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0x8e, + 0x7f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['oyster grey']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x8f, + 0x6d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['manzanilla olive']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x90, + 0x60, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['camouflage olive']), + ), + RgbInt8Color.rgbNames( + 0x9d, + 0x90, + 0x4e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['laurel green']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0x8f, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['faint green']), + ), + RgbInt8Color.rgbNames( + 0xa2, + 0x94, + 0x2c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['titanite yellow']), + ), + RgbInt8Color.rgbNames( + 0xae, + 0xaa, + 0x98, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dusty yellow']), + ), + RgbInt8Color.rgbNames( + 0xb2, + 0xaa, + 0x85, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['barbados beige']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0xa9, + 0x76, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rhubarb leaf green']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0xad, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['hedgehog cactus yellow green']), + ), + RgbInt8Color.rgbNames( + 0xbd, + 0xad, + 0x55, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gooseberry yellow']), + ), + RgbInt8Color.rgbNames( + 0xbe, + 0xae, + 0x41, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bud green']), + ), + RgbInt8Color.rgbNames( + 0xc0, + 0xaf, + 0x29, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['catkin yellow']), + ), + RgbInt8Color.rgbNames( + 0xc0, + 0xae, + 0x10, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['prehnite yellow']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xc5, + 0xb0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light beige']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xc4, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['champagne beige']), + ), + RgbInt8Color.rgbNames( + 0xd5, + 0xc8, + 0x92, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lemon sorbet yellow']), + ), + RgbInt8Color.rgbNames( + 0xd8, + 0xca, + 0x82, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blossom yellow']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xca, + 0x6b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tasman honey yellow']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xc9, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['new yellow']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0xcc, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fashion yellow']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xca, + 0x28, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['poster yellow']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xcd, + 0x07, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['contrasting yellow']), + ), + RgbInt8Color.rgbNames( + 0xd6, + 0xd2, + 0xc7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pepper white']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xd3, + 0xbf, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['paella natural white']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xd5, + 0xad, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cider yellow']), + ), + RgbInt8Color.rgbNames( + 0xe2, + 0xd6, + 0x9c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['palm sugar yellow']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xd6, + 0x8a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['march yellow']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xd8, + 0x79, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['oriole yellow']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0xe3, + 0xd8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['marzipan white']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xe4, + 0xd0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['primrose white']), + ), + RgbInt8Color.rgbNames( + 0xef, + 0xe5, + 0xbc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cream yellow']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xe5, + 0xab, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wax yellow']), + ), + RgbInt8Color.rgbNames( + 0xf5, + 0xe6, + 0x98, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lemon cream']), + ), + RgbInt8Color.rgbNames( + 0xf5, + 0xe4, + 0x85, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tiger yellow']), + ), + RgbInt8Color.rgbNames( + 0xf6, + 0xe3, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sunrose yellow']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xeb, + 0xe0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cream white']), + ), + RgbInt8Color.rgbNames( + 0x61, + 0x5e, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['shady green']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x5d, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['forest green']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x5f, + 0x31, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bean green']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x74, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dull olive']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x77, + 0x59, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cabbage green']), + ), + RgbInt8Color.rgbNames( + 0x7e, + 0x78, + 0x48, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['caper green']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x7a, + 0x37, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['garden lettuce green']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x7e, + 0x24, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['artichoke green']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0x8f, + 0x7f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pale green grey']), + ), + RgbInt8Color.rgbNames( + 0x95, + 0x90, + 0x6f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pale green', + 'блідо-зелений', + 'blassgrün', + 'vert pâle', + 'verde pálido', + 'verde pallido', + 'bleekgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x91, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cypress green']), + ), + RgbInt8Color.rgbNames( + 0x99, + 0x92, + 0x4e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grape green']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0x95, + 0x3d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gooseberry green']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x93, + 0x29, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['guava green']), + ), + RgbInt8Color.rgbNames( + 0x97, + 0x98, + 0x03, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['romaine green']), + ), + RgbInt8Color.rgbNames( + 0xae, + 0xaa, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sand grey']), + ), + RgbInt8Color.rgbNames( + 0xb2, + 0xac, + 0x8a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crocodile green']), + ), + RgbInt8Color.rgbNames( + 0xb4, + 0xad, + 0x79, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chicory green']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0xae, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['banana green']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0xac, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['star fruit yellow green']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0xac, + 0x47, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['papaya yellow green']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0xb1, + 0x2e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bronze green']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0xc6, + 0xb4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sapphire light yellow']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xc7, + 0xa4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pale olive']), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0xca, + 0x93, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['asparagus yellow']), + ), + RgbInt8Color.rgbNames( + 0xd5, + 0xcc, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pea green']), + ), + RgbInt8Color.rgbNames( + 0xd6, + 0xca, + 0x71, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['williams pear yellow']), + ), + RgbInt8Color.rgbNames( + 0xd3, + 0xc8, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['greenish yellow']), + ), + RgbInt8Color.rgbNames( + 0xd3, + 0xcc, + 0x4a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mimosa yellow']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xc7, + 0x35, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sorbet yellow']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xd5, + 0xc2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['salsify white']), + ), + RgbInt8Color.rgbNames( + 0xdd, + 0xd7, + 0xb3, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dull light yellow']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0xd8, + 0x9f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['leaf yellow']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xda, + 0x8d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['natural yellow']), + ), + RgbInt8Color.rgbNames( + 0xe4, + 0xd9, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sport yellow']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xe4, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['atlas white']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0xe4, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pearl yellow']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xe7, + 0xa9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lemon ice cream yellow']), + ), + RgbInt8Color.rgbNames( + 0xf0, + 0xe6, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fresh yellow']), + ), + RgbInt8Color.rgbNames( + 0xf6, + 0xe9, + 0x88, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['luminescent yellow']), + ), + RgbInt8Color.rgbNames( + 0xf6, + 0xe9, + 0x79, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dynamic yellow']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0xeb, + 0xe1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crepe silk white']), + ), + RgbInt8Color.rgbNames( + 0x32, + 0x33, + 0x2d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['night green']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x44, + 0x3d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['volcanic stone green']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x45, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vermilion green']), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x4b, + 0x2a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['uniform green']), + ), + RgbInt8Color.rgbNames( + 0x5c, + 0x5c, + 0x54, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['doves grey']), + ), + RgbInt8Color.rgbNames( + 0x5f, + 0x5e, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['slick green']), + ), + RgbInt8Color.rgbNames( + 0x60, + 0x5f, + 0x41, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['broccoli green']), + ), + RgbInt8Color.rgbNames( + 0x61, + 0x61, + 0x30, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['high forest green']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x64, + 0x1d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brussels sprout green']), + ), + RgbInt8Color.rgbNames( + 0x75, + 0x75, + 0x6d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['forest floor khaki']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0x75, + 0x64, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lapwing grey green']), + ), + RgbInt8Color.rgbNames( + 0x79, + 0x79, + 0x57, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['green woodpecker olive']), + ), + RgbInt8Color.rgbNames( + 0x79, + 0x78, + 0x48, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['steppe green']), + ), + RgbInt8Color.rgbNames( + 0x79, + 0x7b, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['faience green']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x7e, + 0x23, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tool green']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0x8f, + 0x87, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['smoky grey green']), + ), + RgbInt8Color.rgbNames( + 0x8e, + 0x8d, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['olivine grey']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0x92, + 0x6f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['grey-headed woodpecker green']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0x92, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cardamom green']), + ), + RgbInt8Color.rgbNames( + 0x95, + 0x93, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lettuce green']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x96, + 0x40, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['art nouveau green']), + ), + RgbInt8Color.rgbNames( + 0x8d, + 0x96, + 0x22, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['smoothie green']), + ), + RgbInt8Color.rgbNames( + 0xac, + 0xab, + 0xa2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['smoky white']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0xab, + 0x98, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['anise grey yellow']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0xad, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sand brown']), + ), + RgbInt8Color.rgbNames( + 0xae, + 0xad, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hippie green']), + ), + RgbInt8Color.rgbNames( + 0xb2, + 0xb0, + 0x69, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['linden green']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0xae, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dill green']), + ), + RgbInt8Color.rgbNames( + 0xaf, + 0xb0, + 0x46, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['new green']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0xc5, + 0xbb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['natural grey']), + ), + RgbInt8Color.rgbNames( + 0xc8, + 0xc6, + 0xb1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pale beige']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0xcb, + 0xa3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soft green']), + ), + RgbInt8Color.rgbNames( + 0xcc, + 0xca, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silver green']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xcb, + 0x80, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['march tulip green']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0xcb, + 0x70, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light olive']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xd1, + 0x5b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['advertisement green']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xd2, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['led green']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xd3, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['march green']), + ), + RgbInt8Color.rgbNames( + 0xd6, + 0xd5, + 0xca, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['celery white']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0xd5, + 0xc0, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['palm heart cream']), + ), + RgbInt8Color.rgbNames( + 0xda, + 0xd8, + 0xb0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['beige green']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xd8, + 0x9f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crystal yellow']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xe4, + 0xd7, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brilliant yellow']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0xe4, + 0xcf, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['elderberry white']), + ), + RgbInt8Color.rgbNames( + 0xea, + 0xe6, + 0xbd, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['designer cream yellow']), + ), + RgbInt8Color.rgbNames( + 0xea, + 0xe6, + 0xa9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['boxwood yellow']), + ), + RgbInt8Color.rgbNames( + 0xed, + 0xe9, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['primrose yellow']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0xe8, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spring yellow']), + ), + RgbInt8Color.rgbNames( + 0xed, + 0xed, + 0xe1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fog white']), + ), + RgbInt8Color.rgbNames( + 0x30, + 0x33, + 0x24, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['metal construction green']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x48, + 0x3a, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark olive green']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x4b, + 0x2e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nori seaweed green']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x5f, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stump green']), + ), + RgbInt8Color.rgbNames( + 0x5a, + 0x5f, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['antique green']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x64, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gardener green']), + ), + RgbInt8Color.rgbNames( + 0x59, + 0x68, + 0x28, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kirchner green']), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x76, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['november green']), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x78, + 0x58, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['alexandrite green']), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x7b, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['plant green']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x7d, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ripe green']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x80, + 0x24, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['portuguese green']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x84, + 0x1a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['flag green']), + ), + RgbInt8Color.rgbNames( + 0x8d, + 0x90, + 0x7f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grey green']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x91, + 0x70, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['peapod green']), + ), + RgbInt8Color.rgbNames( + 0x8e, + 0x96, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['indian green']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x96, + 0x54, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['winterpea green']), + ), + RgbInt8Color.rgbNames( + 0x87, + 0x9a, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['airline green']), + ), + RgbInt8Color.rgbNames( + 0x85, + 0x9f, + 0x2f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['woodruff green']), + ), + RgbInt8Color.rgbNames( + 0x85, + 0xa1, + 0x1f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['traffic light green']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0xac, + 0x99, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chinese tea green']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0xad, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wall green']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xad, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wasabi green']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xb1, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['april green']), + ), + RgbInt8Color.rgbNames( + 0xa7, + 0xb5, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['delaunay green']), + ), + RgbInt8Color.rgbNames( + 0xa0, + 0xb7, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lime green']), + ), + RgbInt8Color.rgbNames( + 0x97, + 0xb8, + 0x21, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chlorophyll green']), + ), + RgbInt8Color.rgbNames( + 0x97, + 0xb7, + 0x20, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['marker green']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xc5, + 0xb3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spring grey']), + ), + RgbInt8Color.rgbNames( + 0xc3, + 0xcc, + 0xa2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mint ice green']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0xcc, + 0x93, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['springtide green']), + ), + RgbInt8Color.rgbNames( + 0xc3, + 0xcf, + 0x85, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lime sorbet green']), + ), + RgbInt8Color.rgbNames( + 0xc3, + 0xd2, + 0x74, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['easter green']), + ), + RgbInt8Color.rgbNames( + 0xbe, + 0xd5, + 0x61, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clown green']), + ), + RgbInt8Color.rgbNames( + 0xbd, + 0xd6, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['juice green']), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0xd5, + 0xc1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['veltliner white']), + ), + RgbInt8Color.rgbNames( + 0xd0, + 0xd8, + 0xaf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kohlrabi green']), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0xda, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['burgundy grey']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xda, + 0x8b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wax green']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xdc, + 0x7c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sprout green']), + ), + RgbInt8Color.rgbNames( + 0xe2, + 0xe2, + 0xd7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cotton white']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xe6, + 0xd0, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light fern green']), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0xe8, + 0xbd, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lily scent green']), + ), + RgbInt8Color.rgbNames( + 0xe2, + 0xe9, + 0xab, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kiwi ice cream green']), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0xeb, + 0x9d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lime juice green']), + ), + RgbInt8Color.rgbNames( + 0xea, + 0xeb, + 0xe0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['raffia white']), + ), + RgbInt8Color.rgbNames( + 0xf3, + 0xf4, + 0xef, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['laundry white']), + ), + RgbInt8Color.rgbNames( + 0x42, + 0x44, + 0x3d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['racing green']), + ), + RgbInt8Color.rgbNames( + 0x42, + 0x47, + 0x39, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['country house green']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x4a, + 0x2e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['avocado dark green']), + ), + RgbInt8Color.rgbNames( + 0x5a, + 0x5c, + 0x55, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['english green']), + ), + RgbInt8Color.rgbNames( + 0x59, + 0x5e, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['almond green']), + ), + RgbInt8Color.rgbNames( + 0x57, + 0x60, + 0x44, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cactus green']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x64, + 0x38, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['basil green']), + ), + RgbInt8Color.rgbNames( + 0x4e, + 0x69, + 0x23, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pepper green']), + ), + RgbInt8Color.rgbNames( + 0x73, + 0x75, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['smoke green']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x77, + 0x67, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['velvet green grey']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x7a, + 0x5a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['parrot green']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x7c, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['quartz green']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x82, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hedge green']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x81, + 0x31, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['birch leaf green']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0x92, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bluish grey']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x90, + 0x81, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lavender leaf green']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0x93, + 0x72, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cider pear green']), + ), + RgbInt8Color.rgbNames( + 0x87, + 0x98, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vesuvian green']), + ), + RgbInt8Color.rgbNames( + 0x83, + 0x9a, + 0x58, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bamboo grass green']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x9d, + 0x4a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aloe vera green']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x9e, + 0x39, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mamba green']), + ), + RgbInt8Color.rgbNames( + 0x75, + 0xa1, + 0x33, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['luminescent green']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0xab, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['laurel grey']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xab, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nile green']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0xae, + 0x8c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['filigree green']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0xb3, + 0x7f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['serpentine green']), + ), + RgbInt8Color.rgbNames( + 0x9d, + 0xb7, + 0x71, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light birch green']), + ), + RgbInt8Color.rgbNames( + 0x99, + 0xb8, + 0x61, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clematis green']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0xb6, + 0x51, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tourmaline green']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0xbc, + 0x44, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cocktail green']), + ), + RgbInt8Color.rgbNames( + 0x8a, + 0xb9, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brilliant green']), + ), + RgbInt8Color.rgbNames( + 0xc3, + 0xc6, + 0xbd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dust green']), + ), + RgbInt8Color.rgbNames( + 0xc1, + 0xc7, + 0xb3, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['modern style green']), + ), + RgbInt8Color.rgbNames( + 0xbf, + 0xcb, + 0xa7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['avocado cream']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0xce, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['natural green']), + ), + RgbInt8Color.rgbNames( + 0xb8, + 0xd2, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['summer green']), + ), + RgbInt8Color.rgbNames( + 0xb3, + 0xd5, + 0x79, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fashion green']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0xd8, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['neon green']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0xd4, + 0xca, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chalk green']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xd6, + 0xc2, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light feather green']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0xd9, + 0xb3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lake green']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xde, + 0xa3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aqua green']), + ), + RgbInt8Color.rgbNames( + 0xdf, + 0xe2, + 0xd7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['lily of the valley white']), + ), + RgbInt8Color.rgbNames( + 0xe2, + 0xe7, + 0xd2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pale pistachio']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xe8, + 0xc1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kiwi sorbet green']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xec, + 0xb1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice-cold green']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xec, + 0xe0, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['touch of white green']), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x48, + 0x3b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['arame seaweed green']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x4a, + 0x30, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kelp green']), + ), + RgbInt8Color.rgbNames( + 0x5a, + 0x60, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soft olive']), + ), + RgbInt8Color.rgbNames( + 0x52, + 0x61, + 0x45, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['alpine lake green']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x64, + 0x3b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gemstone green']), + ), + RgbInt8Color.rgbNames( + 0x6e, + 0x77, + 0x68, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dubuffet green']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x7c, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spanish green']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x7e, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['algae green']), + ), + RgbInt8Color.rgbNames( + 0x5f, + 0x81, + 0x46, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hot pepper green']), + ), + RgbInt8Color.rgbNames( + 0x58, + 0x82, + 0x3b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['emerald clear green']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x92, + 0x83, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['matte sage green']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0x94, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['old green']), + ), + RgbInt8Color.rgbNames( + 0x7e, + 0x97, + 0x6b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pea aubergine green']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x9a, + 0x5e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grasshopper green']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x9d, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['parisian green']), + ), + RgbInt8Color.rgbNames( + 0x69, + 0xa0, + 0x44, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['primal green']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0xae, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['limestone green']), + ), + RgbInt8Color.rgbNames( + 0xa0, + 0xb1, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soap green']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0xb4, + 0x84, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['watercolour green']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0xb6, + 0x76, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vangogh green']), + ), + RgbInt8Color.rgbNames( + 0x8d, + 0xba, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['apple green']), + ), + RgbInt8Color.rgbNames( + 0x85, + 0xbd, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ultra green']), + ), + RgbInt8Color.rgbNames( + 0xc0, + 0xc8, + 0xb7, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['jade light green']), + ), + RgbInt8Color.rgbNames( + 0xba, + 0xcc, + 0xab, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['enamel green']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0xd0, + 0x9e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pastel green', + 'пастельно-зелений', + 'weißgrün', + 'vert blanc', + 'verde blanquecino', + 'verde biancastro', + 'witgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0xaf, + 0xd4, + 0x92, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['jasmine green']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0xd6, + 0x84, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crystal green']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xd5, + 0xcb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grape oil green']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0xd7, + 0xc4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['duchamp light green']), + ), + RgbInt8Color.rgbNames( + 0xc7, + 0xda, + 0xb8, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pallid light green']), + ), + RgbInt8Color.rgbNames( + 0xc4, + 0xde, + 0xac, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['viridine green']), + ), + RgbInt8Color.rgbNames( + 0xdd, + 0xe2, + 0xd8, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silver poplar white']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xe8, + 0xd4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mediterranean green']), + ), + RgbInt8Color.rgbNames( + 0xd6, + 0xe9, + 0xc5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spring green']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0xec, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bean white']), + ), + RgbInt8Color.rgbNames( + 0x2d, + 0x32, + 0x2d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['melanite black green']), + ), + RgbInt8Color.rgbNames( + 0x2b, + 0x35, + 0x28, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mountain range green']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x39, + 0x27, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bavarian green']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x49, + 0x44, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['black forest green']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x4b, + 0x3d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['copper pyrite green']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x4e, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nettle green']), + ), + RgbInt8Color.rgbNames( + 0x32, + 0x53, + 0x2a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chestnut green']), + ), + RgbInt8Color.rgbNames( + 0x2b, + 0x53, + 0x2a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ranger green']), + ), + RgbInt8Color.rgbNames( + 0x5a, + 0x5f, + 0x59, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stone green']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x60, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['loden green']), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x62, + 0x48, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['acacia green']), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x66, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['peacock green']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x6b, + 0x37, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['radical green']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x6f, + 0x31, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brazilian green']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x76, + 0x6f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silver maple green']), + ), + RgbInt8Color.rgbNames( + 0x6d, + 0x78, + 0x6b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fir spruce green']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x7b, + 0x60, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silver willow green']), + ), + RgbInt8Color.rgbNames( + 0x60, + 0x80, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rambling green']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x82, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['guinean green']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x87, + 0x44, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mountain meadow green']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x89, + 0x38, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['temperamental green']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x8f, + 0x89, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['camouflage green']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0x91, + 0x83, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silver linden grey']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x98, + 0x7b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spinach green']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x9b, + 0x6f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blackthorn green']), + ), + RgbInt8Color.rgbNames( + 0x72, + 0x9e, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fresh green']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0xa0, + 0x5a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['parsley green']), + ), + RgbInt8Color.rgbNames( + 0x5f, + 0xa2, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['oregano green']), + ), + RgbInt8Color.rgbNames( + 0x57, + 0xa5, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['balloon green']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0xaa, + 0xa3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ginkgo green']), + ), + RgbInt8Color.rgbNames( + 0x9e, + 0xac, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wormwood green']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0xb1, + 0x94, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dew green']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0xb5, + 0x89, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aniseed leaf green']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0xb9, + 0x7f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sour green']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0xba, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['acid green']), + ), + RgbInt8Color.rgbNames( + 0x7a, + 0xbf, + 0x68, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['drop green']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xc7, + 0xbf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['willow green']), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0xc9, + 0xb9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pastel grey green']), + ), + RgbInt8Color.rgbNames( + 0xb4, + 0xcd, + 0xad, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gio ponti green']), + ), + RgbInt8Color.rgbNames( + 0xac, + 0xd1, + 0xa3, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['relaxation green']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0xd5, + 0x97, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dentist green']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xd6, + 0xcd, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deadnettle white']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0xd8, + 0xc8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['leek white']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xdc, + 0xbb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['limestone slate']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0xe0, + 0xb1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mint cocktail green']), + ), + RgbInt8Color.rgbNames( + 0xdf, + 0xe5, + 0xda, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rosemary white']), + ), + RgbInt8Color.rgbNames( + 0xda, + 0xe7, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['touch of green']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0xee, + 0xe4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chestnut white']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x4c, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['thyme green']), + ), + RgbInt8Color.rgbNames( + 0x37, + 0x4f, + 0x3c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['moselle green']), + ), + RgbInt8Color.rgbNames( + 0x2d, + 0x50, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mountain green']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x61, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['felt green']), + ), + RgbInt8Color.rgbNames( + 0x4d, + 0x65, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['firm green']), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x67, + 0x47, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['genever green']), + ), + RgbInt8Color.rgbNames( + 0x36, + 0x6a, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ink green']), + ), + RgbInt8Color.rgbNames( + 0x2d, + 0x6b, + 0x3b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ireland green']), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0x78, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sage green grey']), + ), + RgbInt8Color.rgbNames( + 0x62, + 0x7d, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['korean mint']), + ), + RgbInt8Color.rgbNames( + 0x5a, + 0x82, + 0x5f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['field green']), + ), + RgbInt8Color.rgbNames( + 0x52, + 0x85, + 0x5c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['celery green']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x87, + 0x52, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rich green']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x8a, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cold green']), + ), + RgbInt8Color.rgbNames( + 0x86, + 0x94, + 0x89, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pointed cabbage green']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x98, + 0x81, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orient green']), + ), + RgbInt8Color.rgbNames( + 0x72, + 0x9a, + 0x78, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rosemary green']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x9e, + 0x6f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mosaic green']), + ), + RgbInt8Color.rgbNames( + 0x60, + 0xa3, + 0x6c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bouncy ball green']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0xa2, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['energy green']), + ), + RgbInt8Color.rgbNames( + 0x9e, + 0xad, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tea green']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0xb3, + 0x9b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['liebermann green']), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0xb8, + 0x92, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['oilcloth green']), + ), + RgbInt8Color.rgbNames( + 0x82, + 0xba, + 0x8a, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['jade stone green']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0xbd, + 0x80, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['verdigris coloured']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0xca, + 0xbd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['organza green']), + ), + RgbInt8Color.rgbNames( + 0xb1, + 0xcf, + 0xb5, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pastel mint green']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xd3, + 0xae, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bright green']), + ), + RgbInt8Color.rgbNames( + 0x9d, + 0xd8, + 0xa5, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mother-of-pearl green']), + ), + RgbInt8Color.rgbNames( + 0xcc, + 0xd5, + 0xcd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['asparagus white']), + ), + RgbInt8Color.rgbNames( + 0xc8, + 0xd8, + 0xc9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['transparent white']), + ), + RgbInt8Color.rgbNames( + 0xbf, + 0xdd, + 0xc0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pallid green']), + ), + RgbInt8Color.rgbNames( + 0xdb, + 0xe3, + 0xd9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mineral white']), + ), + RgbInt8Color.rgbNames( + 0xd8, + 0xe8, + 0xd7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['alabaster green']), + ), + RgbInt8Color.rgbNames( + 0xe4, + 0xed, + 0xe3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['quark white']), + ), + RgbInt8Color.rgbNames( + 0x2f, + 0x35, + 0x32, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['beryl black green']), + ), + RgbInt8Color.rgbNames( + 0x29, + 0x36, + 0x2f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mussel green']), + ), + RgbInt8Color.rgbNames( + 0x22, + 0x37, + 0x2a, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pumpkin green black']), + ), + RgbInt8Color.rgbNames( + 0x1f, + 0x34, + 0x29, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['opulent green']), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x48, + 0x44, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rich olive']), + ), + RgbInt8Color.rgbNames( + 0x3d, + 0x4a, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['exclusive green']), + ), + RgbInt8Color.rgbNames( + 0x37, + 0x4a, + 0x3f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'leaf green', + 'листяно-зелений', + 'laubgrün', + 'vert feuillage', + 'verde hoja', + 'verde foglia', + 'loofgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x30, + 0x4c, + 0x3c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mountain mint']), + ), + RgbInt8Color.rgbNames( + 0x2d, + 0x4e, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['order green']), + ), + RgbInt8Color.rgbNames( + 0x27, + 0x50, + 0x38, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['troll green']), + ), + RgbInt8Color.rgbNames( + 0x1e, + 0x50, + 0x35, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['card table green']), + ), + RgbInt8Color.rgbNames( + 0x19, + 0x52, + 0x35, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lemon balm green']), + ), + RgbInt8Color.rgbNames( + 0x58, + 0x60, + 0x5b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['jasper green']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x61, + 0x59, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['siberian green']), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x63, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cucumber green']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x63, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['serbian green']), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x64, + 0x50, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['black pine green']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x67, + 0x4e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pumpkin green']), + ), + RgbInt8Color.rgbNames( + 0x36, + 0x69, + 0x4c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['jade mussel green']), + ), + RgbInt8Color.rgbNames( + 0x32, + 0x6b, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clover green']), + ), + RgbInt8Color.rgbNames( + 0x29, + 0x68, + 0x46, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['frog green']), + ), + RgbInt8Color.rgbNames( + 0x1d, + 0x6a, + 0x43, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['universal green']), + ), + RgbInt8Color.rgbNames( + 0x1b, + 0x6d, + 0x43, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['column of oak green']), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x77, + 0x72, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['arctic lichen green']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x78, + 0x70, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['atlas cedar green']), + ), + RgbInt8Color.rgbNames( + 0x64, + 0x7c, + 0x6e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stone cypress green']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x7e, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['juniper green']), + ), + RgbInt8Color.rgbNames( + 0x58, + 0x7e, + 0x68, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sports field green']), + ), + RgbInt8Color.rgbNames( + 0x53, + 0x81, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['leisure green']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x83, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['adamite green']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x83, + 0x62, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['metallic green']), + ), + RgbInt8Color.rgbNames( + 0x43, + 0x86, + 0x61, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vital green']), + ), + RgbInt8Color.rgbNames( + 0x3a, + 0x86, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['golf green']), + ), + RgbInt8Color.rgbNames( + 0x35, + 0x88, + 0x5c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['iceland green']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x87, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['real turquoise']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0x90, + 0x8b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sandstone grey green']), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x92, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['slate green']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x96, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mild green']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x97, + 0x84, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['douglas fir green']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x9a, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['practice green']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x9b, + 0x7f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['memphis green']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x9e, + 0x7d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['advertising green']), + ), + RgbInt8Color.rgbNames( + 0x5f, + 0x9d, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hunter green']), + ), + RgbInt8Color.rgbNames( + 0x5a, + 0xa1, + 0x78, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['linoleum green']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0xa0, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['parakeet green']), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x9f, + 0x70, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['emerald light green']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0xa2, + 0x6f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['alhambra green']), + ), + RgbInt8Color.rgbNames( + 0xa2, + 0xab, + 0xa6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['greenish grey']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0xae, + 0xa3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['weak green']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0xb0, + 0x9f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['andean slate']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0xb2, + 0x9d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ceramic green']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0xb6, + 0x9c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['water green']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0xb7, + 0x9a, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mountain lake green']), + ), + RgbInt8Color.rgbNames( + 0x7d, + 0xb8, + 0x97, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['american green']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0xbb, + 0x94, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['techno turquoise']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0xbd, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['garish green']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0xbe, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['malachite green']), + ), + RgbInt8Color.rgbNames( + 0xbd, + 0xc6, + 0xc0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fog green']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0xc9, + 0xbe, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['matte jade green']), + ), + RgbInt8Color.rgbNames( + 0xaf, + 0xcc, + 0xbb, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'sun yellow', + 'сонячно-жовтий', + 'sonnengelb', + 'jaune soleil', + 'amarillo sol', + 'giallo sole', + 'zonnegeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0xce, + 0xb8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['feather green']), + ), + RgbInt8Color.rgbNames( + 0xa5, + 0xd0, + 0xb7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['menthol green']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0xd4, + 0xb5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silk green']), + ), + RgbInt8Color.rgbNames( + 0xc9, + 0xd3, + 0xcc, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'light green', + 'світло-зелений', + 'lichtgrün', + 'vert clair', + 'verde luminoso', + 'verde chiaro', + 'lichtgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xd6, + 0xc9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['micaceous green']), + ), + RgbInt8Color.rgbNames( + 0xbe, + 0xda, + 0xc7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['moonstone green']), + ), + RgbInt8Color.rgbNames( + 0xda, + 0xe3, + 0xdb, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['watercolour white']), + ), + RgbInt8Color.rgbNames( + 0xd3, + 0xe7, + 0xd8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['moonlight green']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0xe9, + 0xd5, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['glacial water green']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0xeb, + 0xe6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['mountain crystal silver']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x34, + 0x2f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deep green']), + ), + RgbInt8Color.rgbNames( + 0x21, + 0x36, + 0x2e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['intense green']), + ), + RgbInt8Color.rgbNames( + 0x1a, + 0x37, + 0x2e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['coach green']), + ), + RgbInt8Color.rgbNames( + 0x15, + 0x3c, + 0x2e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['off-road green']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x4b, + 0x44, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['garnet black green']), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x4c, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark green']), + ), + RgbInt8Color.rgbNames( + 0x2e, + 0x4b, + 0x41, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['thistle green']), + ), + RgbInt8Color.rgbNames( + 0x26, + 0x4f, + 0x41, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['raspberry leaf green']), + ), + RgbInt8Color.rgbNames( + 0x22, + 0x4f, + 0x40, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chrysocolla dark green']), + ), + RgbInt8Color.rgbNames( + 0x17, + 0x51, + 0x41, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['trapper green']), + ), + RgbInt8Color.rgbNames( + 0x0d, + 0x52, + 0x40, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['permanent green']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x60, + 0x59, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chalcedony green']), + ), + RgbInt8Color.rgbNames( + 0x49, + 0x61, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['palace green']), + ), + RgbInt8Color.rgbNames( + 0x43, + 0x64, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['plantain green']), + ), + RgbInt8Color.rgbNames( + 0x3e, + 0x65, + 0x56, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ore mountains green']), + ), + RgbInt8Color.rgbNames( + 0x39, + 0x69, + 0x57, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tractor green']), + ), + RgbInt8Color.rgbNames( + 0x2f, + 0x68, + 0x54, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['victoria green']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x69, + 0x54, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['device green']), + ), + RgbInt8Color.rgbNames( + 0x1c, + 0x6a, + 0x54, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['environmental green']), + ), + RgbInt8Color.rgbNames( + 0x17, + 0x69, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vegan green']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x79, + 0x73, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bournonite green']), + ), + RgbInt8Color.rgbNames( + 0x61, + 0x7d, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fuchsite green']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x7d, + 0x70, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blackberry leaf green']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x7f, + 0x6e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tourmaline blue']), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x81, + 0x6e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dream green']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x81, + 0x6d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['accent green blue']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x84, + 0x6a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spectral green']), + ), + RgbInt8Color.rgbNames( + 0x37, + 0x84, + 0x6b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mallard green']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x87, + 0x69, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chagall green']), + ), + RgbInt8Color.rgbNames( + 0x20, + 0x85, + 0x68, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['absinthe turquoise']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x92, + 0x8b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['quantum green']), + ), + RgbInt8Color.rgbNames( + 0x7a, + 0x95, + 0x8a, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bitter clover green']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x98, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cyprus green']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x98, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['succulent green']), + ), + RgbInt8Color.rgbNames( + 0x64, + 0x9a, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vibrant green']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x9e, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['klimt green']), + ), + RgbInt8Color.rgbNames( + 0x56, + 0x9e, + 0x85, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['persian green']), + ), + RgbInt8Color.rgbNames( + 0x4e, + 0x9e, + 0x83, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sport green']), + ), + RgbInt8Color.rgbNames( + 0x47, + 0xa1, + 0x85, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['active green']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0xae, + 0xa6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lovage green']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0xb0, + 0xa4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chrysopal light green']), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0xb4, + 0xa4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['source green']), + ), + RgbInt8Color.rgbNames( + 0x87, + 0xb6, + 0xa2, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orient mosaic green']), + ), + RgbInt8Color.rgbNames( + 0x7e, + 0xb8, + 0xa3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mint cold green']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0xb8, + 0x9f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'emerald green', + 'ізумрудно-зелений', + 'smaragdgrün', + 'vert émeraude', + 'verde esmeralda', + 'verde smeraldo', + 'smaragdgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x70, + 0xb9, + 0x9e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['expressionism green']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0xca, + 0xc2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fluorite blue']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0xcd, + 0xc1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['swimming pool green']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0xd2, + 0xc0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sky green']), + ), + RgbInt8Color.rgbNames( + 0x9f, + 0xd1, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['larimar green']), + ), + RgbInt8Color.rgbNames( + 0xc9, + 0xd5, + 0xd0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['silicate light turquoise']), + ), + RgbInt8Color.rgbNames( + 0xc3, + 0xd9, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['topaz green']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0xdb, + 0xcc, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['refrigerator green']), + ), + RgbInt8Color.rgbNames( + 0xb4, + 0xdd, + 0xcb, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crystal glass green']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xe3, + 0xdd, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crystal salt white']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0xe7, + 0xdc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['turquoise white']), + ), + RgbInt8Color.rgbNames( + 0xe2, + 0xec, + 0xe7, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['snow crystal green']), + ), + RgbInt8Color.rgbNames( + 0x2d, + 0x36, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pitch green']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x35, + 0x32, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lacquer green']), + ), + RgbInt8Color.rgbNames( + 0x1d, + 0x35, + 0x32, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fence green']), + ), + RgbInt8Color.rgbNames( + 0x12, + 0x36, + 0x33, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['myrtle green']), + ), + RgbInt8Color.rgbNames( + 0x42, + 0x4a, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['amazon green']), + ), + RgbInt8Color.rgbNames( + 0x39, + 0x4a, + 0x46, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rich grey turquoise']), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x4c, + 0x47, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blackboard green']), + ), + RgbInt8Color.rgbNames( + 0x2c, + 0x4d, + 0x47, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['swedish green']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x4f, + 0x48, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fjord green']), + ), + RgbInt8Color.rgbNames( + 0x1a, + 0x4f, + 0x48, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['urban green']), + ), + RgbInt8Color.rgbNames( + 0x13, + 0x50, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['jungle green']), + ), + RgbInt8Color.rgbNames( + 0x56, + 0x5f, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['earth green']), + ), + RgbInt8Color.rgbNames( + 0x4e, + 0x61, + 0x5d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pine green', + 'сосновий зелений', + 'kieferngrün', + 'vert pin', + 'verde pino', + 'verde pino', + 'pijnboomgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x63, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['forest greenery']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x65, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sea green']), + ), + RgbInt8Color.rgbNames( + 0x39, + 0x66, + 0x5e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['eucalyptus green']), + ), + RgbInt8Color.rgbNames( + 0x2e, + 0x67, + 0x5f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fresh ivy green']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x66, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['chrysocolla medium green']), + ), + RgbInt8Color.rgbNames( + 0x1c, + 0x66, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['poster green']), + ), + RgbInt8Color.rgbNames( + 0x0e, + 0x67, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['teal dark green']), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x78, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dusk green']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x79, + 0x75, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['refreshing green']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x7b, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dull turquoise']), + ), + RgbInt8Color.rgbNames( + 0x56, + 0x7d, + 0x75, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['azurite water green']), + ), + RgbInt8Color.rgbNames( + 0x4e, + 0x7e, + 0x76, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['copper mineral green']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x81, + 0x76, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['glass green']), + ), + RgbInt8Color.rgbNames( + 0x3e, + 0x82, + 0x76, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['summer turquoise']), + ), + RgbInt8Color.rgbNames( + 0x35, + 0x81, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['christmas green']), + ), + RgbInt8Color.rgbNames( + 0x2b, + 0x83, + 0x77, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['industrial turquoise']), + ), + RgbInt8Color.rgbNames( + 0x0e, + 0x83, + 0x76, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ocean green']), + ), + RgbInt8Color.rgbNames( + 0x86, + 0x90, + 0x8f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['marble green-grey']), + ), + RgbInt8Color.rgbNames( + 0x7d, + 0x92, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tile green']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x95, + 0x8f, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['copper roof green']), + ), + RgbInt8Color.rgbNames( + 0x6e, + 0x97, + 0x8f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sage green']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x98, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['petrol green']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x9b, + 0x8f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dioptase green']), + ), + RgbInt8Color.rgbNames( + 0x57, + 0x9d, + 0x90, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stamp pad green']), + ), + RgbInt8Color.rgbNames( + 0x4d, + 0x9e, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light turquoise']), + ), + RgbInt8Color.rgbNames( + 0x43, + 0x9f, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['caribbean green']), + ), + RgbInt8Color.rgbNames( + 0x35, + 0x9f, + 0x91, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brilliant turquoise']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0xab, + 0xa9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['feldspar silver']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0xad, + 0xa8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['delicate green']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0xb0, + 0xa9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silicate green']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0xb3, + 0xaa, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mint bonbon green']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0xb4, + 0xa9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['glacial green']), + ), + RgbInt8Color.rgbNames( + 0x79, + 0xb7, + 0xaa, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bath turquoise']), + ), + RgbInt8Color.rgbNames( + 0x6e, + 0xb8, + 0xaa, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mountain lake azure']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0xbb, + 0xac, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pure cyan']), + ), + RgbInt8Color.rgbNames( + 0xbd, + 0xc6, + 0xc3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aragonite white']), + ), + RgbInt8Color.rgbNames( + 0xb4, + 0xca, + 0xc4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light teal']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0xce, + 0xc5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['whirlpool green']), + ), + RgbInt8Color.rgbNames( + 0xa2, + 0xcf, + 0xc4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['opal turquoise']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0xd1, + 0xc5, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light capri green']), + ), + RgbInt8Color.rgbNames( + 0x97, + 0xd6, + 0xc8, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tender turquoise']), + ), + RgbInt8Color.rgbNames( + 0xc8, + 0xd4, + 0xd1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sea haze grey']), + ), + RgbInt8Color.rgbNames( + 0xc1, + 0xd8, + 0xd1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['tierra del fuego sea green']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0xdc, + 0xd2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['pale mountain lake turquoise']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0xdd, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['coral green']), + ), + RgbInt8Color.rgbNames( + 0xda, + 0xe5, + 0xe1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['transparent green']), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0xea, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice water green']), + ), + RgbInt8Color.rgbNames( + 0xe2, + 0xee, + 0xea, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['arctic white']), + ), + RgbInt8Color.rgbNames( + 0x16, + 0x38, + 0x38, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['night turquoise']), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x4c, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['carriage green']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x4d, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stockade green']), + ), + RgbInt8Color.rgbNames( + 0x22, + 0x4e, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['action green']), + ), + RgbInt8Color.rgbNames( + 0x17, + 0x4f, + 0x51, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['myrtle deep green']), + ), + RgbInt8Color.rgbNames( + 0x0f, + 0x4f, + 0x52, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['plankton green']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x60, + 0x60, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mud green']), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x62, + 0x63, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['moor pond green']), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x64, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lush green']), + ), + RgbInt8Color.rgbNames( + 0x36, + 0x65, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['butterfly green']), + ), + RgbInt8Color.rgbNames( + 0x2d, + 0x66, + 0x67, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fashion blue']), + ), + RgbInt8Color.rgbNames( + 0x1b, + 0x67, + 0x69, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['office blue green']), + ), + RgbInt8Color.rgbNames( + 0x10, + 0x67, + 0x6a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['iguana green']), + ), + RgbInt8Color.rgbNames( + 0x0c, + 0x6a, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark teal']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x79, + 0x79, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['storm green']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x7b, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark turquoise']), + ), + RgbInt8Color.rgbNames( + 0x56, + 0x7c, + 0x7b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fir blue']), + ), + RgbInt8Color.rgbNames( + 0x4d, + 0x7e, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['apatite blue']), + ), + RgbInt8Color.rgbNames( + 0x43, + 0x7f, + 0x7f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['egyptian green']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x80, + 0x81, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ornamental turquoise']), + ), + RgbInt8Color.rgbNames( + 0x30, + 0x81, + 0x84, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['eyeshadow turquoise']), + ), + RgbInt8Color.rgbNames( + 0x1b, + 0x83, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clear turquoise']), + ), + RgbInt8Color.rgbNames( + 0x7e, + 0x93, + 0x92, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['subtle turquoise']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0x94, + 0x93, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pale verdigris']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x97, + 0x96, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['goose pond green']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x99, + 0x98, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tourmaline turquoise']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x9a, + 0x9a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['baltic green']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x9b, + 0x9c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ceramic blue turquoise']), + ), + RgbInt8Color.rgbNames( + 0x48, + 0x9c, + 0x9e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['baltic turquoise']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x9b, + 0x9d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tyrolite blue-green']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0xad, + 0xac, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['marble green']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0xaf, + 0xad, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['jade green']), + ), + RgbInt8Color.rgbNames( + 0x87, + 0xb0, + 0xaf, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spring water turquoise']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0xb3, + 0xb2, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['florida turquoise']), + ), + RgbInt8Color.rgbNames( + 0x79, + 0xb6, + 0xb6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hygiene green']), + ), + RgbInt8Color.rgbNames( + 0x6d, + 0xb5, + 0xb5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['arctic green']), + ), + RgbInt8Color.rgbNames( + 0xb3, + 0xc9, + 0xc6, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['andean opal green']), + ), + RgbInt8Color.rgbNames( + 0xac, + 0xcc, + 0xca, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cold turquoise']), + ), + RgbInt8Color.rgbNames( + 0xa2, + 0xcd, + 0xcb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['teal blue']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0xcf, + 0xcd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pool green']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0xd4, + 0xd3, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['morning dew white']), + ), + RgbInt8Color.rgbNames( + 0xbd, + 0xd8, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bath salt green']), + ), + RgbInt8Color.rgbNames( + 0xb2, + 0xdb, + 0xd5, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['capri water blue']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xdd, + 0xd6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['horizon blue']), + ), + RgbInt8Color.rgbNames( + 0xda, + 0xe4, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cool white']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0xe8, + 0xe5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['source blue']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xec, + 0xea, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['egyptian white']), + ), + RgbInt8Color.rgbNames( + 0x2d, + 0x35, + 0x35, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['concealed green']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x35, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark pine green']), + ), + RgbInt8Color.rgbNames( + 0x1c, + 0x33, + 0x37, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['roof tile green']), + ), + RgbInt8Color.rgbNames( + 0x14, + 0x36, + 0x3b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['shrub green']), + ), + RgbInt8Color.rgbNames( + 0x0a, + 0x37, + 0x3e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['customs green']), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x48, + 0x48, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['darkness green']), + ), + RgbInt8Color.rgbNames( + 0x39, + 0x4b, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tree bark green']), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x4d, + 0x50, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hornblende green']), + ), + RgbInt8Color.rgbNames( + 0x2b, + 0x4e, + 0x52, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['malachite blue turquoise']), + ), + RgbInt8Color.rgbNames( + 0x1c, + 0x4c, + 0x51, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['antique turquoise']), + ), + RgbInt8Color.rgbNames( + 0x0c, + 0x4e, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wool turquoise']), + ), + RgbInt8Color.rgbNames( + 0x01, + 0x4f, + 0x5a, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice dark turquoise']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x5f, + 0x60, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['calcite grey green']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x61, + 0x62, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brochantite green']), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x62, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pyrite green']), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x64, + 0x68, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dusky alpine blue']), + ), + RgbInt8Color.rgbNames( + 0x36, + 0x66, + 0x6b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bath green']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x66, + 0x6e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mayan blue']), + ), + RgbInt8Color.rgbNames( + 0x18, + 0x66, + 0x70, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['byzantine blue']), + ), + RgbInt8Color.rgbNames( + 0x0c, + 0x68, + 0x75, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['active turquoise']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x76, + 0x76, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['north grey']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x7a, + 0x7c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['eye grey']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x7c, + 0x7e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nickel ore green']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x7c, + 0x81, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['seafoam green']), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x7e, + 0x85, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kandinsky turquoise']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x7f, + 0x87, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['caribbean turquoise']), + ), + RgbInt8Color.rgbNames( + 0x37, + 0x82, + 0x8c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['well blue']), + ), + RgbInt8Color.rgbNames( + 0x27, + 0x82, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['industrial blue']), + ), + RgbInt8Color.rgbNames( + 0x12, + 0x81, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['india blue']), + ), + RgbInt8Color.rgbNames( + 0x86, + 0x91, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['shady grey']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x93, + 0x94, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['north cape grey']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0x95, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['woad indigo']), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x97, + 0x9c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['art nouveau turquoise']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x98, + 0x9e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['coolbox ice turquoise']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x9a, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aquamarine blue']), + ), + RgbInt8Color.rgbNames( + 0x53, + 0x9a, + 0xa5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['arctic blue']), + ), + RgbInt8Color.rgbNames( + 0x48, + 0x9c, + 0xa8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wax crayon blue']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0xab, + 0xab, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['prince grey']), + ), + RgbInt8Color.rgbNames( + 0x99, + 0xaf, + 0xb0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['calcite blue']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0xaf, + 0xb2, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cold front green']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0xb3, + 0xb5, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kingfisher turquoise']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0xb5, + 0xbb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fresh soft blue']), + ), + RgbInt8Color.rgbNames( + 0xbe, + 0xc7, + 0xc6, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['china light green']), + ), + RgbInt8Color.rgbNames( + 0xb3, + 0xca, + 0xcb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['baroque chalk soft blue']), + ), + RgbInt8Color.rgbNames( + 0xaa, + 0xca, + 0xca, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice boutique turquoise']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0xcf, + 0xd1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['summer soft blue']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0xd0, + 0xd5, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mountain lake blue']), + ), + RgbInt8Color.rgbNames( + 0xc7, + 0xd5, + 0xd3, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['raffia light grey']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xd9, + 0xd8, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cold air turquoise']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0xdc, + 0xdb, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['frosty soft blue']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0xde, + 0xde, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice crystal blue']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xe7, + 0xe3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['frosty green']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0xe8, + 0xe4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['frosty white blue']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xee, + 0xea, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chilly white']), + ), + RgbInt8Color.rgbNames( + 0x39, + 0x49, + 0x4d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['graphite black green']), + ), + RgbInt8Color.rgbNames( + 0x31, + 0x4b, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mallard blue']), + ), + RgbInt8Color.rgbNames( + 0x27, + 0x4d, + 0x56, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['transporter green']), + ), + RgbInt8Color.rgbNames( + 0x1e, + 0x4c, + 0x59, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deep atlantic blue']), + ), + RgbInt8Color.rgbNames( + 0x10, + 0x4b, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kali blue']), + ), + RgbInt8Color.rgbNames( + 0x4d, + 0x5f, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['linen grey']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x62, + 0x69, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['china green blue']), + ), + RgbInt8Color.rgbNames( + 0x3d, + 0x63, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dusk blue']), + ), + RgbInt8Color.rgbNames( + 0x32, + 0x62, + 0x6e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['trouser blue']), + ), + RgbInt8Color.rgbNames( + 0x20, + 0x63, + 0x74, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['indigo blue']), + ), + RgbInt8Color.rgbNames( + 0x11, + 0x64, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cold blue']), + ), + RgbInt8Color.rgbNames( + 0x06, + 0x61, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mary blue']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x78, + 0x7d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['uniform green grey']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x7a, + 0x80, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['labradorite green']), + ), + RgbInt8Color.rgbNames( + 0x53, + 0x7b, + 0x85, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['enamel antique green']), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x7d, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cranach blue']), + ), + RgbInt8Color.rgbNames( + 0x3d, + 0x7c, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['china blue']), + ), + RgbInt8Color.rgbNames( + 0x36, + 0x7e, + 0x92, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['glacier blue']), + ), + RgbInt8Color.rgbNames( + 0x20, + 0x7e, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['curaçao blue']), + ), + RgbInt8Color.rgbNames( + 0x10, + 0x7d, + 0x9a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['atlantic blue']), + ), + RgbInt8Color.rgbNames( + 0x7e, + 0x92, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ash blue']), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x93, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['baltic blue']), + ), + RgbInt8Color.rgbNames( + 0x6e, + 0x97, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['beach blue']), + ), + RgbInt8Color.rgbNames( + 0x64, + 0x99, + 0xa6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['basilica blue']), + ), + RgbInt8Color.rgbNames( + 0x5a, + 0x99, + 0xaa, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['danube blue']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x99, + 0xad, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['altdorf sky blue']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x99, + 0xb2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['garish blue']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0xae, + 0xb1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['storm grey']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0xaf, + 0xb5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['persian blue']), + ), + RgbInt8Color.rgbNames( + 0x87, + 0xb1, + 0xbb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aqua blue']), + ), + RgbInt8Color.rgbNames( + 0x7e, + 0xb2, + 0xbf, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['maritime soft blue']), + ), + RgbInt8Color.rgbNames( + 0x75, + 0xb4, + 0xc5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mountain blue']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0xb5, + 0xc9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['panorama blue']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0xcb, + 0xce, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['turquoise grey']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0xcd, + 0xd2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dolphin blue']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0xcd, + 0xd6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aroma blue']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0xcf, + 0xdc, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vibrant soft blue']), + ), + RgbInt8Color.rgbNames( + 0xc7, + 0xd4, + 0xd6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['siesta white']), + ), + RgbInt8Color.rgbNames( + 0xbd, + 0xda, + 0xdc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mint blue']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0xdb, + 0xde, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fine blue']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0xdc, + 0xe0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pale blue']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xe4, + 0xe5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tulle soft blue']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xe6, + 0xe6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['antarctic blue']), + ), + RgbInt8Color.rgbNames( + 0x2b, + 0x32, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['navy black']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x34, + 0x3b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['indigo carmine']), + ), + RgbInt8Color.rgbNames( + 0x1a, + 0x34, + 0x3e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['artist blue']), + ), + RgbInt8Color.rgbNames( + 0x14, + 0x35, + 0x43, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['natural indigo']), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x47, + 0x4a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['panda black']), + ), + RgbInt8Color.rgbNames( + 0x39, + 0x4a, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pallasite blue']), + ), + RgbInt8Color.rgbNames( + 0x34, + 0x4c, + 0x56, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hurricane green blue']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x4c, + 0x59, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['watercolour blue']), + ), + RgbInt8Color.rgbNames( + 0x1c, + 0x4d, + 0x5f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['coral blue']), + ), + RgbInt8Color.rgbNames( + 0x0b, + 0x4a, + 0x63, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sandalwood grey blue']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x5f, + 0x61, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['limousine grey blue']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x60, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['corundum blue']), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x61, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['smock blue']), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x62, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mordant blue']), + ), + RgbInt8Color.rgbNames( + 0x35, + 0x63, + 0x76, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cotton indigo']), + ), + RgbInt8Color.rgbNames( + 0x2b, + 0x63, + 0x7e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fjord blue']), + ), + RgbInt8Color.rgbNames( + 0x1c, + 0x64, + 0x82, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['azure green blue']), + ), + RgbInt8Color.rgbNames( + 0x0e, + 0x64, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cyan blue']), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x78, + 0x7b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['winter cloud grey']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x78, + 0x7f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cadet grey']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x7a, + 0x85, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['holbein blue grey']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x7b, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['shady blue']), + ), + RgbInt8Color.rgbNames( + 0x4d, + 0x7b, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fresco blue']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x7a, + 0x93, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['craftsman blue']), + ), + RgbInt8Color.rgbNames( + 0x37, + 0x7d, + 0x9a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['marker blue']), + ), + RgbInt8Color.rgbNames( + 0x27, + 0x7d, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['toy blue']), + ), + RgbInt8Color.rgbNames( + 0x86, + 0x90, + 0x92, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deep sea grey']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x91, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tile blue']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x94, + 0x9f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['morning blue']), + ), + RgbInt8Color.rgbNames( + 0x6d, + 0x94, + 0xa5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['frost blue']), + ), + RgbInt8Color.rgbNames( + 0x64, + 0x95, + 0xaa, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['summer turquoise blue']), + ), + RgbInt8Color.rgbNames( + 0x5c, + 0x98, + 0xb1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fischer blue']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x96, + 0xb3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['planet blue']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x96, + 0xba, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['january blue']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0xab, + 0xaf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tempered grey']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0xae, + 0xb5, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mohair soft blue grey']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0xb0, + 0xbb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kitchen blue']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0xb1, + 0xc0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['culinary blue']), + ), + RgbInt8Color.rgbNames( + 0x7e, + 0xb0, + 0xc5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blouson blue']), + ), + RgbInt8Color.rgbNames( + 0x74, + 0xb0, + 0xc8, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mountain range blue']), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0xb2, + 0xd1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['holiday blue']), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0xc6, + 0xc9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['frost grey blue']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0xcb, + 0xd2, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clinical soft blue']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0xc9, + 0xd5, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['childrens soft blue']), + ), + RgbInt8Color.rgbNames( + 0xa5, + 0xcd, + 0xde, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tourmaline water blue']), + ), + RgbInt8Color.rgbNames( + 0x9e, + 0xcf, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fresh blue']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xd6, + 0xd9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['transparent blue']), + ), + RgbInt8Color.rgbNames( + 0xc1, + 0xd7, + 0xdf, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice shard soft blue']), + ), + RgbInt8Color.rgbNames( + 0xb8, + 0xd9, + 0xe4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['polar blue']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xe5, + 0xe6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cold soft blue']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xe4, + 0xe7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['full moon grey']), + ), + RgbInt8Color.rgbNames( + 0x27, + 0x35, + 0x3d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ore bluish black']), + ), + RgbInt8Color.rgbNames( + 0x21, + 0x35, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['firmanent blue']), + ), + RgbInt8Color.rgbNames( + 0x13, + 0x32, + 0x46, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['prussian blue']), + ), + RgbInt8Color.rgbNames( + 0x3d, + 0x4b, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['galenite blue']), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x4a, + 0x57, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['berry blue green']), + ), + RgbInt8Color.rgbNames( + 0x2b, + 0x4a, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['teal dark blue']), + ), + RgbInt8Color.rgbNames( + 0x21, + 0x4b, + 0x64, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['thunderstorm blue']), + ), + RgbInt8Color.rgbNames( + 0x50, + 0x5f, + 0x69, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cone green blue']), + ), + RgbInt8Color.rgbNames( + 0x49, + 0x60, + 0x6e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['juniper berry blue']), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x62, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['loon turquoise']), + ), + RgbInt8Color.rgbNames( + 0x35, + 0x60, + 0x7b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['workshop blue']), + ), + RgbInt8Color.rgbNames( + 0x2e, + 0x62, + 0x82, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pilot blue']), + ), + RgbInt8Color.rgbNames( + 0x17, + 0x61, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ink blue']), + ), + RgbInt8Color.rgbNames( + 0x0c, + 0x60, + 0x8d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['techno blue']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x78, + 0x81, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gravel grey blue']), + ), + RgbInt8Color.rgbNames( + 0x60, + 0x7a, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spruce blue']), + ), + RgbInt8Color.rgbNames( + 0x59, + 0x7b, + 0x8f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['casual blue']), + ), + RgbInt8Color.rgbNames( + 0x50, + 0x7a, + 0x94, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['forget-me-not blue']), + ), + RgbInt8Color.rgbNames( + 0x43, + 0x7c, + 0x9d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['zircon blue']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x7a, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lagoon blue']), + ), + RgbInt8Color.rgbNames( + 0x27, + 0x79, + 0xa8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['azores blue']), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x93, + 0x9d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kingfisher grey']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x92, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silver fir blue']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x93, + 0xa9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pyjama blue']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x92, + 0xaf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['starflower blue']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x92, + 0xb4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sports blue']), + ), + RgbInt8Color.rgbNames( + 0x53, + 0x94, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['greek blue']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x93, + 0xc4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['alpine blue']), + ), + RgbInt8Color.rgbNames( + 0x9d, + 0xae, + 0xb9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice gull grey blue']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0xaf, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['thistleblossom soft blue']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0xae, + 0xc5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tennis blue']), + ), + RgbInt8Color.rgbNames( + 0x83, + 0xaf, + 0xcc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vintage blue']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0xb0, + 0xd2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fitness blue']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0xc9, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pallid blue']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0xc7, + 0xd7, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['alpine morning blue']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xca, + 0xe0, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'light blue', + 'світло-синій', + 'lichtblau', + 'bleu clair', + 'azul luminoso', + 'blu luce', + 'lichtblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xd4, + 0xdb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['polar soft blue']), + ), + RgbInt8Color.rgbNames( + 0xc1, + 0xd4, + 0xe0, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['washing powder white']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0xd6, + 0xe7, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['himalaya white blue']), + ), + RgbInt8Color.rgbNames( + 0xb3, + 0xd8, + 0xee, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['atmospheric soft blue']), + ), + RgbInt8Color.rgbNames( + 0xda, + 0xe3, + 0xe5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brilliant white']), + ), + RgbInt8Color.rgbNames( + 0x2e, + 0x34, + 0x38, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nightshade blue']), + ), + RgbInt8Color.rgbNames( + 0x27, + 0x33, + 0x3d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['elderberry black']), + ), + RgbInt8Color.rgbNames( + 0x22, + 0x34, + 0x44, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['metal blue']), + ), + RgbInt8Color.rgbNames( + 0x18, + 0x33, + 0x4a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crowberry blue']), + ), + RgbInt8Color.rgbNames( + 0x11, + 0x31, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rich blue']), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x48, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['diamond grey']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x49, + 0x54, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dirty blue']), + ), + RgbInt8Color.rgbNames( + 0x36, + 0x4a, + 0x5b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deep sea blue']), + ), + RgbInt8Color.rgbNames( + 0x2d, + 0x49, + 0x60, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lazurite blue']), + ), + RgbInt8Color.rgbNames( + 0x1e, + 0x48, + 0x67, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['work blue']), + ), + RgbInt8Color.rgbNames( + 0x12, + 0x48, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gemstone blue']), + ), + RgbInt8Color.rgbNames( + 0x0b, + 0x48, + 0x72, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['captain blue']), + ), + RgbInt8Color.rgbNames( + 0x56, + 0x5e, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blue anthracite']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x5f, + 0x6b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blackthorn blue']), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x60, + 0x73, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['celeste blue']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x5f, + 0x78, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['denim blue']), + ), + RgbInt8Color.rgbNames( + 0x38, + 0x60, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orient blue']), + ), + RgbInt8Color.rgbNames( + 0x2c, + 0x5e, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sailor blue']), + ), + RgbInt8Color.rgbNames( + 0x12, + 0x5e, + 0x8d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stone blue']), + ), + RgbInt8Color.rgbNames( + 0x0a, + 0x5d, + 0x94, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pure light blue']), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x77, + 0x7c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['smoky blue']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x76, + 0x83, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tool blue']), + ), + RgbInt8Color.rgbNames( + 0x60, + 0x78, + 0x8b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['technical blue']), + ), + RgbInt8Color.rgbNames( + 0x57, + 0x77, + 0x92, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['coelin blue']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x78, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['greenland blue']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x77, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['summer blue']), + ), + RgbInt8Color.rgbNames( + 0x36, + 0x76, + 0xa7, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['advertising blue']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x75, + 0xad, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['indian ink blue']), + ), + RgbInt8Color.rgbNames( + 0x87, + 0x90, + 0x97, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['carrier pigeon blue']), + ), + RgbInt8Color.rgbNames( + 0x7e, + 0x8f, + 0x9c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bird blue']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x90, + 0xa4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['architecture blue']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x92, + 0xad, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['shirt blue']), + ), + RgbInt8Color.rgbNames( + 0x69, + 0x92, + 0xb4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['steel light blue']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x91, + 0xbc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fairytale blue']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x91, + 0xc3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['princess blue']), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x92, + 0xc7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clear blue']), + ), + RgbInt8Color.rgbNames( + 0xa2, + 0xaa, + 0xb1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['laundry blue']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0xab, + 0xb8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['eye blue']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0xac, + 0xc1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bermuda blue']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0xac, + 0xc7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sea blue']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0xad, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['madonna blue']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0xab, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['caribbean blue']), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0xc5, + 0xcb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hazy blue']), + ), + RgbInt8Color.rgbNames( + 0xb8, + 0xc8, + 0xd6, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light topaz soft blue']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0xc8, + 0xdd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['baby blue']), + ), + RgbInt8Color.rgbNames( + 0xa7, + 0xc9, + 0xe5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crystal blue']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xd4, + 0xdb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice grey']), + ), + RgbInt8Color.rgbNames( + 0xc3, + 0xd4, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['air blue']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0xd5, + 0xea, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['paris blue']), + ), + RgbInt8Color.rgbNames( + 0xda, + 0xe3, + 0xe9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soft blue white']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0xe5, + 0xef, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chalky blue white']), + ), + RgbInt8Color.rgbNames( + 0x17, + 0x30, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cosmos blue']), + ), + RgbInt8Color.rgbNames( + 0x11, + 0x2e, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark denim blue']), + ), + RgbInt8Color.rgbNames( + 0x34, + 0x46, + 0x5a, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['black forest blue']), + ), + RgbInt8Color.rgbNames( + 0x2c, + 0x46, + 0x62, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['swallow blue']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x47, + 0x6a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['navy dark blue']), + ), + RgbInt8Color.rgbNames( + 0x14, + 0x45, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pompeii blue']), + ), + RgbInt8Color.rgbNames( + 0x52, + 0x5e, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['trekking blue']), + ), + RgbInt8Color.rgbNames( + 0x4b, + 0x5e, + 0x74, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['steel blue grey']), + ), + RgbInt8Color.rgbNames( + 0x43, + 0x5d, + 0x79, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['berry blue']), + ), + RgbInt8Color.rgbNames( + 0x3a, + 0x5d, + 0x82, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['linen blue']), + ), + RgbInt8Color.rgbNames( + 0x2e, + 0x5d, + 0x8a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pool blue']), + ), + RgbInt8Color.rgbNames( + 0x1f, + 0x5b, + 0x90, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kingfisher blue']), + ), + RgbInt8Color.rgbNames( + 0x15, + 0x5b, + 0x95, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['europe blue']), + ), + RgbInt8Color.rgbNames( + 0x69, + 0x76, + 0x84, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['metal grey']), + ), + RgbInt8Color.rgbNames( + 0x62, + 0x75, + 0x8c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['titanium blue']), + ), + RgbInt8Color.rgbNames( + 0x5c, + 0x76, + 0x93, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mallorca blue']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x75, + 0x9b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['linoleum blue']), + ), + RgbInt8Color.rgbNames( + 0x4b, + 0x74, + 0xa4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['prominent blue']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x74, + 0xac, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['turkish blue']), + ), + RgbInt8Color.rgbNames( + 0x30, + 0x74, + 0xb4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['primal blue']), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x8e, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bird blue grey']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x8f, + 0xa7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gentle blue']), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x8e, + 0xaf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aragonite blue']), + ), + RgbInt8Color.rgbNames( + 0x6d, + 0x8e, + 0xb7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pearl blue']), + ), + RgbInt8Color.rgbNames( + 0x64, + 0x8e, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['topaz blue']), + ), + RgbInt8Color.rgbNames( + 0x5c, + 0x8d, + 0xc7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stratos blue']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x8e, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['structural blue']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0xaa, + 0xba, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['foggy blue']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0xaa, + 0xc2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chalk blue']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0xa9, + 0xca, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['medium blue']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0xaa, + 0xd2, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['meadow blossom blue']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0xa9, + 0xd9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['broom butterfly blue']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0xc6, + 0xd6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light cyan']), + ), + RgbInt8Color.rgbNames( + 0xb4, + 0xc8, + 0xde, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['himalaya blue']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0xc3, + 0xe4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['velvet blue']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0xd0, + 0xd8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['white blue']), + ), + RgbInt8Color.rgbNames( + 0xc4, + 0xd1, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['washing powder soft blue']), + ), + RgbInt8Color.rgbNames( + 0xbf, + 0xd3, + 0xea, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['diamond soft blue']), + ), + RgbInt8Color.rgbNames( + 0xdb, + 0xe1, + 0xe8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice white']), + ), + RgbInt8Color.rgbNames( + 0x2f, + 0x34, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blue-black']), + ), + RgbInt8Color.rgbNames( + 0x2b, + 0x33, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nato blue']), + ), + RgbInt8Color.rgbNames( + 0x22, + 0x30, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['suit blue']), + ), + RgbInt8Color.rgbNames( + 0x1e, + 0x31, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['halite blue']), + ), + RgbInt8Color.rgbNames( + 0x42, + 0x47, + 0x4e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['alpine duck grey']), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x47, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bronze blue']), + ), + RgbInt8Color.rgbNames( + 0x3a, + 0x47, + 0x5c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['berlin blue']), + ), + RgbInt8Color.rgbNames( + 0x34, + 0x46, + 0x63, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['french blue']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x45, + 0x69, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tanzanite blue']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x46, + 0x72, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['opal blue']), + ), + RgbInt8Color.rgbNames( + 0x14, + 0x43, + 0x7b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['royal blue']), + ), + RgbInt8Color.rgbNames( + 0x58, + 0x5d, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['swedish blue']), + ), + RgbInt8Color.rgbNames( + 0x56, + 0x5f, + 0x6e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sheet blue']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x5e, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['plum blue']), + ), + RgbInt8Color.rgbNames( + 0x48, + 0x5b, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cadet blue']), + ), + RgbInt8Color.rgbNames( + 0x43, + 0x5c, + 0x83, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['enamel blue']), + ), + RgbInt8Color.rgbNames( + 0x3d, + 0x5c, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['copenhagen blue']), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x5a, + 0x90, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bauhaus blue']), + ), + RgbInt8Color.rgbNames( + 0x20, + 0x5a, + 0x9b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['navy blue']), + ), + RgbInt8Color.rgbNames( + 0x14, + 0x58, + 0xa2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['led blue']), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x74, + 0x7c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spitsbergen blue']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x74, + 0x84, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cypress grey blue']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x74, + 0x8c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mahonia berry blue']), + ), + RgbInt8Color.rgbNames( + 0x64, + 0x76, + 0x94, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['doves blue']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x75, + 0x9e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['biedermeier blue']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x74, + 0xa7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['beijing blue']), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x72, + 0xac, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vermeer blue']), + ), + RgbInt8Color.rgbNames( + 0x43, + 0x73, + 0xb7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['meissen blue']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0x8e, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['seal grey']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0x8d, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['diopside blue']), + ), + RgbInt8Color.rgbNames( + 0x83, + 0x90, + 0xa9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nordland blue']), + ), + RgbInt8Color.rgbNames( + 0x7b, + 0x8e, + 0xaf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cranberry blue']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x8e, + 0xb7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lupine blue']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x8e, + 0xc0, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blueberry soft blue']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x8d, + 0xc8, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'brilliant blue', + 'брильянтово-синій', + 'brillantblau', + 'bleu brillant', + 'azul brillante', + 'blu brillante', + 'briljantblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xab, + 0xb3, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['northern light grey']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0xaa, + 0xbb, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['petrel blue grey']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0xa9, + 0xc3, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nordland light blue']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0xa9, + 0xcc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['matte blue']), + ), + RgbInt8Color.rgbNames( + 0x8e, + 0xa8, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pacific blue']), + ), + RgbInt8Color.rgbNames( + 0xc0, + 0xc5, + 0xce, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light blue grey']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0xc4, + 0xd6, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['powder soft blue']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0xc4, + 0xde, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wind blue']), + ), + RgbInt8Color.rgbNames( + 0xcc, + 0xd0, + 0xd8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['satin white']), + ), + RgbInt8Color.rgbNames( + 0xc8, + 0xd2, + 0xe4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sea breeze green']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xe0, + 0xe5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['milk blue']), + ), + RgbInt8Color.rgbNames( + 0x21, + 0x2e, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crow black blue']), + ), + RgbInt8Color.rgbNames( + 0x19, + 0x2c, + 0x52, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['indigo black']), + ), + RgbInt8Color.rgbNames( + 0x13, + 0x2c, + 0x5b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['effervescent blue']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x45, + 0x5c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['midnight blue']), + ), + RgbInt8Color.rgbNames( + 0x38, + 0x44, + 0x63, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark blue']), + ), + RgbInt8Color.rgbNames( + 0x32, + 0x44, + 0x6b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grape blue']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x41, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['medici blue']), + ), + RgbInt8Color.rgbNames( + 0x21, + 0x40, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['colibri blue']), + ), + RgbInt8Color.rgbNames( + 0x16, + 0x3d, + 0x81, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['prince blue']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x5c, + 0x74, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pewter grey']), + ), + RgbInt8Color.rgbNames( + 0x4e, + 0x5b, + 0x7c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['parlour blue']), + ), + RgbInt8Color.rgbNames( + 0x4b, + 0x5b, + 0x84, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['functional blue']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x58, + 0x8b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['make-up blue']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x57, + 0x93, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lapis lazuli blue']), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x55, + 0x9a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['magic blue']), + ), + RgbInt8Color.rgbNames( + 0x6e, + 0x75, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brocade blue']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x75, + 0x8f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['noble blue']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x73, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['delft blue']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x73, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cocktail blue']), + ), + RgbInt8Color.rgbNames( + 0x5c, + 0x70, + 0xa6, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sage blossom blue']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x6e, + 0xab, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['viennese blue']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x6f, + 0xb6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cornflower blue']), + ), + RgbInt8Color.rgbNames( + 0x86, + 0x8d, + 0x9f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fantasy grey']), + ), + RgbInt8Color.rgbNames( + 0x85, + 0x8e, + 0xa9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lilac blue']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x8c, + 0xb1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lavender blue']), + ), + RgbInt8Color.rgbNames( + 0x7b, + 0x8c, + 0xb9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['delphinium blue']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0x8b, + 0xc2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['eyeshadow blue']), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x88, + 0xc8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['butterfly blue']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0xa9, + 0xbc, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['feather soft blue']), + ), + RgbInt8Color.rgbNames( + 0x9f, + 0xa8, + 0xc4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['satin soft blue']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0xa8, + 0xce, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['angel blue']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0xa4, + 0xd3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['boy blue']), + ), + RgbInt8Color.rgbNames( + 0xbf, + 0xc4, + 0xd7, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light pearl soft blue']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0xc1, + 0xde, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['retina soft blue']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xd0, + 0xd7, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['angel hair silver']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0xcf, + 0xe3, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mother-of-pearl silver']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0xce, + 0xe9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['murano soft blue']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xe0, + 0xe8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bleached white']), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x34, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['granite black']), + ), + RgbInt8Color.rgbNames( + 0x30, + 0x32, + 0x41, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['diamond black']), + ), + RgbInt8Color.rgbNames( + 0x2d, + 0x31, + 0x46, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crow black']), + ), + RgbInt8Color.rgbNames( + 0x28, + 0x2f, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['manganese black']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x2f, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['elite blue']), + ), + RgbInt8Color.rgbNames( + 0x20, + 0x2d, + 0x59, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ambassador blue']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x46, + 0x4d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['smoking night blue']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x47, + 0x56, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['meteorite black blue']), + ), + RgbInt8Color.rgbNames( + 0x42, + 0x45, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['anthracite blue']), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x45, + 0x65, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['garnet stone blue']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x43, + 0x6b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hydrogen blue']), + ), + RgbInt8Color.rgbNames( + 0x34, + 0x41, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deep blue']), + ), + RgbInt8Color.rgbNames( + 0x32, + 0x40, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['theatre blue']), + ), + RgbInt8Color.rgbNames( + 0x2c, + 0x40, + 0x7e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['poster blue']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x5d, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gallery grey']), + ), + RgbInt8Color.rgbNames( + 0x59, + 0x5b, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['suede indigo']), + ), + RgbInt8Color.rgbNames( + 0x56, + 0x5a, + 0x73, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark lavender']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x59, + 0x7c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['starry sky blue']), + ), + RgbInt8Color.rgbNames( + 0x52, + 0x59, + 0x84, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['indigo navy blue']), + ), + RgbInt8Color.rgbNames( + 0x4e, + 0x57, + 0x8a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['evening blue']), + ), + RgbInt8Color.rgbNames( + 0x49, + 0x56, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['portuguese blue']), + ), + RgbInt8Color.rgbNames( + 0x42, + 0x54, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['neptune blue']), + ), + RgbInt8Color.rgbNames( + 0x3a, + 0x52, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hyacinth blue']), + ), + RgbInt8Color.rgbNames( + 0x72, + 0x75, + 0x7e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['noble grey']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x74, + 0x85, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice blue grey']), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x72, + 0x8c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['granite blue']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x70, + 0x95, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lavender mauve']), + ), + RgbInt8Color.rgbNames( + 0x69, + 0x70, + 0x9d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['costume blue']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x6e, + 0xa4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light mauve']), + ), + RgbInt8Color.rgbNames( + 0x62, + 0x6d, + 0xab, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sapphire shimmer blue']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x6d, + 0xb6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['diva violet']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x8d, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tulle grey']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x8b, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sweet lavender']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0x8a, + 0xa6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['marble blue']), + ), + RgbInt8Color.rgbNames( + 0x86, + 0x8a, + 0xaf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['misty violet']), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x88, + 0xb7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['opal violet']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x88, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['persian violet']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x87, + 0xc8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['organza violet']), + ), + RgbInt8Color.rgbNames( + 0xa5, + 0xa6, + 0xb0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['taupe grey']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xa8, + 0xba, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tulle violet']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0xa6, + 0xc2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['foxflower viola']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0xa5, + 0xcc, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lilac scent soft blue']), + ), + RgbInt8Color.rgbNames( + 0x9e, + 0xa4, + 0xd3, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aster flower blue']), + ), + RgbInt8Color.rgbNames( + 0xc4, + 0xc5, + 0xce, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['viola ice grey']), + ), + RgbInt8Color.rgbNames( + 0xc1, + 0xc2, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['hyacinth white soft blue']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0xbf, + 0xdc, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['violet scent soft blue']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xd1, + 0xd8, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pebble soft blue white']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xd0, + 0xe1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['jewellery white']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xe0, + 0xe9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mauve white']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0xe9, + 0xf1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['porcelain white']), + ), + RgbInt8Color.rgbNames( + 0x2c, + 0x2c, + 0x3c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spinel stone black']), + ), + RgbInt8Color.rgbNames( + 0x2f, + 0x2d, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['black violet']), + ), + RgbInt8Color.rgbNames( + 0x2f, + 0x2f, + 0x4c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tropical night blue']), + ), + RgbInt8Color.rgbNames( + 0x2b, + 0x2b, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['indigo violet']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x28, + 0x55, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ultramarine violet']), + ), + RgbInt8Color.rgbNames( + 0x23, + 0x27, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['schiava blue']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x42, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['flintstone blue']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x42, + 0x5a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spinel black']), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x3f, + 0x60, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['church blue']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x3e, + 0x68, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gloomy blue']), + ), + RgbInt8Color.rgbNames( + 0x3e, + 0x3d, + 0x6f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lviv blue']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x3d, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['british mauve']), + ), + RgbInt8Color.rgbNames( + 0x38, + 0x3a, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['official violet']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x5a, + 0x6b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['shearwater black']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x58, + 0x72, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['agate violet']), + ), + RgbInt8Color.rgbNames( + 0x59, + 0x56, + 0x7b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deep lavender']), + ), + RgbInt8Color.rgbNames( + 0x57, + 0x53, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dusk mauve']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x51, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rich violet']), + ), + RgbInt8Color.rgbNames( + 0x52, + 0x4f, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['onion skin blue']), + ), + RgbInt8Color.rgbNames( + 0x50, + 0x4f, + 0x97, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['iris blue']), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x4e, + 0x9e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'violet blue', + 'синьо-фіолетовий', + 'violettblau', + 'bleu violet', + 'azul violeta', + 'blu violaceo', + 'paarsblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x72, + 0x71, + 0x84, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ash mauve']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x6f, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stormy mauve']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x6c, + 0x92, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silk crepe mauve']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x6b, + 0x9a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hyacinth mauve']), + ), + RgbInt8Color.rgbNames( + 0x6e, + 0x6a, + 0xa1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mountain flower mauve']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x68, + 0xa9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chalcedony violet']), + ), + RgbInt8Color.rgbNames( + 0x69, + 0x67, + 0xb1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gladiola blue']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x89, + 0x9e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lavender blossom grey']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x88, + 0xa5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['delicate violet']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0x84, + 0xad, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['opera mauve']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x85, + 0xb6, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soft blue lavender']), + ), + RgbInt8Color.rgbNames( + 0x87, + 0x83, + 0xbd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pleated mauve']), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x80, + 0xc3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['true lavender']), + ), + RgbInt8Color.rgbNames( + 0xa7, + 0xa5, + 0xba, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cream violet']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xa2, + 0xc2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['wisteria light soft blue']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0xa1, + 0xc9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blossom mauve']), + ), + RgbInt8Color.rgbNames( + 0xa2, + 0x9e, + 0xd1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sorbet ice mauve']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xc0, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tulip soft blue']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xbf, + 0xdb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pale lilac']), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0xd2, + 0xd9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['limestone mauve']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xcd, + 0xe7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orchid white']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0xe0, + 0xe7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['violet white']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0xe7, + 0xef, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lilac white']), + ), + RgbInt8Color.rgbNames( + 0x34, + 0x32, + 0x39, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['night black']), + ), + RgbInt8Color.rgbNames( + 0x31, + 0x2d, + 0x3c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['heron blue']), + ), + RgbInt8Color.rgbNames( + 0x31, + 0x2c, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['viola black']), + ), + RgbInt8Color.rgbNames( + 0x31, + 0x2a, + 0x47, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blackberry black']), + ), + RgbInt8Color.rgbNames( + 0x30, + 0x28, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cardinal mauve']), + ), + RgbInt8Color.rgbNames( + 0x2e, + 0x26, + 0x53, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ceremonial purple']), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x45, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['night grey']), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x42, + 0x54, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mourning violet']), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x40, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['club grey']), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x3e, + 0x5e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mulberry mauve black']), + ), + RgbInt8Color.rgbNames( + 0x48, + 0x3d, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['evening mauve']), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x3b, + 0x6b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['opera blue']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x3a, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deep violet']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x37, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sage violet']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x5c, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['baroque grey']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x58, + 0x69, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gobelin mauve']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x56, + 0x6f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orchid grey']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x54, + 0x76, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['old mauve']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x52, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['parma mauve']), + ), + RgbInt8Color.rgbNames( + 0x5f, + 0x50, + 0x84, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wool violet']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x4f, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fine purple']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x4b, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clematis blue']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x4a, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['coronation blue']), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x73, + 0x7b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hawk grey']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x70, + 0x82, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['violet grey']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x6e, + 0x89, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['capercaillie mauve']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0x6c, + 0x90, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['parisian violet']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0x69, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tulip violet']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0x67, + 0x9d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['toy mauve']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x66, + 0xa4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wintertime mauve']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x63, + 0xab, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clear mauve']), + ), + RgbInt8Color.rgbNames( + 0x8e, + 0x8d, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['partridge grey']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0x89, + 0x9c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rose grey']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0x87, + 0xa3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['antique viola']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0x84, + 0xaa, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['larkspur violet']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0x81, + 0xb0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['silk lilac']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0x7f, + 0xb8, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['heliotropic mauve']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0x7c, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['amethyst grey']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0xa7, + 0xb1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['velvet grey']), + ), + RgbInt8Color.rgbNames( + 0xaa, + 0xa3, + 0xb7, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['morning mist grey']), + ), + RgbInt8Color.rgbNames( + 0xab, + 0xa1, + 0xbf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['eyeshadow viola']), + ), + RgbInt8Color.rgbNames( + 0xac, + 0xa0, + 0xc6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lavender violet']), + ), + RgbInt8Color.rgbNames( + 0xac, + 0x9c, + 0xcd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pink lavender']), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0xc3, + 0xcc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hazy mauve']), + ), + RgbInt8Color.rgbNames( + 0xc4, + 0xbe, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pale violet']), + ), + RgbInt8Color.rgbNames( + 0xc7, + 0xbd, + 0xdb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice mauve']), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0xcf, + 0xd6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['delicate viola']), + ), + RgbInt8Color.rgbNames( + 0xd5, + 0xcb, + 0xe1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['powder viola white']), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0xdf, + 0xe8, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['translucent white']), + ), + RgbInt8Color.rgbNames( + 0x38, + 0x2c, + 0x46, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['obsidian lava black']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x2a, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['operetta mauve']), + ), + RgbInt8Color.rgbNames( + 0x39, + 0x26, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['powerful violet']), + ), + RgbInt8Color.rgbNames( + 0x4e, + 0x43, + 0x59, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark grey mauve']), + ), + RgbInt8Color.rgbNames( + 0x4d, + 0x3e, + 0x5c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['powerful mauve']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x3c, + 0x62, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['english violet']), + ), + RgbInt8Color.rgbNames( + 0x52, + 0x39, + 0x68, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crystal purple']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x37, + 0x6a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['succinct violet']), + ), + RgbInt8Color.rgbNames( + 0x53, + 0x36, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['loden purple']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x5b, + 0x6b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark pink']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x59, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['violet haze']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x57, + 0x76, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['indigo red']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x53, + 0x7b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['charoite violet']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x4f, + 0x7e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['royal purple']), + ), + RgbInt8Color.rgbNames( + 0x69, + 0x4e, + 0x84, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['magenta violet']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x4c, + 0x8a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pure mauve']), + ), + RgbInt8Color.rgbNames( + 0x7a, + 0x71, + 0x83, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dull mauve']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x6f, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['batik lilac']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x6d, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['provence violet']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x6a, + 0x94, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['baroness mauve']), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x68, + 0x9a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bitter violet']), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x65, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['violet rose']), + ), + RgbInt8Color.rgbNames( + 0x83, + 0x63, + 0xa4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orchid mauve']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0x89, + 0x9c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gentle mauve']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x88, + 0xa2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['smoky mauve']), + ), + RgbInt8Color.rgbNames( + 0x99, + 0x85, + 0xa8, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['saffron blossom mauve']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x82, + 0xad, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['flirty pink']), + ), + RgbInt8Color.rgbNames( + 0x9d, + 0x80, + 0xb2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['peony mauve']), + ), + RgbInt8Color.rgbNames( + 0x9e, + 0x7c, + 0xba, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lilac purple']), + ), + RgbInt8Color.rgbNames( + 0xae, + 0xa4, + 0xb5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['amorphous rose']), + ), + RgbInt8Color.rgbNames( + 0xb1, + 0xa1, + 0xbc, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['transparent mauve']), + ), + RgbInt8Color.rgbNames( + 0xb2, + 0x9e, + 0xc1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blue pink']), + ), + RgbInt8Color.rgbNames( + 0xb4, + 0x9c, + 0xc7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['glass violet']), + ), + RgbInt8Color.rgbNames( + 0xc9, + 0xbf, + 0xd1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['powder viola']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0xbd, + 0xd8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orchid violet']), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0xd1, + 0xd8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fairy pink']), + ), + RgbInt8Color.rgbNames( + 0xd8, + 0xcd, + 0xe0, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tricot lilac white']), + ), + RgbInt8Color.rgbNames( + 0xe6, + 0xe1, + 0xe7, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wallflower white']), + ), + RgbInt8Color.rgbNames( + 0x36, + 0x32, + 0x39, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lava black']), + ), + RgbInt8Color.rgbNames( + 0x37, + 0x2d, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['obsidian red']), + ), + RgbInt8Color.rgbNames( + 0x38, + 0x2a, + 0x3e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spinel violet']), + ), + RgbInt8Color.rgbNames( + 0x3d, + 0x27, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aubergine mauve']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x24, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark purple']), + ), + RgbInt8Color.rgbNames( + 0x49, + 0x44, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['violet black']), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x42, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stone violet']), + ), + RgbInt8Color.rgbNames( + 0x4d, + 0x3d, + 0x52, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['amethyst dark violet']), + ), + RgbInt8Color.rgbNames( + 0x50, + 0x39, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark blackberry']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x37, + 0x5b, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['purpurite violet']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x35, + 0x60, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['damson mauve']), + ), + RgbInt8Color.rgbNames( + 0x58, + 0x32, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grape purple']), + ), + RgbInt8Color.rgbNames( + 0x5a, + 0x31, + 0x68, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lounge violet']), + ), + RgbInt8Color.rgbNames( + 0x61, + 0x5c, + 0x63, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['slate mauve']), + ), + RgbInt8Color.rgbNames( + 0x62, + 0x58, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['olivine basalt']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x55, + 0x6b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['antique grey']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x52, + 0x70, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['basil mauve']), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0x4f, + 0x74, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gladiola violet']), + ), + RgbInt8Color.rgbNames( + 0x6d, + 0x49, + 0x77, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cabbage blossom violet']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x46, + 0x7b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lilac violet']), + ), + RgbInt8Color.rgbNames( + 0x73, + 0x43, + 0x82, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['violet purple']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x72, + 0x79, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grey violet']), + ), + RgbInt8Color.rgbNames( + 0x7a, + 0x6e, + 0x7e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['british grey mauve']), + ), + RgbInt8Color.rgbNames( + 0x7d, + 0x6b, + 0x83, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['parma grey']), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x6a, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cyclamen']), + ), + RgbInt8Color.rgbNames( + 0x83, + 0x64, + 0x8d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['poetry mauve']), + ), + RgbInt8Color.rgbNames( + 0x87, + 0x63, + 0x93, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['viola grey']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x5c, + 0x95, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aster violetta']), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x5d, + 0x9b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['empire violet']), + ), + RgbInt8Color.rgbNames( + 0x91, + 0x8c, + 0x94, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aragonite grey']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x89, + 0x98, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chalk violet']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x86, + 0x9e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['amethyst grey violet']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x80, + 0xa2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wonder violet']), + ), + RgbInt8Color.rgbNames( + 0x9d, + 0x7e, + 0xa7, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nightshade violet']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0x7a, + 0xad, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lobby lilac']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0x77, + 0xb0, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blackberry sorbet']), + ), + RgbInt8Color.rgbNames( + 0xab, + 0xa5, + 0xae, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['elderberry grey']), + ), + RgbInt8Color.rgbNames( + 0xae, + 0xa1, + 0xb4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bellflower violet']), + ), + RgbInt8Color.rgbNames( + 0xb1, + 0x9e, + 0xb9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['quartz violet']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0x9d, + 0xc1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['beach lilac']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0x97, + 0xc4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lilac pink']), + ), + RgbInt8Color.rgbNames( + 0xc8, + 0xc1, + 0xc9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light violet']), + ), + RgbInt8Color.rgbNames( + 0xcc, + 0xbe, + 0xcf, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['amethyst light violet']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xb9, + 0xd3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cosmetic mauve']), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0xce, + 0xd6, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blackberry cream']), + ), + RgbInt8Color.rgbNames( + 0xda, + 0xcb, + 0xdd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ametrine quartz']), + ), + RgbInt8Color.rgbNames( + 0xe6, + 0xdf, + 0xe5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['apatite pink']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x28, + 0x3e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['profound mauve']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x25, + 0x43, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['opulent mauve']), + ), + RgbInt8Color.rgbNames( + 0x52, + 0x3f, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['currant violet']), + ), + RgbInt8Color.rgbNames( + 0x56, + 0x3c, + 0x54, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mexican purple']), + ), + RgbInt8Color.rgbNames( + 0x59, + 0x38, + 0x57, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['parma plum red']), + ), + RgbInt8Color.rgbNames( + 0x5e, + 0x35, + 0x5a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['intense purple']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x31, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['opulent purple']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x2a, + 0x5f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['intense mauve']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x59, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['patina violet']), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0x56, + 0x69, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark purple grey']), + ), + RgbInt8Color.rgbNames( + 0x6e, + 0x54, + 0x6e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['amaranth red']), + ), + RgbInt8Color.rgbNames( + 0x72, + 0x50, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deep magenta']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x4c, + 0x74, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['phloxflower violet']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x49, + 0x78, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['thistle mauve']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x42, + 0x78, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['visiona red']), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x3d, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['purpurite red']), + ), + RgbInt8Color.rgbNames( + 0x7d, + 0x6f, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['burlap grey']), + ), + RgbInt8Color.rgbNames( + 0x83, + 0x6d, + 0x82, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sapphire pink']), + ), + RgbInt8Color.rgbNames( + 0x87, + 0x6a, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dianthus mauve']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x67, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crystal pink']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0x64, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tulipan violet']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0x60, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['violet red']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x5a, + 0x92, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orchid purple']), + ), + RgbInt8Color.rgbNames( + 0x97, + 0x89, + 0x98, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['greige violet']), + ), + RgbInt8Color.rgbNames( + 0x9d, + 0x86, + 0x9d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['vesuvian violet']), + ), + RgbInt8Color.rgbNames( + 0xa2, + 0x83, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['gentian violet']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0x7e, + 0xa1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wilhelminian pink']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0x7b, + 0xa6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['stage mauve']), + ), + RgbInt8Color.rgbNames( + 0xaf, + 0x76, + 0xaa, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cheddar pink mauve']), + ), + RgbInt8Color.rgbNames( + 0xb2, + 0x73, + 0xae, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['colombo red mauve']), + ), + RgbInt8Color.rgbNames( + 0xb3, + 0xa3, + 0xb3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mist pink']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0x9f, + 0xb5, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['leek blossom pink']), + ), + RgbInt8Color.rgbNames( + 0xbd, + 0x9c, + 0xba, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['strawberry pink']), + ), + RgbInt8Color.rgbNames( + 0xc3, + 0x98, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['purple pink']), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0x95, + 0xbf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clover pink']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xbe, + 0xcd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['purple white']), + ), + RgbInt8Color.rgbNames( + 0xd3, + 0xbb, + 0xd1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lovely pink']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xb8, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['designer pink']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0xd1, + 0xd8, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light magnolia rose']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xcc, + 0xdc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['raspberry pink']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xc9, + 0xdf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['heavenly pink']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xe0, + 0xe4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['delicacy white']), + ), + RgbInt8Color.rgbNames( + 0x36, + 0x30, + 0x35, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['liquorice black']), + ), + RgbInt8Color.rgbNames( + 0x39, + 0x2b, + 0x34, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mangosteen violet']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x25, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sitter red']), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x26, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['juice violet']), + ), + RgbInt8Color.rgbNames( + 0x48, + 0x26, + 0x3d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['prestige mauve']), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x44, + 0x49, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['apple herb black']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x3f, + 0x4a, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['passionfruit mauve']), + ), + RgbInt8Color.rgbNames( + 0x53, + 0x3c, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark fig violet']), + ), + RgbInt8Color.rgbNames( + 0x57, + 0x39, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ruby violet']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x35, + 0x52, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blackberry deep red']), + ), + RgbInt8Color.rgbNames( + 0x5f, + 0x30, + 0x52, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['deep red']), + ), + RgbInt8Color.rgbNames( + 0x63, + 0x29, + 0x54, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['velvet mauve']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x24, + 0x55, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['forest fruit red']), + ), + RgbInt8Color.rgbNames( + 0x60, + 0x59, + 0x5f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mauve brown']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x56, + 0x61, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spinel grey']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x53, + 0x63, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['earth brown violet']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x4f, + 0x65, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dahlia matte red']), + ), + RgbInt8Color.rgbNames( + 0x75, + 0x4b, + 0x69, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brocade violet']), + ), + RgbInt8Color.rgbNames( + 0x79, + 0x47, + 0x6b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['madder magenta']), + ), + RgbInt8Color.rgbNames( + 0x7b, + 0x40, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['club mauve']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x3c, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cherry red']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x33, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['magenta red']), + ), + RgbInt8Color.rgbNames( + 0x79, + 0x72, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['jubilee grey']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x6e, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['port wine red']), + ), + RgbInt8Color.rgbNames( + 0x85, + 0x6a, + 0x7c, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['raw garnet viola']), + ), + RgbInt8Color.rgbNames( + 0x8a, + 0x67, + 0x7e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['milkwort red']), + ), + RgbInt8Color.rgbNames( + 0x8e, + 0x62, + 0x81, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rust magenta']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0x5e, + 0x83, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['raspberry jelly red']), + ), + RgbInt8Color.rgbNames( + 0x97, + 0x58, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['thimble red']), + ), + RgbInt8Color.rgbNames( + 0x9e, + 0x53, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cyclamen red']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0x4d, + 0x89, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brilliant carmine']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x8c, + 0x92, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['heather red grey']), + ), + RgbInt8Color.rgbNames( + 0x99, + 0x87, + 0x93, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['piano mauve']), + ), + RgbInt8Color.rgbNames( + 0xa0, + 0x84, + 0x97, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['evening pink']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0x7f, + 0x99, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['capri fashion pink']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0x7a, + 0x9a, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['antique hot pink']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0x77, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cheek red']), + ), + RgbInt8Color.rgbNames( + 0xb4, + 0x73, + 0xa0, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hollyhock blossom pink']), + ), + RgbInt8Color.rgbNames( + 0xb8, + 0x6f, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bishop red']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0xa5, + 0xab, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mauve grey']), + ), + RgbInt8Color.rgbNames( + 0xb3, + 0xa1, + 0xae, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['buckwheat mauve']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0x9d, + 0xb2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['hollyhock pink']), + ), + RgbInt8Color.rgbNames( + 0xbf, + 0x9a, + 0xb4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['idyllic pink']), + ), + RgbInt8Color.rgbNames( + 0xc4, + 0x95, + 0xb4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['morning glory pink']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0x90, + 0xb9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soft fuschia']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0x8d, + 0xbb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['firm pink']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xc2, + 0xc6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['piano grey rose']), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0xbf, + 0xcb, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mint blossom rose']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0xba, + 0xcd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['scandalous rose']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xb7, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bonbon rose']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0xce, + 0xd4, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['strawberry cream']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0xcb, + 0xd9, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light flamingo pink']), + ), + RgbInt8Color.rgbNames( + 0xe8, + 0xc9, + 0xdc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lacquer mauve']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xdf, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['rose white']), + ), + RgbInt8Color.rgbNames( + 0xef, + 0xe6, + 0xed, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dress pink']), + ), + RgbInt8Color.rgbNames( + 0x39, + 0x2c, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mulled wine red']), + ), + RgbInt8Color.rgbNames( + 0x3e, + 0x29, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soft red']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x24, + 0x35, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['star ruby']), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x21, + 0x36, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chilli black red']), + ), + RgbInt8Color.rgbNames( + 0x52, + 0x1c, + 0x39, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tulip poplar purple']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x40, + 0x47, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['sparrow grey red']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x3e, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['siliceous red']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x3a, + 0x4a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['liqueur red']), + ), + RgbInt8Color.rgbNames( + 0x5f, + 0x35, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['wine gummy red']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x32, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['burlat red']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x2a, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bordeaux red']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x22, + 0x4d, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dried flower purple']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x58, + 0x60, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aubergine grey']), + ), + RgbInt8Color.rgbNames( + 0x6d, + 0x54, + 0x60, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['opium mauve']), + ), + RgbInt8Color.rgbNames( + 0x72, + 0x50, + 0x62, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['grey carmine']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x4c, + 0x62, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nectar red']), + ), + RgbInt8Color.rgbNames( + 0x7d, + 0x48, + 0x63, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dark rose']), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x42, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['bonbon red']), + ), + RgbInt8Color.rgbNames( + 0x86, + 0x3f, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cyclamen red']), + ), + RgbInt8Color.rgbNames( + 0x8a, + 0x37, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['powder red']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0x2d, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['madder red']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x6e, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['innocent pink']), + ), + RgbInt8Color.rgbNames( + 0x86, + 0x6b, + 0x78, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['blunt violet']), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x67, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['corundum red']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0x63, + 0x7b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['batik pink']), + ), + RgbInt8Color.rgbNames( + 0x97, + 0x61, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['beryl red']), + ), + RgbInt8Color.rgbNames( + 0x9f, + 0x5a, + 0x7c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['crimson']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0x55, + 0x7b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['madder rose']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0x50, + 0x7e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['signal pink']), + ), + RgbInt8Color.rgbNames( + 0xb1, + 0x4a, + 0x7e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['nail polish pink']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0x88, + 0x92, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['art nouveau violet']), + ), + RgbInt8Color.rgbNames( + 0xa0, + 0x84, + 0x92, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mohair pink']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0x81, + 0x95, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'heather violet', + 'вересовий фіолетовий', + 'erikaviolett', + 'violet bruyère', + 'violeta érica', + 'viola erica', + 'heidepaars' + ]), + ), + RgbInt8Color.rgbNames( + 0xae, + 0x7c, + 0x94, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['heather rose']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0x79, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['venetian pink']), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0x73, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['dolomite red']), + ), + RgbInt8Color.rgbNames( + 0xc0, + 0x6f, + 0x97, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['camellia pink']), + ), + RgbInt8Color.rgbNames( + 0xc3, + 0x6b, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['persian pink']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0xa3, + 0xab, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cold pink']), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0x9e, + 0xac, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['shady pink']), + ), + RgbInt8Color.rgbNames( + 0xc0, + 0x98, + 0xac, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ladys cushions pink']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0x97, + 0xaf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['coral pink']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0x92, + 0xb0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['techno pink']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0x8e, + 0xb1, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['chewing gum pink']), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0xbd, + 0xc6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['magnolia white']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xba, + 0xc7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['spring pink']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0xb6, + 0xcb, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'light pink', + 'світло-рожевий', + 'hellrosa', + 'rose clair', + 'rosa claro', + 'rosa chiaro', + 'lichtroze' + ]), + ), + RgbInt8Color.rgbNames( + 0xd8, + 0xce, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fairy white']), + ), + RgbInt8Color.rgbNames( + 0xe2, + 0xcc, + 0xd6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orchid rose']), + ), + RgbInt8Color.rgbNames( + 0xe8, + 0xc8, + 0xd6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pale pink']), + ), + RgbInt8Color.rgbNames( + 0xea, + 0xdf, + 0xe1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light rose']), + ), + RgbInt8Color.rgbNames( + 0xf0, + 0xda, + 0xe5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ranuncula white']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xe6, + 0xeb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clichy white']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x28, + 0x2e, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['piermont stone red']), + ), + RgbInt8Color.rgbNames( + 0x4b, + 0x44, + 0x46, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soot red']), + ), + RgbInt8Color.rgbNames( + 0x50, + 0x3f, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['peppercorn red']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x3b, + 0x44, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['zinfandel red']), + ), + RgbInt8Color.rgbNames( + 0x5c, + 0x39, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['art deco red']), + ), + RgbInt8Color.rgbNames( + 0x5f, + 0x34, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['clinker red']), + ), + RgbInt8Color.rgbNames( + 0x64, + 0x2f, + 0x44, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cherry juice red']), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0x29, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['palace red']), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x24, + 0x44, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ember red']), + ), + RgbInt8Color.rgbNames( + 0x62, + 0x5a, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['roasted black']), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x56, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mocha brown']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x52, + 0x5b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ruby grey']), + ), + RgbInt8Color.rgbNames( + 0x73, + 0x4f, + 0x5c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['baroque red']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x4a, + 0x5b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['frenzied red']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x46, + 0x5b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['redcurrant']), + ), + RgbInt8Color.rgbNames( + 0x85, + 0x42, + 0x5c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['orient pink']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x3d, + 0x5c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['aurora magenta']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0x35, + 0x5a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cardinal red']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x2a, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['parlour red']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x72, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pumice grey']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x6e, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['pomace red']), + ), + RgbInt8Color.rgbNames( + 0x87, + 0x6a, + 0x74, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['evening crimson']), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x67, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['copper pink']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x62, + 0x73, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['art nouveau pink']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0x5f, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cosmetic red']), + ), + RgbInt8Color.rgbNames( + 0xa2, + 0x59, + 0x74, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['indian pink']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0x57, + 0x73, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['kir royale rose']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0x50, + 0x74, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cockscomb red']), + ), + RgbInt8Color.rgbNames( + 0xb1, + 0x4a, + 0x72, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['persian red']), + ), + RgbInt8Color.rgbNames( + 0x95, + 0x8d, + 0x90, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ash pink']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0x87, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['majolica mauve']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0x84, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fig fruit mauve']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0x81, + 0x8f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['noble lilac']), + ), + RgbInt8Color.rgbNames( + 0xae, + 0x7b, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['light red']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0xa7, + 0xaa, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['tea blossom pink']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0xa1, + 0xa8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['quartz pink']), + ), + RgbInt8Color.rgbNames( + 0xbe, + 0x9e, + 0xa8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['opaline pink']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0xc2, + 0xc5, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['mother-of-pearl pink']), + ), + RgbInt8Color.rgbNames( + 0xd3, + 0xbe, + 0xc4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['venetian pink']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xba, + 0xc5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['soap pink']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xd1, + 0xd2, + Names.rays( + ['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['theatre powder rose']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xcc, + 0xd3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['lotus pink']), + ), + RgbInt8Color.rgbNames( + 0xed, + 0xe0, + 0xe1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ice pink']), + ), + RgbInt8Color.rgbNames( + 0xf2, + 0xda, + 0xe0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cake frosting']), + ), + RgbInt8Color.rgbNames( + 0xf3, + 0xe6, + 0xe9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['arrowhead white']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0xbb, + 0x8a, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'green beige', + 'grünbeige', + 'beige vert', + 'beige verdoso', + 'beige verdastro', + 'groenbeige' + ]), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0xb2, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['beige', 'бежевий', 'beige', 'beige', 'beige', 'beige', 'beige']), + ), + RgbInt8Color.rgbNames( + 0xc7, + 0xae, + 0x72, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'sand yellow', + 'пісочно-жовтий', + 'sandgelb', + 'jaune sable', + 'amarillo arena', + 'giallo sabbia', + 'zandgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xe6, + 0xb0, + 0x19, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'signal yellow', + 'сигнально-жовтий', + 'signalgelb', + 'jaune de sécurité', + 'amarillo señales', + 'giallo segnale', + 'signaalgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0xa4, + 0x0e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'golden yellow', + 'золотисто-жовтий', + 'goldgelb', + 'jaune or', + 'amarillo oro', + 'giallo oro', + 'goudgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0x96, + 0x11, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'honey yellow', + 'медово-жовтий', + 'honiggelb', + 'jaune miel', + 'amarillo miel', + 'giallo miele', + 'honinggeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0x98, + 0x04, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'maize yellow', + 'кукурудзяно-жовтий', + 'maisgelb', + 'jaune maïs', + 'amarillo maiz', + 'giallo polenta', + 'maisgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0x93, + 0x00, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'daffodil yellow', + 'нарцисово-жовтий', + 'narzissengelb', + 'jaune narcisse', + 'amarillo narciso', + 'giallo narciso', + 'narcissengeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0x84, + 0x54, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'brown beige', + 'коричнево-бежевий', + 'braunbeige', + 'beige brun', + 'beige pardo', + 'beige marrone', + 'bruinbeige' + ]), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xb5, + 0x39, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'lemon yellow', + 'лимонно-жовтий', + 'zitronengelb', + 'jaune citron', + 'amarillo limón', + 'giallo limone', + 'citroengeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xdf, + 0xdb, + 0xc7, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'oyster white', + 'устрично-білий', + 'perlweiß', + 'blanc perlé', + 'blanco perla', + 'bianco perla', + 'parelwit' + ]), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0xc7, + 0x9c, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'ivory', + 'слонова кістка', + 'elfenbein', + 'ivoire', + 'marfil', + 'avorio', + 'ivoorkleurig' + ]), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xd3, + 0xb6, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'light ivory', + 'світла слонова кістка', + 'hellelfenbein', + 'ivoire clair', + 'marfil claro', + 'avorio chiaro', + 'licht ivoorkleurig' + ]), + ), + RgbInt8Color.rgbNames( + 0xe8, + 0xe2, + 0x53, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'sulfur yellow', + 'сірчано-жовтий', + 'schwefelgelb', + 'jaune soufre', + 'amarillo azufre', + 'giallo zolfo', + 'zwavelgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xe4, + 0xaf, + 0x56, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'saffron yellow', + 'шафраново-жовтий', + 'safrangelb', + 'jaune safran', + 'amarillo azafrán', + 'giallo zafferano', + 'saffraangeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xd3, + 0x46, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'zinc yellow', + 'цинково-жовтий', + 'zinkgelb', + 'jaune zinc', + 'amarillo de zinc', + 'giallo zinco', + 'zinkgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0x91, + 0x7b, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'grey beige', + 'сіро-бежевий', + 'graubeige', + 'beige gris', + 'beige agrisado', + 'beige grigiastro', + 'grijsbeige' + ]), + ), + RgbInt8Color.rgbNames( + 0x99, + 0x91, + 0x67, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'olive yellow', + 'оливково-жовтий', + 'olivgelb', + 'jaune olive', + 'amarillo oliva', + 'giallo olivastro', + 'olijfgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xc0, + 0x00, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'colza yellow', + 'рапсово-жовтий', + 'rapsgelb', + 'jaune colza', + 'amarillo colza', + 'giallo navone', + 'koolzaadgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xe6, + 0xbe, + 0x05, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'traffic yellow', + 'жовтий колір руху', + 'verkehrsgelb', + 'jaune signalisation', + 'amarillo tráfico', + 'giallo traffico', + 'verkeersgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xad, + 0x94, + 0x51, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'ochre yellow', + 'жовта охра', + 'ockergelb', + 'jaune ocre', + 'amarillo ocre', + 'giallo ocra', + 'okergeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xff, + 0xff, + 0x00, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'luminous yellow', + 'світловідбиваючий жовтий', + 'leuchtgelb', + 'jaune brillant', + 'amarillo brillante', + 'giallo brillante', + 'briljantgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0x99, + 0x84, + 0x20, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'curry', + 'каррі', + 'currygelb', + 'jaune curry', + 'amarillo curry', + 'giallo curry', + 'kerriegeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xf2, + 0xa5, + 0x00, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'melon yellow', + 'диня жовта', + 'melonengelb', + 'jaune melon', + 'amarillo melón', + 'giallo melone', + 'meloengeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xa8, + 0x1e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'broom yellow', + 'жарновець жовтий', + 'ginstergelb', + 'jaune genêt', + 'amarillo retama', + 'giallo scopa', + 'bremgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xe4, + 0xa0, + 0x2d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'dahlia yellow', + 'жоржина жовта', + 'dahliengelb', + 'jaune dahlia', + 'amarillo dalia', + 'giallo dahlien', + 'dahliageel' + ]), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xa1, + 0x56, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pastel yellow', + 'пастельно-жовтий', + 'pastellgelb', + 'jaune pastel', + 'amarillo pastel', + 'giallo pastello', + 'pastelgeel' + ]), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x82, + 0x71, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl beige', + 'перлинно-бежевий', + 'perlbeige', + 'beige nacré', + 'beige perlado', + 'beige perlato', + 'parelmoer grijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x63, + 0x41, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl gold', + 'золотисто-перлинний', + 'perlgold', + 'or nacré', + 'oro perlado', + 'oro perlato', + 'parelmoer goud' + ]), + ), + RgbInt8Color.rgbNames( + 0xdb, + 0x9a, + 0x17, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'sun yellow', + 'сонячно-жовтий', + 'sonnengelb', + 'jaune soleil', + 'amarillo sol', + 'giallo sole', + 'zonnegeel' + ]), + ), + RgbInt8Color.rgbNames( + 0xc7, + 0x75, + 0x0f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'yellow orange', + 'жовто-помаранчевий', + 'gelborange', + 'orangé jaune', + 'amarillo naranja', + 'arancio giallastro', + 'geeloranje' + ]), + ), + RgbInt8Color.rgbNames( + 0xa7, + 0x4d, + 0x23, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'red orange', + 'червоно-помаранчевий', + 'rotorange', + 'orangé rouge', + 'rojo anaranjado', + 'arancio rossastro', + 'roodoranje' + ]), + ), + RgbInt8Color.rgbNames( + 0xac, + 0x37, + 0x21, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'vermilion', + 'яскраво-червоний', + 'blutorange', + 'orangé sang', + 'naranja sanguineo', + 'arancio sanguigno', + 'vermiljoen' + ]), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0x7c, + 0x30, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pastel orange', + 'пастельно-помаранчевий', + 'pastellorange', + 'orangé pastel', + 'naranja pálido', + 'arancio pastello', + 'pasteloranje' + ]), + ), + RgbInt8Color.rgbNames( + 0xcc, + 0x56, + 0x08, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pure orange', + 'чисто-помаранчевий', + 'reinorange', + 'orangé pur', + 'naranja puro', + 'arancio puro', + 'zuiver oranje' + ]), + ), + RgbInt8Color.rgbNames( + 0xff, + 0x46, + 0x12, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'luminous orange', + 'світловідбиваючий помаранчевий', + 'leuchtorange', + 'orangé brillant', + 'naranja brillante', + 'arancio brillante', + 'briljantoranje' + ]), + ), + RgbInt8Color.rgbNames( + 0xff, + 0xad, + 0x19, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'luminous bright orange', + 'яскраво світловідбиваючий помаранчевий', + 'leuchthell orange', + 'orangé clair brillant', + 'naranja claro brillante', + 'arancio chiaro brillante', + 'briljant lichtoranje' + ]), + ), + RgbInt8Color.rgbNames( + 0xd6, + 0x6c, + 0x21, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'bright red orange', + 'яскравий червоно-помаранчевий', + 'hellrotorange', + 'orangé rouge clair', + 'rojo claro anaranjado', + 'rosso arancio chiaro', + 'licht roodoranje' + ]), + ), + RgbInt8Color.rgbNames( + 0xc9, + 0x56, + 0x0d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'traffic orange', + 'дорожній помаранчевий', + 'verkehrsorange', + 'orangé signalisation', + 'naranja tráfico', + 'arancio traffico', + 'verkeersoranje' + ]), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0x60, + 0x2d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'signal orange', + 'сигнальний помаранчевий', + 'signalorange', + 'orangé de sécurité', + 'naranja señales', + 'arancio segnale', + 'signaaloranje' + ]), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0x74, + 0x21, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'deep orange', + 'глибокий помаранчевий', + 'tieforange', + 'orangé foncé', + 'naranja intenso', + 'arancio profondo', + 'dieporanje' + ]), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0x67, + 0x4f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'salmon orange', + 'лососевий помаранчевий', + 'lachsorange', + 'orangé saumon', + 'naranja salmón', + 'arancio salmone', + 'zalmoranje' + ]), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x41, + 0x28, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl orange', + 'перлинно-помаранчевий', + 'perlorange', + 'orangé nacré', + 'naranja perlado', + 'arancio perlato', + 'parelmoer oranje' + ]), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0x5b, + 0x00, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['ral orange', 'ral помаранчевий']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x2a, + 0x27, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'flame red', + 'вогняно-червоний', + 'feuerrot', + 'rouge feu', + 'rojo vivo', + 'rosso fuoco', + 'vuurrood' + ]), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0x1e, + 0x24, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'signal red', + 'сигнально-червоний', + 'signalrot', + 'rouge de sécurité', + 'rojo señales', + 'rosso segnale', + 'signaalrood' + ]), + ), + RgbInt8Color.rgbNames( + 0x8d, + 0x1f, + 0x24, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'carmine red', + 'карміново-червоний', + 'karminrot', + 'rouge carmin', + 'rojo carmin', + 'rosso carminio', + 'karmijnrood' + ]), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x0d, + 0x24, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'ruby red', + 'рубіновий червоний', + 'rubinrot', + 'rouge rubis', + 'rojo rubí', + 'rosso rubino', + 'robijnrood' + ]), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x19, + 0x27, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'purple red', + 'пурпурово-червоний', + 'purpurrot', + 'rouge pourpre', + 'rojo púrpura', + 'rosso porpora', + 'purperrood' + ]), + ), + RgbInt8Color.rgbNames( + 0x56, + 0x1e, + 0x27, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'wine red', + 'винно-червоний', + 'weinrot', + 'rouge vin', + 'rojo vino', + 'rosso vino', + 'wijnrood' + ]), + ), + RgbInt8Color.rgbNames( + 0x3d, + 0x23, + 0x26, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'black red', + 'чорно-червоний', + 'schwarzrot', + 'rouge noir', + 'rojo negruzco', + 'rosso nerastro', + 'zwartrood' + ]), + ), + RgbInt8Color.rgbNames( + 0x64, + 0x37, + 0x30, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'oxide red', + 'оксидний червоний', + 'oxidrot', + 'rouge oxyde', + 'rojo óxido', + 'rosso ossido', + 'oxyderood' + ]), + ), + RgbInt8Color.rgbNames( + 0x6e, + 0x21, + 0x24, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'brown red', + 'коричнево-червоний', + 'braunrot', + 'rouge brun', + 'rojo pardo', + 'rosso marrone', + 'bruinrood' + ]), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0x85, + 0x6e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'beige red', + 'бежево-червоний', + 'beigerot', + 'rouge beige', + 'rojo beige', + 'rosso beige', + 'beigerood' + ]), + ), + RgbInt8Color.rgbNames( + 0x8a, + 0x2f, + 0x28, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'tomato red', + 'помідорний червоний', + 'tomatenrot', + 'rouge tomate', + 'rojo tomate', + 'rosso pomodoro', + 'tomaatrood' + ]), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0x6f, + 0x72, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'antique pink', + 'антично-рожевий', + 'altrosa', + 'vieux rose', + 'rojo viejo', + 'rosa antico', + 'oudroze' + ]), + ), + RgbInt8Color.rgbNames( + 0xcc, + 0x9e, + 0xa4, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'light pink', + 'світло-рожевий', + 'hellrosa', + 'rose clair', + 'rosa claro', + 'rosa chiaro', + 'lichtroze' + ]), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x3d, + 0x2f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'coral red', + 'кораловий червоний', + 'korallenrot', + 'rouge corail', + 'rojo coral', + 'rosso corallo', + 'koraalrood' + ]), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0x53, + 0x5b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], + ['rose', 'рожевий', 'rosé', 'rosé', 'rosa', 'rosato', 'bleekrood']), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0x3c, + 0x49, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'strawberry red', + 'полунично-червоний', + 'erdbeerrot', + 'rouge fraise', + 'rojo fresa', + 'rosso fragola', + 'aardbeirood' + ]), + ), + RgbInt8Color.rgbNames( + 0xab, + 0x15, + 0x19, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'traffic red', + 'дорожній червоний', + 'verkehrsrot', + 'rouge signalisation', + 'rojo tráfico', + 'rosso traffico', + 'verkeersrood' + ]), + ), + RgbInt8Color.rgbNames( + 0xbe, + 0x69, + 0x54, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'salmon pink', + 'лососевий рожевий', + 'lachsrot', + 'rouge saumon', + 'rojo salmón', + 'rosso salmone', + 'zalmrood' + ]), + ), + RgbInt8Color.rgbNames( + 0xee, + 0x17, + 0x29, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'luminous red', + 'світловідбиваючий червоний', + 'leuchtrot', + 'rouge brillant', + 'rojo brillante', + 'rosso brillante', + 'briljantrood' + ]), + ), + RgbInt8Color.rgbNames( + 0xf7, + 0x10, + 0x27, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'luminous bright red', + 'яскраво світловідбиваючий червоний', + 'leuchthellrot', + 'rouge clair brillant', + 'rojo claro brillante', + 'rosso chiaro brillante', + 'briljant lichtrood' + ]), + ), + RgbInt8Color.rgbNames( + 0x9e, + 0x1b, + 0x3c, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'raspberry red', + 'малиновий червоний', + 'himbeerrot', + 'rouge framboise', + 'rojo frambuesa', + 'rosso lampone', + 'framboosrood' + ]), + ), + RgbInt8Color.rgbNames( + 0xb9, + 0x27, + 0x26, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pure red', + 'чисто-червоний', + 'reinrot', + 'rouge pu', + 'rojo puro ', + 'rosso puro', + 'zuiver rood ' + ]), + ), + RgbInt8Color.rgbNames( + 0x97, + 0x32, + 0x38, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'orient red', + 'орієнт червоний', + 'orientrot', + 'rouge oriental', + 'rojo oriente', + 'rosso oriente', + 'oriëntrood' + ]), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x19, + 0x25, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl ruby red', + 'перлинно-рубіновий червоний', + 'perlrubinrot', + 'rouge rubis nacré', + 'rojo rubí perlado', + 'rosso rubino perlato', + 'parelmoer donkerrood' + ]), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x35, + 0x2d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl pink', + 'перлинно-рожевий', + 'perlrosa', + 'rose nacré', + 'rosa perlado', + 'rosa perlato', + 'parelmoer lichtrood' + ]), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x5b, + 0x80, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'red lilac', + 'червоно-бузковий', + 'rotlila', + 'lilas rouge', + 'rojo lila', + 'lilla rossastro', + 'roodlila' + ]), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x3a, + 0x4b, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'red violet', + 'червоно-фіолетовий', + 'rotviolett', + 'violet rouge', + 'rojo violeta', + 'viola rossastro', + 'roodpaars' + ]), + ), + RgbInt8Color.rgbNames( + 0xb6, + 0x5a, + 0x88, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'heather violet', + 'вересовий фіолетовий', + 'erikaviolett', + 'violet bruyère', + 'violeta érica', + 'viola erica', + 'heidepaars' + ]), + ), + RgbInt8Color.rgbNames( + 0x5f, + 0x18, + 0x37, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'claret violet', + 'бордово-фіолетовий', + 'bordeauxviolett', + 'violet bordeaux', + 'burdeos', + 'viola bordeaux', + 'bordeuaxpaars' + ]), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x63, + 0x95, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'blue lilac', + 'синій бузковий колір', + 'blaulila', + 'lilas bleu', + 'lila azulado', + 'lilla bluastro', + 'blauwlila' + ]), + ), + RgbInt8Color.rgbNames( + 0x85, + 0x2e, + 0x6f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'traffic purple', + 'дорожній фіолетовий', + 'verkehrspurpur', + 'pourpre signalisation', + 'púrpurá tráfico', + 'porpora traffico', + 'verkeerspurper' + ]), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x26, + 0x3c, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'purple violet', + 'пурпурно фіолетовий', + 'purpurviolett', + 'violet pourpre', + 'violeta púrpura', + 'porpora violetto', + 'purperviolet' + ]), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x47, + 0x7d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'signal violet', + 'сигнально-фіолетовий', + 'signalviolett', + 'violet de sécurité', + 'violeta señales', + 'violetto segnale', + 'signaalviolet' + ]), + ), + RgbInt8Color.rgbNames( + 0x95, + 0x83, + 0x8f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pastel violet', + 'пастельно-фіолетовий', + 'pastellviolett', + 'violet pastel', + 'violeta pastel', + 'violetto pastello', + 'pastelviolet' + ]), + ), + RgbInt8Color.rgbNames( + 0xac, + 0x3b, + 0x71, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'telemagenta', + 'телемагента', + 'telemagenta', + 'telemagenta', + 'magenta tele', + 'tele magenta', + 'telemagenta' + ]), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x5c, + 0x80, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl violet', + 'перлинно-фіолетовий', + 'perlviolett', + 'violet nacré', + 'violeta perlado', + 'violetto perlato', + 'parelmoer donkerviolet' + ]), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x65, + 0x7a, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl blackberry', + 'ожинo-перламутровий', + 'perlbrombeer', + 'mûre nacré', + 'morado perlado', + 'mora perlato', + 'parelmoer lichtviolet' + ]), + ), + RgbInt8Color.rgbNames( + 0x35, + 0x49, + 0x6b, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'violet blue', + 'синьо-фіолетовий', + 'violettblau', + 'bleu violet', + 'azul violeta', + 'blu violaceo', + 'paarsblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x29, + 0x47, + 0x63, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'green blue', + 'зелено-синій', + 'grünblau', + 'bleu vert', + 'azul verdoso', + 'blu verdastro', + 'groenblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x19, + 0x32, + 0x78, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'ultramarine blue', + 'ультрамариновий синій', + 'ultramarinblau', + 'bleu outremer', + 'azul ultramar', + 'blu oltremare', + 'ultramarijn blauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x20, + 0x31, + 0x51, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'sapphire blue', + 'сапфіровий синій', + 'saphirblau', + 'bleu saphir', + 'azul zafiro', + 'blu zaffiro', + 'saffierblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x1e, + 0x22, + 0x2c, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'black blue', + 'чорно-синій', + 'schwarzblau', + 'bleu noir', + 'azul negruzco', + 'blu nerastro', + 'zwartblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x13, + 0x4a, + 0x85, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'signal blue', + 'сигнальний синій', + 'signalblau', + 'bleu de sécurité', + 'azul señales', + 'blu segnale', + 'signaalblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x65, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['brillant blue']), + ), + RgbInt8Color.rgbNames( + 0x2f, + 0x3a, + 0x44, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'grey blue', + 'сіро-синій', + 'graublau', + 'bleu gris', + 'azul grisáceo', + 'blu grigiastro', + 'grijsblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x36, + 0x58, + 0x75, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'azure blue', + 'лазурно-синій', + 'azurblau', + 'bleu azur', + 'azul azur', + 'blu azzurro', + 'azuurblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x0e, + 0x45, + 0x7a, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'gentian blue', + 'генціаново-синій', + 'enzianblau', + 'bleu gentiane', + 'azul genciana', + 'blu genziana', + 'gentiaanblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x22, + 0x2c, + 0x3e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'steel blue', + 'сталево-синій', + 'stahlblau', + 'bleu acier', + 'azul acero', + 'blu acciaio', + 'staalblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x7f, + 0xb3, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'light blue', + 'світло-синій', + 'lichtblau', + 'bleu clair', + 'azul luminoso', + 'blu luce', + 'lichtblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x21, + 0x2f, + 0x51, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'cobalt blue', + 'кобальтово-синій', + 'kobaltblau', + 'bleu cobalt', + 'azul cobalto', + 'blu cobalto', + 'kobaltblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x76, + 0x91, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pigeon blue', + 'голубино-синій', + 'taubenblau', + 'bleu pigeon', + 'azul colombino', + 'blu colomba', + 'duifblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x31, + 0x72, + 0xad, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'sky blue', + 'небесно-синій', + 'himmelblau', + 'bleu ciel', + 'azul celeste', + 'blu cielo', + 'hemelsblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x0f, + 0x51, + 0x8a, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'traffic blue', + 'дорожній синій', + 'verkehrsblau', + 'bleu signalisation', + 'azul tráfico', + 'blu traffico', + 'verkeersblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x47, + 0x84, + 0x8d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'turquoise blue', + 'бірюзовий синій', + 'türkisblau', + 'bleu turquoise', + 'azul turquesa', + 'blu turchese', + 'turkooisblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x26, + 0x56, + 0x82, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'capri blue', + 'капрі синій', + 'capriblau', + 'bleu capri', + 'azul capri', + 'blu capri', + 'capriblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x11, + 0x3e, + 0x4d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'ocean blue', + 'cиній океан', + 'ozeanblau', + 'bleu océan', + 'azul oceano', + 'blu oceano', + 'oceaanblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x21, + 0x6d, + 0x76, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'water blue', + 'водна синь', + 'wasserblau', + 'bleu d’eau', + 'azul agua', + 'blu acqua', + 'waterblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x28, + 0x2c, + 0x58, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'night blue', + 'нічний синій', + 'nachtblau', + 'bleu nocturne', + 'azul noche', + 'blu notte', + 'nachtblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x4d, + 0x64, + 0x8a, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'distant blue', + 'далека синь', + 'fernblau', + 'bleu distant', + 'azul lejanía', + 'blu distante', + 'verblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x8d, + 0xaa, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pastel blue', + 'пастельно-синій', + 'pastellblau', + 'bleu pastel', + 'azul pastel', + 'blu pastello', + 'pastelblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x63, + 0x79, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl gentian blue', + 'перлинно-синій', + 'perlenzian', + 'gentiane nacré', + 'gencian perlado', + 'blu genziana perlato', + 'parelmoer blauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x1b, + 0x2b, + 0x4d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl night blue', + 'перлинно-синя ніч', + 'perlnachtblau', + 'bleu nuit nacré', + 'azul noche perlado', + 'blu notte perlato', + 'parelmoer nachtblauw' + ]), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x73, + 0x63, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'patina green', + 'патиново-зелений', + 'patinagrün', + 'vert patine', + 'verde patina', + 'verde patina', + 'patinagroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x69, + 0x3a, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'emerald green', + 'ізумрудно-зелений', + 'smaragdgrün', + 'vert émeraude', + 'verde esmeralda', + 'verde smeraldo', + 'smaragdgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x5b, + 0x2f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'leaf green', + 'листяно-зелений', + 'laubgrün', + 'vert feuillage', + 'verde hoja', + 'verde foglia', + 'loofgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x55, + 0x3e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'olive green', + 'оливково-зелений', + 'olivgrün', + 'vert olive', + 'verde oliva', + 'verde oliva', + 'olijfgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x21, + 0x42, + 0x45, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'blue green', + 'синьо-зелений', + 'blaugrün', + 'vert bleu', + 'verde azulado', + 'verde bluastro', + 'blauwgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x23, + 0x42, + 0x35, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'moss green', + 'мохово-зелений', + 'moosgrün', + 'vert mousse', + 'verde musgo', + 'verde muschio', + 'mosgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x3d, + 0x32, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'grey olive', + 'сіро-оливковий', + 'grauoliv', + 'olive gris', + 'oliva grisáceo', + 'oliva grigiastro', + 'grijs olijfgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x2e, + 0x35, + 0x26, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'bottle green', + 'пляшково-зелений', + 'flaschengrün', + 'vert bouteille', + 'verde botella', + 'verde bottiglia', + 'flessengroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x33, + 0x27, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'brown green', + 'коричнево-зелений', + 'braungrün', + 'vert brun', + 'verde parduzco', + 'verde brunastro', + 'bruingroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x37, + 0x2c, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'fir green', + 'хвойно-зелений', + 'tannengrün', + 'vert sapin', + 'verde abeto', + 'verde abete', + 'dennengroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x4e, + 0x6e, + 0x39, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'grass green', + 'трав’яно-зелений', + 'grasgrün', + 'vert herbe', + 'verde hierba', + 'verde erba', + 'grasgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0x7c, + 0x5b, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'reseda green', + 'резедово зелений', + 'resedagrün', + 'vert réséda', + 'verde reseda', + 'verde reseda', + 'resedagroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x2f, + 0x3b, + 0x39, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'black green', + 'чорно-зелений', + 'schwarzgrün', + 'vert noir', + 'verde negruzco', + 'verde nerastro', + 'zwartgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x77, + 0x76, + 0x59, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'reed green', + 'тростниково-зелений', + 'schilfgrün', + 'vert jonc', + 'verde caña', + 'verde canna', + 'rietgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x43, + 0x39, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'yellow olive', + 'жовто-оливковий', + 'gelboliv', + 'olive jaune', + 'amarillo oliva', + 'oliva giallastro', + 'geel olijfgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x3f, + 0x38, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'black olive', + 'чорно-оливковий', + 'schwarzoliv', + 'olive noir', + 'oliva negruzco', + 'oliva nerastro', + 'zwart olijfgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x67, + 0x53, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'turquoise green', + 'бірюзово-зелений', + 'türkisgrün', + 'vert turquoise', + 'verde turquesa', + 'verde turchese', + 'turkooisgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x5c, + 0x81, + 0x44, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'may green', + 'травнево-зелений', + 'maigrün', + 'vert mai', + 'verde mayo', + 'verde maggio', + 'meigroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x9a, + 0x45, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'yellow green', + 'жовто-зелений', + 'gelbgrün', + 'vert jaune', + 'verde amarillento', + 'verde giallastro', + 'geelgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0xb8, + 0xcf, + 0xad, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pastel green', + 'пастельно-зелений', + 'weißgrün', + 'vert blanc', + 'verde blanquecino', + 'verde biancastro', + 'witgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x46, + 0x34, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'chrome green', + 'хромовий зелений', + 'chromoxidgrün', + 'vert oxyde chromique', + 'verde cromo', + 'verde cromo', + 'chroomoxyde groen' + ]), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x9b, + 0x79, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pale green', + 'блідо-зелений', + 'blassgrün', + 'vert pâle', + 'verde pálido', + 'verde pallido', + 'bleekgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x38, + 0x2e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'olive drab', + 'braunoliv', + 'olive brun', + 'oliva parduzco', + 'oliva brunastro', + 'bruin olijfgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x3a, + 0x82, + 0x58, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'traffic green', + 'дорожній зелений', + 'verkehrsgrün', + 'vert signalisation', + 'verde tráfico', + 'verde traffico', + 'verkeersgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x70, + 0x3e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'fern green', + 'папоротево-зелений', + 'farngrün', + 'vert fougère', + 'verde helecho', + 'verde felce', + 'varengroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x0d, + 0x59, + 0x51, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'opal green', + 'опаловий зелений', + 'opalgrün', + 'vert opale', + 'verde opalo', + 'verde opale', + 'opaalgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x88, + 0xb5, + 0xb3, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'light green', + 'світло-зелений', + 'lichtgrün', + 'vert clair', + 'verde luminoso', + 'verde chiaro', + 'lichtgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x3d, + 0x55, + 0x47, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pine green', + 'сосновий зелений', + 'kieferngrün', + 'vert pin', + 'verde pino', + 'verde pino', + 'pijnboomgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x22, + 0x6c, + 0x45, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'mint green', + 'м\'ятно-зелений', + 'minzgrün', + 'vert menthe', + 'verde menta', + 'verde menta', + 'mintgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x7e, + 0x57, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'signal green', + 'сигнальний зелений', + 'signalgrün', + 'vert de sécurité', + 'verde señales', + 'verde segnale', + 'signaalgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x56, + 0x84, + 0x80, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'mint turquoise', + 'м\'ятно-бірюзовий', + 'minttürkis', + 'turquoise menthe', + 'turquesa menta', + 'turchese menta', + 'mintturquoise' + ]), + ), + RgbInt8Color.rgbNames( + 0x86, + 0xa9, + 0xad, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pastel turquoise', + 'пастельно-бірюзовий', + 'pastelltürkis', + 'turquoise pastel', + 'turquesa pastel', + 'turchese pastello', + 'pastelturquoise' + ]), + ), + RgbInt8Color.rgbNames( + 0x2e, + 0x4f, + 0x31, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl green', + 'перлиново-зелений', + 'perlgrün', + 'vert nacré', + 'verde perlado', + 'verde perlato', + 'parelmoer donkergroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x27, + 0x51, + 0x4a, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl opal green', + 'перлиновий опаловий зелений', + 'perlopalgrün', + 'vert opal nacré', + 'verde ópalo perlado', + 'verde opalo perlato', + 'parelmoer lichtgroen' + ]), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x8c, + 0x3d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pure green', + 'чисто-зелений', + 'reingrün', + 'vert pur', + 'verde puro ', + 'verde puro', + 'zuiver groen ' + ]), + ), + RgbInt8Color.rgbNames( + 0x20, + 0xa3, + 0x39, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'luminous green', + 'світловідбиваючий зелений', + 'leuchtgrün', + 'vert brillant', + 'verde brillante ', + 'verde brillante', + 'briljantgroen ' + ]), + ), + RgbInt8Color.rgbNames( + 0xab, + 0xc2, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['fibrous green']), + ), + RgbInt8Color.rgbNames( + 0x7b, + 0x85, + 0x8d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'squirrel grey', + 'сіра білка', + 'fehgrau', + 'gris petit-gris', + 'gris ardilla', + 'grigio vaio', + 'pelsgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x94, + 0x9b, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'silver grey', + 'сріблясто-сірий', + 'silbergrau', + 'gris argent', + 'gris plata', + 'grigio argento', + 'zilvergrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x7d, + 0x79, + 0x65, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'olive grey', + 'оливково-сірий', + 'olivgrau', + 'gris olive', + 'gris oliva', + 'grigio olivastro', + 'olijfgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x77, + 0x6a, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'moss grey', + 'мохово-сірий', + 'moosgrau', + 'gris mousse', + 'gris musgo', + 'grigio muschio', + 'mosgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x97, + 0x99, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'signal grey', + 'сигнальний сірий', + 'signalgrau', + 'gris de sécurité', + 'gris señales', + 'grigio segnale', + 'signaalgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x69, + 0x6d, + 0x6b, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'mouse grey', + 'мишино-сірий', + 'mausgrau', + 'gris souris', + 'gris ratón', + 'grigio topo', + 'muisgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x71, + 0x6c, + 0x60, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'beige grey', + 'бежево-сірий', + 'beigegrau', + 'gris beige', + 'gris beige', + 'grigio beige', + 'beigegrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x60, + 0x40, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'khaki grey', + 'хакі сірий', + 'khakigrau', + 'gris kaki', + 'gris caqui', + 'grigio kaki', + 'kakigrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x60, + 0x58, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'green grey', + 'зелено-сірий', + 'grüngrau', + 'gris vert', + 'gris verdoso', + 'grigio verdastro', + 'groengrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x57, + 0x5b, + 0x57, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'tarpaulin grey', + 'брезентово-сірий', + 'zeltgrau', + 'gris tente', + 'gris lona', + 'grigio tenda', + 'zeildoekgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x53, + 0x5a, + 0x5e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'iron grey', + 'залізно-сірий', + 'eisengrau', + 'gris fer', + 'gris hierro', + 'grigio ferro', + 'ijzergrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x59, + 0x5e, + 0x60, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'basalt grey', + 'базальтово-сірий', + 'basaltgrau', + 'gris basalte', + 'gris basalto', + 'grigio basalto', + 'bazaltgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x51, + 0x46, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'brown grey', + 'коричнево-сірий', + 'braungrau', + 'gris brun', + 'gris parduzco', + 'grigio brunastro', + 'bruingrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x53, + 0x5a, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'slate grey', + 'сланцево-сірий', + 'schiefergrau', + 'gris ardoise', + 'gris pizarra', + 'grigio ardesia', + 'leigrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x40, + 0x44, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'anthracite grey', + 'антрацитово-сірий', + 'anthrazitgrau', + 'gris anthracite', + 'gris antracita', + 'grigio antracite', + 'antracietgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x32, + 0x35, + 0x37, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'black grey', + 'чорно-сірий', + 'schwarzgrau', + 'gris noir', + 'gris negruzco', + 'grigio nerastro', + 'zwartgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x4c, + 0x47, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'umbra grey', + 'умбровий сірий', + 'umbragrau', + 'gris terre d’ombre', + 'gris sombra', + 'grigio ombra', + 'ombergrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x7d, + 0x7f, + 0x76, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'concrete grey', + 'бетонно-сірий', + 'betongrau', + 'gris béton', + 'gris hormigón', + 'grigio calcestruzzo', + 'betongrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x49, + 0x4e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'graphite grey', + 'графітово-сірий', + 'graphitgrau', + 'gris graphite', + 'gris grafita', + 'grigio grafite', + 'grafietgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x39, + 0x43, + 0x45, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'granite grey', + 'гранітно-сірий', + 'granitgrau', + 'gris granit', + 'gris granito', + 'grigio granito', + 'granietgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x8c, + 0x83, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'stone grey', + 'кам’яно-сірий', + 'steingrau', + 'gris pierre', + 'gris piedra', + 'grigio pietra', + 'steengrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x67, + 0x6d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'blue grey', + 'сіро-синій', + 'blaugrau', + 'gris bleu', + 'gris azulado', + 'grigio bluastro', + 'blauwgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0xb1, + 0xb1, + 0xa1, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pebble grey', + 'гальково-сірий', + 'kieselgrau', + 'gris silex', + 'gris guijarro', + 'grigio ghiaia', + 'kiezelgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x82, + 0x73, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'cement grey', + 'цементно-сірий', + 'zementgrau', + 'gris ciment', + 'gris cemento', + 'grigio cemento', + 'cementgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x88, + 0x70, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'yellow grey', + 'жовто-сірий', + 'gelbgrau', + 'gris jaune', + 'gris amarillento', + 'grigio giallastro', + 'geelgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xc6, + 0xc3, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'light grey', + 'світло-сірий', + 'lichtgrau', + 'gris clair', + 'gris luminoso', + 'grigio luce', + 'lichtgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x92, + 0x92, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'platinum grey', + 'платиново-сірий', + 'platingrau', + 'gris platine', + 'gris platino', + 'grigio platino', + 'platinagrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x79, + 0x7b, + 0x7b, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'dusty grey', + 'пильно-сірий', + 'staubgrau', + 'gris poussière', + 'gris polvo', + 'grigio polvere', + 'stofgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0xad, + 0xb0, + 0xa9, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'agate grey', + 'агатовий сірий', + 'achatgrau', + 'gris agate', + 'gris ágata', + 'grigio agata', + 'agaatgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x67, + 0x5f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'quartz grey', + 'кварцовий сірий', + 'quarzgrau', + 'gris quartz', + 'gris cuarzo', + 'grigio quarzo', + 'kwartsgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x9c, + 0xa1, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'window grey', + 'віконно-сірий', + 'fenstergrau', + 'gris fenêtre', + 'gris ventana', + 'grigio finestra', + 'venstergrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x91, + 0x90, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'traffic grey a', + 'дорожній сірий a', + 'verkehrsgrau a', + 'gris signalisation a', + 'gris tráfico a', + 'grigio traffico a', + 'verkeersgrijs a' + ]), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x53, + 0x52, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'traffic grey b', + 'дорожній сірий b', + 'verkehrsgrau b', + 'gris signalisation b', + 'gris tráfico b', + 'grigio traffico b', + 'verkeersgrijs b' + ]), + ), + RgbInt8Color.rgbNames( + 0xb3, + 0xb2, + 0xa9, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'silk grey', + 'шовковий сірий', + 'seidengrau', + 'gris soie', + 'gris seda', + 'grigio seta', + 'zijdegrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x90, + 0x94, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'telegrey 1', + 'телесірий 1', + 'telegrau 1', + 'telegris 1', + 'gris tele 1', + 'grigio tele 1', + 'telegrijs 1' + ]), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x82, + 0x87, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'telegrey 2', + 'телесірий 2', + 'telegrau 2', + 'telegris 2', + 'gris tele 2', + 'grigio tele 2', + 'telegrijs 2' + ]), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0xc5, + 0xc5, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'telegrey 4', + 'телесірий 4', + 'telegrau 4', + 'telegris 4', + 'gris tele 4', + 'grigio tele 4', + 'telegrijs 4' + ]), + ), + RgbInt8Color.rgbNames( + 0x7a, + 0x78, + 0x71, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl mouse grey', + 'перламутрово-мишачий сірий', + 'perlmausgrau', + 'gris souris nacré', + 'gris musgo perlado', + 'grigio topo perlato', + 'parelmoer muisgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x6d, + 0x44, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'green brown', + 'зелено-коричневий', + 'grünbraun', + 'brun vert', + 'pardo verdoso', + 'marrone verdastro', + 'groenbruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0x68, + 0x33, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'ochre brown', + 'охрово-коричневий', + 'ockerbraun', + 'brun terre de sienne', + 'pardo ocre', + 'marrone ocra', + 'okerbruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x4f, + 0x40, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'signal brown', + 'сигнальний коричневий', + 'signalbraun', + 'brun de sécurité', + 'marrón señales', + 'marrone segnale', + 'signaalbruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x50, + 0x2f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'clay brown', + 'глиняний коричневий', + 'lehmbraun', + 'brun argile', + 'pardo arcilla', + 'marrone fango', + 'leembruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x4d, + 0x37, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'copper brown', + 'мідний коричневий', + 'kupferbraun', + 'brun cuivré', + 'pardo cobre', + 'marrone rame', + 'koperbruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x67, + 0x49, + 0x2f, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'fawn brown', + 'сірувато-коричневий', + 'rehbraun', + 'brun fauve', + 'pardo corzo', + 'marrone capriolo', + 'reebruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x69, + 0x4f, + 0x2b, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'olive brown', + 'оливково-коричневий', + 'olivbraun', + 'brun olive', + 'pardo oliva', + 'marrone oliva', + 'olijfbruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x53, + 0x3a, + 0x29, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'nut brown', + 'горіхово-коричневий', + 'nussbraun', + 'brun noisette', + 'pardo nuez', + 'marrone noce', + 'notenbruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x5c, + 0x31, + 0x28, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'red brown', + 'червоно-коричневий', + 'rotbraun', + 'brun rouge', + 'pardo rojo', + 'marrone rossiccio', + 'roodbruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x37, + 0x29, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'sepia brown', + 'сепія коричневий', + 'sepiabraun', + 'brun sépia', + 'sepia', + 'marrone seppia', + 'sepiabruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x57, + 0x33, + 0x2b, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'chestnut brown', + 'каштаново-коричневий', + 'kastanienbraun', + 'marron', + 'castaño', + 'marrone castagna', + 'kastanjebruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x48, + 0x30, + 0x26, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'mahogany brown', + 'махагон коричневий', + 'mahagonibraun', + 'brun acajou', + 'caoba', + 'marrone mogano', + 'mahoniebruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x42, + 0x33, + 0x2e, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'chocolate brown', + 'шоколадно-коричневий', + 'schokoladenbraun', + 'brun chocolat', + 'chocolate', + 'marrone cioccolata', + 'chocoladebruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x37, + 0x36, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'grey brown', + 'сіро-коричневий', + 'graubraun', + 'brun gris', + 'pardo grisáceo', + 'marrone grigiastro', + 'grijsbruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x20, + 0x1f, + 0x20, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'black brown', + 'чорно-коричневий', + 'schwarzbraun', + 'brun noir', + 'pardo negruzco', + 'marrone nerastro', + 'zwartbruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x5d, + 0x33, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'orange brown', + 'помаранчево-коричневий', + 'orangebraun', + 'brun orangé', + 'pardo anaranjado', + 'marrone arancio', + 'oranjebruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x54, + 0x3c, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'beige brown', + 'бежево-коричневий', + 'beigebraun', + 'brun beige', + 'pardo beige', + 'marrone beige', + 'beigebruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x6e, + 0x5b, + 0x4b, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pale brown', + 'блідо-коричневий', + 'blassbraun', + 'brun pâle', + 'pardo pálido', + 'marrone pallido', + 'bleekbruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x3e, + 0x30, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'terra brown', + 'теракотово-коричневий', + 'terrabraun', + 'brun terre', + 'marrón tierra', + 'marrone terra', + 'terrabruin' + ]), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x45, + 0x37, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl copper', + 'перлино-мідний', + 'perlkupfer', + 'cuivre nacré', + 'cobre perlado', + 'rame perlato', + 'parelmoer koper' + ]), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xe1, + 0xd4, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'cream', + 'кремовий', + 'cremeweiß', + 'blanc crème', + 'blanco crema', + 'bianco crema', + 'crèmewit' + ]), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0xd5, + 0xcd, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'grey white', + 'сіро-білий', + 'grauweiß', + 'blanc gris', + 'blanco grisáceo', + 'bianco grigiastro', + 'grijswit' + ]), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xec, + 0xea, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'signal white', + 'сигнальний білий', + 'signalweiß', + 'blanc de sécurité', + 'blanco señales', + 'bianco segnale', + 'signaalwit' + ]), + ), + RgbInt8Color.rgbNames( + 0x2f, + 0x31, + 0x33, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'signal black', + 'сигнальний чорний', + 'signalschwarz', + 'noir de sécurité', + 'negro señales', + 'nero segnale', + 'signaalzwart' + ]), + ), + RgbInt8Color.rgbNames( + 0x13, + 0x15, + 0x16, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'jet black', + 'чорний', + 'tiefschwarz', + 'noir foncé', + 'negro intenso', + 'nero intenso', + 'gitzwart' + ]), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0x9d, + 0x9d, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'white aluminium', + 'алюмінієво-білий', + 'weißaluminium', + 'aluminium blanc', + 'aluminio blanco', + 'alluminio brillante', + 'blank aluminiumkleurig' + ]), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x82, + 0x80, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'grey aluminium', + 'алюмінієво-сірий', + 'graualuminium', + 'aluminium gris', + 'aluminio gris', + 'alluminio grigiastro', + 'grijs aluminiumkleurig' + ]), + ), + RgbInt8Color.rgbNames( + 0xef, + 0xee, + 0xe5, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pure white', + 'чисто-білий', + 'reinweiß', + 'blanc pur', + 'blanco puro', + 'bianco puro', + 'zuiver wit' + ]), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x28, + 0x2a, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'graphite black', + 'графітно-чорний', + 'graphitschwarz', + 'noir graphite', + 'negro grafito', + 'nero grafite', + 'grafietzwart' + ]), + ), + RgbInt8Color.rgbNames( + 0xf2, + 0xf1, + 0xe1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['cleanroom white']), + ), + RgbInt8Color.rgbNames( + 0xef, + 0xf0, + 0xeb, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'traffic white', + 'дорожній білий', + 'verkehrsweiß', + 'blanc signalisation', + 'blanco tráfico', + 'bianco traffico', + 'verkeerswit' + ]), + ), + RgbInt8Color.rgbNames( + 0x26, + 0x26, + 0x25, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'traffic black', + 'дорожній чорний', + 'verkehrsschwarz', + 'noir signalisation', + 'negro tráfico', + 'nero traffico', + 'verkeerszwart' + ]), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0xcb, + 0xc6, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'papyrus white', + 'папірусно-білий', + 'papyrusweiß', + 'blanc papyrus', + 'blanco papiro', + 'bianco papiro', + 'papyruswit' + ]), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x83, + 0x82, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl light grey', + 'перлиновий світло-сірий', + 'perlhellgrau', + 'gris clair nacré', + 'gris claro perlado', + 'grigio chiaro perlato', + 'parelmoer lichtgrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x77, + 0x79, + Names.rays([ + 'en', + 'uk', + 'de', + 'fr', + 'es', + 'it', + 'nl' + ], [ + 'pearl dark grey', + 'перлиновий темно-сірий', + 'perldunkelgrau', + 'gris fonçé nacré', + 'gris oscuro perlado', + 'grigio scuro perlato', + 'parelmoer donkergrijs' + ]), + ), + RgbInt8Color.rgbNames( + 0xe4, + 0xe7, + 0xe6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 110-1']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xdd, + 0xd6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 110-2']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0xc6, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 110-3']), + ), + RgbInt8Color.rgbNames( + 0xc4, + 0xc7, + 0xc5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 110-4']), + ), + RgbInt8Color.rgbNames( + 0xc7, + 0xcb, + 0xc6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 110-5']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0xc7, + 0xc7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 110-6']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x9e, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 110-m']), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xed, + 0xeb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 120-1']), + ), + RgbInt8Color.rgbNames( + 0xf1, + 0xf2, + 0xed, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 120-2']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xee, + 0xe6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 120-3']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xe2, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 120-4']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xda, + 0xc7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 120-5']), + ), + RgbInt8Color.rgbNames( + 0xe6, + 0xe2, + 0xd0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 120-6']), + ), + RgbInt8Color.rgbNames( + 0x8d, + 0x8d, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 120-m']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xef, + 0xbf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 130-1']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xf0, + 0xc6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 130-2']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xf0, + 0xd0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 130-3']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xf2, + 0xd2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 130-4']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xe6, + 0xbf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 130-5']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xe8, + 0xb4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 130-6']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xaa, + 0x90, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 130-m']), + ), + RgbInt8Color.rgbNames( + 0xf0, + 0xd6, + 0xab, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 140-1']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xde, + 0xa9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 140-2']), + ), + RgbInt8Color.rgbNames( + 0xf6, + 0xe6, + 0xc2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 140-3']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xe1, + 0xbf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 140-4']), + ), + RgbInt8Color.rgbNames( + 0xf2, + 0xe6, + 0xc9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 140-5']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xd4, + 0xb7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 140-6']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0x9f, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 140-m']), + ), + RgbInt8Color.rgbNames( + 0xf3, + 0xef, + 0xea, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 150-1']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xeb, + 0xe4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 150-2']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xe1, + 0xd8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 150-3']), + ), + RgbInt8Color.rgbNames( + 0xf5, + 0xe4, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 150-4']), + ), + RgbInt8Color.rgbNames( + 0xf4, + 0xe9, + 0xdd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 150-5']), + ), + RgbInt8Color.rgbNames( + 0xf2, + 0xdf, + 0xd8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 150-6']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0x97, + 0x8b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 150-m']), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0xdf, + 0xec, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 160-1']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xe1, + 0xe8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 160-2']), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xe7, + 0xe8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 160-3']), + ), + RgbInt8Color.rgbNames( + 0xea, + 0xe0, + 0xe2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 160-4']), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xe3, + 0xe0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 160-5']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xe2, + 0xea, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 160-6']), + ), + RgbInt8Color.rgbNames( + 0xaa, + 0xa3, + 0xb4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 160-m']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0xc7, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 170-1']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xaa, + 0xbc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 170-2']), + ), + RgbInt8Color.rgbNames( + 0xbb, + 0xc5, + 0xd9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 170-3']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xd8, + 0xec, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 170-4']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xc3, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 170-5']), + ), + RgbInt8Color.rgbNames( + 0xc4, + 0xc2, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 170-6']), + ), + RgbInt8Color.rgbNames( + 0xa5, + 0xa5, + 0xb7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 170-m']), + ), + RgbInt8Color.rgbNames( + 0xaf, + 0xb9, + 0xc5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 180-1']), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0xca, + 0xdc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 180-2']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0xd8, + 0xeb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 180-3']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0xdf, + 0xed, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 180-4']), + ), + RgbInt8Color.rgbNames( + 0xc9, + 0xdb, + 0xe1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 180-5']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xe8, + 0xec, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 180-6']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0xa2, + 0xa8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 180-m']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0xd6, + 0xe0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 190-1']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xe2, + 0xf3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 190-2']), + ), + RgbInt8Color.rgbNames( + 0xc4, + 0xdc, + 0xe1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 190-3']), + ), + RgbInt8Color.rgbNames( + 0xc0, + 0xd8, + 0xd8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 190-4']), + ), + RgbInt8Color.rgbNames( + 0xd6, + 0xe3, + 0xe7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 190-5']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0xbf, + 0xbf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 190-6']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0xb2, + 0xb2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 190-m']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0xc7, + 0xb3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 210-1']), + ), + RgbInt8Color.rgbNames( + 0xe8, + 0xe7, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 210-2']), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0xe3, + 0xda, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 210-3']), + ), + RgbInt8Color.rgbNames( + 0xd6, + 0xe5, + 0xe4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 210-4']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xe7, + 0xe1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 210-5']), + ), + RgbInt8Color.rgbNames( + 0xd9, + 0xe9, + 0xd8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 210-6']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0xad, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 210-m']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0xb9, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 220-1']), + ), + RgbInt8Color.rgbNames( + 0x53, + 0x9a, + 0x5b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 220-2']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x6e, + 0x46, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 220-3']), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x83, + 0x5b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 220-4']), + ), + RgbInt8Color.rgbNames( + 0x42, + 0x7e, + 0x57, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 220-5']), + ), + RgbInt8Color.rgbNames( + 0x26, + 0x68, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 220-6']), + ), + RgbInt8Color.rgbNames( + 0x21, + 0x7d, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 220-m']), + ), + RgbInt8Color.rgbNames( + 0xbd, + 0xde, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 230-1']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0xcb, + 0x76, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 230-2']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0xb7, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 230-3']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x9a, + 0x47, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 230-4']), + ), + RgbInt8Color.rgbNames( + 0x43, + 0x6b, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 230-5']), + ), + RgbInt8Color.rgbNames( + 0x3f, + 0x5e, + 0x37, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 230-6']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0xa4, + 0x57, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 230-m']), + ), + RgbInt8Color.rgbNames( + 0xd6, + 0xda, + 0x96, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 240-1']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0xb3, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 240-2']), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x9a, + 0x5a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 240-3']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x82, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 240-4']), + ), + RgbInt8Color.rgbNames( + 0x5c, + 0x6f, + 0x41, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 240-5']), + ), + RgbInt8Color.rgbNames( + 0x52, + 0x70, + 0x3d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 240-6']), + ), + RgbInt8Color.rgbNames( + 0x61, + 0x74, + 0x41, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 240-m']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xe9, + 0xa9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 250-1']), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0xe3, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 250-2']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0xbd, + 0x2c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 250-3']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0xaa, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 250-4']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x95, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 250-5']), + ), + RgbInt8Color.rgbNames( + 0x62, + 0x69, + 0x32, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 250-6']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0xa9, + 0x4a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 250-m']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xeb, + 0xb7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 260-1']), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xe8, + 0x8b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 260-2']), + ), + RgbInt8Color.rgbNames( + 0xe8, + 0xda, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 260-3']), + ), + RgbInt8Color.rgbNames( + 0xdb, + 0xc5, + 0x3c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 260-4']), + ), + RgbInt8Color.rgbNames( + 0xd0, + 0xb6, + 0x40, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 260-5']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0xba, + 0x33, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 260-6']), + ), + RgbInt8Color.rgbNames( + 0xab, + 0x97, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 260-m']), + ), + RgbInt8Color.rgbNames( + 0xf6, + 0xe3, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 270-1']), + ), + RgbInt8Color.rgbNames( + 0xed, + 0xd1, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 270-2']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xc4, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 270-3']), + ), + RgbInt8Color.rgbNames( + 0xdc, + 0xb8, + 0x00, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 270-4']), + ), + RgbInt8Color.rgbNames( + 0xe4, + 0xbd, + 0x04, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 270-5']), + ), + RgbInt8Color.rgbNames( + 0xef, + 0xcb, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 270-6']), + ), + RgbInt8Color.rgbNames( + 0xaf, + 0x8e, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 270-m']), + ), + RgbInt8Color.rgbNames( + 0xf5, + 0xe5, + 0x99, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 280-1']), + ), + RgbInt8Color.rgbNames( + 0xe6, + 0xd7, + 0x95, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 280-2']), + ), + RgbInt8Color.rgbNames( + 0xd5, + 0xc1, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 280-3']), + ), + RgbInt8Color.rgbNames( + 0xc9, + 0xb3, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 280-4']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0xa7, + 0x4a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 280-5']), + ), + RgbInt8Color.rgbNames( + 0xc1, + 0x9c, + 0x46, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 280-6']), + ), + RgbInt8Color.rgbNames( + 0xa7, + 0x8c, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 280-m']), + ), + RgbInt8Color.rgbNames( + 0xc8, + 0xa0, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 290-1']), + ), + RgbInt8Color.rgbNames( + 0xb0, + 0x8a, + 0x43, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 290-2']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0xae, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 290-3']), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0x97, + 0x2d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 290-4']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0xb6, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 290-5']), + ), + RgbInt8Color.rgbNames( + 0xea, + 0xb2, + 0x29, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 290-6']), + ), + RgbInt8Color.rgbNames( + 0xaa, + 0x83, + 0x3b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 290-m']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0xd8, + 0xb6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 310-1']), + ), + RgbInt8Color.rgbNames( + 0xdf, + 0xc5, + 0x9a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 310-2']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0xaf, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 310-3']), + ), + RgbInt8Color.rgbNames( + 0xc1, + 0x97, + 0x5a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 310-4']), + ), + RgbInt8Color.rgbNames( + 0xab, + 0x80, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 310-5']), + ), + RgbInt8Color.rgbNames( + 0x82, + 0x5e, + 0x33, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 310-6']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0x81, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 310-m']), + ), + RgbInt8Color.rgbNames( + 0xc5, + 0xad, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 320-1']), + ), + RgbInt8Color.rgbNames( + 0xa2, + 0x84, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 320-2']), + ), + RgbInt8Color.rgbNames( + 0xab, + 0x89, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 320-3']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0x6a, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 320-4']), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x52, + 0x33, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 320-5']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x47, + 0x2d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 320-6']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0x7a, + 0x2e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 320-m']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x69, + 0x5a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 330-1']), + ), + RgbInt8Color.rgbNames( + 0x81, + 0x4e, + 0x38, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 330-2']), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x50, + 0x41, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 330-3']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x3e, + 0x30, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 330-4']), + ), + RgbInt8Color.rgbNames( + 0x4b, + 0x35, + 0x2e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 330-5']), + ), + RgbInt8Color.rgbNames( + 0x42, + 0x34, + 0x30, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 330-6']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x5b, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 330-m']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0xa2, + 0xa8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 340-1']), + ), + RgbInt8Color.rgbNames( + 0x9d, + 0x8b, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 340-2']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x55, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 340-3']), + ), + RgbInt8Color.rgbNames( + 0x60, + 0x3e, + 0x42, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 340-4']), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x2c, + 0x30, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 340-5']), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x2b, + 0x32, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 340-6']), + ), + RgbInt8Color.rgbNames( + 0x4e, + 0x37, + 0x3c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 340-m']), + ), + RgbInt8Color.rgbNames( + 0x8e, + 0x32, + 0x23, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 350-1']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x3f, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 350-2']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0x49, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 350-3']), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x33, + 0x26, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 350-4']), + ), + RgbInt8Color.rgbNames( + 0x6d, + 0x34, + 0x26, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 350-5']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x36, + 0x2e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 350-6']), + ), + RgbInt8Color.rgbNames( + 0x50, + 0x30, + 0x2c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 350-m']), + ), + RgbInt8Color.rgbNames( + 0xcd, + 0x80, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 360-1']), + ), + RgbInt8Color.rgbNames( + 0xc7, + 0x78, + 0x2b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 360-2']), + ), + RgbInt8Color.rgbNames( + 0xb3, + 0x66, + 0x23, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 360-3']), + ), + RgbInt8Color.rgbNames( + 0xa6, + 0x58, + 0x2e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 360-4']), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x52, + 0x31, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 360-5']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0x53, + 0x37, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 360-6']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x5a, + 0x39, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 360-m']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xb4, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 370-1']), + ), + RgbInt8Color.rgbNames( + 0xee, + 0xa3, + 0x40, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 370-2']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0x97, + 0x2b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 370-3']), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0x86, + 0x2a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 370-4']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0x7c, + 0x2b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 370-5']), + ), + RgbInt8Color.rgbNames( + 0xba, + 0x71, + 0x19, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 370-6']), + ), + RgbInt8Color.rgbNames( + 0xa7, + 0x77, + 0x43, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 370-m']), + ), + RgbInt8Color.rgbNames( + 0xef, + 0xa3, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 380-1']), + ), + RgbInt8Color.rgbNames( + 0xec, + 0x9a, + 0x18, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 380-2']), + ), + RgbInt8Color.rgbNames( + 0xe4, + 0x8a, + 0x26, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 380-3']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0x75, + 0x28, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 380-4']), + ), + RgbInt8Color.rgbNames( + 0xde, + 0x7d, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 380-5']), + ), + RgbInt8Color.rgbNames( + 0xd6, + 0x6e, + 0x2c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 380-6']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x57, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 380-m']), + ), + RgbInt8Color.rgbNames( + 0xd8, + 0x79, + 0x44, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 390-1']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0x63, + 0x2c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 390-2']), + ), + RgbInt8Color.rgbNames( + 0xcb, + 0x56, + 0x1a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 390-3']), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0x52, + 0x22, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 390-4']), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0x49, + 0x18, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 390-5']), + ), + RgbInt8Color.rgbNames( + 0xbc, + 0x60, + 0x30, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 390-6']), + ), + RgbInt8Color.rgbNames( + 0xae, + 0x67, + 0x40, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 390-m']), + ), + RgbInt8Color.rgbNames( + 0xdb, + 0x82, + 0x67, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 410-1']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0x75, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 410-2']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0x66, + 0x43, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 410-3']), + ), + RgbInt8Color.rgbNames( + 0xc9, + 0x5f, + 0x3b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 410-4']), + ), + RgbInt8Color.rgbNames( + 0xc0, + 0x56, + 0x39, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 410-5']), + ), + RgbInt8Color.rgbNames( + 0xbe, + 0x5e, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 410-6']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0x49, + 0x2c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 410-m']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0xad, + 0x9b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 420-1']), + ), + RgbInt8Color.rgbNames( + 0xe2, + 0x9e, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 420-2']), + ), + RgbInt8Color.rgbNames( + 0xd7, + 0x8c, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 420-3']), + ), + RgbInt8Color.rgbNames( + 0xd1, + 0x66, + 0x46, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 420-4']), + ), + RgbInt8Color.rgbNames( + 0xba, + 0x59, + 0x3c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 420-5']), + ), + RgbInt8Color.rgbNames( + 0xae, + 0x52, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 420-6']), + ), + RgbInt8Color.rgbNames( + 0x90, + 0x4e, + 0x36, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 420-m']), + ), + RgbInt8Color.rgbNames( + 0xe7, + 0xc2, + 0xb6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 430-1']), + ), + RgbInt8Color.rgbNames( + 0xdd, + 0x99, + 0x8a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 430-2']), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0x7f, + 0x74, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 430-3']), + ), + RgbInt8Color.rgbNames( + 0xcc, + 0x57, + 0x4e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 430-4']), + ), + RgbInt8Color.rgbNames( + 0xc3, + 0x40, + 0x3d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 430-5']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0x3a, + 0x27, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 430-6']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x4f, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 430-m']), + ), + RgbInt8Color.rgbNames( + 0xb8, + 0x34, + 0x3e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 440-1']), + ), + RgbInt8Color.rgbNames( + 0xc1, + 0x49, + 0x4a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 440-2']), + ), + RgbInt8Color.rgbNames( + 0xaa, + 0x3a, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 440-3']), + ), + RgbInt8Color.rgbNames( + 0x8e, + 0x27, + 0x2e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 440-4']), + ), + RgbInt8Color.rgbNames( + 0x97, + 0x2f, + 0x2c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 440-5']), + ), + RgbInt8Color.rgbNames( + 0xa9, + 0x34, + 0x29, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 440-6']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x1f, + 0x25, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 440-m']), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xc5, + 0xc9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 450-1']), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0xa2, + 0xa9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 450-2']), + ), + RgbInt8Color.rgbNames( + 0xd0, + 0x77, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 450-3']), + ), + RgbInt8Color.rgbNames( + 0xb8, + 0x55, + 0x61, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 450-4']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0x2f, + 0x32, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 450-5']), + ), + RgbInt8Color.rgbNames( + 0xab, + 0x15, + 0x22, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 450-6']), + ), + RgbInt8Color.rgbNames( + 0x98, + 0x11, + 0x1a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 450-m']), + ), + RgbInt8Color.rgbNames( + 0xe2, + 0xa0, + 0xa5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 460-1']), + ), + RgbInt8Color.rgbNames( + 0xd3, + 0x7b, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 460-2']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0x5e, + 0x67, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 460-3']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0x4f, + 0x54, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 460-4']), + ), + RgbInt8Color.rgbNames( + 0x99, + 0x36, + 0x3c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 460-5']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x10, + 0x2a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 460-6']), + ), + RgbInt8Color.rgbNames( + 0x9d, + 0x3d, + 0x43, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 460-m']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xb0, + 0xbf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 470-1']), + ), + RgbInt8Color.rgbNames( + 0xd8, + 0x87, + 0x9a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 470-2']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0x6f, + 0x81, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 470-3']), + ), + RgbInt8Color.rgbNames( + 0xba, + 0x48, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 470-4']), + ), + RgbInt8Color.rgbNames( + 0x9e, + 0x22, + 0x4a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 470-5']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0x14, + 0x3e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 470-6']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0x4c, + 0x5b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 470-m']), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xc8, + 0xc8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 480-1']), + ), + RgbInt8Color.rgbNames( + 0xea, + 0xbe, + 0xbd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 480-2']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xb8, + 0xbb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 480-3']), + ), + RgbInt8Color.rgbNames( + 0xe1, + 0xa2, + 0xaf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 480-4']), + ), + RgbInt8Color.rgbNames( + 0xda, + 0x8c, + 0x9c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 480-5']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0x68, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 480-6']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x6e, + 0x73, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 480-m']), + ), + RgbInt8Color.rgbNames( + 0xeb, + 0xcd, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 490-1']), + ), + RgbInt8Color.rgbNames( + 0xed, + 0xc9, + 0xc3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 490-2']), + ), + RgbInt8Color.rgbNames( + 0xda, + 0x99, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 490-3']), + ), + RgbInt8Color.rgbNames( + 0xb5, + 0x7a, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 490-4']), + ), + RgbInt8Color.rgbNames( + 0xb2, + 0x7d, + 0x8a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 490-5']), + ), + RgbInt8Color.rgbNames( + 0xc7, + 0x9c, + 0xa6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 490-6']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0x78, + 0x83, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 490-m']), + ), + RgbInt8Color.rgbNames( + 0xe5, + 0xc5, + 0xdb, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 510-1']), + ), + RgbInt8Color.rgbNames( + 0xd6, + 0xa0, + 0xc7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 510-2']), + ), + RgbInt8Color.rgbNames( + 0xc8, + 0x7e, + 0xac, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 510-3']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0x5d, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 510-4']), + ), + RgbInt8Color.rgbNames( + 0xac, + 0x41, + 0x73, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 510-5']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0x34, + 0x67, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 510-6']), + ), + RgbInt8Color.rgbNames( + 0x85, + 0x3c, + 0x71, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 510-m']), + ), + RgbInt8Color.rgbNames( + 0xe9, + 0xcf, + 0xde, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 520-1']), + ), + RgbInt8Color.rgbNames( + 0xdf, + 0xb6, + 0xd0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 520-2']), + ), + RgbInt8Color.rgbNames( + 0xd2, + 0xa0, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 520-3']), + ), + RgbInt8Color.rgbNames( + 0xae, + 0x6e, + 0x90, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 520-4']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x4a, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 520-5']), + ), + RgbInt8Color.rgbNames( + 0x88, + 0x4f, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 520-6']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0x53, + 0x87, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 520-m']), + ), + RgbInt8Color.rgbNames( + 0x8c, + 0x43, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 530-1']), + ), + RgbInt8Color.rgbNames( + 0x83, + 0x3f, + 0x4e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 530-2']), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x35, + 0x45, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 530-3']), + ), + RgbInt8Color.rgbNames( + 0x72, + 0x2d, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 530-4']), + ), + RgbInt8Color.rgbNames( + 0x5f, + 0x24, + 0x3e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 530-5']), + ), + RgbInt8Color.rgbNames( + 0x5b, + 0x29, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 530-6']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x2f, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 530-m']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xbd, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 540-1']), + ), + RgbInt8Color.rgbNames( + 0xb8, + 0x9d, + 0xbe, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 540-2']), + ), + RgbInt8Color.rgbNames( + 0x7a, + 0x5c, + 0x80, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 540-3']), + ), + RgbInt8Color.rgbNames( + 0x8e, + 0x66, + 0x94, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 540-4']), + ), + RgbInt8Color.rgbNames( + 0x79, + 0x50, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 540-5']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x2b, + 0x4f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 540-6']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x33, + 0x52, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 540-m']), + ), + RgbInt8Color.rgbNames( + 0xdb, + 0xcf, + 0xd8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 550-1']), + ), + RgbInt8Color.rgbNames( + 0xca, + 0xb8, + 0xc8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 550-2']), + ), + RgbInt8Color.rgbNames( + 0xab, + 0x8f, + 0xa6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 550-3']), + ), + RgbInt8Color.rgbNames( + 0x94, + 0x72, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 550-4']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0x5f, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 550-5']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x4b, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 550-6']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0x89, + 0x92, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 550-m']), + ), + RgbInt8Color.rgbNames( + 0xc7, + 0xb9, + 0xc6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 560-1']), + ), + RgbInt8Color.rgbNames( + 0xab, + 0x99, + 0xab, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 560-2']), + ), + RgbInt8Color.rgbNames( + 0x85, + 0x6d, + 0x7f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 560-3']), + ), + RgbInt8Color.rgbNames( + 0x70, + 0x54, + 0x60, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 560-4']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0x70, + 0x7e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 560-5']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0x6c, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 560-6']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x8a, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 560-m']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xc9, + 0xe6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 570-1']), + ), + RgbInt8Color.rgbNames( + 0xc1, + 0xba, + 0xdf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 570-2']), + ), + RgbInt8Color.rgbNames( + 0xac, + 0xa6, + 0xda, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 570-3']), + ), + RgbInt8Color.rgbNames( + 0x9a, + 0x93, + 0xcc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 570-4']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x71, + 0xaf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 570-5']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x63, + 0x98, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 570-6']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x56, + 0x94, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 570-m']), + ), + RgbInt8Color.rgbNames( + 0xc3, + 0xcb, + 0xe5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 580-1']), + ), + RgbInt8Color.rgbNames( + 0xbd, + 0xc2, + 0xde, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 580-2']), + ), + RgbInt8Color.rgbNames( + 0xa8, + 0xad, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 580-3']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x6f, + 0x98, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 580-4']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x4d, + 0x6c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 580-5']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x30, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 580-6']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x69, + 0x84, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 580-m']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x68, + 0x97, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 590-1']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x3f, + 0x73, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 590-2']), + ), + RgbInt8Color.rgbNames( + 0x2f, + 0x33, + 0x69, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 590-3']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x2d, + 0x59, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 590-4']), + ), + RgbInt8Color.rgbNames( + 0x20, + 0x2b, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 590-5']), + ), + RgbInt8Color.rgbNames( + 0x1e, + 0x35, + 0x78, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 590-6']), + ), + RgbInt8Color.rgbNames( + 0x2d, + 0x31, + 0x5b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 590-m']), + ), + RgbInt8Color.rgbNames( + 0x74, + 0x8a, + 0xa9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 610-1']), + ), + RgbInt8Color.rgbNames( + 0x66, + 0x76, + 0x92, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 610-2']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0x8f, + 0xb7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 610-3']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0xac, + 0xd6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 610-4']), + ), + RgbInt8Color.rgbNames( + 0x56, + 0x70, + 0xab, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 610-5']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x63, + 0x97, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 610-6']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x93, + 0xb5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 610-m']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x63, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 620-1']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x8e, + 0xaa, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 620-2']), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0x7f, + 0x8e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 620-3']), + ), + RgbInt8Color.rgbNames( + 0x44, + 0x58, + 0x6a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 620-4']), + ), + RgbInt8Color.rgbNames( + 0x21, + 0x34, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 620-5']), + ), + RgbInt8Color.rgbNames( + 0x24, + 0x2e, + 0x3f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 620-6']), + ), + RgbInt8Color.rgbNames( + 0x19, + 0x2d, + 0x41, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 620-m']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x9b, + 0xd1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 630-1']), + ), + RgbInt8Color.rgbNames( + 0x4f, + 0x66, + 0x8c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 630-2']), + ), + RgbInt8Color.rgbNames( + 0x39, + 0x4b, + 0x6e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 630-3']), + ), + RgbInt8Color.rgbNames( + 0x38, + 0x48, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 630-4']), + ), + RgbInt8Color.rgbNames( + 0x28, + 0x34, + 0x54, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 630-5']), + ), + RgbInt8Color.rgbNames( + 0x25, + 0x34, + 0x54, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 630-6']), + ), + RgbInt8Color.rgbNames( + 0x24, + 0x31, + 0x4d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 630-m']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x99, + 0xc3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 640-1']), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x7f, + 0xb3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 640-2']), + ), + RgbInt8Color.rgbNames( + 0x2e, + 0x71, + 0xac, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 640-3']), + ), + RgbInt8Color.rgbNames( + 0x14, + 0x53, + 0x8c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 640-4']), + ), + RgbInt8Color.rgbNames( + 0x15, + 0x4b, + 0x89, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 640-5']), + ), + RgbInt8Color.rgbNames( + 0x13, + 0x48, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 640-6']), + ), + RgbInt8Color.rgbNames( + 0x02, + 0x42, + 0x82, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 640-m']), + ), + RgbInt8Color.rgbNames( + 0x7b, + 0xae, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 650-1']), + ), + RgbInt8Color.rgbNames( + 0x0c, + 0x6d, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 650-2']), + ), + RgbInt8Color.rgbNames( + 0x17, + 0x63, + 0x97, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 650-3']), + ), + RgbInt8Color.rgbNames( + 0x0f, + 0x4e, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 650-4']), + ), + RgbInt8Color.rgbNames( + 0x35, + 0x57, + 0x77, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 650-5']), + ), + RgbInt8Color.rgbNames( + 0x27, + 0x47, + 0x62, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 650-6']), + ), + RgbInt8Color.rgbNames( + 0x00, + 0x65, + 0x9a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 650-m']), + ), + RgbInt8Color.rgbNames( + 0x37, + 0x8c, + 0xb0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 660-1']), + ), + RgbInt8Color.rgbNames( + 0x48, + 0x87, + 0xa7, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 660-2']), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0xa0, + 0xb8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 660-3']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0xb1, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 660-4']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0xbd, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 660-5']), + ), + RgbInt8Color.rgbNames( + 0x99, + 0xc4, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 660-6']), + ), + RgbInt8Color.rgbNames( + 0x65, + 0x90, + 0xa6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 660-m']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0xce, + 0xea, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 670-1']), + ), + RgbInt8Color.rgbNames( + 0xa7, + 0xd5, + 0xf0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 670-2']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0xc0, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 670-3']), + ), + RgbInt8Color.rgbNames( + 0x80, + 0xb5, + 0xd3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 670-4']), + ), + RgbInt8Color.rgbNames( + 0x78, + 0xb2, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 670-5']), + ), + RgbInt8Color.rgbNames( + 0x76, + 0xba, + 0xe6, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 670-6']), + ), + RgbInt8Color.rgbNames( + 0x81, + 0xa5, + 0xb9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 670-m']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0xa6, + 0xb9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 680-1']), + ), + RgbInt8Color.rgbNames( + 0x54, + 0x8a, + 0xa3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 680-2']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x6c, + 0x84, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 680-3']), + ), + RgbInt8Color.rgbNames( + 0x43, + 0x71, + 0x8c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 680-4']), + ), + RgbInt8Color.rgbNames( + 0x2a, + 0x64, + 0x84, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 680-5']), + ), + RgbInt8Color.rgbNames( + 0x10, + 0x54, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 680-6']), + ), + RgbInt8Color.rgbNames( + 0x27, + 0x44, + 0x5f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 680-m']), + ), + RgbInt8Color.rgbNames( + 0x6d, + 0xb8, + 0xcd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 690-1']), + ), + RgbInt8Color.rgbNames( + 0x4d, + 0x9b, + 0xae, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 690-2']), + ), + RgbInt8Color.rgbNames( + 0x2d, + 0x7c, + 0x8f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 690-3']), + ), + RgbInt8Color.rgbNames( + 0x12, + 0x65, + 0x7d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 690-4']), + ), + RgbInt8Color.rgbNames( + 0x11, + 0x4f, + 0x61, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 690-5']), + ), + RgbInt8Color.rgbNames( + 0x14, + 0x4d, + 0x62, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 690-6']), + ), + RgbInt8Color.rgbNames( + 0x00, + 0x5e, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 690-m']), + ), + RgbInt8Color.rgbNames( + 0x8f, + 0xcd, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 710-1']), + ), + RgbInt8Color.rgbNames( + 0x49, + 0xa3, + 0xaa, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 710-2']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x85, + 0x8c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 710-3']), + ), + RgbInt8Color.rgbNames( + 0x29, + 0x70, + 0x79, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 710-4']), + ), + RgbInt8Color.rgbNames( + 0x11, + 0x57, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 710-5']), + ), + RgbInt8Color.rgbNames( + 0x26, + 0x46, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 710-6']), + ), + RgbInt8Color.rgbNames( + 0x00, + 0x5e, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 710-m']), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0xe2, + 0xdf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 720-1']), + ), + RgbInt8Color.rgbNames( + 0xb1, + 0xe0, + 0xdd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 720-2']), + ), + RgbInt8Color.rgbNames( + 0x99, + 0xcf, + 0xd5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 720-3']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0xb9, + 0xc2, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 720-4']), + ), + RgbInt8Color.rgbNames( + 0x55, + 0x8e, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 720-5']), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x77, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 720-6']), + ), + RgbInt8Color.rgbNames( + 0x48, + 0x88, + 0x94, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 720-m']), + ), + RgbInt8Color.rgbNames( + 0xce, + 0xe6, + 0xe3, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 730-1']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0xd0, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 730-2']), + ), + RgbInt8Color.rgbNames( + 0x8a, + 0xb5, + 0xba, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 730-3']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0xb6, + 0xb5, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 730-4']), + ), + RgbInt8Color.rgbNames( + 0x84, + 0xa9, + 0xac, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 730-5']), + ), + RgbInt8Color.rgbNames( + 0x58, + 0x85, + 0x81, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 730-6']), + ), + RgbInt8Color.rgbNames( + 0x6b, + 0x9c, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 730-m']), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0xdb, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 740-1']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0xd5, + 0xca, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 740-2']), + ), + RgbInt8Color.rgbNames( + 0x9c, + 0xc2, + 0xb4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 740-3']), + ), + RgbInt8Color.rgbNames( + 0x57, + 0x84, + 0x76, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 740-4']), + ), + RgbInt8Color.rgbNames( + 0x30, + 0x6d, + 0x60, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 740-5']), + ), + RgbInt8Color.rgbNames( + 0x14, + 0x5b, + 0x53, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 740-6']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x6c, + 0x60, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 740-m']), + ), + RgbInt8Color.rgbNames( + 0xc0, + 0xd7, + 0xca, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 750-1']), + ), + RgbInt8Color.rgbNames( + 0x93, + 0xb3, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 750-2']), + ), + RgbInt8Color.rgbNames( + 0x4c, + 0x74, + 0x65, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 750-3']), + ), + RgbInt8Color.rgbNames( + 0x26, + 0x43, + 0x39, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 750-4']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x55, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 750-5']), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x3f, + 0x3e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 750-6']), + ), + RgbInt8Color.rgbNames( + 0x24, + 0x38, + 0x32, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 750-m']), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0xe4, + 0xcc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 760-1']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0xce, + 0xad, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 760-2']), + ), + RgbInt8Color.rgbNames( + 0xae, + 0xbf, + 0x9e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 760-3']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x9b, + 0x7c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 760-4']), + ), + RgbInt8Color.rgbNames( + 0x6c, + 0x7f, + 0x5f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 760-5']), + ), + RgbInt8Color.rgbNames( + 0x4e, + 0x66, + 0x4c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 760-6']), + ), + RgbInt8Color.rgbNames( + 0x37, + 0x4b, + 0x33, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 760-m']), + ), + RgbInt8Color.rgbNames( + 0x95, + 0x9e, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 770-1']), + ), + RgbInt8Color.rgbNames( + 0xa4, + 0xa9, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 770-2']), + ), + RgbInt8Color.rgbNames( + 0x75, + 0x76, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 770-3']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x7a, + 0x68, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 770-4']), + ), + RgbInt8Color.rgbNames( + 0xaf, + 0xaf, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 770-5']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x82, + 0x75, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 770-6']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x88, + 0x66, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 770-m']), + ), + RgbInt8Color.rgbNames( + 0xe4, + 0xde, + 0xcd, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 780-1']), + ), + RgbInt8Color.rgbNames( + 0xe0, + 0xd7, + 0xba, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 780-2']), + ), + RgbInt8Color.rgbNames( + 0xd4, + 0xc6, + 0x9c, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 780-3']), + ), + RgbInt8Color.rgbNames( + 0xc6, + 0xb3, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 780-4']), + ), + RgbInt8Color.rgbNames( + 0x9b, + 0x8e, + 0x7a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 780-5']), + ), + RgbInt8Color.rgbNames( + 0x6f, + 0x69, + 0x5e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 780-6']), + ), + RgbInt8Color.rgbNames( + 0xa7, + 0x9f, + 0x78, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 780-m']), + ), + RgbInt8Color.rgbNames( + 0x41, + 0x49, + 0x4b, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 790-1']), + ), + RgbInt8Color.rgbNames( + 0x3d, + 0x42, + 0x48, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 790-2']), + ), + RgbInt8Color.rgbNames( + 0x33, + 0x37, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 790-3']), + ), + RgbInt8Color.rgbNames( + 0x31, + 0x32, + 0x34, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 790-4']), + ), + RgbInt8Color.rgbNames( + 0x23, + 0x25, + 0x27, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 790-5']), + ), + RgbInt8Color.rgbNames( + 0x24, + 0x25, + 0x2f, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 790-6']), + ), + RgbInt8Color.rgbNames( + 0x26, + 0x25, + 0x24, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 790-m']), + ), + RgbInt8Color.rgbNames( + 0x96, + 0x9b, + 0xa1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 810-1']), + ), + RgbInt8Color.rgbNames( + 0x89, + 0x92, + 0x98, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 810-2']), + ), + RgbInt8Color.rgbNames( + 0x7a, + 0x86, + 0x8d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 810-3']), + ), + RgbInt8Color.rgbNames( + 0x5f, + 0x69, + 0x72, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 810-4']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x58, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 810-5']), + ), + RgbInt8Color.rgbNames( + 0x3b, + 0x42, + 0x47, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 810-6']), + ), + RgbInt8Color.rgbNames( + 0x40, + 0x45, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 810-m']), + ), + RgbInt8Color.rgbNames( + 0xc2, + 0xc6, + 0xc9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 820-1']), + ), + RgbInt8Color.rgbNames( + 0xa7, + 0xac, + 0xb1, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 820-2']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x91, + 0x95, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 820-3']), + ), + RgbInt8Color.rgbNames( + 0x7c, + 0x83, + 0x88, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 820-4']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x55, + 0x5d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 820-5']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x4a, + 0x51, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 820-6']), + ), + RgbInt8Color.rgbNames( + 0x91, + 0x92, + 0x93, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 820-m']), + ), + RgbInt8Color.rgbNames( + 0xb7, + 0xba, + 0xb9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 830-1']), + ), + RgbInt8Color.rgbNames( + 0xa1, + 0xa5, + 0xa4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 830-2']), + ), + RgbInt8Color.rgbNames( + 0x8b, + 0x90, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 830-3']), + ), + RgbInt8Color.rgbNames( + 0x6a, + 0x6f, + 0x6d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 830-4']), + ), + RgbInt8Color.rgbNames( + 0x51, + 0x55, + 0x55, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 830-5']), + ), + RgbInt8Color.rgbNames( + 0x57, + 0x5e, + 0x61, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 830-6']), + ), + RgbInt8Color.rgbNames( + 0x7f, + 0x7f, + 0x7e, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 830-m']), + ), + RgbInt8Color.rgbNames( + 0xe3, + 0xe3, + 0xd9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 840-1']), + ), + RgbInt8Color.rgbNames( + 0xd3, + 0xd4, + 0xcc, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 840-2']), + ), + RgbInt8Color.rgbNames( + 0xb3, + 0xb3, + 0xa8, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 840-3']), + ), + RgbInt8Color.rgbNames( + 0x7d, + 0x80, + 0x78, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 840-4']), + ), + RgbInt8Color.rgbNames( + 0x59, + 0x5e, + 0x56, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 840-5']), + ), + RgbInt8Color.rgbNames( + 0x45, + 0x44, + 0x38, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 840-6']), + ), + RgbInt8Color.rgbNames( + 0x46, + 0x44, + 0x41, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 840-m']), + ), + RgbInt8Color.rgbNames( + 0xbf, + 0xc1, + 0xb9, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 850-1']), + ), + RgbInt8Color.rgbNames( + 0xad, + 0xb0, + 0xaa, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 850-2']), + ), + RgbInt8Color.rgbNames( + 0xa3, + 0xa5, + 0xa0, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 850-3']), + ), + RgbInt8Color.rgbNames( + 0x8d, + 0x8d, + 0x86, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 850-4']), + ), + RgbInt8Color.rgbNames( + 0x68, + 0x67, + 0x61, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 850-5']), + ), + RgbInt8Color.rgbNames( + 0x4b, + 0x4c, + 0x48, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 850-6']), + ), + RgbInt8Color.rgbNames( + 0x5d, + 0x5c, + 0x58, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 850-m']), + ), + RgbInt8Color.rgbNames( + 0xd5, + 0xd8, + 0xda, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 860-1']), + ), + RgbInt8Color.rgbNames( + 0xcc, + 0xcf, + 0xd4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 860-2']), + ), + RgbInt8Color.rgbNames( + 0xbe, + 0xc0, + 0xc4, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 860-3']), + ), + RgbInt8Color.rgbNames( + 0x97, + 0x99, + 0x9a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 860-4']), + ), + RgbInt8Color.rgbNames( + 0x77, + 0x79, + 0x79, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 860-5']), + ), + RgbInt8Color.rgbNames( + 0x5a, + 0x5f, + 0x60, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 860-6']), + ), + RgbInt8Color.rgbNames( + 0x9f, + 0x9e, + 0x9d, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 860-m']), + ), + RgbInt8Color.rgbNames( + 0xcf, + 0xce, + 0xcf, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 870-1']), + ), + RgbInt8Color.rgbNames( + 0x92, + 0x91, + 0x91, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 870-2']), + ), + RgbInt8Color.rgbNames( + 0x61, + 0x61, + 0x64, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 870-3']), + ), + RgbInt8Color.rgbNames( + 0x50, + 0x4e, + 0x50, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 870-4']), + ), + RgbInt8Color.rgbNames( + 0x49, + 0x48, + 0x49, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 870-5']), + ), + RgbInt8Color.rgbNames( + 0x3c, + 0x39, + 0x3a, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 870-6']), + ), + RgbInt8Color.rgbNames( + 0x4a, + 0x47, + 0x48, + Names.rays(['en', 'uk', 'de', 'fr', 'es', 'it', 'nl'], ['ral 870-m']), + ), +]; diff --git a/lib/src/palettes/zeplin.dart b/lib/src/palettes/zeplin.dart new file mode 100644 index 0000000..ce7f530 --- /dev/null +++ b/lib/src/palettes/zeplin.dart @@ -0,0 +1,955 @@ +part of '../../uni_color_palette.dart'; + +/// Thanks: https://github.com/zeplin/zeplin-palette/tree/master +/// Helper sheet: https://docs.google.com/spreadsheets/d/1f8wvrgqfGcXFAiAXx-p9CgLXo3__IoEn8-Us-uRyfok/edit#gid=0 +final zeplinColors = [ + RgbInt8Color.rgbName(0x00, 0x00, 0x00, 'black'), + RgbInt8Color.rgbName(0x00, 0x01, 0x33, 'very dark blue'), + RgbInt8Color.rgbName(0x00, 0x02, 0x2e, 'dark navy blue'), + RgbInt8Color.rgbName(0x00, 0x03, 0x5b, 'dark blue'), + RgbInt8Color.rgbName(0x00, 0x04, 0x35, 'dark navy'), + RgbInt8Color.rgbName(0x00, 0x11, 0x46, 'navy blue'), + RgbInt8Color.rgbName(0x00, 0x2d, 0x04, 'dark forest green'), + RgbInt8Color.rgbName(0x00, 0x45, 0x77, 'prussian blue'), + RgbInt8Color.rgbName(0x00, 0x52, 0x49, 'dark blue green'), + RgbInt8Color.rgbName(0x00, 0x55, 0x5a, 'deep teal'), + RgbInt8Color.rgbName(0x00, 0x5f, 0x6a, 'petrol'), + RgbInt8Color.rgbName(0x00, 0x93, 0x37, 'kelley green'), + RgbInt8Color.rgbName(0x00, 0xfb, 0xb0, 'greenish turquoise'), + RgbInt8Color.rgbName(0x00, 0xff, 0xff, 'cyan'), + RgbInt8Color.rgbName(0x01, 0x0f, 0xcc, 'true blue'), + RgbInt8Color.rgbName(0x01, 0x15, 0x3e, 'navy'), + RgbInt8Color.rgbName(0x01, 0x38, 0x6a, 'marine blue'), + RgbInt8Color.rgbName(0x01, 0x41, 0x82, 'darkish blue'), + RgbInt8Color.rgbName(0x01, 0x46, 0x00, 'racing green'), + RgbInt8Color.rgbName(0x01, 0x4d, 0x4e, 'dark teal'), + RgbInt8Color.rgbName(0x01, 0x54, 0x82, 'deep sea blue'), + RgbInt8Color.rgbName(0x01, 0x65, 0xfc, 'bright blue'), + RgbInt8Color.rgbName(0x01, 0x67, 0x95, 'peacock blue'), + RgbInt8Color.rgbName(0x01, 0x73, 0x71, 'dark aquamarine'), + RgbInt8Color.rgbName(0x01, 0x73, 0x74, 'deep turquoise'), + RgbInt8Color.rgbName(0x01, 0x7a, 0x79, 'bluegreen'), + RgbInt8Color.rgbName(0x01, 0x7b, 0x92, 'ocean'), + RgbInt8Color.rgbName(0x01, 0x88, 0x9f, 'teal blue'), + RgbInt8Color.rgbName(0x01, 0x95, 0x29, 'irish green'), + RgbInt8Color.rgbName(0x01, 0xa0, 0x49, 'emerald'), + RgbInt8Color.rgbName(0x01, 0xb4, 0x4c, 'shamrock'), + RgbInt8Color.rgbName(0x01, 0xc0, 0x8d, 'green/blue'), + RgbInt8Color.rgbName(0x01, 0xf9, 0xc6, 'bright teal'), + RgbInt8Color.rgbName(0x01, 0xff, 0x07, 'bright green'), + RgbInt8Color.rgbName(0x02, 0x00, 0x35, 'midnight blue'), + RgbInt8Color.rgbName(0x02, 0x03, 0xe2, 'pure blue'), + RgbInt8Color.rgbName(0x02, 0x06, 0x6f, 'dark royal blue'), + RgbInt8Color.rgbName(0x02, 0x1b, 0xf9, 'rich blue'), + RgbInt8Color.rgbName(0x02, 0x59, 0x0f, 'deep green'), + RgbInt8Color.rgbName(0x02, 0x8f, 0x1e, 'emerald green'), + RgbInt8Color.rgbName(0x02, 0x93, 0x86, 'teal'), + RgbInt8Color.rgbName(0x02, 0xab, 0x2e, 'kelly green'), + RgbInt8Color.rgbName(0x02, 0xc1, 0x4d, 'shamrock green'), + RgbInt8Color.rgbName(0x02, 0xcc, 0xfe, 'bright sky blue'), + RgbInt8Color.rgbName(0x02, 0xd8, 0xe9, 'aqua blue'), + RgbInt8Color.rgbName(0x03, 0x01, 0x2d, 'midnight'), + RgbInt8Color.rgbName(0x03, 0x07, 0x64, 'darkblue'), + RgbInt8Color.rgbName(0x03, 0x0a, 0xa7, 'cobalt blue'), + RgbInt8Color.rgbName(0x03, 0x35, 0x00, 'dark green'), + RgbInt8Color.rgbName(0x03, 0x39, 0xf8, 'vibrant blue'), + RgbInt8Color.rgbName(0x03, 0x43, 0xdf, 'blue'), + RgbInt8Color.rgbName(0x03, 0x71, 0x9c, 'ocean blue'), + RgbInt8Color.rgbName(0x04, 0x02, 0x73, 'deep blue'), + RgbInt8Color.rgbName(0x04, 0x03, 0x48, 'night blue'), + RgbInt8Color.rgbName(0x04, 0x2e, 0x60, 'marine'), + RgbInt8Color.rgbName(0x04, 0x4a, 0x05, 'bottle green'), + RgbInt8Color.rgbName(0x04, 0x5c, 0x5a, 'dark turquoise'), + RgbInt8Color.rgbName(0x04, 0x74, 0x95, 'sea blue'), + RgbInt8Color.rgbName(0x04, 0x82, 0x43, 'jungle green'), + RgbInt8Color.rgbName(0x04, 0x85, 0xd1, 'cerulean'), + RgbInt8Color.rgbName(0x04, 0xd8, 0xb2, 'aquamarine'), + RgbInt8Color.rgbName(0x04, 0xd9, 0xff, 'neon blue'), + RgbInt8Color.rgbName(0x04, 0xf4, 0x89, 'turquoise green'), + RgbInt8Color.rgbName(0x05, 0x04, 0xaa, 'royal blue'), + RgbInt8Color.rgbName(0x05, 0x47, 0x2a, 'evergreen'), + RgbInt8Color.rgbName(0x05, 0x48, 0x0d, 'british racing green'), + RgbInt8Color.rgbName(0x05, 0x49, 0x07, 'darkgreen'), + RgbInt8Color.rgbName(0x05, 0x69, 0x6b, 'dark aqua'), + RgbInt8Color.rgbName(0x05, 0x6e, 0xee, 'cerulean blue'), + RgbInt8Color.rgbName(0x05, 0xff, 0xa6, 'bright sea green'), + RgbInt8Color.rgbName(0x06, 0x2e, 0x03, 'very dark green'), + RgbInt8Color.rgbName(0x06, 0x47, 0x0c, 'forest green'), + RgbInt8Color.rgbName(0x06, 0x52, 0xff, 'electric blue'), + RgbInt8Color.rgbName(0x06, 0x9a, 0xf3, 'azure'), + RgbInt8Color.rgbName(0x06, 0xb1, 0xc4, 'turquoise blue'), + RgbInt8Color.rgbName(0x06, 0xb4, 0x8b, 'green blue'), + RgbInt8Color.rgbName(0x06, 0xc2, 0xac, 'turquoise'), + RgbInt8Color.rgbName(0x07, 0x0d, 0x0d, 'almost black'), + RgbInt8Color.rgbName(0x08, 0x04, 0xf9, 'primary blue'), + RgbInt8Color.rgbName(0x08, 0x78, 0x7f, 'deep aqua'), + RgbInt8Color.rgbName(0x08, 0x94, 0x04, 'true green'), + RgbInt8Color.rgbName(0x08, 0xff, 0x08, 'fluorescent green'), + RgbInt8Color.rgbName(0x0a, 0x43, 0x7a, 'twilight blue'), + RgbInt8Color.rgbName(0x0a, 0x48, 0x1e, 'pine green'), + RgbInt8Color.rgbName(0x0a, 0x5f, 0x38, 'spruce'), + RgbInt8Color.rgbName(0x0a, 0x88, 0x8a, 'dark cyan'), + RgbInt8Color.rgbName(0x0a, 0xdd, 0x08, 'vibrant green'), + RgbInt8Color.rgbName(0x0a, 0xff, 0x02, 'fluro green'), + RgbInt8Color.rgbName(0x0b, 0x40, 0x08, 'hunter green'), + RgbInt8Color.rgbName(0x0b, 0x55, 0x09, 'forest'), + RgbInt8Color.rgbName(0x0b, 0x8b, 0x87, 'greenish blue'), + RgbInt8Color.rgbName(0x0b, 0xf7, 0x7d, 'minty green'), + RgbInt8Color.rgbName(0x0b, 0xf9, 0xea, 'bright aqua'), + RgbInt8Color.rgbName(0x0c, 0x06, 0xf7, 'strong blue'), + RgbInt8Color.rgbName(0x0c, 0x17, 0x93, 'royal'), + RgbInt8Color.rgbName(0x0c, 0xb5, 0x77, 'green teal'), + RgbInt8Color.rgbName(0x0c, 0xdc, 0x73, 'tealish green'), + RgbInt8Color.rgbName(0x0c, 0xff, 0x0c, 'neon green'), + RgbInt8Color.rgbName(0x0d, 0x75, 0xf8, 'deep sky blue'), + RgbInt8Color.rgbName(0x0e, 0x87, 0xcc, 'water blue'), + RgbInt8Color.rgbName(0x0f, 0x9b, 0x8e, 'blue/green'), + RgbInt8Color.rgbName(0x0f, 0xfe, 0xf9, 'bright turquoise'), + RgbInt8Color.rgbName(0x10, 0x7a, 0xb0, 'nice blue'), + RgbInt8Color.rgbName(0x10, 0xa6, 0x74, 'bluish green'), + RgbInt8Color.rgbName(0x11, 0x87, 0x5d, 'dark sea green'), + RgbInt8Color.rgbName(0x12, 0xe1, 0x93, 'aqua green'), + RgbInt8Color.rgbName(0x13, 0x7e, 0x6d, 'blue green'), + RgbInt8Color.rgbName(0x13, 0xbb, 0xaf, 'topaz'), + RgbInt8Color.rgbName(0x13, 0xea, 0xc9, 'aqua'), + RgbInt8Color.rgbName(0x15, 0x2e, 0xff, 'vivid blue'), + RgbInt8Color.rgbName(0x15, 0x44, 0x06, 'forrest green'), + RgbInt8Color.rgbName(0x15, 0x50, 0x84, 'light navy'), + RgbInt8Color.rgbName(0x15, 0xb0, 0x1a, 'green'), + RgbInt8Color.rgbName(0x18, 0x05, 0xdb, 'ultramarine blue'), + RgbInt8Color.rgbName(0x18, 0xd1, 0x7b, 'seaweed'), + RgbInt8Color.rgbName(0x1b, 0x24, 0x31, 'dark'), + RgbInt8Color.rgbName(0x1b, 0xfc, 0x06, 'highlighter green'), + RgbInt8Color.rgbName(0x1d, 0x02, 0x00, 'very dark brown'), + RgbInt8Color.rgbName(0x1d, 0x5d, 0xec, 'azul'), + RgbInt8Color.rgbName(0x1e, 0x48, 0x8f, 'cobalt'), + RgbInt8Color.rgbName(0x1e, 0x91, 0x67, 'viridian'), + RgbInt8Color.rgbName(0x1e, 0xf8, 0x76, 'spearmint'), + RgbInt8Color.rgbName(0x1f, 0x09, 0x54, 'dark indigo'), + RgbInt8Color.rgbName(0x1f, 0x3b, 0x4d, 'dark blue grey'), + RgbInt8Color.rgbName(0x1f, 0x63, 0x57, 'dark green blue'), + RgbInt8Color.rgbName(0x1f, 0xa7, 0x74, 'jade'), + RgbInt8Color.rgbName(0x1f, 0xb5, 0x7a, 'dark seafoam'), + RgbInt8Color.rgbName(0x20, 0x00, 0xb1, 'ultramarine'), + RgbInt8Color.rgbName(0x20, 0xc0, 0x73, 'dark mint green'), + RgbInt8Color.rgbName(0x20, 0xf9, 0x86, 'wintergreen'), + RgbInt8Color.rgbName(0x21, 0x38, 0xab, 'sapphire'), + RgbInt8Color.rgbName(0x21, 0x47, 0x61, 'dark slate blue'), + RgbInt8Color.rgbName(0x21, 0xc3, 0x6f, 'algae green'), + RgbInt8Color.rgbName(0x21, 0xfc, 0x0d, 'electric green'), + RgbInt8Color.rgbName(0x22, 0x42, 0xc7, 'blue blue'), + RgbInt8Color.rgbName(0x23, 0xc4, 0x8b, 'greenblue'), + RgbInt8Color.rgbName(0x24, 0x7a, 0xfd, 'clear blue'), + RgbInt8Color.rgbName(0x24, 0xbc, 0xa8, 'tealish'), + RgbInt8Color.rgbName(0x25, 0xa3, 0x6f, 'teal green'), + RgbInt8Color.rgbName(0x25, 0xff, 0x29, 'hot green'), + RgbInt8Color.rgbName(0x26, 0x53, 0x8d, 'dusk blue'), + RgbInt8Color.rgbName(0x26, 0xf7, 0xfd, 'bright light blue'), + RgbInt8Color.rgbName(0x27, 0x6a, 0xb3, 'mid blue'), + RgbInt8Color.rgbName(0x28, 0x01, 0x37, 'midnight purple'), + RgbInt8Color.rgbName(0x28, 0x7c, 0x37, 'darkish green'), + RgbInt8Color.rgbName(0x29, 0x46, 0x5b, 'dark grey blue'), + RgbInt8Color.rgbName(0x29, 0x76, 0xbb, 'bluish'), + RgbInt8Color.rgbName(0x2a, 0x01, 0x34, 'very dark purple'), + RgbInt8Color.rgbName(0x2a, 0x7e, 0x19, 'tree green'), + RgbInt8Color.rgbName(0x2a, 0xfe, 0xb7, 'greenish cyan'), + RgbInt8Color.rgbName(0x2b, 0x5d, 0x34, 'pine'), + RgbInt8Color.rgbName(0x2b, 0xaf, 0x6a, 'jade green'), + RgbInt8Color.rgbName(0x2b, 0xb1, 0x79, 'bluey green'), + RgbInt8Color.rgbName(0x2c, 0x6f, 0xbb, 'medium blue'), + RgbInt8Color.rgbName(0x2c, 0xfa, 0x1f, 'radioactive green'), + RgbInt8Color.rgbName(0x2d, 0xfe, 0x54, 'bright light green'), + RgbInt8Color.rgbName(0x2e, 0x5a, 0x88, 'light navy blue'), + RgbInt8Color.rgbName(0x2e, 0xe8, 0xbb, 'aqua marine'), + RgbInt8Color.rgbName(0x2f, 0xef, 0x10, 'vivid green'), + RgbInt8Color.rgbName(0x31, 0x66, 0x8a, 'ugly blue'), + RgbInt8Color.rgbName(0x32, 0xbf, 0x84, 'greenish teal'), + RgbInt8Color.rgbName(0x33, 0xb8, 0x64, 'cool green'), + RgbInt8Color.rgbName(0x34, 0x01, 0x3f, 'dark violet'), + RgbInt8Color.rgbName(0x34, 0x1c, 0x02, 'dark brown'), + RgbInt8Color.rgbName(0x34, 0x38, 0x37, 'charcoal'), + RgbInt8Color.rgbName(0x35, 0x06, 0x3e, 'dark purple'), + RgbInt8Color.rgbName(0x35, 0x53, 0x0a, 'navy green'), + RgbInt8Color.rgbName(0x35, 0xad, 0x6b, 'seaweed green'), + RgbInt8Color.rgbName(0x36, 0x01, 0x3f, 'deep purple'), + RgbInt8Color.rgbName(0x36, 0x37, 0x37, 'dark grey'), + RgbInt8Color.rgbName(0x37, 0x3e, 0x02, 'dark olive'), + RgbInt8Color.rgbName(0x37, 0x78, 0xbf, 'windows blue'), + RgbInt8Color.rgbName(0x38, 0x02, 0x82, 'indigo'), + RgbInt8Color.rgbName(0x38, 0x08, 0x35, 'eggplant'), + RgbInt8Color.rgbName(0x38, 0x80, 0x04, 'dark grass green'), + RgbInt8Color.rgbName(0x39, 0xad, 0x48, 'medium green'), + RgbInt8Color.rgbName(0x3a, 0x18, 0xb1, 'indigo blue'), + RgbInt8Color.rgbName(0x3a, 0x2e, 0xfe, 'light royal blue'), + RgbInt8Color.rgbName(0x3a, 0xe5, 0x7f, 'weird green'), + RgbInt8Color.rgbName(0x3b, 0x5b, 0x92, 'denim blue'), + RgbInt8Color.rgbName(0x3b, 0x63, 0x8c, 'denim'), + RgbInt8Color.rgbName(0x3b, 0x71, 0x9f, 'muted blue'), + RgbInt8Color.rgbName(0x3c, 0x00, 0x08, 'dark maroon'), + RgbInt8Color.rgbName(0x3c, 0x41, 0x42, 'charcoal grey'), + RgbInt8Color.rgbName(0x3c, 0x4d, 0x03, 'dark olive green'), + RgbInt8Color.rgbName(0x3c, 0x73, 0xa8, 'flat blue'), + RgbInt8Color.rgbName(0x3c, 0x99, 0x92, 'sea'), + RgbInt8Color.rgbName(0x3d, 0x07, 0x34, 'aubergine'), + RgbInt8Color.rgbName(0x3d, 0x1c, 0x02, 'chocolate'), + RgbInt8Color.rgbName(0x3d, 0x7a, 0xfd, 'lightish blue'), + RgbInt8Color.rgbName(0x3d, 0x99, 0x73, 'ocean green'), + RgbInt8Color.rgbName(0x3e, 0x82, 0xfc, 'dodger blue'), + RgbInt8Color.rgbName(0x3e, 0xaf, 0x76, 'dark seafoam green'), + RgbInt8Color.rgbName(0x3f, 0x01, 0x2c, 'dark plum'), + RgbInt8Color.rgbName(0x3f, 0x82, 0x9d, 'dirty blue'), + RgbInt8Color.rgbName(0x3f, 0x9b, 0x0b, 'grass green'), + RgbInt8Color.rgbName(0x40, 0xa3, 0x68, 'greenish'), + RgbInt8Color.rgbName(0x40, 0xfd, 0x14, 'poison green'), + RgbInt8Color.rgbName(0x41, 0x02, 0x00, 'deep brown'), + RgbInt8Color.rgbName(0x41, 0x19, 0x00, 'chocolate brown'), + RgbInt8Color.rgbName(0x41, 0x9c, 0x03, 'grassy green'), + RgbInt8Color.rgbName(0x41, 0xfd, 0xfe, 'bright cyan'), + RgbInt8Color.rgbName(0x42, 0xb3, 0x95, 'greeny blue'), + RgbInt8Color.rgbName(0x43, 0x05, 0x41, 'eggplant purple'), + RgbInt8Color.rgbName(0x43, 0x6b, 0xad, 'french blue'), + RgbInt8Color.rgbName(0x44, 0x8e, 0xe4, 'dark sky blue'), + RgbInt8Color.rgbName(0x46, 0x41, 0x96, 'blueberry'), + RgbInt8Color.rgbName(0x47, 0x5f, 0x94, 'dusky blue'), + RgbInt8Color.rgbName(0x48, 0xc0, 0x72, 'dark mint'), + RgbInt8Color.rgbName(0x49, 0x06, 0x48, 'deep violet'), + RgbInt8Color.rgbName(0x49, 0x75, 0x9c, 'dull blue'), + RgbInt8Color.rgbName(0x49, 0x84, 0xb8, 'cool blue'), + RgbInt8Color.rgbName(0x4a, 0x01, 0x00, 'mahogany'), + RgbInt8Color.rgbName(0x4b, 0x00, 0x6e, 'royal purple'), + RgbInt8Color.rgbName(0x4b, 0x01, 0x01, 'dried blood'), + RgbInt8Color.rgbName(0x4b, 0x57, 0xdb, 'warm blue'), + RgbInt8Color.rgbName(0x4b, 0x5d, 0x16, 'army green'), + RgbInt8Color.rgbName(0x4b, 0x61, 0x13, 'camouflage green'), + RgbInt8Color.rgbName(0x4c, 0x90, 0x85, 'dusty teal'), + RgbInt8Color.rgbName(0x4d, 0xa4, 0x09, 'lawn green'), + RgbInt8Color.rgbName(0x4e, 0x05, 0x50, 'plum purple'), + RgbInt8Color.rgbName(0x4e, 0x51, 0x8b, 'twilight'), + RgbInt8Color.rgbName(0x4e, 0x54, 0x81, 'dusk'), + RgbInt8Color.rgbName(0x4e, 0x74, 0x96, 'cadet blue'), + RgbInt8Color.rgbName(0x4e, 0xfd, 0x54, 'light neon green'), + RgbInt8Color.rgbName(0x4f, 0x73, 0x8e, 'metallic blue'), + RgbInt8Color.rgbName(0x4f, 0x91, 0x53, 'light forest green'), + RgbInt8Color.rgbName(0x50, 0x7b, 0x9c, 'stormy blue'), + RgbInt8Color.rgbName(0x50, 0xa7, 0x47, 'mid green'), + RgbInt8Color.rgbName(0x51, 0x0a, 0xc9, 'violet blue'), + RgbInt8Color.rgbName(0x51, 0x65, 0x72, 'slate'), + RgbInt8Color.rgbName(0x51, 0x70, 0xd7, 'cornflower blue'), + RgbInt8Color.rgbName(0x51, 0xb7, 0x3b, 'leafy green'), + RgbInt8Color.rgbName(0x52, 0x65, 0x25, 'camo green'), + RgbInt8Color.rgbName(0x53, 0x3c, 0xc6, 'blue with a hint of purple'), + RgbInt8Color.rgbName(0x53, 0x62, 0x67, 'gunmetal'), + RgbInt8Color.rgbName(0x53, 0xfc, 0xa1, 'sea green'), + RgbInt8Color.rgbName(0x53, 0xfe, 0x5c, 'light bright green'), + RgbInt8Color.rgbName(0x54, 0x4e, 0x03, 'green brown'), + RgbInt8Color.rgbName(0x54, 0x8d, 0x44, 'fern green'), + RgbInt8Color.rgbName(0x54, 0xac, 0x68, 'algae'), + RgbInt8Color.rgbName(0x55, 0x39, 0xcc, 'blurple'), + RgbInt8Color.rgbName(0x56, 0x84, 0xae, 'off blue'), + RgbInt8Color.rgbName(0x56, 0xae, 0x57, 'dark pastel green'), + RgbInt8Color.rgbName(0x56, 0xfc, 0xa2, 'light green blue'), + RgbInt8Color.rgbName(0x57, 0x29, 0xce, 'blue purple'), + RgbInt8Color.rgbName(0x58, 0x0f, 0x41, 'plum'), + RgbInt8Color.rgbName(0x58, 0xbc, 0x08, 'frog green'), + RgbInt8Color.rgbName(0x59, 0x65, 0x6d, 'slate grey'), + RgbInt8Color.rgbName(0x59, 0x85, 0x56, 'dark sage'), + RgbInt8Color.rgbName(0x5a, 0x06, 0xef, 'blue/purple'), + RgbInt8Color.rgbName(0x5a, 0x7d, 0x9a, 'steel blue'), + RgbInt8Color.rgbName(0x5a, 0x86, 0xad, 'dusty blue'), + RgbInt8Color.rgbName(0x5b, 0x7c, 0x99, 'slate blue'), + RgbInt8Color.rgbName(0x5c, 0x8b, 0x15, 'sap green'), + RgbInt8Color.rgbName(0x5c, 0xa9, 0x04, 'leaf green'), + RgbInt8Color.rgbName(0x5c, 0xac, 0x2d, 'grass'), + RgbInt8Color.rgbName(0x5c, 0xb2, 0x00, 'kermit green'), + RgbInt8Color.rgbName(0x5d, 0x06, 0xe9, 'blue violet'), + RgbInt8Color.rgbName(0x5d, 0x14, 0x51, 'grape purple'), + RgbInt8Color.rgbName(0x5d, 0x21, 0xd0, 'purple/blue'), + RgbInt8Color.rgbName(0x5e, 0x81, 0x9d, 'greyish blue'), + RgbInt8Color.rgbName(0x5e, 0x9b, 0x8a, 'grey teal'), + RgbInt8Color.rgbName(0x5e, 0xdc, 0x1f, 'green apple'), + RgbInt8Color.rgbName(0x5f, 0x34, 0xe7, 'purpley blue'), + RgbInt8Color.rgbName(0x5f, 0x9e, 0x8f, 'dull teal'), + RgbInt8Color.rgbName(0x5f, 0xa0, 0x52, 'muted green'), + RgbInt8Color.rgbName(0x60, 0x1e, 0xf9, 'purplish blue'), + RgbInt8Color.rgbName(0x60, 0x46, 0x0f, 'mud brown'), + RgbInt8Color.rgbName(0x60, 0x66, 0x02, 'mud green'), + RgbInt8Color.rgbName(0x60, 0x7c, 0x8e, 'blue grey'), + RgbInt8Color.rgbName(0x61, 0x00, 0x23, 'burgundy'), + RgbInt8Color.rgbName(0x61, 0x40, 0xef, 'purpleish blue'), + RgbInt8Color.rgbName(0x61, 0xde, 0x2a, 'toxic green'), + RgbInt8Color.rgbName(0x61, 0xe1, 0x60, 'lightish green'), + RgbInt8Color.rgbName(0x62, 0x41, 0xc7, 'bluey purple'), + RgbInt8Color.rgbName(0x62, 0x58, 0xc4, 'iris'), + RgbInt8Color.rgbName(0x63, 0x2d, 0xe9, 'purple blue'), + RgbInt8Color.rgbName(0x63, 0x8b, 0x27, 'mossy green'), + RgbInt8Color.rgbName(0x63, 0xa9, 0x50, 'fern'), + RgbInt8Color.rgbName(0x63, 0xb3, 0x65, 'boring green'), + RgbInt8Color.rgbName(0x63, 0xf7, 0xb4, 'light greenish blue'), + RgbInt8Color.rgbName(0x64, 0x54, 0x03, 'olive brown'), + RgbInt8Color.rgbName(0x64, 0x7d, 0x8e, 'grey/blue'), + RgbInt8Color.rgbName(0x64, 0x88, 0xea, 'soft blue'), + RgbInt8Color.rgbName(0x65, 0x00, 0x21, 'maroon'), + RgbInt8Color.rgbName(0x65, 0x37, 0x00, 'brown'), + RgbInt8Color.rgbName(0x65, 0x74, 0x32, 'muddy green'), + RgbInt8Color.rgbName(0x65, 0x8b, 0x38, 'moss green'), + RgbInt8Color.rgbName(0x65, 0x8c, 0xbb, 'faded blue'), + RgbInt8Color.rgbName(0x65, 0x8d, 0x6d, 'slate green'), + RgbInt8Color.rgbName(0x65, 0xab, 0x7c, 'tea'), + RgbInt8Color.rgbName(0x65, 0xfe, 0x08, 'bright lime green'), + RgbInt8Color.rgbName(0x66, 0x1a, 0xee, 'purply blue'), + RgbInt8Color.rgbName(0x66, 0x5f, 0xd1, 'dark periwinkle'), + RgbInt8Color.rgbName(0x66, 0x7c, 0x3e, 'military green'), + RgbInt8Color.rgbName(0x66, 0x7e, 0x2c, 'dirty green'), + RgbInt8Color.rgbName(0x67, 0x3a, 0x3f, 'purple brown'), + RgbInt8Color.rgbName(0x67, 0x7a, 0x04, 'olive green'), + RgbInt8Color.rgbName(0x68, 0x00, 0x18, 'claret'), + RgbInt8Color.rgbName(0x68, 0x32, 0xe3, 'burple'), + RgbInt8Color.rgbName(0x69, 0x60, 0x06, 'greeny brown'), + RgbInt8Color.rgbName(0x69, 0x61, 0x12, 'greenish brown'), + RgbInt8Color.rgbName(0x69, 0x83, 0x39, 'swamp'), + RgbInt8Color.rgbName(0x69, 0x9d, 0x4c, 'flat green'), + RgbInt8Color.rgbName(0x69, 0xd8, 0x4f, 'fresh green'), + RgbInt8Color.rgbName(0x6a, 0x6e, 0x09, 'brownish green'), + RgbInt8Color.rgbName(0x6a, 0x79, 0xf7, 'cornflower'), + RgbInt8Color.rgbName(0x6b, 0x42, 0x47, 'purplish brown'), + RgbInt8Color.rgbName(0x6b, 0x7c, 0x85, 'battleship grey'), + RgbInt8Color.rgbName(0x6b, 0x8b, 0xa4, 'grey blue'), + RgbInt8Color.rgbName(0x6b, 0xa3, 0x53, 'off green'), + RgbInt8Color.rgbName(0x6c, 0x34, 0x61, 'grape'), + RgbInt8Color.rgbName(0x6c, 0x7a, 0x0e, 'murky green'), + RgbInt8Color.rgbName(0x6d, 0x5a, 0xcf, 'light indigo'), + RgbInt8Color.rgbName(0x6d, 0xed, 0xfd, 'robin\'s egg'), + RgbInt8Color.rgbName(0x6e, 0x10, 0x05, 'reddy brown'), + RgbInt8Color.rgbName(0x6e, 0x75, 0x0e, 'olive'), + RgbInt8Color.rgbName(0x6e, 0xcb, 0x3c, 'apple'), + RgbInt8Color.rgbName(0x6f, 0x6c, 0x0a, 'browny green'), + RgbInt8Color.rgbName(0x6f, 0x76, 0x32, 'olive drab'), + RgbInt8Color.rgbName(0x6f, 0x7c, 0x00, 'poop green'), + RgbInt8Color.rgbName(0x6f, 0x82, 0x8a, 'steel grey'), + RgbInt8Color.rgbName(0x6f, 0xc2, 0x76, 'soft green'), + RgbInt8Color.rgbName(0x70, 0x3b, 0xe7, 'bluish purple'), + RgbInt8Color.rgbName(0x70, 0x6c, 0x11, 'brown green'), + RgbInt8Color.rgbName(0x70, 0xb2, 0x3f, 'nasty green'), + RgbInt8Color.rgbName(0x71, 0x9f, 0x91, 'greyish teal'), + RgbInt8Color.rgbName(0x71, 0xaa, 0x34, 'leaf'), + RgbInt8Color.rgbName(0x72, 0x00, 0x58, 'rich purple'), + RgbInt8Color.rgbName(0x72, 0x86, 0x39, 'khaki green'), + RgbInt8Color.rgbName(0x72, 0x8f, 0x02, 'dark yellow green'), + RgbInt8Color.rgbName(0x73, 0x00, 0x39, 'merlot'), + RgbInt8Color.rgbName(0x73, 0x4a, 0x65, 'dirty purple'), + RgbInt8Color.rgbName(0x73, 0x5c, 0x12, 'mud'), + RgbInt8Color.rgbName(0x73, 0x85, 0x95, 'steel'), + RgbInt8Color.rgbName(0x74, 0x28, 0x02, 'chestnut'), + RgbInt8Color.rgbName(0x74, 0x85, 0x00, 'swamp green'), + RgbInt8Color.rgbName(0x74, 0x8b, 0x97, 'bluish grey'), + RgbInt8Color.rgbName(0x74, 0x95, 0x51, 'drab green'), + RgbInt8Color.rgbName(0x74, 0xa6, 0x62, 'dull green'), + RgbInt8Color.rgbName(0x75, 0x08, 0x51, 'velvet'), + RgbInt8Color.rgbName(0x75, 0x19, 0x73, 'darkish purple'), + RgbInt8Color.rgbName(0x75, 0x80, 0x00, 'shit green'), + RgbInt8Color.rgbName(0x75, 0x8d, 0xa3, 'blue/grey'), + RgbInt8Color.rgbName(0x75, 0xb8, 0x4f, 'turtle green'), + RgbInt8Color.rgbName(0x75, 0xbb, 0xfd, 'sky blue'), + RgbInt8Color.rgbName(0x75, 0xfd, 0x63, 'lighter green'), + RgbInt8Color.rgbName(0x76, 0x42, 0x4e, 'brownish purple'), + RgbInt8Color.rgbName(0x76, 0x99, 0x58, 'moss'), + RgbInt8Color.rgbName(0x76, 0xa9, 0x73, 'dusty green'), + RgbInt8Color.rgbName(0x76, 0xcd, 0x26, 'apple green'), + RgbInt8Color.rgbName(0x76, 0xfd, 0xa8, 'light bluish green'), + RgbInt8Color.rgbName(0x76, 0xff, 0x7b, 'lightgreen'), + RgbInt8Color.rgbName(0x77, 0x00, 0x01, 'blood'), + RgbInt8Color.rgbName(0x77, 0x92, 0x6f, 'green grey'), + RgbInt8Color.rgbName(0x77, 0xa1, 0xb5, 'greyblue'), + RgbInt8Color.rgbName(0x77, 0xab, 0x56, 'asparagus'), + RgbInt8Color.rgbName(0x78, 0x9b, 0x73, 'grey green'), + RgbInt8Color.rgbName(0x78, 0xd1, 0xb6, 'seafoam blue'), + RgbInt8Color.rgbName(0x7a, 0x59, 0x01, 'poop brown'), + RgbInt8Color.rgbName(0x7a, 0x68, 0x7f, 'purplish grey'), + RgbInt8Color.rgbName(0x7a, 0x6a, 0x4f, 'greyish brown'), + RgbInt8Color.rgbName(0x7a, 0x97, 0x03, 'ugly green'), + RgbInt8Color.rgbName(0x7a, 0xf9, 0xab, 'seafoam green'), + RgbInt8Color.rgbName(0x7b, 0x00, 0x2c, 'bordeaux'), + RgbInt8Color.rgbName(0x7b, 0x03, 0x23, 'wine red'), + RgbInt8Color.rgbName(0x7b, 0x58, 0x04, 'shit brown'), + RgbInt8Color.rgbName(0x7b, 0xb2, 0x74, 'faded green'), + RgbInt8Color.rgbName(0x7b, 0xc8, 0xf6, 'lightblue'), + RgbInt8Color.rgbName(0x7b, 0xf2, 0xda, 'tiffany blue'), + RgbInt8Color.rgbName(0x7b, 0xfd, 0xc7, 'light aquamarine'), + RgbInt8Color.rgbName(0x7d, 0x71, 0x03, 'ugly brown'), + RgbInt8Color.rgbName(0x7d, 0x7f, 0x7c, 'medium grey'), + RgbInt8Color.rgbName(0x7e, 0x1e, 0x9c, 'purple'), + RgbInt8Color.rgbName(0x7e, 0x40, 0x71, 'bruise'), + RgbInt8Color.rgbName(0x7e, 0xa0, 0x7a, 'greeny grey'), + RgbInt8Color.rgbName(0x7e, 0xbd, 0x01, 'dark lime green'), + RgbInt8Color.rgbName(0x7e, 0xf4, 0xcc, 'light turquoise'), + RgbInt8Color.rgbName(0x7e, 0xfb, 0xb3, 'light blue green'), + RgbInt8Color.rgbName(0x7f, 0x2b, 0x0a, 'reddish brown'), + RgbInt8Color.rgbName(0x7f, 0x4e, 0x1e, 'milk chocolate'), + RgbInt8Color.rgbName(0x7f, 0x51, 0x12, 'medium brown'), + RgbInt8Color.rgbName(0x7f, 0x5e, 0x00, 'poop'), + RgbInt8Color.rgbName(0x7f, 0x5f, 0x00, 'shit'), + RgbInt8Color.rgbName(0x7f, 0x68, 0x4e, 'dark taupe'), + RgbInt8Color.rgbName(0x7f, 0x70, 0x53, 'grey brown'), + RgbInt8Color.rgbName(0x7f, 0x8f, 0x4e, 'camo'), + RgbInt8Color.rgbName(0x80, 0x01, 0x3f, 'wine'), + RgbInt8Color.rgbName(0x80, 0x5b, 0x87, 'muted purple'), + RgbInt8Color.rgbName(0x80, 0xf9, 0xad, 'seafoam'), + RgbInt8Color.rgbName(0x82, 0x07, 0x47, 'red purple'), + RgbInt8Color.rgbName(0x82, 0x5f, 0x87, 'dusty purple'), + RgbInt8Color.rgbName(0x82, 0x6d, 0x8c, 'grey purple'), + RgbInt8Color.rgbName(0x82, 0x83, 0x44, 'drab'), + RgbInt8Color.rgbName(0x82, 0xa6, 0x7d, 'greyish green'), + RgbInt8Color.rgbName(0x82, 0xca, 0xfc, 'sky'), + RgbInt8Color.rgbName(0x82, 0xcb, 0xb2, 'pale teal'), + RgbInt8Color.rgbName(0x83, 0x65, 0x39, 'dirt brown'), + RgbInt8Color.rgbName(0x84, 0x00, 0x00, 'dark red'), + RgbInt8Color.rgbName(0x84, 0x59, 0x7e, 'dull purple'), + RgbInt8Color.rgbName(0x84, 0xb7, 0x01, 'dark lime'), + RgbInt8Color.rgbName(0x85, 0x0e, 0x04, 'indian red'), + RgbInt8Color.rgbName(0x85, 0x67, 0x98, 'dark lavender'), + RgbInt8Color.rgbName(0x85, 0xa3, 0xb2, 'bluegrey'), + RgbInt8Color.rgbName(0x86, 0x6f, 0x85, 'purple grey'), + RgbInt8Color.rgbName(0x86, 0x77, 0x5f, 'brownish grey'), + RgbInt8Color.rgbName(0x86, 0xa1, 0x7d, 'grey/green'), + RgbInt8Color.rgbName(0x87, 0x4c, 0x62, 'dark mauve'), + RgbInt8Color.rgbName(0x87, 0x56, 0xe4, 'purpley'), + RgbInt8Color.rgbName(0x87, 0x5f, 0x42, 'cocoa'), + RgbInt8Color.rgbName(0x87, 0x6e, 0x4b, 'dull brown'), + RgbInt8Color.rgbName(0x87, 0xa9, 0x22, 'avocado green'), + RgbInt8Color.rgbName(0x87, 0xae, 0x73, 'sage'), + RgbInt8Color.rgbName(0x87, 0xfd, 0x05, 'bright lime'), + RgbInt8Color.rgbName(0x88, 0x5f, 0x01, 'poo brown'), + RgbInt8Color.rgbName(0x88, 0x68, 0x06, 'muddy brown'), + RgbInt8Color.rgbName(0x88, 0x71, 0x91, 'greyish purple'), + RgbInt8Color.rgbName(0x88, 0x97, 0x17, 'baby shit green'), + RgbInt8Color.rgbName(0x88, 0xb3, 0x78, 'sage green'), + RgbInt8Color.rgbName(0x89, 0x45, 0x85, 'light eggplant'), + RgbInt8Color.rgbName(0x89, 0x5b, 0x7b, 'dusky purple'), + RgbInt8Color.rgbName(0x89, 0xa0, 0xb0, 'bluey grey'), + RgbInt8Color.rgbName(0x89, 0xa2, 0x03, 'vomit green'), + RgbInt8Color.rgbName(0x89, 0xfe, 0x05, 'lime green'), + RgbInt8Color.rgbName(0x8a, 0x6e, 0x45, 'dirt'), + RgbInt8Color.rgbName(0x8a, 0xb8, 0xfe, 'carolina blue'), + RgbInt8Color.rgbName(0x8a, 0xf1, 0xfe, 'robin egg blue'), + RgbInt8Color.rgbName(0x8b, 0x2e, 0x16, 'red brown'), + RgbInt8Color.rgbName(0x8b, 0x31, 0x03, 'rust brown'), + RgbInt8Color.rgbName(0x8b, 0x88, 0xf8, 'lavender blue'), + RgbInt8Color.rgbName(0x8c, 0x00, 0x0f, 'crimson'), + RgbInt8Color.rgbName(0x8c, 0x00, 0x34, 'red wine'), + RgbInt8Color.rgbName(0x8c, 0xfd, 0x7e, 'easter green'), + RgbInt8Color.rgbName(0x8c, 0xff, 0x9e, 'baby green'), + RgbInt8Color.rgbName(0x8c, 0xff, 0xdb, 'light aqua'), + RgbInt8Color.rgbName(0x8d, 0x5e, 0xb7, 'deep lavender'), + RgbInt8Color.rgbName(0x8d, 0x84, 0x68, 'brown grey'), + RgbInt8Color.rgbName(0x8e, 0x76, 0x18, 'hazel'), + RgbInt8Color.rgbName(0x8e, 0x82, 0xfe, 'periwinkle'), + RgbInt8Color.rgbName(0x8e, 0xab, 0x12, 'pea green'), + RgbInt8Color.rgbName(0x8e, 0xe5, 0x3f, 'kiwi green'), + RgbInt8Color.rgbName(0x8f, 0x14, 0x02, 'brick red'), + RgbInt8Color.rgbName(0x8f, 0x73, 0x03, 'poo'), + RgbInt8Color.rgbName(0x8f, 0x8c, 0xe7, 'perrywinkle'), + RgbInt8Color.rgbName(0x8f, 0x98, 0x05, 'baby poop green'), + RgbInt8Color.rgbName(0x8f, 0x99, 0xfb, 'periwinkle blue'), + RgbInt8Color.rgbName(0x8f, 0xae, 0x22, 'icky green'), + RgbInt8Color.rgbName(0x8f, 0xb6, 0x7b, 'lichen'), + RgbInt8Color.rgbName(0x8f, 0xfe, 0x09, 'acid green'), + RgbInt8Color.rgbName(0x8f, 0xff, 0x9f, 'mint green'), + RgbInt8Color.rgbName(0x90, 0xb1, 0x34, 'avocado'), + RgbInt8Color.rgbName(0x90, 0xe4, 0xc1, 'light teal'), + RgbInt8Color.rgbName(0x90, 0xfd, 0xa9, 'foam green'), + RgbInt8Color.rgbName(0x91, 0x09, 0x51, 'reddish purple'), + RgbInt8Color.rgbName(0x91, 0x6e, 0x99, 'faded purple'), + RgbInt8Color.rgbName(0x92, 0x0a, 0x4e, 'mulberry'), + RgbInt8Color.rgbName(0x92, 0x2b, 0x05, 'brown red'), + RgbInt8Color.rgbName(0x92, 0x95, 0x91, 'grey'), + RgbInt8Color.rgbName(0x92, 0x99, 0x01, 'pea soup'), + RgbInt8Color.rgbName(0x93, 0x7c, 0x00, 'baby poop'), + RgbInt8Color.rgbName(0x94, 0x56, 0x8c, 'purplish'), + RgbInt8Color.rgbName(0x94, 0x77, 0x06, 'puke brown'), + RgbInt8Color.rgbName(0x94, 0x7e, 0x94, 'purpley grey'), + RgbInt8Color.rgbName(0x94, 0xa6, 0x17, 'pea soup green'), + RgbInt8Color.rgbName(0x94, 0xac, 0x02, 'barf green'), + RgbInt8Color.rgbName(0x94, 0xb2, 0x1c, 'sickly green'), + RgbInt8Color.rgbName(0x95, 0x2e, 0x8f, 'warm purple'), + RgbInt8Color.rgbName(0x95, 0xa3, 0xa6, 'cool grey'), + RgbInt8Color.rgbName(0x95, 0xd0, 0xfc, 'light blue'), + RgbInt8Color.rgbName(0x96, 0x00, 0x56, 'dark magenta'), + RgbInt8Color.rgbName(0x96, 0x4e, 0x02, 'warm brown'), + RgbInt8Color.rgbName(0x96, 0x6e, 0xbd, 'deep lilac'), + RgbInt8Color.rgbName(0x96, 0xae, 0x8d, 'greenish grey'), + RgbInt8Color.rgbName(0x96, 0xb4, 0x03, 'booger green'), + RgbInt8Color.rgbName(0x96, 0xf9, 0x7b, 'light green'), + RgbInt8Color.rgbName(0x97, 0x8a, 0x84, 'warm grey'), + RgbInt8Color.rgbName(0x98, 0x00, 0x02, 'blood red'), + RgbInt8Color.rgbName(0x98, 0x3f, 0xb2, 'purply'), + RgbInt8Color.rgbName(0x98, 0x56, 0x8d, 'purpleish'), + RgbInt8Color.rgbName(0x98, 0x5e, 0x2b, 'sepia'), + RgbInt8Color.rgbName(0x98, 0xef, 0xf9, 'robin\'s egg blue'), + RgbInt8Color.rgbName(0x98, 0xf6, 0xb0, 'light sea green'), + RgbInt8Color.rgbName(0x99, 0x00, 0xfa, 'vivid purple'), + RgbInt8Color.rgbName(0x99, 0x01, 0x47, 'purple red'), + RgbInt8Color.rgbName(0x99, 0x0f, 0x4b, 'berry'), + RgbInt8Color.rgbName(0x99, 0x75, 0x70, 'reddish grey'), + RgbInt8Color.rgbName(0x99, 0xcc, 0x04, 'slime green'), + RgbInt8Color.rgbName(0x9a, 0x02, 0x00, 'deep red'), + RgbInt8Color.rgbName(0x9a, 0x0e, 0xea, 'violet'), + RgbInt8Color.rgbName(0x9a, 0x30, 0x01, 'auburn'), + RgbInt8Color.rgbName(0x9a, 0x62, 0x00, 'raw sienna'), + RgbInt8Color.rgbName(0x9a, 0xae, 0x07, 'puke green'), + RgbInt8Color.rgbName(0x9a, 0xf7, 0x64, 'light grass green'), + RgbInt8Color.rgbName(0x9b, 0x5f, 0xc0, 'amethyst'), + RgbInt8Color.rgbName(0x9b, 0x7a, 0x01, 'yellowish brown'), + RgbInt8Color.rgbName(0x9b, 0x8f, 0x55, 'dark khaki'), + RgbInt8Color.rgbName(0x9b, 0xb5, 0x3c, 'booger'), + RgbInt8Color.rgbName(0x9b, 0xe5, 0xaa, 'hospital green'), + RgbInt8Color.rgbName(0x9c, 0x6d, 0x57, 'brownish'), + RgbInt8Color.rgbName(0x9c, 0x6d, 0xa5, 'dark lilac'), + RgbInt8Color.rgbName(0x9c, 0xbb, 0x04, 'bright olive'), + RgbInt8Color.rgbName(0x9c, 0xef, 0x43, 'kiwi'), + RgbInt8Color.rgbName(0x9d, 0x02, 0x16, 'carmine'), + RgbInt8Color.rgbName(0x9d, 0x07, 0x59, 'dark fuchsia'), + RgbInt8Color.rgbName(0x9d, 0x57, 0x83, 'light plum'), + RgbInt8Color.rgbName(0x9d, 0x76, 0x51, 'mocha'), + RgbInt8Color.rgbName(0x9d, 0xb9, 0x2c, 'sick green'), + RgbInt8Color.rgbName(0x9d, 0xbc, 0xd4, 'light grey blue'), + RgbInt8Color.rgbName(0x9d, 0xc1, 0x00, 'snot green'), + RgbInt8Color.rgbName(0x9d, 0xff, 0x00, 'bright yellow green'), + RgbInt8Color.rgbName(0x9e, 0x00, 0x3a, 'cranberry'), + RgbInt8Color.rgbName(0x9e, 0x01, 0x68, 'red violet'), + RgbInt8Color.rgbName(0x9e, 0x36, 0x23, 'brownish red'), + RgbInt8Color.rgbName(0x9e, 0x43, 0xa2, 'medium purple'), + RgbInt8Color.rgbName(0x9f, 0x23, 0x05, 'burnt red'), + RgbInt8Color.rgbName(0x9f, 0x83, 0x03, 'diarrhea'), + RgbInt8Color.rgbName(0x9f, 0xfe, 0xb0, 'mint'), + RgbInt8Color.rgbName(0xa0, 0x02, 0x5c, 'deep magenta'), + RgbInt8Color.rgbName(0xa0, 0x04, 0x98, 'barney purple'), + RgbInt8Color.rgbName(0xa0, 0x36, 0x23, 'brick'), + RgbInt8Color.rgbName(0xa0, 0x45, 0x0e, 'burnt umber'), + RgbInt8Color.rgbName(0xa0, 0xbf, 0x16, 'gross green'), + RgbInt8Color.rgbName(0xa0, 0xfe, 0xbf, 'light seafoam'), + RgbInt8Color.rgbName(0xa1, 0x39, 0x05, 'russet'), + RgbInt8Color.rgbName(0xa2, 0x48, 0x57, 'light maroon'), + RgbInt8Color.rgbName(0xa2, 0x65, 0x3e, 'earth'), + RgbInt8Color.rgbName(0xa2, 0xa4, 0x15, 'vomit'), + RgbInt8Color.rgbName(0xa2, 0xbf, 0xfe, 'pastel blue'), + RgbInt8Color.rgbName(0xa2, 0xcf, 0xfe, 'baby blue'), + RgbInt8Color.rgbName(0xa4, 0x42, 0xa0, 'ugly purple'), + RgbInt8Color.rgbName(0xa4, 0x84, 0xac, 'heather'), + RgbInt8Color.rgbName(0xa4, 0xbe, 0x5c, 'light olive green'), + RgbInt8Color.rgbName(0xa4, 0xbf, 0x20, 'pea'), + RgbInt8Color.rgbName(0xa5, 0x00, 0x55, 'violet red'), + RgbInt8Color.rgbName(0xa5, 0x52, 0xe6, 'lightish purple'), + RgbInt8Color.rgbName(0xa5, 0x5a, 0xf4, 'lighter purple'), + RgbInt8Color.rgbName(0xa5, 0x7e, 0x52, 'puce'), + RgbInt8Color.rgbName(0xa5, 0xa3, 0x91, 'cement'), + RgbInt8Color.rgbName(0xa5, 0xa5, 0x02, 'puke'), + RgbInt8Color.rgbName(0xa5, 0xfb, 0xd5, 'pale turquoise'), + RgbInt8Color.rgbName(0xa6, 0x6f, 0xb5, 'soft purple'), + RgbInt8Color.rgbName(0xa6, 0x81, 0x4c, 'coffee'), + RgbInt8Color.rgbName(0xa6, 0xc8, 0x75, 'light moss green'), + RgbInt8Color.rgbName(0xa6, 0xfb, 0xb2, 'light mint green'), + RgbInt8Color.rgbName(0xa7, 0x5e, 0x09, 'raw umber'), + RgbInt8Color.rgbName(0xa7, 0xff, 0xb5, 'light seafoam green'), + RgbInt8Color.rgbName(0xa8, 0x3c, 0x09, 'rust'), + RgbInt8Color.rgbName(0xa8, 0x41, 0x5b, 'light burgundy'), + RgbInt8Color.rgbName(0xa8, 0x79, 0x00, 'bronze'), + RgbInt8Color.rgbName(0xa8, 0x7d, 0xc2, 'wisteria'), + RgbInt8Color.rgbName(0xa8, 0x89, 0x05, 'dark mustard'), + RgbInt8Color.rgbName(0xa8, 0x8f, 0x59, 'dark sand'), + RgbInt8Color.rgbName(0xa8, 0xa4, 0x95, 'greyish'), + RgbInt8Color.rgbName(0xa8, 0xb5, 0x04, 'mustard green'), + RgbInt8Color.rgbName(0xa8, 0xff, 0x04, 'electric lime'), + RgbInt8Color.rgbName(0xa9, 0x03, 0x08, 'darkish red'), + RgbInt8Color.rgbName(0xa9, 0x56, 0x1e, 'sienna'), + RgbInt8Color.rgbName(0xa9, 0xbe, 0x70, 'tan green'), + RgbInt8Color.rgbName(0xa9, 0xf9, 0x71, 'spring green'), + RgbInt8Color.rgbName(0xaa, 0x23, 0xff, 'electric purple'), + RgbInt8Color.rgbName(0xaa, 0x27, 0x04, 'rust red'), + RgbInt8Color.rgbName(0xaa, 0xa6, 0x62, 'khaki'), + RgbInt8Color.rgbName(0xaa, 0xff, 0x32, 'lime'), + RgbInt8Color.rgbName(0xab, 0x12, 0x39, 'rouge'), + RgbInt8Color.rgbName(0xab, 0x7e, 0x4c, 'tan brown'), + RgbInt8Color.rgbName(0xab, 0x90, 0x04, 'baby poo'), + RgbInt8Color.rgbName(0xac, 0x1d, 0xb8, 'barney'), + RgbInt8Color.rgbName(0xac, 0x4f, 0x06, 'cinnamon'), + RgbInt8Color.rgbName(0xac, 0x74, 0x34, 'leather'), + RgbInt8Color.rgbName(0xac, 0x7e, 0x04, 'mustard brown'), + RgbInt8Color.rgbName(0xac, 0x86, 0xa8, 'dusty lavender'), + RgbInt8Color.rgbName(0xac, 0x93, 0x62, 'dark beige'), + RgbInt8Color.rgbName(0xac, 0xbb, 0x0d, 'snot'), + RgbInt8Color.rgbName(0xac, 0xbf, 0x69, 'light olive'), + RgbInt8Color.rgbName(0xac, 0xc2, 0xd9, 'cloudy blue'), + RgbInt8Color.rgbName(0xac, 0xff, 0xfc, 'light cyan'), + RgbInt8Color.rgbName(0xad, 0x03, 0xde, 'vibrant purple'), + RgbInt8Color.rgbName(0xad, 0x0a, 0xfd, 'bright violet'), + RgbInt8Color.rgbName(0xad, 0x81, 0x50, 'light brown'), + RgbInt8Color.rgbName(0xad, 0x90, 0x0d, 'baby shit brown'), + RgbInt8Color.rgbName(0xad, 0xa5, 0x87, 'stone'), + RgbInt8Color.rgbName(0xad, 0xf8, 0x02, 'lemon green'), + RgbInt8Color.rgbName(0xae, 0x71, 0x81, 'mauve'), + RgbInt8Color.rgbName(0xae, 0x8b, 0x0c, 'yellowy brown'), + RgbInt8Color.rgbName(0xae, 0xfd, 0x6c, 'light lime'), + RgbInt8Color.rgbName(0xae, 0xff, 0x6e, 'key lime'), + RgbInt8Color.rgbName(0xaf, 0x2f, 0x0d, 'rusty red'), + RgbInt8Color.rgbName(0xaf, 0x6f, 0x09, 'caramel'), + RgbInt8Color.rgbName(0xaf, 0x88, 0x4a, 'dark tan'), + RgbInt8Color.rgbName(0xaf, 0xa8, 0x8b, 'bland'), + RgbInt8Color.rgbName(0xb0, 0x01, 0x49, 'raspberry'), + RgbInt8Color.rgbName(0xb0, 0x05, 0x4b, 'purplish red'), + RgbInt8Color.rgbName(0xb0, 0x4e, 0x0f, 'burnt sienna'), + RgbInt8Color.rgbName(0xb0, 0xdd, 0x16, 'yellowish green'), + RgbInt8Color.rgbName(0xb0, 0xff, 0x9d, 'pastel green'), + RgbInt8Color.rgbName(0xb1, 0x60, 0x02, 'orangey brown'), + RgbInt8Color.rgbName(0xb1, 0x72, 0x61, 'pinkish brown'), + RgbInt8Color.rgbName(0xb1, 0x91, 0x6e, 'pale brown'), + RgbInt8Color.rgbName(0xb1, 0xd1, 0xfc, 'powder blue'), + RgbInt8Color.rgbName(0xb1, 0xd2, 0x7b, 'pale olive green'), + RgbInt8Color.rgbName(0xb1, 0xfc, 0x99, 'pale light green'), + RgbInt8Color.rgbName(0xb1, 0xff, 0x65, 'pale lime green'), + RgbInt8Color.rgbName(0xb2, 0x5f, 0x03, 'orangish brown'), + RgbInt8Color.rgbName(0xb2, 0x64, 0x00, 'umber'), + RgbInt8Color.rgbName(0xb2, 0x71, 0x3d, 'clay brown'), + RgbInt8Color.rgbName(0xb2, 0x7a, 0x01, 'golden brown'), + RgbInt8Color.rgbName(0xb2, 0x97, 0x05, 'brown yellow'), + RgbInt8Color.rgbName(0xb2, 0x99, 0x6e, 'dust'), + RgbInt8Color.rgbName(0xb2, 0xfb, 0xa5, 'light pastel green'), + RgbInt8Color.rgbName(0xb3, 0x6f, 0xf6, 'light urple'), + RgbInt8Color.rgbName(0xb5, 0x48, 0x5d, 'dark rose'), + RgbInt8Color.rgbName(0xb5, 0x94, 0x10, 'dark gold'), + RgbInt8Color.rgbName(0xb5, 0xc3, 0x06, 'bile'), + RgbInt8Color.rgbName(0xb5, 0xce, 0x08, 'green/yellow'), + RgbInt8Color.rgbName(0xb6, 0x63, 0x25, 'copper'), + RgbInt8Color.rgbName(0xb6, 0x6a, 0x50, 'clay'), + RgbInt8Color.rgbName(0xb6, 0xc4, 0x06, 'baby puke green'), + RgbInt8Color.rgbName(0xb6, 0xff, 0xbb, 'light mint'), + RgbInt8Color.rgbName(0xb7, 0x52, 0x03, 'burnt siena'), + RgbInt8Color.rgbName(0xb7, 0x90, 0xd4, 'pale purple'), + RgbInt8Color.rgbName(0xb7, 0x94, 0x00, 'yellow brown'), + RgbInt8Color.rgbName(0xb7, 0xc9, 0xe2, 'light blue grey'), + RgbInt8Color.rgbName(0xb7, 0xe1, 0xa1, 'light grey green'), + RgbInt8Color.rgbName(0xb7, 0xff, 0xfa, 'pale cyan'), + RgbInt8Color.rgbName(0xb8, 0xff, 0xeb, 'pale aqua'), + RgbInt8Color.rgbName(0xb9, 0x48, 0x4e, 'dusty red'), + RgbInt8Color.rgbName(0xb9, 0x69, 0x02, 'brown orange'), + RgbInt8Color.rgbName(0xb9, 0xa2, 0x81, 'taupe'), + RgbInt8Color.rgbName(0xb9, 0xcc, 0x81, 'pale olive'), + RgbInt8Color.rgbName(0xb9, 0xff, 0x66, 'light lime green'), + RgbInt8Color.rgbName(0xba, 0x68, 0x73, 'dusky rose'), + RgbInt8Color.rgbName(0xba, 0x9e, 0x88, 'mushroom'), + RgbInt8Color.rgbName(0xbb, 0x3f, 0x3f, 'dull red'), + RgbInt8Color.rgbName(0xbb, 0xf9, 0x0f, 'yellowgreen'), + RgbInt8Color.rgbName(0xbc, 0x13, 0xfe, 'neon purple'), + RgbInt8Color.rgbName(0xbc, 0xcb, 0x7a, 'greenish tan'), + RgbInt8Color.rgbName(0xbc, 0xec, 0xac, 'light sage'), + RgbInt8Color.rgbName(0xbc, 0xf5, 0xa6, 'washed out green'), + RgbInt8Color.rgbName(0xbd, 0x6c, 0x48, 'adobe'), + RgbInt8Color.rgbName(0xbd, 0xf6, 0xfe, 'pale sky blue'), + RgbInt8Color.rgbName(0xbd, 0xf8, 0xa3, 'tea green'), + RgbInt8Color.rgbName(0xbe, 0x01, 0x19, 'scarlet'), + RgbInt8Color.rgbName(0xbe, 0x01, 0x3c, 'rose red'), + RgbInt8Color.rgbName(0xbe, 0x03, 0xfd, 'bright purple'), + RgbInt8Color.rgbName(0xbe, 0x64, 0x00, 'orange brown'), + RgbInt8Color.rgbName(0xbe, 0xae, 0x8a, 'putty'), + RgbInt8Color.rgbName(0xbe, 0xfd, 0x73, 'pale lime'), + RgbInt8Color.rgbName(0xbe, 0xfd, 0xb7, 'celadon'), + RgbInt8Color.rgbName(0xbf, 0x77, 0xf6, 'light purple'), + RgbInt8Color.rgbName(0xbf, 0x90, 0x05, 'ochre'), + RgbInt8Color.rgbName(0xbf, 0x9b, 0x0c, 'ocher'), + RgbInt8Color.rgbName(0xbf, 0xac, 0x05, 'muddy yellow'), + RgbInt8Color.rgbName(0xbf, 0xf1, 0x28, 'yellowy green'), + RgbInt8Color.rgbName(0xbf, 0xfe, 0x28, 'lemon lime'), + RgbInt8Color.rgbName(0xc0, 0x02, 0x2f, 'lipstick red'), + RgbInt8Color.rgbName(0xc0, 0x4e, 0x01, 'burnt orange'), + RgbInt8Color.rgbName(0xc0, 0x71, 0xfe, 'easter purple'), + RgbInt8Color.rgbName(0xc0, 0x73, 0x7a, 'dusty rose'), + RgbInt8Color.rgbName(0xc0, 0xfa, 0x8b, 'pistachio'), + RgbInt8Color.rgbName(0xc0, 0xfb, 0x2d, 'yellow green'), + RgbInt8Color.rgbName(0xc1, 0x4a, 0x09, 'brick orange'), + RgbInt8Color.rgbName(0xc1, 0xc6, 0xfc, 'light periwinkle'), + RgbInt8Color.rgbName(0xc1, 0xf8, 0x0a, 'chartreuse'), + RgbInt8Color.rgbName(0xc1, 0xfd, 0x95, 'celery'), + RgbInt8Color.rgbName(0xc2, 0x00, 0x78, 'magenta'), + RgbInt8Color.rgbName(0xc2, 0x7e, 0x79, 'brownish pink'), + RgbInt8Color.rgbName(0xc2, 0x92, 0xa1, 'light mauve'), + RgbInt8Color.rgbName(0xc2, 0xb7, 0x09, 'olive yellow'), + RgbInt8Color.rgbName(0xc2, 0xbe, 0x0e, 'puke yellow'), + RgbInt8Color.rgbName(0xc2, 0xff, 0x89, 'light yellowish green'), + RgbInt8Color.rgbName(0xc3, 0x90, 0x9b, 'grey pink'), + RgbInt8Color.rgbName(0xc3, 0xfb, 0xf4, 'duck egg blue'), + RgbInt8Color.rgbName(0xc4, 0x42, 0x40, 'reddish'), + RgbInt8Color.rgbName(0xc4, 0x55, 0x08, 'rust orange'), + RgbInt8Color.rgbName(0xc4, 0x8e, 0xfd, 'liliac'), + RgbInt8Color.rgbName(0xc4, 0xa6, 0x61, 'sandy brown'), + RgbInt8Color.rgbName(0xc4, 0xfe, 0x82, 'light pea green'), + RgbInt8Color.rgbName(0xc4, 0xff, 0xf7, 'eggshell blue'), + RgbInt8Color.rgbName(0xc5, 0xc9, 0xc7, 'silver'), + RgbInt8Color.rgbName(0xc6, 0x51, 0x02, 'dark orange'), + RgbInt8Color.rgbName(0xc6, 0x9c, 0x04, 'ocre'), + RgbInt8Color.rgbName(0xc6, 0x9f, 0x59, 'camel'), + RgbInt8Color.rgbName(0xc6, 0xf8, 0x08, 'greeny yellow'), + RgbInt8Color.rgbName(0xc6, 0xfc, 0xff, 'light sky blue'), + RgbInt8Color.rgbName(0xc7, 0x47, 0x67, 'deep rose'), + RgbInt8Color.rgbName(0xc7, 0x60, 0xff, 'bright lavender'), + RgbInt8Color.rgbName(0xc7, 0x79, 0x86, 'old pink'), + RgbInt8Color.rgbName(0xc7, 0x9f, 0xef, 'lavender'), + RgbInt8Color.rgbName(0xc7, 0xac, 0x7d, 'toupe'), + RgbInt8Color.rgbName(0xc7, 0xc1, 0x0c, 'vomit yellow'), + RgbInt8Color.rgbName(0xc7, 0xfd, 0xb5, 'pale green'), + RgbInt8Color.rgbName(0xc8, 0x3c, 0xb9, 'purpley pink'), + RgbInt8Color.rgbName(0xc8, 0x5a, 0x53, 'dark salmon'), + RgbInt8Color.rgbName(0xc8, 0x75, 0xc4, 'orchid'), + RgbInt8Color.rgbName(0xc8, 0x76, 0x06, 'dirty orange'), + RgbInt8Color.rgbName(0xc8, 0x7f, 0x89, 'old rose'), + RgbInt8Color.rgbName(0xc8, 0x8d, 0x94, 'greyish pink'), + RgbInt8Color.rgbName(0xc8, 0xac, 0xa9, 'pinkish grey'), + RgbInt8Color.rgbName(0xc8, 0xfd, 0x3d, 'yellow/green'), + RgbInt8Color.rgbName(0xc8, 0xff, 0xb0, 'light light green'), + RgbInt8Color.rgbName(0xc9, 0x4c, 0xbe, 'pinky purple'), + RgbInt8Color.rgbName(0xc9, 0x5e, 0xfb, 'bright lilac'), + RgbInt8Color.rgbName(0xc9, 0x64, 0x3b, 'terra cotta'), + RgbInt8Color.rgbName(0xc9, 0xae, 0x74, 'sandstone'), + RgbInt8Color.rgbName(0xc9, 0xb0, 0x03, 'brownish yellow'), + RgbInt8Color.rgbName(0xc9, 0xd1, 0x79, 'greenish beige'), + RgbInt8Color.rgbName(0xc9, 0xff, 0x27, 'green yellow'), + RgbInt8Color.rgbName(0xca, 0x01, 0x47, 'ruby'), + RgbInt8Color.rgbName(0xca, 0x66, 0x41, 'terracotta'), + RgbInt8Color.rgbName(0xca, 0x6b, 0x02, 'browny orange'), + RgbInt8Color.rgbName(0xca, 0x7b, 0x80, 'dirty pink'), + RgbInt8Color.rgbName(0xca, 0x9b, 0xf7, 'baby purple'), + RgbInt8Color.rgbName(0xca, 0xa0, 0xff, 'pastel purple'), + RgbInt8Color.rgbName(0xca, 0xff, 0xfb, 'light light blue'), + RgbInt8Color.rgbName(0xcb, 0x00, 0xf5, 'hot purple'), + RgbInt8Color.rgbName(0xcb, 0x01, 0x62, 'deep pink'), + RgbInt8Color.rgbName(0xcb, 0x41, 0x6b, 'dark pink'), + RgbInt8Color.rgbName(0xcb, 0x68, 0x43, 'terracota'), + RgbInt8Color.rgbName(0xcb, 0x77, 0x23, 'brownish orange'), + RgbInt8Color.rgbName(0xcb, 0x9d, 0x06, 'yellow ochre'), + RgbInt8Color.rgbName(0xcb, 0xa5, 0x60, 'sand brown'), + RgbInt8Color.rgbName(0xcb, 0xf8, 0x5f, 'pear'), + RgbInt8Color.rgbName(0xcc, 0x7a, 0x8b, 'dusky pink'), + RgbInt8Color.rgbName(0xcc, 0xad, 0x60, 'desert'), + RgbInt8Color.rgbName(0xcc, 0xfd, 0x7f, 'light yellow green'), + RgbInt8Color.rgbName(0xcd, 0x59, 0x09, 'rusty orange'), + RgbInt8Color.rgbName(0xcd, 0x75, 0x84, 'ugly pink'), + RgbInt8Color.rgbName(0xcd, 0xc5, 0x0a, 'dirty yellow'), + RgbInt8Color.rgbName(0xcd, 0xfd, 0x02, 'greenish yellow'), + RgbInt8Color.rgbName(0xce, 0x5d, 0xae, 'purplish pink'), + RgbInt8Color.rgbName(0xce, 0xa2, 0xfd, 'lilac'), + RgbInt8Color.rgbName(0xce, 0xae, 0xfa, 'pale violet'), + RgbInt8Color.rgbName(0xce, 0xb3, 0x01, 'mustard'), + RgbInt8Color.rgbName(0xcf, 0x02, 0x34, 'cherry'), + RgbInt8Color.rgbName(0xcf, 0x52, 0x4e, 'dark coral'), + RgbInt8Color.rgbName(0xcf, 0x62, 0x75, 'rose'), + RgbInt8Color.rgbName(0xcf, 0xaf, 0x7b, 'fawn'), + RgbInt8Color.rgbName(0xcf, 0xfd, 0xbc, 'very pale green'), + RgbInt8Color.rgbName(0xcf, 0xff, 0x04, 'neon yellow'), + RgbInt8Color.rgbName(0xd0, 0xc1, 0x01, 'ugly yellow'), + RgbInt8Color.rgbName(0xd0, 0xe4, 0x29, 'sickly yellow'), + RgbInt8Color.rgbName(0xd0, 0xfe, 0x1d, 'lime yellow'), + RgbInt8Color.rgbName(0xd0, 0xfe, 0xfe, 'pale blue'), + RgbInt8Color.rgbName(0xd1, 0x76, 0x8f, 'muted pink'), + RgbInt8Color.rgbName(0xd1, 0xb2, 0x6f, 'tan'), + RgbInt8Color.rgbName(0xd1, 0xff, 0xbd, 'very light green'), + RgbInt8Color.rgbName(0xd2, 0xbd, 0x0a, 'mustard yellow'), + RgbInt8Color.rgbName(0xd3, 0x49, 0x4e, 'faded red'), + RgbInt8Color.rgbName(0xd3, 0xb6, 0x83, 'very light brown'), + RgbInt8Color.rgbName(0xd4, 0x6a, 0x7e, 'pinkish'), + RgbInt8Color.rgbName(0xd4, 0xff, 0xff, 'really light blue'), + RgbInt8Color.rgbName(0xd5, 0x17, 0x4e, 'lipstick'), + RgbInt8Color.rgbName(0xd5, 0x86, 0x9d, 'dull pink'), + RgbInt8Color.rgbName(0xd5, 0x8a, 0x94, 'dusty pink'), + RgbInt8Color.rgbName(0xd5, 0xab, 0x09, 'burnt yellow'), + RgbInt8Color.rgbName(0xd5, 0xb6, 0x0a, 'dark yellow'), + RgbInt8Color.rgbName(0xd5, 0xff, 0xff, 'very light blue'), + RgbInt8Color.rgbName(0xd6, 0x48, 0xd7, 'pinkish purple'), + RgbInt8Color.rgbName(0xd6, 0xb4, 0xfc, 'light violet'), + RgbInt8Color.rgbName(0xd6, 0xff, 0xfa, 'ice'), + RgbInt8Color.rgbName(0xd6, 0xff, 0xfe, 'very pale blue'), + RgbInt8Color.rgbName(0xd7, 0x25, 0xde, 'purple/pink'), + RgbInt8Color.rgbName(0xd7, 0x67, 0xad, 'pale magenta'), + RgbInt8Color.rgbName(0xd7, 0xff, 0xfe, 'ice blue'), + RgbInt8Color.rgbName(0xd8, 0x86, 0x3b, 'dull orange'), + RgbInt8Color.rgbName(0xd8, 0xdc, 0xd6, 'light grey'), + RgbInt8Color.rgbName(0xd9, 0x01, 0x66, 'dark hot pink'), + RgbInt8Color.rgbName(0xd9, 0x4f, 0xf5, 'heliotrope'), + RgbInt8Color.rgbName(0xd9, 0x54, 0x4d, 'pale red'), + RgbInt8Color.rgbName(0xd9, 0x9b, 0x82, 'pinkish tan'), + RgbInt8Color.rgbName(0xda, 0x46, 0x7d, 'darkish pink'), + RgbInt8Color.rgbName(0xdb, 0x4b, 0xda, 'pink purple'), + RgbInt8Color.rgbName(0xdb, 0x58, 0x56, 'pastel red'), + RgbInt8Color.rgbName(0xdb, 0xb4, 0x0c, 'gold'), + RgbInt8Color.rgbName(0xdc, 0x4d, 0x01, 'deep orange'), + RgbInt8Color.rgbName(0xdd, 0x85, 0xd7, 'lavender pink'), + RgbInt8Color.rgbName(0xdd, 0xd6, 0x18, 'piss yellow'), + RgbInt8Color.rgbName(0xde, 0x0c, 0x62, 'cerise'), + RgbInt8Color.rgbName(0xde, 0x7e, 0x5d, 'dark peach'), + RgbInt8Color.rgbName(0xde, 0x9d, 0xac, 'faded pink'), + RgbInt8Color.rgbName(0xdf, 0x4e, 0xc8, 'purpleish pink'), + RgbInt8Color.rgbName(0xdf, 0xc5, 0xfe, 'light lavender'), + RgbInt8Color.rgbName(0xe0, 0x3f, 0xd8, 'purple pink'), + RgbInt8Color.rgbName(0xe1, 0x77, 0x01, 'pumpkin'), + RgbInt8Color.rgbName(0xe2, 0xca, 0x76, 'sand'), + RgbInt8Color.rgbName(0xe4, 0xcb, 0xff, 'pale lilac'), + RgbInt8Color.rgbName(0xe5, 0x00, 0x00, 'red'), + RgbInt8Color.rgbName(0xe6, 0xda, 0xa6, 'beige'), + RgbInt8Color.rgbName(0xe6, 0xf2, 0xa2, 'light khaki'), + RgbInt8Color.rgbName(0xe7, 0x8e, 0xa5, 'pig pink'), + RgbInt8Color.rgbName(0xec, 0x2d, 0x01, 'tomato red'), + RgbInt8Color.rgbName(0xed, 0x0d, 0xd9, 'fuchsia'), + RgbInt8Color.rgbName(0xed, 0xc8, 0xff, 'light lilac'), + RgbInt8Color.rgbName(0xee, 0xcf, 0xfe, 'pale lavender'), + RgbInt8Color.rgbName(0xee, 0xdc, 0x5b, 'dull yellow'), + RgbInt8Color.rgbName(0xef, 0x1d, 0xe7, 'pink/purple'), + RgbInt8Color.rgbName(0xef, 0x40, 0x26, 'tomato'), + RgbInt8Color.rgbName(0xef, 0xb4, 0x35, 'macaroni and cheese'), + RgbInt8Color.rgbName(0xef, 0xc0, 0xfe, 'light lavendar'), + RgbInt8Color.rgbName(0xf0, 0x75, 0xe6, 'purply pink'), + RgbInt8Color.rgbName(0xf0, 0x83, 0x3a, 'dusty orange'), + RgbInt8Color.rgbName(0xf0, 0x94, 0x4d, 'faded orange'), + RgbInt8Color.rgbName(0xf1, 0x0c, 0x45, 'pinkish red'), + RgbInt8Color.rgbName(0xf1, 0xda, 0x7a, 'sandy'), + RgbInt8Color.rgbName(0xf1, 0xf3, 0x3f, 'off yellow'), + RgbInt8Color.rgbName(0xf2, 0x9e, 0x8e, 'blush'), + RgbInt8Color.rgbName(0xf2, 0xab, 0x15, 'squash'), + RgbInt8Color.rgbName(0xf3, 0x61, 0x96, 'medium pink'), + RgbInt8Color.rgbName(0xf4, 0x32, 0x0c, 'vermillion'), + RgbInt8Color.rgbName(0xf4, 0x36, 0x05, 'orangish red'), + RgbInt8Color.rgbName(0xf4, 0xd0, 0x54, 'maize'), + RgbInt8Color.rgbName(0xf5, 0x04, 0xc9, 'hot magenta'), + RgbInt8Color.rgbName(0xf5, 0x05, 0x4f, 'pink red'), + RgbInt8Color.rgbName(0xf5, 0xbf, 0x03, 'golden'), + RgbInt8Color.rgbName(0xf6, 0x68, 0x8e, 'rosy pink'), + RgbInt8Color.rgbName(0xf6, 0xce, 0xfc, 'very light purple'), + RgbInt8Color.rgbName(0xf7, 0x02, 0x2a, 'cherry red'), + RgbInt8Color.rgbName(0xf7, 0x87, 0x9a, 'rose pink'), + RgbInt8Color.rgbName(0xf7, 0xd5, 0x60, 'light mustard'), + RgbInt8Color.rgbName(0xf8, 0x48, 0x1c, 'reddish orange'), + RgbInt8Color.rgbName(0xf9, 0x73, 0x06, 'orange'), + RgbInt8Color.rgbName(0xf9, 0xbc, 0x08, 'golden rod'), + RgbInt8Color.rgbName(0xfa, 0x2a, 0x55, 'red pink'), + RgbInt8Color.rgbName(0xfa, 0x42, 0x24, 'orangey red'), + RgbInt8Color.rgbName(0xfa, 0x5f, 0xf7, 'light magenta'), + RgbInt8Color.rgbName(0xfa, 0xc2, 0x05, 'goldenrod'), + RgbInt8Color.rgbName(0xfa, 0xee, 0x66, 'yellowish'), + RgbInt8Color.rgbName(0xfa, 0xfe, 0x4b, 'banana yellow'), + RgbInt8Color.rgbName(0xfb, 0x29, 0x43, 'strawberry'), + RgbInt8Color.rgbName(0xfb, 0x55, 0x81, 'warm pink'), + RgbInt8Color.rgbName(0xfb, 0x5f, 0xfc, 'violet pink'), + RgbInt8Color.rgbName(0xfb, 0x7d, 0x07, 'pumpkin orange'), + RgbInt8Color.rgbName(0xfb, 0xdd, 0x7e, 'wheat'), + RgbInt8Color.rgbName(0xfb, 0xee, 0xac, 'light tan'), + RgbInt8Color.rgbName(0xfc, 0x26, 0x47, 'pinky red'), + RgbInt8Color.rgbName(0xfc, 0x5a, 0x50, 'coral'), + RgbInt8Color.rgbName(0xfc, 0x82, 0x4a, 'orangish'), + RgbInt8Color.rgbName(0xfc, 0x86, 0xaa, 'pinky'), + RgbInt8Color.rgbName(0xfc, 0xb0, 0x01, 'yellow orange'), + RgbInt8Color.rgbName(0xfc, 0xc0, 0x06, 'marigold'), + RgbInt8Color.rgbName(0xfc, 0xe1, 0x66, 'sand yellow'), + RgbInt8Color.rgbName(0xfc, 0xf6, 0x79, 'straw'), + RgbInt8Color.rgbName(0xfc, 0xfc, 0x81, 'yellowish tan'), + RgbInt8Color.rgbName(0xfd, 0x3c, 0x06, 'red orange'), + RgbInt8Color.rgbName(0xfd, 0x41, 0x1e, 'orange red'), + RgbInt8Color.rgbName(0xfd, 0x46, 0x59, 'watermelon'), + RgbInt8Color.rgbName(0xfd, 0x59, 0x56, 'grapefruit'), + RgbInt8Color.rgbName(0xfd, 0x79, 0x8f, 'carnation'), + RgbInt8Color.rgbName(0xfd, 0x8d, 0x49, 'orangeish'), + RgbInt8Color.rgbName(0xfd, 0xaa, 0x48, 'light orange'), + RgbInt8Color.rgbName(0xfd, 0xb0, 0xc0, 'soft pink'), + RgbInt8Color.rgbName(0xfd, 0xb1, 0x47, 'butterscotch'), + RgbInt8Color.rgbName(0xfd, 0xb9, 0x15, 'orangey yellow'), + RgbInt8Color.rgbName(0xfd, 0xc1, 0xc5, 'pale rose'), + RgbInt8Color.rgbName(0xfd, 0xdc, 0x5c, 'light gold'), + RgbInt8Color.rgbName(0xfd, 0xde, 0x6c, 'pale gold'), + RgbInt8Color.rgbName(0xfd, 0xee, 0x73, 'sandy yellow'), + RgbInt8Color.rgbName(0xfd, 0xfd, 0xfe, 'pale grey'), + RgbInt8Color.rgbName(0xfd, 0xff, 0x38, 'lemon yellow'), + RgbInt8Color.rgbName(0xfd, 0xff, 0x52, 'lemon'), + RgbInt8Color.rgbName(0xfd, 0xff, 0x63, 'canary'), + RgbInt8Color.rgbName(0xfe, 0x00, 0x02, 'fire engine red'), + RgbInt8Color.rgbName(0xfe, 0x01, 0x9a, 'neon pink'), + RgbInt8Color.rgbName(0xfe, 0x01, 0xb1, 'bright pink'), + RgbInt8Color.rgbName(0xfe, 0x02, 0xa2, 'shocking pink'), + RgbInt8Color.rgbName(0xfe, 0x2c, 0x54, 'reddish pink'), + RgbInt8Color.rgbName(0xfe, 0x2f, 0x4a, 'lightish red'), + RgbInt8Color.rgbName(0xfe, 0x42, 0x0f, 'orangered'), + RgbInt8Color.rgbName(0xfe, 0x46, 0xa5, 'barbie pink'), + RgbInt8Color.rgbName(0xfe, 0x4b, 0x03, 'blood orange'), + RgbInt8Color.rgbName(0xfe, 0x7b, 0x7c, 'salmon pink'), + RgbInt8Color.rgbName(0xfe, 0x82, 0x8c, 'blush pink'), + RgbInt8Color.rgbName(0xfe, 0x83, 0xcc, 'bubblegum pink'), + RgbInt8Color.rgbName(0xfe, 0x86, 0xa4, 'rosa'), + RgbInt8Color.rgbName(0xfe, 0xa9, 0x93, 'light salmon'), + RgbInt8Color.rgbName(0xfe, 0xb2, 0x09, 'saffron'), + RgbInt8Color.rgbName(0xfe, 0xb3, 0x08, 'amber'), + RgbInt8Color.rgbName(0xfe, 0xc6, 0x15, 'golden yellow'), + RgbInt8Color.rgbName(0xfe, 0xd0, 0xfc, 'pale mauve'), + RgbInt8Color.rgbName(0xfe, 0xdf, 0x08, 'dandelion'), + RgbInt8Color.rgbName(0xfe, 0xf6, 0x9e, 'buff'), + RgbInt8Color.rgbName(0xfe, 0xfc, 0xaf, 'parchment'), + RgbInt8Color.rgbName(0xfe, 0xff, 0x7f, 'faded yellow'), + RgbInt8Color.rgbName(0xfe, 0xff, 0xca, 'ecru'), + RgbInt8Color.rgbName(0xff, 0x00, 0x0d, 'bright red'), + RgbInt8Color.rgbName(0xff, 0x02, 0x8d, 'hot pink'), + RgbInt8Color.rgbName(0xff, 0x04, 0x90, 'electric pink'), + RgbInt8Color.rgbName(0xff, 0x07, 0x3a, 'neon red'), + RgbInt8Color.rgbName(0xff, 0x07, 0x89, 'strong pink'), + RgbInt8Color.rgbName(0xff, 0x08, 0xe8, 'bright magenta'), + RgbInt8Color.rgbName(0xff, 0x47, 0x4c, 'light red'), + RgbInt8Color.rgbName(0xff, 0x5b, 0x00, 'bright orange'), + RgbInt8Color.rgbName(0xff, 0x61, 0x63, 'coral pink'), + RgbInt8Color.rgbName(0xff, 0x63, 0xe9, 'candy pink'), + RgbInt8Color.rgbName(0xff, 0x69, 0xaf, 'bubble gum pink'), + RgbInt8Color.rgbName(0xff, 0x6c, 0xb5, 'bubblegum'), + RgbInt8Color.rgbName(0xff, 0x6f, 0x52, 'orange pink'), + RgbInt8Color.rgbName(0xff, 0x72, 0x4c, 'pinkish orange'), + RgbInt8Color.rgbName(0xff, 0x78, 0x55, 'melon'), + RgbInt8Color.rgbName(0xff, 0x79, 0x6c, 'salmon'), + RgbInt8Color.rgbName(0xff, 0x7f, 0xa7, 'carnation pink'), + RgbInt8Color.rgbName(0xff, 0x81, 0xc0, 'pink'), + RgbInt8Color.rgbName(0xff, 0x94, 0x08, 'tangerine'), + RgbInt8Color.rgbName(0xff, 0x96, 0x4f, 'pastel orange'), + RgbInt8Color.rgbName(0xff, 0x9a, 0x8a, 'peachy pink'), + RgbInt8Color.rgbName(0xff, 0xa6, 0x2b, 'mango'), + RgbInt8Color.rgbName(0xff, 0xa7, 0x56, 'pale orange'), + RgbInt8Color.rgbName(0xff, 0xab, 0x0f, 'yellowish orange'), + RgbInt8Color.rgbName(0xff, 0xad, 0x01, 'orange yellow'), + RgbInt8Color.rgbName(0xff, 0xb0, 0x7c, 'peach'), + RgbInt8Color.rgbName(0xff, 0xb1, 0x6d, 'apricot'), + RgbInt8Color.rgbName(0xff, 0xb1, 0x9a, 'pale salmon'), + RgbInt8Color.rgbName(0xff, 0xb2, 0xd0, 'powder pink'), + RgbInt8Color.rgbName(0xff, 0xb7, 0xce, 'baby pink'), + RgbInt8Color.rgbName(0xff, 0xba, 0xcd, 'pastel pink'), + RgbInt8Color.rgbName(0xff, 0xc5, 0x12, 'sunflower'), + RgbInt8Color.rgbName(0xff, 0xc5, 0xcb, 'light rose'), + RgbInt8Color.rgbName(0xff, 0xcf, 0xdc, 'pale pink'), + RgbInt8Color.rgbName(0xff, 0xd1, 0xdf, 'light pink'), + RgbInt8Color.rgbName(0xff, 0xd8, 0xb1, 'light peach'), + RgbInt8Color.rgbName(0xff, 0xda, 0x03, 'sunflower yellow'), + RgbInt8Color.rgbName(0xff, 0xdf, 0x22, 'sun yellow'), + RgbInt8Color.rgbName(0xff, 0xe3, 0x6e, 'yellow tan'), + RgbInt8Color.rgbName(0xff, 0xe5, 0xad, 'pale peach'), + RgbInt8Color.rgbName(0xff, 0xf3, 0x9a, 'dark cream'), + RgbInt8Color.rgbName(0xff, 0xf4, 0xf2, 'very light pink'), + RgbInt8Color.rgbName(0xff, 0xf9, 0x17, 'sunny yellow'), + RgbInt8Color.rgbName(0xff, 0xf9, 0xd0, 'pale'), + RgbInt8Color.rgbName(0xff, 0xfa, 0x86, 'manilla'), + RgbInt8Color.rgbName(0xff, 0xfc, 0xc4, 'egg shell'), + RgbInt8Color.rgbName(0xff, 0xfd, 0x01, 'bright yellow'), + RgbInt8Color.rgbName(0xff, 0xfd, 0x37, 'sunshine yellow'), + RgbInt8Color.rgbName(0xff, 0xfd, 0x74, 'butter yellow'), + RgbInt8Color.rgbName(0xff, 0xfd, 0x78, 'custard'), + RgbInt8Color.rgbName(0xff, 0xfe, 0x40, 'canary yellow'), + RgbInt8Color.rgbName(0xff, 0xfe, 0x71, 'pastel yellow'), + RgbInt8Color.rgbName(0xff, 0xfe, 0x7a, 'light yellow'), + RgbInt8Color.rgbName(0xff, 0xfe, 0xb6, 'light beige'), + RgbInt8Color.rgbName(0xff, 0xff, 0x14, 'yellow'), + RgbInt8Color.rgbName(0xff, 0xff, 0x7e, 'banana'), + RgbInt8Color.rgbName(0xff, 0xff, 0x81, 'butter'), + RgbInt8Color.rgbName(0xff, 0xff, 0x84, 'pale yellow'), + RgbInt8Color.rgbName(0xff, 0xff, 0xb6, 'creme'), + RgbInt8Color.rgbName(0xff, 0xff, 0xc2, 'cream'), + RgbInt8Color.rgbName(0xff, 0xff, 0xcb, 'ivory'), + RgbInt8Color.rgbName(0xff, 0xff, 0xd4, 'eggshell'), + RgbInt8Color.rgbName(0xff, 0xff, 0xe4, 'off white'), + RgbInt8Color.rgbName(0xff, 0xff, 0xff, 'white'), +]; diff --git a/lib/uni_color_palette.dart b/lib/uni_color_palette.dart new file mode 100644 index 0000000..6bcb557 --- /dev/null +++ b/lib/uni_color_palette.dart @@ -0,0 +1,12 @@ +library; + +import 'package:uni_color_model/uni_color_model.dart'; + +export 'package:uni_color_model/uni_color_model.dart'; + +part 'src/palettes/commodore_64.dart'; +part 'src/palettes/pantone_fashion_design.dart'; +part 'src/palettes/pantone_graphic_design.dart'; +part 'src/palettes/pantone_product_design.dart'; +part 'src/palettes/ral.dart'; +part 'src/palettes/zeplin.dart'; diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..4dc1ef2 --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,452 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + sha256: "0b2f2bd91ba804e53a61d757b986f89f1f9eaed5b11e4b2f5a2468d86d6c9fc7" + url: "https://pub.dev" + source: hosted + version: "67.0.0" + analyzer: + dependency: transitive + description: + name: analyzer + sha256: "37577842a27e4338429a1cbc32679d508836510b056f1eedf0c8d20e39c1383d" + url: "https://pub.dev" + source: hosted + version: "6.4.1" + archive: + dependency: transitive + description: + name: archive + sha256: "22600aa1e926be775fa5fe7e6894e7fb3df9efda8891c73f70fb3262399a432d" + url: "https://pub.dev" + source: hosted + version: "3.4.10" + args: + dependency: transitive + description: + name: args + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + collection: + dependency: transitive + description: + name: collection + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" + source: hosted + version: "1.18.0" + convert: + dependency: transitive + description: + name: convert + sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + url: "https://pub.dev" + source: hosted + version: "3.1.1" + coverage: + dependency: transitive + description: + name: coverage + sha256: "8acabb8306b57a409bf4c83522065672ee13179297a6bb0cb9ead73948df7c76" + url: "https://pub.dev" + source: hosted + version: "1.7.2" + crypto: + dependency: transitive + description: + name: crypto + sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + url: "https://pub.dev" + source: hosted + version: "3.0.3" + file: + dependency: transitive + description: + name: file + sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + frontend_server_client: + dependency: transitive + description: + name: frontend_server_client + sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" + url: "https://pub.dev" + source: hosted + version: "3.2.0" + glob: + dependency: transitive + description: + name: glob + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + http_multi_server: + dependency: transitive + description: + name: http_multi_server + sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" + url: "https://pub.dev" + source: hosted + version: "3.2.1" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + image: + dependency: transitive + description: + name: image + sha256: "4c68bfd5ae83e700b5204c1e74451e7bf3cf750e6843c6e158289cf56bda018e" + url: "https://pub.dev" + source: hosted + version: "4.1.7" + io: + dependency: transitive + description: + name: io + sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + js: + dependency: transitive + description: + name: js + sha256: c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf + url: "https://pub.dev" + source: hosted + version: "0.7.1" + json_dart: + dependency: transitive + description: + name: json_dart + sha256: "9ab4066092d5be0031dbc610f7b9237afd919eca4f1241c18e2dfbc0d4f47c84" + url: "https://pub.dev" + source: hosted + version: "0.1.1" + lints: + dependency: "direct dev" + description: + name: lints + sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290 + url: "https://pub.dev" + source: hosted + version: "3.0.0" + logging: + dependency: transitive + description: + name: logging + sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + matcher: + dependency: transitive + description: + name: matcher + sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb + url: "https://pub.dev" + source: hosted + version: "0.12.16+1" + meta: + dependency: transitive + description: + name: meta + sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136" + url: "https://pub.dev" + source: hosted + version: "1.12.0" + mime: + dependency: transitive + description: + name: mime + sha256: "2e123074287cc9fd6c09de8336dae606d1ddb88d9ac47358826db698c176a1f2" + url: "https://pub.dev" + source: hosted + version: "1.0.5" + node_preamble: + dependency: transitive + description: + name: node_preamble + sha256: "6e7eac89047ab8a8d26cf16127b5ed26de65209847630400f9aefd7cd5c730db" + url: "https://pub.dev" + source: hosted + version: "2.0.2" + package_config: + dependency: transitive + description: + name: package_config + sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + path: + dependency: transitive + description: + name: path + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + url: "https://pub.dev" + source: hosted + version: "1.9.0" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + url: "https://pub.dev" + source: hosted + version: "6.0.2" + pointycastle: + dependency: transitive + description: + name: pointycastle + sha256: "43ac87de6e10afabc85c445745a7b799e04de84cebaa4fd7bf55a5e1e9604d29" + url: "https://pub.dev" + source: hosted + version: "3.7.4" + pool: + dependency: transitive + description: + name: pool + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" + url: "https://pub.dev" + source: hosted + version: "1.5.1" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + shelf: + dependency: transitive + description: + name: shelf + sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 + url: "https://pub.dev" + source: hosted + version: "1.4.1" + shelf_packages_handler: + dependency: transitive + description: + name: shelf_packages_handler + sha256: "89f967eca29607c933ba9571d838be31d67f53f6e4ee15147d5dc2934fee1b1e" + url: "https://pub.dev" + source: hosted + version: "3.0.2" + shelf_static: + dependency: transitive + description: + name: shelf_static + sha256: a41d3f53c4adf0f57480578c1d61d90342cd617de7fc8077b1304643c2d85c1e + url: "https://pub.dev" + source: hosted + version: "1.1.2" + shelf_web_socket: + dependency: transitive + description: + name: shelf_web_socket + sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + source_map_stack_trace: + dependency: transitive + description: + name: source_map_stack_trace + sha256: "84cf769ad83aa6bb61e0aa5a18e53aea683395f196a6f39c4c881fb90ed4f7ae" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + source_maps: + dependency: transitive + description: + name: source_maps + sha256: "708b3f6b97248e5781f493b765c3337db11c5d2c81c3094f10904bfa8004c703" + url: "https://pub.dev" + source: hosted + version: "0.10.12" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" + source: hosted + version: "1.11.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" + source: hosted + version: "2.1.2" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test: + dependency: "direct dev" + description: + name: test + sha256: "7ee446762c2c50b3bd4ea96fe13ffac69919352bd3b4b17bac3f3465edc58073" + url: "https://pub.dev" + source: hosted + version: "1.25.2" + test_api: + dependency: transitive + description: + name: test_api + sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f" + url: "https://pub.dev" + source: hosted + version: "0.7.0" + test_core: + dependency: transitive + description: + name: test_core + sha256: "2bc4b4ecddd75309300d8096f781c0e3280ca1ef85beda558d33fcbedc2eead4" + url: "https://pub.dev" + source: hosted + version: "0.6.0" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + uni_color_model: + dependency: "direct main" + description: + path: "../uni_color_model" + relative: true + source: path + version: "0.1.0" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: a75f83f14ad81d5fe4b3319710b90dec37da0e22612326b696c9e1b8f34bbf48 + url: "https://pub.dev" + source: hosted + version: "14.2.0" + watcher: + dependency: transitive + description: + name: watcher + sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + web: + dependency: transitive + description: + name: web + sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" + url: "https://pub.dev" + source: hosted + version: "0.5.1" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + sha256: "1d8e795e2a8b3730c41b8a98a2dff2e0fb57ae6f0764a1c46ec5915387d257b2" + url: "https://pub.dev" + source: hosted + version: "2.4.4" + webkit_inspection_protocol: + dependency: transitive + description: + name: webkit_inspection_protocol + sha256: "87d3f2333bb240704cd3f1c6b5b7acd8a10e7f0bc28c28dcf14e782014f4a572" + url: "https://pub.dev" + source: hosted + version: "1.2.1" + wfile: + dependency: transitive + description: + name: wfile + sha256: "2be73888b0c625426947c90fa8b54f7dc7e6e031673c6baea1de8a17b890e93f" + url: "https://pub.dev" + source: hosted + version: "0.4.1" + xml: + dependency: transitive + description: + name: xml + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + url: "https://pub.dev" + source: hosted + version: "6.5.0" + yaml: + dependency: transitive + description: + name: yaml + sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" + url: "https://pub.dev" + source: hosted + version: "3.1.2" +sdks: + dart: ">=3.3.0 <4.0.0" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..6e0e17a --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,34 @@ +name: uni_color_palette +description: >- + The set of amazing color palettes with links to original sources. + The easy-to-use package. Feel free to use it in your awesome projects. +repository: https://github.com/signmotion/uni_color_palette +topics: + - palette + - color + - zeplin + - pantone + - ral +publish_to: none + +# Format: +# version: major.minor.patch +# You can calculate the number version code by this formula: +# code = m[A]jor * 100 * 100 + m[I]nor * 100 + [P]atch +# Otherwise: +AAIIPP +version: 0.1.0 + +environment: + sdk: ">=3.0.0 <4.0.0" + +dependencies: + uni_color_model: + path: ../uni_color_model + +dev_dependencies: + lints: ^3.0.0 + test: ^1.25.2 + +screenshots: + - description: "UniColorPalette demo" + path: images/screenshots/zeplin_palette.webp diff --git a/test/palette_test.dart b/test/palette_test.dart new file mode 100644 index 0000000..ab628fc --- /dev/null +++ b/test/palette_test.dart @@ -0,0 +1,7 @@ +import 'package:test/test.dart'; + +void main() { + test('Palette', () { + // see the package `uni_color_model` -> `palette_test.dart` + }); +} diff --git a/tools/README.md b/tools/README.md new file mode 100644 index 0000000..2280e14 --- /dev/null +++ b/tools/README.md @@ -0,0 +1,14 @@ +# Tools + +I couldn't have done this project without the tools that the amazing people created: + +- -> + + A converter to extract nested JSON data to CSV files. + +- + + Online converters. For example, from Javascript object to JSON format. + + - + - diff --git a/tools/data/ral_palettes/colourness/1.csv b/tools/data/ral_palettes/colourness/1.csv new file mode 100644 index 0000000..40d6ef9 --- /dev/null +++ b/tools/data/ral_palettes/colourness/1.csv @@ -0,0 +1,194 @@ +name,ral,rgb_r,rgb_g,rgb_b,rgb_rgb,hex,brightness,cmyk_c,cmyk_m,cmyk_y,cmyk_k,cmyk_cmyk,hsl_h,hsl_s,hsl_l,hsl_hsl +Grey white,9002,240,237,230,"240, 237, 230",F0EDE6,0.94,0,1,4,6,"0, 1, 4, 6",42,25,92,"42, 25%, 92%" +Green beige,1000,204,204,153,"204, 204, 153",CCCC99,0.80,0,0,25,20,"0, 0, 25, 20",60,33,70,"60, 33%, 70%" +Beige,1001,210,170,90,"210, 170, 90",D2AA5A,0.82,0,19,57,18,"0, 19, 57, 18",40,57,59,"40, 57%, 59%" +Sand yellow,1002,208,168,24,"208, 168, 24",D0A818,0.82,0,19,88,18,"0, 19, 88, 18",47,79,45,"47, 79%, 45%" +Signal yellow,1003,255,204,0,"255, 204, 0",FFCC00,1.00,0,20,100,0,"0, 20, 100, 0",48,100,50,"48, 100%, 50%" +Golden yellow,1004,224,176,0,"224, 176, 0",E0B000,0.88,0,21,100,12,"0, 21, 100, 12",47,100,44,"47, 100%, 44%" +Honey yellow,1005,201,135,33,"201, 135, 33",C98721,0.79,0,33,84,21,"0, 33, 84, 21",36,72,46,"36, 72%, 46%" +Maize yellow,1006,227,167,41,"227, 167, 41",E3A729,0.89,0,26,82,11,"0, 26, 82, 11",41,77,53,"41, 77%, 53%" +Daffodil yellow,1007,221,159,35,"221, 159, 35",DD9F23,0.87,0,28,84,13,"0, 28, 84, 13",40,73,50,"40, 73%, 50%" +Brown beige,1011,173,122,41,"173, 122, 41",AD7A29,0.68,0,29,76,32,"0, 29, 76, 32",37,62,42,"37, 62%, 42%" +Lemon yellow,1012,227,184,56,"227, 184, 56",E3B838,0.89,0,19,75,11,"0, 19, 75, 11",45,75,55,"45, 75%, 55%" +Oyster white,1013,255,245,227,"255, 245, 227",FFF5E3,1.00,0,4,11,0,"0, 4, 11, 0",39,100,95,"39, 100%, 95%" +Ivory,1014,240,214,171,"240, 214, 171",F0D6AB,0.94,0,11,29,6,"0, 11, 29, 6",37,70,81,"37, 70%, 81%" +Light ivory,1015,252,235,204,"252, 235, 204",FCEBCC,0.99,0,7,19,1,"0, 7, 19, 1",39,89,89,"39, 89%, 89%" +Sulfur yellow,1016,255,245,66,"255, 245, 66",FFF542,1.00,0,4,74,0,"0, 4, 74, 0",57,100,63,"57, 100%, 63%" +Saffron yellow,1017,255,171,89,"255, 171, 89",FFAB59,1.00,0,33,65,0,"0, 33, 65, 0",30,100,67,"30, 100%, 67%" +Zinc yellow,1018,255,214,77,"255, 214, 77",FFD64D,1.00,0,16,70,0,"0, 16, 70, 0",46,100,65,"46, 100%, 65%" +Grey beige,1019,163,140,122,"163, 140, 122",A38C7A,0.64,0,14,25,36,"0, 14, 25, 36",26,18,56,"26, 18%, 56%" +Olive yellow,1020,156,143,97,"156, 143, 97",9C8F61,0.61,0,8,38,39,"0, 8, 38, 39",47,23,50,"47, 23%, 50%" +Rape yellow,1021,252,189,31,"252, 189, 31",FCBD1F,0.99,0,25,88,1,"0, 25, 88, 1",43,97,55,"43, 97%, 55%" +Traffic yellow,1023,252,189,31,"252, 189, 31",FCBD1F,0.99,0,25,88,1,"0, 25, 88, 1",43,97,55,"43, 97%, 55%" +Ochre yellow,1024,181,140,79,"181, 140, 79",B58C4F,0.71,0,23,56,29,"0, 23, 56, 29",36,41,51,"36, 41%, 51%" +Luminous yellow,1026,255,255,10,"255, 255, 10",FFFF0A,1.00,0,0,96,0,"0, 0, 96, 0",60,100,52,"60, 100%, 52%" +Curry,1027,153,117,33,"153, 117, 33",997521,0.60,0,24,78,40,"0, 24, 78, 40",42,65,36,"42, 65%, 36%" +Melon yellow,1028,255,140,26,"255, 140, 26",FF8C1A,1.00,0,45,90,0,"0, 45, 90, 0",30,100,55,"30, 100%, 55%" +Broom yellow,1032,227,163,41,"227, 163, 41",E3A329,0.89,0,28,82,11,"0, 28, 82, 11",39,77,53,"39, 77%, 53%" +Dahlia yellow,1033,255,148,54,"255, 148, 54",FF9436,1.00,0,42,79,0,"0, 42, 79, 0",28,100,61,"28, 100%, 61%" +Pastel yellow,1034,247,153,92,"247, 153, 92",F7995C,0.97,0,38,63,3,"0, 38, 63, 3",24,91,66,"24, 91%, 66%" +Yellow orange,2000,224,94,31,"224, 94, 31",E05E1F,0.88,0,58,86,12,"0, 58, 86, 12",20,76,50,"20, 76%, 50%" +Red orange,2001,186,46,33,"186, 46, 33",BA2E21,0.73,0,75,82,27,"0, 75, 82, 27",5,70,43,"5, 70%, 43%" +Vermilion,2002,204,36,28,"204, 36, 28",CC241C,0.80,0,82,86,20,"0, 82, 86, 20",3,76,45,"3, 76%, 45%" +Pastel orange,2003,255,99,54,"255, 99, 54",FF6336,1.00,0,61,79,0,"0, 61, 79, 0",13,100,61,"13, 100%, 61%" +Pure orange,2004,242,59,28,"242, 59, 28",F23B1C,0.95,0,76,88,5,"0, 76, 88, 5",9,89,53,"9, 89%, 53%" +Luminous orange,2005,252,28,20,"252, 28, 20",FC1C14,0.99,0,89,92,1,"0, 89, 92, 1",2,97,53,"2, 97%, 53%" +Luminous bright orange,2007,255,117,33,"255, 117, 33",FF7521,1.00,0,54,87,0,"0, 54, 87, 0",23,100,56,"23, 100%, 56%" +Bright red orange,2008,250,79,41,"250, 79, 41",FA4F29,0.98,0,68,84,2,"0, 68, 84, 2",11,95,57,"11, 95%, 57%" +Traffic orange,2009,235,59,28,"235, 59, 28",EB3B1C,0.92,0,75,88,8,"0, 75, 88, 8",9,84,52,"9, 84%, 52%" +Signal orange,2010,212,69,41,"212, 69, 41",D44529,0.83,0,67,81,17,"0, 67, 81, 17",10,68,50,"10, 68%, 50%" +Deep orange,2011,237,92,0,"237, 92, 0",ED5C00,0.93,0,61,100,7,"0, 61, 100, 7",23,100,46,"23, 100%, 46%" +Salmon orange,2012,222,82,71,"222, 82, 71",DE5247,0.87,0,63,68,13,"0, 63, 68, 13",4,70,57,"4, 70%, 57%" +Flame red,3000,171,31,28,"171, 31, 28",AB1F1C,0.67,0,82,84,33,"0, 82, 84, 33",1,72,39,"1, 72%, 39%" +Signal red,3001,163,23,26,"163, 23, 26",A3171A,0.64,0,86,84,36,"0, 86, 84, 36",359,75,36,"359, 75%, 36%" +Carmine red,3002,163,26,26,"163, 26, 26",A31A1A,0.64,0,84,84,36,"0, 84, 84, 36",0,72,37,"0, 72%, 37%" +Ruby red,3003,138,18,20,"138, 18, 20",8A1214,0.54,0,87,86,46,"0, 87, 86, 46",359,77,31,"359, 77%, 31%" +Purple red,3004,105,15,20,"105, 15, 20",690F14,0.41,0,86,81,59,"0, 86, 81, 59",357,75,24,"357, 75%, 24%" +Wine red,3005,79,18,26,"79, 18, 26",4F121A,0.31,0,77,67,69,"0, 77, 67, 69",352,63,19,"352, 63%, 19%" +Black red,3007,46,18,26,"46, 18, 26",2E121A,0.18,0,61,43,82,"0, 61, 43, 82",343,44,13,"343, 44%, 13%" +Oxide red,3009,94,33,33,"94, 33, 33",5E2121,0.37,0,65,65,63,"0, 65, 65, 63",0,48,25,"0, 48%, 25%" +Brown red,3011,120,20,23,"120, 20, 23",781417,0.47,0,83,81,53,"0, 83, 81, 53",358,71,27,"358, 71%, 27%" +Beige red,3012,204,130,115,"204, 130, 115",CC8273,0.80,0,36,44,20,"0, 36, 44, 20",10,47,63,"10, 47%, 63%" +Tomato red,3013,150,31,28,"150, 31, 28",961F1C,0.59,0,79,81,41,"0, 79, 81, 41",1,69,35,"1, 69%, 35%" +Antique pink,3014,217,102,117,"217, 102, 117",D96675,0.85,0,53,46,15,"0, 53, 46, 15",352,60,63,"352, 60%, 63%" +Light pink,3015,232,156,181,"232, 156, 181",E89CB5,0.91,0,33,22,9,"0, 33, 22, 9",340,62,76,"340, 62%, 76%" +Coral red,3016,166,36,38,"166, 36, 38",A62426,0.65,0,78,77,35,"0, 78, 77, 35",359,64,40,"359, 64%, 40%" +Rose,3017,209,54,84,"209, 54, 84",D13654,0.82,0,74,60,18,"0, 74, 60, 18",348,63,52,"348, 63%, 52%" +Strawberry red,3018,207,41,66,"207, 41, 66",CF2942,0.81,0,80,68,19,"0, 80, 68, 19",351,67,49,"351, 67%, 49%" +Traffic red,3020,199,23,18,"199, 23, 18",C71712,0.78,0,88,91,22,"0, 88, 91, 22",2,83,43,"2, 83%, 43%" +Salmon pink,3022,217,89,79,"217, 89, 79",D9594F,0.85,0,59,64,15,"0, 59, 64, 15",4,64,58,"4, 64%, 58%" +Luminous red,3024,252,10,28,"252, 10, 28",FC0A1C,0.99,0,96,89,1,"0, 96, 89, 1",356,98,51,"356, 98%, 51%" +Luminous bright red,3026,252,20,20,"252, 20, 20",FC1414,0.99,0,92,92,1,"0, 92, 92, 1",0,97,53,"0, 97%, 53%" +Raspberry red,3027,181,18,51,"181, 18, 51",B51233,0.71,0,90,72,29,"0, 90, 72, 29",348,82,39,"348, 82%, 39%" +Orient red,3031,166,28,46,"166, 28, 46",A61C2E,0.65,0,83,72,35,"0, 83, 72, 35",352,71,38,"352, 71%, 38%" +Red lilac,4001,130,64,48,"130, 64, 48",824030,0.51,0,51,63,49,"0, 51, 63, 49",12,46,35,"12, 46%, 35%" +Red violet,4002,143,38,64,"143, 38, 64",8F2640,0.56,0,73,55,44,"0, 73, 55, 44",345,58,35,"345, 58%, 35%" +Heather violet,4003,201,56,140,"201, 56, 140",C9388C,0.79,0,72,30,21,"0, 72, 30, 21",325,57,50,"325, 57%, 50%" +Claret violet,4004,92,8,43,"92, 8, 43",5C082B,0.36,0,91,53,64,"0, 91, 53, 64",335,84,20,"335, 84%, 20%" +Blue lilac,4005,99,61,156,"99, 61, 156",633D9C,0.39,37,61,0,39,"37, 61, 0, 39",264,44,43,"264, 44%, 43%" +Traffic purple,4006,145,15,102,"145, 15, 102",910F66,0.57,0,90,30,43,"0, 90, 30, 43",320,81,31,"320, 81%, 31%" +Purple violet,4007,56,10,46,"56, 10, 46",380A2E,0.22,0,82,18,78,"0, 82, 18, 78",313,70,13,"313, 70%, 13%" +Signal violet,4008,125,31,122,"125, 31, 122",7D1F7A,0.49,0,75,2,51,"0, 75, 2, 51",302,60,31,"302, 60%, 31%" +Pastel violet,4009,158,115,148,"158, 115, 148",9E7394,0.62,0,27,6,38,"0, 27, 6, 38",314,18,54,"314, 18%, 54%" +Telemagenta,4010,191,23,115,"191, 23, 115",BF1773,0.75,0,88,40,25,"0, 88, 40, 25",327,79,42,"327, 79%, 42%" +Violet blue,5000,23,51,107,"23, 51, 107",17336B,0.09,79,52,0,58,"79, 52, 0, 58",220,65,25,"220, 65%, 25%" +Green blue,5001,10,51,84,"10, 51, 84",0A3354,0.04,88,39,0,67,"88, 39, 0, 67",207,79,18,"207, 79%, 18%" +Ultramarine blue,5002,0,15,117,"0, 15, 117",000F75,0.00,100,87,0,54,"100, 87, 0, 54",232,100,23,"232, 100%, 23%" +Sapphire blue,5003,0,23,69,"0, 23, 69",001745,0.00,100,67,0,73,"100, 67, 0, 73",220,100,14,"220, 100%, 14%" +Black blue,5004,3,13,31,"3, 13, 31",030D1F,0.01,90,58,0,88,"90, 58, 0, 88",219,82,7,"219, 82%, 7%" +Signal blue,5005,0,46,122,"0, 46, 122",002E7A,0.00,100,62,0,52,"100, 62, 0, 52",217,100,24,"217, 100%, 24%" +Brillant blue,5007,38,79,135,"38, 79, 135",264F87,0.15,72,41,0,47,"72, 41, 0, 47",215,56,34,"215, 56%, 34%" +Gray blue,5008,26,41,56,"26, 41, 56",1A2938,0.10,54,27,0,78,"54, 27, 0, 78",210,37,16,"210, 37%, 16%" +Azure blue,5009,23,69,112,"23, 69, 112",174570,0.09,79,38,0,56,"79, 38, 0, 56",209,66,26,"209, 66%, 26%" +Steel blue,5011,0,43,112,"0, 43, 112",002B70,0.00,100,62,0,56,"100, 62, 0, 56",217,100,22,"217, 100%, 22%" +Light blue,5012,41,115,184,"41, 115, 184",2973B8,0.16,78,38,0,28,"78, 38, 0, 28",209,64,44,"209, 64%, 44%" +Cobalt blue,5013,0,18,69,"0, 18, 69",001245,0.00,100,74,0,73,"100, 74, 0, 73",224,100,14,"224, 100%, 14%" +Pigeon blue,5014,77,105,153,"77, 105, 153",4D6999,0.30,50,31,0,40,"50, 31, 0, 40",218,33,45,"218, 33%, 45%" +Sky blue,5015,23,97,171,"23, 97, 171",1761AB,0.09,87,43,0,33,"87, 43, 0, 33",210,76,38,"210, 76%, 38%" +Traffic blue,5017,0,59,128,"0, 59, 128",003B80,0.00,100,54,0,50,"100, 54, 0, 50",212,100,25,"212, 100%, 25%" +Turquoise blue,5018,56,148,130,"56, 148, 130",389482,0.22,62,0,12,42,"62, 0, 12, 42",168,45,40,"168, 45%, 40%" +Capri blue,5019,10,66,120,"10, 66, 120",0A4278,0.04,92,45,0,53,"92, 45, 0, 53",209,85,25,"209, 85%, 25%" +Steel blue,5020,5,51,51,"5, 51, 51",053333,0.02,90,0,0,80,"90, 0, 0, 80",180,82,11,"180, 82%, 11%" +Water blue,5021,26,122,99,"26, 122, 99",1A7A63,0.10,79,0,19,52,"79, 0, 19, 52",166,65,29,"166, 65%, 29%" +Night blue,5022,0,8,79,"0, 8, 79",00084F,0.00,100,90,0,69,"100, 90, 0, 69",234,100,15,"234, 100%, 15%" +Distant blue,5023,46,82,143,"46, 82, 143",2E528F,0.18,68,43,0,44,"68, 43, 0, 44",218,51,37,"218, 51%, 37%" +Pastel blue,5024,87,140,171,"87, 140, 171",578CAB,0.34,49,18,0,33,"49, 18, 0, 33",202,33,51,"202, 33%, 51%" +Patina green,6000,51,120,84,"51, 120, 84",337854,0.20,58,0,30,53,"58, 0, 30, 53",149,40,34,"149, 40%, 34%" +Emerald green,6001,38,102,81,"38, 102, 81",266651,0.15,63,0,21,60,"63, 0, 21, 60",160,46,27,"160, 46%, 27%" +Leaf green,6002,38,87,33,"38, 87, 33",265721,0.15,56,0,62,66,"56, 0, 62, 66",114,45,24,"114, 45%, 24%" +Olive green,6003,61,69,46,"61, 69, 46",3D452E,0.24,12,0,33,73,"12, 0, 33, 73",81,20,23,"81, 20%, 23%" +Blue green,6004,13,59,46,"13, 59, 46",0D3B2E,0.05,78,0,22,77,"78, 0, 22, 77",163,64,14,"163, 64%, 14%" +Moss green,6005,10,56,31,"10, 56, 31",0A381F,0.04,82,0,45,78,"82, 0, 45, 78",147,70,13,"147, 70%, 13%" +Grey olive,6006,41,43,46,"41, 43, 46",292B2E,0.16,11,7,0,82,"11, 7, 0, 82",216,6,17,"216, 6%, 17%" +Bottle green,6007,28,38,23,"28, 38, 23",1C2617,0.11,26,0,39,85,"26, 0, 39, 85",100,25,12,"100, 25%, 12%" +Brown green,6008,33,33,26,"33, 33, 26",21211A,0.13,0,0,21,87,"0, 0, 21, 87",60,12,12,"60, 12%, 12%" +Fir green,6009,23,41,28,"23, 41, 28",17291C,0.09,44,0,32,84,"44, 0, 32, 84",137,28,13,"137, 28%, 13%" +Grass green,6010,54,105,38,"54, 105, 38",366926,0.21,49,0,64,59,"49, 0, 64, 59",106,47,28,"106, 47%, 28%" +Reseda green,6011,94,125,79,"94, 125, 79",5E7D4F,0.37,25,0,37,51,"25, 0, 37, 51",100,23,40,"100, 23%, 40%" +Black green,6012,31,46,43,"31, 46, 43",1F2E2B,0.12,33,0,7,82,"33, 0, 7, 82",168,19,15,"168, 19%, 15%" +Reed green,6013,117,115,79,"117, 115, 79",75734F,0.46,0,2,32,54,"0, 2, 32, 54",57,19,38,"57, 19%, 38%" +Yellow olive,6014,51,48,38,"51, 48, 38",333026,0.20,0,6,25,80,"0, 6, 25, 80",46,15,17,"46, 15%, 17%" +Black olive,6015,41,43,38,"41, 43, 38",292B26,0.16,5,0,12,83,"5, 0, 12, 83",84,6,16,"84, 6%, 16%" +Turquoise green,6016,15,112,51,"15, 112, 51",0F7033,0.06,87,0,54,56,"87, 0, 54, 56",142,76,25,"142, 76%, 25%" +Yellow green,6017,64,130,54,"64, 130, 54",408236,0.25,51,0,58,49,"51, 0, 58, 49",112,41,36,"112, 41%, 36%" +May green,6018,79,168,51,"79, 168, 51",4FA833,0.31,53,0,70,34,"53, 0, 70, 34",106,53,43,"106, 53%, 43%" +Pastel green,6019,191,227,186,"191, 227, 186",BFE3BA,0.75,16,0,18,11,"16, 0, 18, 11",113,42,81,"113, 42%, 81%" +Chrome green,6020,38,56,41,"38, 56, 41",263829,0.15,32,0,27,78,"32, 0, 27, 78",130,19,18,"130, 19%, 18%" +Pale green,6021,133,166,122,"133, 166, 122",85A67A,0.52,20,0,27,35,"20, 0, 27, 35",105,20,56,"105, 20%, 56%" +Olive drab,6022,43,38,28,"43, 38, 28",2B261C,0.17,0,12,35,83,"0, 12, 35, 83",40,21,14,"40, 21%, 14%" +Traffic green,6024,36,145,64,"36, 145, 64",249140,0.14,75,0,56,43,"75, 0, 56, 43",135,60,35,"135, 60%, 35%" +Fern green,6025,74,110,51,"74, 110, 51",4A6E33,0.29,33,0,54,57,"33, 0, 54, 57",97,37,32,"97, 37%, 32%" +Opal green,6026,10,92,51,"10, 92, 51",0A5C33,0.04,89,0,45,64,"89, 0, 45, 64",150,80,20,"150, 80%, 20%" +Light green,6027,125,204,189,"125, 204, 189",7DCCBD,0.49,39,0,7,20,"39, 0, 7, 20",169,44,65,"169, 44%, 65%" +Pine green,6028,38,74,51,"38, 74, 51",264A33,0.15,49,0,31,71,"49, 0, 31, 71",142,32,22,"142, 32%, 22%" +Mint green,6029,18,120,38,"18, 120, 38",127826,0.07,85,0,68,53,"85, 0, 68, 53",132,74,27,"132, 74%, 27%" +Signal green,6032,41,138,64,"41, 138, 64",298A40,0.16,70,0,54,46,"70, 0, 54, 46",134,54,35,"134, 54%, 35%" +Mint turquoise,6033,66,140,120,"66, 140, 120",428C78,0.26,53,0,14,45,"53, 0, 14, 45",164,36,40,"164, 36%, 40%" +Pastel turquoise,6034,125,189,181,"125, 189, 181",7DBDB5,0.49,34,0,4,26,"34, 0, 4, 26",173,33,62,"173, 33%, 62%" +Squirrel grey,7000,115,133,145,"115, 133, 145",738591,0.45,21,8,0,43,"21, 8, 0, 43",204,12,51,"204, 12%, 51%" +Silver grey,7001,135,148,166,"135, 148, 166",8794A6,0.53,19,11,0,35,"19, 11, 0, 35",215,15,59,"215, 15%, 59%" +Olive grey,7002,122,117,97,"122, 117, 97",7A7561,0.48,0,4,20,52,"0, 4, 20, 52",48,11,43,"48, 11%, 43%" +Moss grey,7003,112,112,97,"112, 112, 97",707061,0.44,0,0,13,56,"0, 0, 13, 56",60,7,41,"60, 7%, 41%" +Signal grey,7004,156,156,166,"156, 156, 166",9C9CA6,0.61,6,6,0,35,"6, 6, 0, 35",240,5,63,"240, 5%, 63%" +Mouse grey,7005,97,105,105,"97, 105, 105",616969,0.38,8,0,0,59,"8, 0, 0, 59",180,4,40,"180, 4%, 40%" +Beige grey,7006,107,97,87,"107, 97, 87",6B6157,0.42,0,9,19,58,"0, 9, 19, 58",30,10,38,"30, 10%, 38%" +Khaki grey,7008,105,84,56,"105, 84, 56",695438,0.41,0,20,47,59,"0, 20, 47, 59",34,30,32,"34, 30%, 32%" +Green grey,7009,77,82,74,"77, 82, 74",4D524A,0.30,6,0,10,68,"6, 0, 10, 68",98,5,31,"98, 5%, 31%" +Tarpaulin grey,7010,74,79,74,"74, 79, 74",4A4F4A,0.29,6,0,6,69,"6, 0, 6, 69",120,3,30,"120, 3%, 30%" +Iron grey,7011,64,74,84,"64, 74, 84",404A54,0.25,24,12,0,67,"24, 12, 0, 67",210,14,29,"210, 14%, 29%" +Basalt grey,7012,74,84,89,"74, 84, 89",4A5459,0.29,17,6,0,65,"17, 6, 0, 65",200,9,32,"200, 9%, 32%" +Brown grey,7013,71,66,56,"71, 66, 56",474238,0.28,0,7,21,72,"0, 7, 21, 72",40,12,25,"40, 12%, 25%" +Slate grey,7015,61,66,82,"61, 66, 82",3D4252,0.24,26,20,0,68,"26, 20, 0, 68",226,15,28,"226, 15%, 28%" +Anthracite grey,7016,38,46,56,"38, 46, 56",262E38,0.15,32,18,0,78,"32, 18, 0, 78",213,19,18,"213, 19%, 18%" +Black grey,7021,26,33,41,"26, 33, 41",1A2129,0.10,37,20,0,84,"37, 20, 0, 84",212,22,13,"212, 22%, 13%" +Umbra grey,7022,61,61,59,"61, 61, 59",3D3D3B,0.24,0,0,3,76,"0, 0, 3, 76",60,2,24,"60, 2%, 24%" +Concrete grey,7023,122,125,117,"122, 125, 117",7A7D75,0.48,2,0,6,51,"2, 0, 6, 51",82,3,47,"82, 3%, 47%" +Graphite grey,7024,48,56,69,"48, 56, 69",303845,0.19,30,19,0,73,"30, 19, 0, 73",217,18,23,"217, 18%, 23%" +Granite grey,7026,38,51,56,"38, 51, 56",263338,0.15,32,9,0,78,"32, 9, 0, 78",197,19,18,"197, 19%, 18%" +Stone grey,7030,145,143,135,"145, 143, 135",918F87,0.57,0,1,7,43,"0, 1, 7, 43",48,4,55,"48, 4%, 55%" +Blue grey,7031,77,92,107,"77, 92, 107",4D5C6B,0.30,28,14,0,58,"28, 14, 0, 58",210,16,36,"210, 16%, 36%" +Pebble grey,7032,189,186,171,"189, 186, 171",BDBAAB,0.74,0,2,10,26,"0, 2, 10, 26",50,12,71,"50, 12%, 71%" +Cement grey,7033,122,130,117,"122, 130, 117",7A8275,0.48,6,0,10,49,"6, 0, 10, 49",97,5,48,"97, 5%, 48%" +Yellow grey,7034,143,135,112,"143, 135, 112",8F8770,0.56,0,6,22,44,"0, 6, 22, 44",45,12,50,"45, 12%, 50%" +Light grey,7035,212,217,219,"212, 217, 219",D4D9DB,0.83,3,1,0,14,"3, 1, 0, 14",197,9,85,"197, 9%, 85%" +Platinum grey,7036,158,150,156,"158, 150, 156",9E969C,0.62,0,5,1,38,"0, 5, 1, 38",315,4,60,"315, 4%, 60%" +Dusty grey,7037,122,125,128,"122, 125, 128",7A7D80,0.48,5,2,0,50,"5, 2, 0, 50",210,2,49,"210, 2%, 49%" +Agate grey,7038,186,189,186,"186, 189, 186",BABDBA,0.73,2,0,2,26,"2, 0, 2, 26",120,2,74,"120, 2%, 74%" +Quartz grey,7039,97,94,89,"97, 94, 89",615E59,0.38,0,3,8,62,"0, 3, 8, 62",38,4,36,"38, 4%, 36%" +Window grey,7040,158,163,176,"158, 163, 176",9EA3B0,0.62,10,7,0,31,"10, 7, 0, 31",223,10,65,"223, 10%, 65%" +Verkehrsgrau A,7042,143,150,153,"143, 150, 153",8F9699,0.56,7,2,0,40,"7, 2, 0, 40",198,5,58,"198, 5%, 58%" +Verkehrsgrau B,7043,64,69,69,"64, 69, 69",404545,0.25,7,0,0,73,"7, 0, 0, 73",180,4,26,"180, 4%, 26%" +Silk grey,7044,194,191,184,"194, 191, 184",C2BFB8,0.76,0,2,5,24,"0, 2, 5, 24",42,8,74,"42, 8%, 74%" +Telegrau 1,7045,143,148,158,"143, 148, 158",8F949E,0.56,9,6,0,38,"9, 6, 0, 38",220,7,59,"220, 7%, 59%" +Telegrau 2,7046,120,130,140,"120, 130, 140",78828C,0.47,14,7,0,45,"14, 7, 0, 45",210,8,51,"210, 8%, 51%" +Telegrau 4,7047,217,214,219,"217, 214, 219",D9D6DB,0.85,1,2,0,14,"1, 2, 0, 14",276,6,85,"276, 6%, 85%" +Green brown,8000,125,92,56,"125, 92, 56",7D5C38,0.49,0,26,55,51,"0, 26, 55, 51",31,38,35,"31, 38%, 35%" +Ocher brown,8001,145,82,46,"145, 82, 46",91522E,0.57,0,43,68,43,"0, 43, 68, 43",22,52,37,"22, 52%, 37%" +Signal brown,8002,110,59,58,"110, 59, 58",6E3B3A,0.43,0,46,47,57,"0, 46, 47, 57",1,31,33,"1, 31%, 33%" +Clay brown,8003,115,59,36,"115, 59, 36",733B24,0.45,0,49,69,55,"0, 49, 69, 55",17,52,30,"17, 52%, 30%" +Copper brown,8004,133,56,43,"133, 56, 43",85382B,0.52,0,58,68,48,"0, 58, 68, 48",9,51,35,"9, 51%, 35%" +Fawn brown,8007,94,51,33,"94, 51, 33",5E3321,0.37,0,46,65,63,"0, 46, 65, 63",18,48,25,"18, 48%, 25%" +Olive brown,8008,99,61,36,"99, 61, 36",633D24,0.39,0,38,64,61,"0, 38, 64, 61",24,47,26,"24, 47%, 26%" +Nut brown,8011,71,38,28,"71, 38, 28",47261C,0.28,0,46,61,72,"0, 46, 61, 72",14,43,19,"14, 43%, 19%" +Red brown,8012,84,31,31,"84, 31, 31",541F1F,0.33,0,63,63,67,"0, 63, 63, 67",0,46,23,"0, 46%, 23%" +Sepia brown,8014,56,38,28,"56, 38, 28",38261C,0.22,0,32,50,78,"0, 32, 50, 78",21,33,16,"21, 33%, 16%" +Chestnut brown,8015,77,31,28,"77, 31, 28",4D1F1C,0.30,0,60,64,70,"0, 60, 64, 70",4,47,21,"4, 47%, 21%" +Mahogany brown,8016,61,31,28,"61, 31, 28",3D1F1C,0.24,0,49,54,76,"0, 49, 54, 76",5,37,17,"5, 37%, 17%" +Chocolate brown,8017,46,28,28,"46, 28, 28",2E1C1C,0.18,0,39,39,82,"0, 39, 39, 82",0,24,15,"0, 24%, 15%" +Grey brown,8019,43,38,41,"43, 38, 41",2B2629,0.17,0,12,5,83,"0, 12, 5, 83",324,6,16,"324, 6%, 16%" +Black brown,8022,13,8,13,"13, 8, 13",0D080D,0.05,0,38,0,95,"0, 38, 0, 95",300,24,4,"300, 24%, 4%" +Orange brown,8023,156,69,41,"156, 69, 41",9C4529,0.61,0,56,74,39,"0, 56, 74, 39",15,58,39,"15, 58%, 39%" +Beige brown,8024,110,64,48,"110, 64, 48",6E4030,0.43,0,42,56,57,"0, 42, 56, 57",15,39,31,"15, 39%, 31%" +Pale brown,8025,102,74,61,"102, 74, 61",664A3D,0.40,0,27,40,60,"0, 27, 40, 60",19,25,32,"19, 25%, 32%" +Terra brown,8028,64,46,33,"64, 46, 33",402E21,0.25,0,28,48,75,"0, 28, 48, 75",25,32,19,"25, 32%, 19%" +Cream,9001,252,252,240,"252, 252, 240",FCFCF0,0.99,0,0,5,1,"0, 0, 5, 1",60,67,96,"60, 67%, 96%" +Signal white,9003,255,255,255,"255, 255, 255",FFFFFF,1.00,0,0,0,0,"0, 0, 0, 0",0,0,100,"0, 0%, 100%" +Signal black,9004,28,28,33,"28, 28, 33",1C1C21,0.11,15,15,0,87,"15, 15, 0, 87",240,8,12,"240, 8%, 12%" +Jet black,9005,3,5,10,"3, 5, 10",03050A,0.01,70,50,0,96,"70, 50, 0, 96",223,54,3,"223, 54%, 3%" +White aluminium,9006,166,171,181,"166, 171, 181",A6ABB5,0.65,8,6,0,29,"8, 6, 0, 29",220,9,68,"220, 9%, 68%" +Grey aluminium,9007,125,122,120,"125, 122, 120",7D7A78,0.49,0,2,4,51,"0, 2, 4, 51",24,2,48,"24, 2%, 48%" +Pure white,9010,250,255,255,"250, 255, 255",FAFFFF,0.98,2,0,0,0,"2, 0, 0, 0",180,100,99,"180, 100%, 99%" +Graphite black,9011,13,18,26,"13, 18, 26",0D121A,0.05,50,31,0,90,"50, 31, 0, 90",217,33,8,"217, 33%, 8%" +Traffic white,9016,252,255,255,"252, 255, 255",FCFFFF,0.99,1,0,0,0,"1, 0, 0, 0",180,100,99,"180, 100%, 99%" +Traffic black,9017,20,23,28,"20, 23, 28",14171C,0.08,29,18,0,89,"29, 18, 0, 89",218,17,9,"218, 17%, 9%" +Papyrus white,9018,219,227,222,"219, 227, 222",DBE3DE,0.86,4,0,2,11,"4, 0, 2, 11",143,12,87,"143, 12%, 87%" diff --git a/tools/data/ral_palettes/colourness/README.md b/tools/data/ral_palettes/colourness/README.md new file mode 100644 index 0000000..a0e1b36 --- /dev/null +++ b/tools/data/ral_palettes/colourness/README.md @@ -0,0 +1,11 @@ +# Thanks + + + +## Used Tools + +1. + +## Actions + +See `ral-colors` folder. diff --git a/tools/data/ral_palettes/colourness/colors.json b/tools/data/ral_palettes/colourness/colors.json new file mode 100644 index 0000000..1fd409d --- /dev/null +++ b/tools/data/ral_palettes/colourness/colors.json @@ -0,0 +1,4827 @@ +[ + { + "name":"Grey white", + "ral":"9002", + "rgb":{ + "r":"240", + "g":"237", + "b":"230", + "rgb":"240, 237, 230" + }, + "hex":"F0EDE6", + "brightness":"0.94", + "cmyk":{ + "c":0, + "m":1, + "y":4, + "k":6, + "cmyk":"0, 1, 4, 6" + }, + "hsl":{ + "h":"42", + "s":"25", + "l":"92", + "hsl":"42, 25%, 92%" + } + }, + { + "name":"Green beige", + "ral":"1000", + "rgb":{ + "r":"204", + "g":"204", + "b":"153", + "rgb":"204, 204, 153" + }, + "hex":"CCCC99", + "brightness":"0.80", + "cmyk":{ + "c":0, + "m":0, + "y":25, + "k":20, + "cmyk":"0, 0, 25, 20" + }, + "hsl":{ + "h":"60", + "s":"33", + "l":"70", + "hsl":"60, 33%, 70%" + } + }, + { + "name":"Beige", + "ral":"1001", + "rgb":{ + "r":"210", + "g":"170", + "b":"90", + "rgb":"210, 170, 90" + }, + "hex":"D2AA5A", + "brightness":"0.82", + "cmyk":{ + "c":0, + "m":19, + "y":57, + "k":18, + "cmyk":"0, 19, 57, 18" + }, + "hsl":{ + "h":"40", + "s":"57", + "l":"59", + "hsl":"40, 57%, 59%" + } + }, + { + "name":"Sand yellow", + "ral":"1002", + "rgb":{ + "r":"208", + "g":"168", + "b":"24", + "rgb":"208, 168, 24" + }, + "hex":"D0A818", + "brightness":"0.82", + "cmyk":{ + "c":0, + "m":19, + "y":88, + "k":18, + "cmyk":"0, 19, 88, 18" + }, + "hsl":{ + "h":"47", + "s":"79", + "l":"45", + "hsl":"47, 79%, 45%" + } + }, + { + "name":"Signal yellow", + "ral":"1003", + "rgb":{ + "r":"255", + "g":"204", + "b":"0", + "rgb":"255, 204, 0" + }, + "hex":"FFCC00", + "brightness":"1.00", + "cmyk":{ + "c":0, + "m":20, + "y":100, + "k":0, + "cmyk":"0, 20, 100, 0" + }, + "hsl":{ + "h":"48", + "s":"100", + "l":"50", + "hsl":"48, 100%, 50%" + } + }, + { + "name":"Golden yellow", + "ral":"1004", + "rgb":{ + "r":"224", + "g":"176", + "b":"0", + "rgb":"224, 176, 0" + }, + "hex":"E0B000", + "brightness":"0.88", + "cmyk":{ + "c":0, + "m":21, + "y":100, + "k":12, + "cmyk":"0, 21, 100, 12" + }, + "hsl":{ + "h":"47", + "s":"100", + "l":"44", + "hsl":"47, 100%, 44%" + } + }, + { + "name":"Honey yellow", + "ral":"1005", + "rgb":{ + "r":"201", + "g":"135", + "b":"33", + "rgb":"201, 135, 33" + }, + "hex":"C98721", + "brightness":"0.79", + "cmyk":{ + "c":0, + "m":33, + "y":84, + "k":21, + "cmyk":"0, 33, 84, 21" + }, + "hsl":{ + "h":"36", + "s":"72", + "l":"46", + "hsl":"36, 72%, 46%" + } + }, + { + "name":"Maize yellow", + "ral":"1006", + "rgb":{ + "r":"227", + "g":"167", + "b":"41", + "rgb":"227, 167, 41" + }, + "hex":"E3A729", + "brightness":"0.89", + "cmyk":{ + "c":0, + "m":26, + "y":82, + "k":11, + "cmyk":"0, 26, 82, 11" + }, + "hsl":{ + "h":"41", + "s":"77", + "l":"53", + "hsl":"41, 77%, 53%" + } + }, + { + "name":"Daffodil yellow", + "ral":"1007", + "rgb":{ + "r":"221", + "g":"159", + "b":"35", + "rgb":"221, 159, 35" + }, + "hex":"DD9F23", + "brightness":"0.87", + "cmyk":{ + "c":0, + "m":28, + "y":84, + "k":13, + "cmyk":"0, 28, 84, 13" + }, + "hsl":{ + "h":"40", + "s":"73", + "l":"50", + "hsl":"40, 73%, 50%" + } + }, + { + "name":"Brown beige", + "ral":"1011", + "rgb":{ + "r":"173", + "g":"122", + "b":"41", + "rgb":"173, 122, 41" + }, + "hex":"AD7A29", + "brightness":"0.68", + "cmyk":{ + "c":0, + "m":29, + "y":76, + "k":32, + "cmyk":"0, 29, 76, 32" + }, + "hsl":{ + "h":"37", + "s":"62", + "l":"42", + "hsl":"37, 62%, 42%" + } + }, + { + "name":"Lemon yellow", + "ral":"1012", + "rgb":{ + "r":"227", + "g":"184", + "b":"56", + "rgb":"227, 184, 56" + }, + "hex":"E3B838", + "brightness":"0.89", + "cmyk":{ + "c":0, + "m":19, + "y":75, + "k":11, + "cmyk":"0, 19, 75, 11" + }, + "hsl":{ + "h":"45", + "s":"75", + "l":"55", + "hsl":"45, 75%, 55%" + } + }, + { + "name":"Oyster white", + "ral":"1013", + "rgb":{ + "r":"255", + "g":"245", + "b":"227", + "rgb":"255, 245, 227" + }, + "hex":"FFF5E3", + "brightness":"1.00", + "cmyk":{ + "c":0, + "m":4, + "y":11, + "k":0, + "cmyk":"0, 4, 11, 0" + }, + "hsl":{ + "h":"39", + "s":"100", + "l":"95", + "hsl":"39, 100%, 95%" + } + }, + { + "name":"Ivory", + "ral":"1014", + "rgb":{ + "r":"240", + "g":"214", + "b":"171", + "rgb":"240, 214, 171" + }, + "hex":"F0D6AB", + "brightness":"0.94", + "cmyk":{ + "c":0, + "m":11, + "y":29, + "k":6, + "cmyk":"0, 11, 29, 6" + }, + "hsl":{ + "h":"37", + "s":"70", + "l":"81", + "hsl":"37, 70%, 81%" + } + }, + { + "name":"Light ivory", + "ral":"1015", + "rgb":{ + "r":"252", + "g":"235", + "b":"204", + "rgb":"252, 235, 204" + }, + "hex":"FCEBCC", + "brightness":"0.99", + "cmyk":{ + "c":0, + "m":7, + "y":19, + "k":1, + "cmyk":"0, 7, 19, 1" + }, + "hsl":{ + "h":"39", + "s":"89", + "l":"89", + "hsl":"39, 89%, 89%" + } + }, + { + "name":"Sulfur yellow", + "ral":"1016", + "rgb":{ + "r":"255", + "g":"245", + "b":"66", + "rgb":"255, 245, 66" + }, + "hex":"FFF542", + "brightness":"1.00", + "cmyk":{ + "c":0, + "m":4, + "y":74, + "k":0, + "cmyk":"0, 4, 74, 0" + }, + "hsl":{ + "h":"57", + "s":"100", + "l":"63", + "hsl":"57, 100%, 63%" + } + }, + { + "name":"Saffron yellow", + "ral":"1017", + "rgb":{ + "r":"255", + "g":"171", + "b":"89", + "rgb":"255, 171, 89" + }, + "hex":"FFAB59", + "brightness":"1.00", + "cmyk":{ + "c":0, + "m":33, + "y":65, + "k":0, + "cmyk":"0, 33, 65, 0" + }, + "hsl":{ + "h":"30", + "s":"100", + "l":"67", + "hsl":"30, 100%, 67%" + } + }, + { + "name":"Zinc yellow", + "ral":"1018", + "rgb":{ + "r":"255", + "g":"214", + "b":"77", + "rgb":"255, 214, 77" + }, + "hex":"FFD64D", + "brightness":"1.00", + "cmyk":{ + "c":0, + "m":16, + "y":70, + "k":0, + "cmyk":"0, 16, 70, 0" + }, + "hsl":{ + "h":"46", + "s":"100", + "l":"65", + "hsl":"46, 100%, 65%" + } + }, + { + "name":"Grey beige", + "ral":"1019", + "rgb":{ + "r":"163", + "g":"140", + "b":"122", + "rgb":"163, 140, 122" + }, + "hex":"A38C7A", + "brightness":"0.64", + "cmyk":{ + "c":0, + "m":14, + "y":25, + "k":36, + "cmyk":"0, 14, 25, 36" + }, + "hsl":{ + "h":"26", + "s":"18", + "l":"56", + "hsl":"26, 18%, 56%" + } + }, + { + "name":"Olive yellow", + "ral":"1020", + "rgb":{ + "r":"156", + "g":"143", + "b":"97", + "rgb":"156, 143, 97" + }, + "hex":"9C8F61", + "brightness":"0.61", + "cmyk":{ + "c":0, + "m":8, + "y":38, + "k":39, + "cmyk":"0, 8, 38, 39" + }, + "hsl":{ + "h":"47", + "s":"23", + "l":"50", + "hsl":"47, 23%, 50%" + } + }, + { + "name":"Rape yellow", + "ral":"1021", + "rgb":{ + "r":"252", + "g":"189", + "b":"31", + "rgb":"252, 189, 31" + }, + "hex":"FCBD1F", + "brightness":"0.99", + "cmyk":{ + "c":0, + "m":25, + "y":88, + "k":1, + "cmyk":"0, 25, 88, 1" + }, + "hsl":{ + "h":"43", + "s":"97", + "l":"55", + "hsl":"43, 97%, 55%" + } + }, + { + "name":"Traffic yellow", + "ral":"1023", + "rgb":{ + "r":"252", + "g":"189", + "b":"31", + "rgb":"252, 189, 31" + }, + "hex":"FCBD1F", + "brightness":"0.99", + "cmyk":{ + "c":0, + "m":25, + "y":88, + "k":1, + "cmyk":"0, 25, 88, 1" + }, + "hsl":{ + "h":"43", + "s":"97", + "l":"55", + "hsl":"43, 97%, 55%" + } + }, + { + "name":"Ochre yellow", + "ral":"1024", + "rgb":{ + "r":"181", + "g":"140", + "b":"79", + "rgb":"181, 140, 79" + }, + "hex":"B58C4F", + "brightness":"0.71", + "cmyk":{ + "c":0, + "m":23, + "y":56, + "k":29, + "cmyk":"0, 23, 56, 29" + }, + "hsl":{ + "h":"36", + "s":"41", + "l":"51", + "hsl":"36, 41%, 51%" + } + }, + { + "name":"Luminous yellow", + "ral":"1026", + "rgb":{ + "r":"255", + "g":"255", + "b":"10", + "rgb":"255, 255, 10" + }, + "hex":"FFFF0A", + "brightness":"1.00", + "cmyk":{ + "c":0, + "m":0, + "y":96, + "k":0, + "cmyk":"0, 0, 96, 0" + }, + "hsl":{ + "h":"60", + "s":"100", + "l":"52", + "hsl":"60, 100%, 52%" + } + }, + { + "name":"Curry", + "ral":"1027", + "rgb":{ + "r":"153", + "g":"117", + "b":"33", + "rgb":"153, 117, 33" + }, + "hex":"997521", + "brightness":"0.60", + "cmyk":{ + "c":0, + "m":24, + "y":78, + "k":40, + "cmyk":"0, 24, 78, 40" + }, + "hsl":{ + "h":"42", + "s":"65", + "l":"36", + "hsl":"42, 65%, 36%" + } + }, + { + "name":"Melon yellow", + "ral":"1028", + "rgb":{ + "r":"255", + "g":"140", + "b":"26", + "rgb":"255, 140, 26" + }, + "hex":"FF8C1A", + "brightness":"1.00", + "cmyk":{ + "c":0, + "m":45, + "y":90, + "k":0, + "cmyk":"0, 45, 90, 0" + }, + "hsl":{ + "h":"30", + "s":"100", + "l":"55", + "hsl":"30, 100%, 55%" + } + }, + { + "name":"Broom yellow", + "ral":"1032", + "rgb":{ + "r":"227", + "g":"163", + "b":"41", + "rgb":"227, 163, 41" + }, + "hex":"E3A329", + "brightness":"0.89", + "cmyk":{ + "c":0, + "m":28, + "y":82, + "k":11, + "cmyk":"0, 28, 82, 11" + }, + "hsl":{ + "h":"39", + "s":"77", + "l":"53", + "hsl":"39, 77%, 53%" + } + }, + { + "name":"Dahlia yellow", + "ral":"1033", + "rgb":{ + "r":"255", + "g":"148", + "b":"54", + "rgb":"255, 148, 54" + }, + "hex":"FF9436", + "brightness":"1.00", + "cmyk":{ + "c":0, + "m":42, + "y":79, + "k":0, + "cmyk":"0, 42, 79, 0" + }, + "hsl":{ + "h":"28", + "s":"100", + "l":"61", + "hsl":"28, 100%, 61%" + } + }, + { + "name":"Pastel yellow", + "ral":"1034", + "rgb":{ + "r":"247", + "g":"153", + "b":"92", + "rgb":"247, 153, 92" + }, + "hex":"F7995C", + "brightness":"0.97", + "cmyk":{ + "c":0, + "m":38, + "y":63, + "k":3, + "cmyk":"0, 38, 63, 3" + }, + "hsl":{ + "h":"24", + "s":"91", + "l":"66", + "hsl":"24, 91%, 66%" + } + }, + { + "name":"Yellow orange", + "ral":"2000", + "rgb":{ + "r":"224", + "g":"94", + "b":"31", + "rgb":"224, 94, 31" + }, + "hex":"E05E1F", + "brightness":"0.88", + "cmyk":{ + "c":0, + "m":58, + "y":86, + "k":12, + "cmyk":"0, 58, 86, 12" + }, + "hsl":{ + "h":"20", + "s":"76", + "l":"50", + "hsl":"20, 76%, 50%" + } + }, + { + "name":"Red orange", + "ral":"2001", + "rgb":{ + "r":"186", + "g":"46", + "b":"33", + "rgb":"186, 46, 33" + }, + "hex":"BA2E21", + "brightness":"0.73", + "cmyk":{ + "c":0, + "m":75, + "y":82, + "k":27, + "cmyk":"0, 75, 82, 27" + }, + "hsl":{ + "h":"5", + "s":"70", + "l":"43", + "hsl":"5, 70%, 43%" + } + }, + { + "name":"Vermilion", + "ral":"2002", + "rgb":{ + "r":"204", + "g":"36", + "b":"28", + "rgb":"204, 36, 28" + }, + "hex":"CC241C", + "brightness":"0.80", + "cmyk":{ + "c":0, + "m":82, + "y":86, + "k":20, + "cmyk":"0, 82, 86, 20" + }, + "hsl":{ + "h":"3", + "s":"76", + "l":"45", + "hsl":"3, 76%, 45%" + } + }, + { + "name":"Pastel orange", + "ral":"2003", + "rgb":{ + "r":"255", + "g":"99", + "b":"54", + "rgb":"255, 99, 54" + }, + "hex":"FF6336", + "brightness":"1.00", + "cmyk":{ + "c":0, + "m":61, + "y":79, + "k":0, + "cmyk":"0, 61, 79, 0" + }, + "hsl":{ + "h":"13", + "s":"100", + "l":"61", + "hsl":"13, 100%, 61%" + } + }, + { + "name":"Pure orange", + "ral":"2004", + "rgb":{ + "r":"242", + "g":"59", + "b":"28", + "rgb":"242, 59, 28" + }, + "hex":"F23B1C", + "brightness":"0.95", + "cmyk":{ + "c":0, + "m":76, + "y":88, + "k":5, + "cmyk":"0, 76, 88, 5" + }, + "hsl":{ + "h":"9", + "s":"89", + "l":"53", + "hsl":"9, 89%, 53%" + } + }, + { + "name":"Luminous orange", + "ral":"2005", + "rgb":{ + "r":"252", + "g":"28", + "b":"20", + "rgb":"252, 28, 20" + }, + "hex":"FC1C14", + "brightness":"0.99", + "cmyk":{ + "c":0, + "m":89, + "y":92, + "k":1, + "cmyk":"0, 89, 92, 1" + }, + "hsl":{ + "h":"2", + "s":"97", + "l":"53", + "hsl":"2, 97%, 53%" + } + }, + { + "name":"Luminous bright orange", + "ral":"2007", + "rgb":{ + "r":"255", + "g":"117", + "b":"33", + "rgb":"255, 117, 33" + }, + "hex":"FF7521", + "brightness":"1.00", + "cmyk":{ + "c":0, + "m":54, + "y":87, + "k":0, + "cmyk":"0, 54, 87, 0" + }, + "hsl":{ + "h":"23", + "s":"100", + "l":"56", + "hsl":"23, 100%, 56%" + } + }, + { + "name":"Bright red orange", + "ral":"2008", + "rgb":{ + "r":"250", + "g":"79", + "b":"41", + "rgb":"250, 79, 41" + }, + "hex":"FA4F29", + "brightness":"0.98", + "cmyk":{ + "c":0, + "m":68, + "y":84, + "k":2, + "cmyk":"0, 68, 84, 2" + }, + "hsl":{ + "h":"11", + "s":"95", + "l":"57", + "hsl":"11, 95%, 57%" + } + }, + { + "name":"Traffic orange", + "ral":"2009", + "rgb":{ + "r":"235", + "g":"59", + "b":"28", + "rgb":"235, 59, 28" + }, + "hex":"EB3B1C", + "brightness":"0.92", + "cmyk":{ + "c":0, + "m":75, + "y":88, + "k":8, + "cmyk":"0, 75, 88, 8" + }, + "hsl":{ + "h":"9", + "s":"84", + "l":"52", + "hsl":"9, 84%, 52%" + } + }, + { + "name":"Signal orange", + "ral":"2010", + "rgb":{ + "r":"212", + "g":"69", + "b":"41", + "rgb":"212, 69, 41" + }, + "hex":"D44529", + "brightness":"0.83", + "cmyk":{ + "c":0, + "m":67, + "y":81, + "k":17, + "cmyk":"0, 67, 81, 17" + }, + "hsl":{ + "h":"10", + "s":"68", + "l":"50", + "hsl":"10, 68%, 50%" + } + }, + { + "name":"Deep orange", + "ral":"2011", + "rgb":{ + "r":"237", + "g":"92", + "b":"0", + "rgb":"237, 92, 0" + }, + "hex":"ED5C00", + "brightness":"0.93", + "cmyk":{ + "c":0, + "m":61, + "y":100, + "k":7, + "cmyk":"0, 61, 100, 7" + }, + "hsl":{ + "h":"23", + "s":"100", + "l":"46", + "hsl":"23, 100%, 46%" + } + }, + { + "name":"Salmon orange", + "ral":"2012", + "rgb":{ + "r":"222", + "g":"82", + "b":"71", + "rgb":"222, 82, 71" + }, + "hex":"DE5247", + "brightness":"0.87", + "cmyk":{ + "c":0, + "m":63, + "y":68, + "k":13, + "cmyk":"0, 63, 68, 13" + }, + "hsl":{ + "h":"4", + "s":"70", + "l":"57", + "hsl":"4, 70%, 57%" + } + }, + { + "name":"Flame red", + "ral":"3000", + "rgb":{ + "r":"171", + "g":"31", + "b":"28", + "rgb":"171, 31, 28" + }, + "hex":"AB1F1C", + "brightness":"0.67", + "cmyk":{ + "c":0, + "m":82, + "y":84, + "k":33, + "cmyk":"0, 82, 84, 33" + }, + "hsl":{ + "h":"1", + "s":"72", + "l":"39", + "hsl":"1, 72%, 39%" + } + }, + { + "name":"Signal red", + "ral":"3001", + "rgb":{ + "r":"163", + "g":"23", + "b":"26", + "rgb":"163, 23, 26" + }, + "hex":"A3171A", + "brightness":"0.64", + "cmyk":{ + "c":0, + "m":86, + "y":84, + "k":36, + "cmyk":"0, 86, 84, 36" + }, + "hsl":{ + "h":"359", + "s":"75", + "l":"36", + "hsl":"359, 75%, 36%" + } + }, + { + "name":"Carmine red", + "ral":"3002", + "rgb":{ + "r":"163", + "g":"26", + "b":"26", + "rgb":"163, 26, 26" + }, + "hex":"A31A1A", + "brightness":"0.64", + "cmyk":{ + "c":0, + "m":84, + "y":84, + "k":36, + "cmyk":"0, 84, 84, 36" + }, + "hsl":{ + "h":"0", + "s":"72", + "l":"37", + "hsl":"0, 72%, 37%" + } + }, + { + "name":"Ruby red", + "ral":"3003", + "rgb":{ + "r":"138", + "g":"18", + "b":"20", + "rgb":"138, 18, 20" + }, + "hex":"8A1214", + "brightness":"0.54", + "cmyk":{ + "c":0, + "m":87, + "y":86, + "k":46, + "cmyk":"0, 87, 86, 46" + }, + "hsl":{ + "h":"359", + "s":"77", + "l":"31", + "hsl":"359, 77%, 31%" + } + }, + { + "name":"Purple red", + "ral":"3004", + "rgb":{ + "r":"105", + "g":"15", + "b":"20", + "rgb":"105, 15, 20" + }, + "hex":"690F14", + "brightness":"0.41", + "cmyk":{ + "c":0, + "m":86, + "y":81, + "k":59, + "cmyk":"0, 86, 81, 59" + }, + "hsl":{ + "h":"357", + "s":"75", + "l":"24", + "hsl":"357, 75%, 24%" + } + }, + { + "name":"Wine red", + "ral":"3005", + "rgb":{ + "r":"79", + "g":"18", + "b":"26", + "rgb":"79, 18, 26" + }, + "hex":"4F121A", + "brightness":"0.31", + "cmyk":{ + "c":0, + "m":77, + "y":67, + "k":69, + "cmyk":"0, 77, 67, 69" + }, + "hsl":{ + "h":"352", + "s":"63", + "l":"19", + "hsl":"352, 63%, 19%" + } + }, + { + "name":"Black red", + "ral":"3007", + "rgb":{ + "r":"46", + "g":"18", + "b":"26", + "rgb":"46, 18, 26" + }, + "hex":"2E121A", + "brightness":"0.18", + "cmyk":{ + "c":0, + "m":61, + "y":43, + "k":82, + "cmyk":"0, 61, 43, 82" + }, + "hsl":{ + "h":"343", + "s":"44", + "l":"13", + "hsl":"343, 44%, 13%" + } + }, + { + "name":"Oxide red", + "ral":"3009", + "rgb":{ + "r":"94", + "g":"33", + "b":"33", + "rgb":"94, 33, 33" + }, + "hex":"5E2121", + "brightness":"0.37", + "cmyk":{ + "c":0, + "m":65, + "y":65, + "k":63, + "cmyk":"0, 65, 65, 63" + }, + "hsl":{ + "h":"0", + "s":"48", + "l":"25", + "hsl":"0, 48%, 25%" + } + }, + { + "name":"Brown red", + "ral":"3011", + "rgb":{ + "r":"120", + "g":"20", + "b":"23", + "rgb":"120, 20, 23" + }, + "hex":"781417", + "brightness":"0.47", + "cmyk":{ + "c":0, + "m":83, + "y":81, + "k":53, + "cmyk":"0, 83, 81, 53" + }, + "hsl":{ + "h":"358", + "s":"71", + "l":"27", + "hsl":"358, 71%, 27%" + } + }, + { + "name":"Beige red", + "ral":"3012", + "rgb":{ + "r":"204", + "g":"130", + "b":"115", + "rgb":"204, 130, 115" + }, + "hex":"CC8273", + "brightness":"0.80", + "cmyk":{ + "c":0, + "m":36, + "y":44, + "k":20, + "cmyk":"0, 36, 44, 20" + }, + "hsl":{ + "h":"10", + "s":"47", + "l":"63", + "hsl":"10, 47%, 63%" + } + }, + { + "name":"Tomato red", + "ral":"3013", + "rgb":{ + "r":"150", + "g":"31", + "b":"28", + "rgb":"150, 31, 28" + }, + "hex":"961F1C", + "brightness":"0.59", + "cmyk":{ + "c":0, + "m":79, + "y":81, + "k":41, + "cmyk":"0, 79, 81, 41" + }, + "hsl":{ + "h":"1", + "s":"69", + "l":"35", + "hsl":"1, 69%, 35%" + } + }, + { + "name":"Antique pink", + "ral":"3014", + "rgb":{ + "r":"217", + "g":"102", + "b":"117", + "rgb":"217, 102, 117" + }, + "hex":"D96675", + "brightness":"0.85", + "cmyk":{ + "c":0, + "m":53, + "y":46, + "k":15, + "cmyk":"0, 53, 46, 15" + }, + "hsl":{ + "h":"352", + "s":"60", + "l":"63", + "hsl":"352, 60%, 63%" + } + }, + { + "name":"Light pink", + "ral":"3015", + "rgb":{ + "r":"232", + "g":"156", + "b":"181", + "rgb":"232, 156, 181" + }, + "hex":"E89CB5", + "brightness":"0.91", + "cmyk":{ + "c":0, + "m":33, + "y":22, + "k":9, + "cmyk":"0, 33, 22, 9" + }, + "hsl":{ + "h":"340", + "s":"62", + "l":"76", + "hsl":"340, 62%, 76%" + } + }, + { + "name":"Coral red", + "ral":"3016", + "rgb":{ + "r":"166", + "g":"36", + "b":"38", + "rgb":"166, 36, 38" + }, + "hex":"A62426", + "brightness":"0.65", + "cmyk":{ + "c":0, + "m":78, + "y":77, + "k":35, + "cmyk":"0, 78, 77, 35" + }, + "hsl":{ + "h":"359", + "s":"64", + "l":"40", + "hsl":"359, 64%, 40%" + } + }, + { + "name":"Rose", + "ral":"3017", + "rgb":{ + "r":"209", + "g":"54", + "b":"84", + "rgb":"209, 54, 84" + }, + "hex":"D13654", + "brightness":"0.82", + "cmyk":{ + "c":0, + "m":74, + "y":60, + "k":18, + "cmyk":"0, 74, 60, 18" + }, + "hsl":{ + "h":"348", + "s":"63", + "l":"52", + "hsl":"348, 63%, 52%" + } + }, + { + "name":"Strawberry red", + "ral":"3018", + "rgb":{ + "r":"207", + "g":"41", + "b":"66", + "rgb":"207, 41, 66" + }, + "hex":"CF2942", + "brightness":"0.81", + "cmyk":{ + "c":0, + "m":80, + "y":68, + "k":19, + "cmyk":"0, 80, 68, 19" + }, + "hsl":{ + "h":"351", + "s":"67", + "l":"49", + "hsl":"351, 67%, 49%" + } + }, + { + "name":"Traffic red", + "ral":"3020", + "rgb":{ + "r":"199", + "g":"23", + "b":"18", + "rgb":"199, 23, 18" + }, + "hex":"C71712", + "brightness":"0.78", + "cmyk":{ + "c":0, + "m":88, + "y":91, + "k":22, + "cmyk":"0, 88, 91, 22" + }, + "hsl":{ + "h":"2", + "s":"83", + "l":"43", + "hsl":"2, 83%, 43%" + } + }, + { + "name":"Salmon pink", + "ral":"3022", + "rgb":{ + "r":"217", + "g":"89", + "b":"79", + "rgb":"217, 89, 79" + }, + "hex":"D9594F", + "brightness":"0.85", + "cmyk":{ + "c":0, + "m":59, + "y":64, + "k":15, + "cmyk":"0, 59, 64, 15" + }, + "hsl":{ + "h":"4", + "s":"64", + "l":"58", + "hsl":"4, 64%, 58%" + } + }, + { + "name":"Luminous red", + "ral":"3024", + "rgb":{ + "r":"252", + "g":"10", + "b":"28", + "rgb":"252, 10, 28" + }, + "hex":"FC0A1C", + "brightness":"0.99", + "cmyk":{ + "c":0, + "m":96, + "y":89, + "k":1, + "cmyk":"0, 96, 89, 1" + }, + "hsl":{ + "h":"356", + "s":"98", + "l":"51", + "hsl":"356, 98%, 51%" + } + }, + { + "name":"Luminous bright red", + "ral":"3026", + "rgb":{ + "r":"252", + "g":"20", + "b":"20", + "rgb":"252, 20, 20" + }, + "hex":"FC1414", + "brightness":"0.99", + "cmyk":{ + "c":0, + "m":92, + "y":92, + "k":1, + "cmyk":"0, 92, 92, 1" + }, + "hsl":{ + "h":"0", + "s":"97", + "l":"53", + "hsl":"0, 97%, 53%" + } + }, + { + "name":"Raspberry red", + "ral":"3027", + "rgb":{ + "r":"181", + "g":"18", + "b":"51", + "rgb":"181, 18, 51" + }, + "hex":"B51233", + "brightness":"0.71", + "cmyk":{ + "c":0, + "m":90, + "y":72, + "k":29, + "cmyk":"0, 90, 72, 29" + }, + "hsl":{ + "h":"348", + "s":"82", + "l":"39", + "hsl":"348, 82%, 39%" + } + }, + { + "name":"Orient red", + "ral":"3031", + "rgb":{ + "r":"166", + "g":"28", + "b":"46", + "rgb":"166, 28, 46" + }, + "hex":"A61C2E", + "brightness":"0.65", + "cmyk":{ + "c":0, + "m":83, + "y":72, + "k":35, + "cmyk":"0, 83, 72, 35" + }, + "hsl":{ + "h":"352", + "s":"71", + "l":"38", + "hsl":"352, 71%, 38%" + } + }, + { + "name":"Red lilac", + "ral":"4001", + "rgb":{ + "r":"130", + "g":"64", + "b":"48", + "rgb":"130, 64, 48" + }, + "hex":"824030", + "brightness":"0.51", + "cmyk":{ + "c":0, + "m":51, + "y":63, + "k":49, + "cmyk":"0, 51, 63, 49" + }, + "hsl":{ + "h":"12", + "s":"46", + "l":"35", + "hsl":"12, 46%, 35%" + } + }, + { + "name":"Red violet", + "ral":"4002", + "rgb":{ + "r":"143", + "g":"38", + "b":"64", + "rgb":"143, 38, 64" + }, + "hex":"8F2640", + "brightness":"0.56", + "cmyk":{ + "c":0, + "m":73, + "y":55, + "k":44, + "cmyk":"0, 73, 55, 44" + }, + "hsl":{ + "h":"345", + "s":"58", + "l":"35", + "hsl":"345, 58%, 35%" + } + }, + { + "name":"Heather violet", + "ral":"4003", + "rgb":{ + "r":"201", + "g":"56", + "b":"140", + "rgb":"201, 56, 140" + }, + "hex":"C9388C", + "brightness":"0.79", + "cmyk":{ + "c":0, + "m":72, + "y":30, + "k":21, + "cmyk":"0, 72, 30, 21" + }, + "hsl":{ + "h":"325", + "s":"57", + "l":"50", + "hsl":"325, 57%, 50%" + } + }, + { + "name":"Claret violet", + "ral":"4004", + "rgb":{ + "r":"92", + "g":"8", + "b":"43", + "rgb":"92, 8, 43" + }, + "hex":"5C082B", + "brightness":"0.36", + "cmyk":{ + "c":0, + "m":91, + "y":53, + "k":64, + "cmyk":"0, 91, 53, 64" + }, + "hsl":{ + "h":"335", + "s":"84", + "l":"20", + "hsl":"335, 84%, 20%" + } + }, + { + "name":"Blue lilac", + "ral":"4005", + "rgb":{ + "r":"99", + "g":"61", + "b":"156", + "rgb":"99, 61, 156" + }, + "hex":"633D9C", + "brightness":"0.39", + "cmyk":{ + "c":37, + "m":61, + "y":0, + "k":39, + "cmyk":"37, 61, 0, 39" + }, + "hsl":{ + "h":"264", + "s":"44", + "l":"43", + "hsl":"264, 44%, 43%" + } + }, + { + "name":"Traffic purple", + "ral":"4006", + "rgb":{ + "r":"145", + "g":"15", + "b":"102", + "rgb":"145, 15, 102" + }, + "hex":"910F66", + "brightness":"0.57", + "cmyk":{ + "c":0, + "m":90, + "y":30, + "k":43, + "cmyk":"0, 90, 30, 43" + }, + "hsl":{ + "h":"320", + "s":"81", + "l":"31", + "hsl":"320, 81%, 31%" + } + }, + { + "name":"Purple violet", + "ral":"4007", + "rgb":{ + "r":"56", + "g":"10", + "b":"46", + "rgb":"56, 10, 46" + }, + "hex":"380A2E", + "brightness":"0.22", + "cmyk":{ + "c":0, + "m":82, + "y":18, + "k":78, + "cmyk":"0, 82, 18, 78" + }, + "hsl":{ + "h":"313", + "s":"70", + "l":"13", + "hsl":"313, 70%, 13%" + } + }, + { + "name":"Signal violet", + "ral":"4008", + "rgb":{ + "r":"125", + "g":"31", + "b":"122", + "rgb":"125, 31, 122" + }, + "hex":"7D1F7A", + "brightness":"0.49", + "cmyk":{ + "c":0, + "m":75, + "y":2, + "k":51, + "cmyk":"0, 75, 2, 51" + }, + "hsl":{ + "h":"302", + "s":"60", + "l":"31", + "hsl":"302, 60%, 31%" + } + }, + { + "name":"Pastel violet", + "ral":"4009", + "rgb":{ + "r":"158", + "g":"115", + "b":"148", + "rgb":"158, 115, 148" + }, + "hex":"9E7394", + "brightness":"0.62", + "cmyk":{ + "c":0, + "m":27, + "y":6, + "k":38, + "cmyk":"0, 27, 6, 38" + }, + "hsl":{ + "h":"314", + "s":"18", + "l":"54", + "hsl":"314, 18%, 54%" + } + }, + { + "name":"Telemagenta", + "ral":"4010", + "rgb":{ + "r":"191", + "g":"23", + "b":"115", + "rgb":"191, 23, 115" + }, + "hex":"BF1773", + "brightness":"0.75", + "cmyk":{ + "c":0, + "m":88, + "y":40, + "k":25, + "cmyk":"0, 88, 40, 25" + }, + "hsl":{ + "h":"327", + "s":"79", + "l":"42", + "hsl":"327, 79%, 42%" + } + }, + { + "name":"Violet blue", + "ral":"5000", + "rgb":{ + "r":"23", + "g":"51", + "b":"107", + "rgb":"23, 51, 107" + }, + "hex":"17336B", + "brightness":"0.09", + "cmyk":{ + "c":79, + "m":52, + "y":0, + "k":58, + "cmyk":"79, 52, 0, 58" + }, + "hsl":{ + "h":"220", + "s":"65", + "l":"25", + "hsl":"220, 65%, 25%" + } + }, + { + "name":"Green blue", + "ral":"5001", + "rgb":{ + "r":"10", + "g":"51", + "b":"84", + "rgb":"10, 51, 84" + }, + "hex":"0A3354", + "brightness":"0.04", + "cmyk":{ + "c":88, + "m":39, + "y":0, + "k":67, + "cmyk":"88, 39, 0, 67" + }, + "hsl":{ + "h":"207", + "s":"79", + "l":"18", + "hsl":"207, 79%, 18%" + } + }, + { + "name":"Ultramarine blue", + "ral":"5002", + "rgb":{ + "r":"0", + "g":"15", + "b":"117", + "rgb":"0, 15, 117" + }, + "hex":"000F75", + "brightness":"0.00", + "cmyk":{ + "c":100, + "m":87, + "y":0, + "k":54, + "cmyk":"100, 87, 0, 54" + }, + "hsl":{ + "h":"232", + "s":"100", + "l":"23", + "hsl":"232, 100%, 23%" + } + }, + { + "name":"Sapphire blue", + "ral":"5003", + "rgb":{ + "r":"0", + "g":"23", + "b":"69", + "rgb":"0, 23, 69" + }, + "hex":"001745", + "brightness":"0.00", + "cmyk":{ + "c":100, + "m":67, + "y":0, + "k":73, + "cmyk":"100, 67, 0, 73" + }, + "hsl":{ + "h":"220", + "s":"100", + "l":"14", + "hsl":"220, 100%, 14%" + } + }, + { + "name":"Black blue", + "ral":"5004", + "rgb":{ + "r":"3", + "g":"13", + "b":"31", + "rgb":"3, 13, 31" + }, + "hex":"030D1F", + "brightness":"0.01", + "cmyk":{ + "c":90, + "m":58, + "y":0, + "k":88, + "cmyk":"90, 58, 0, 88" + }, + "hsl":{ + "h":"219", + "s":"82", + "l":"7", + "hsl":"219, 82%, 7%" + } + }, + { + "name":"Signal blue", + "ral":"5005", + "rgb":{ + "r":"0", + "g":"46", + "b":"122", + "rgb":"0, 46, 122" + }, + "hex":"002E7A", + "brightness":"0.00", + "cmyk":{ + "c":100, + "m":62, + "y":0, + "k":52, + "cmyk":"100, 62, 0, 52" + }, + "hsl":{ + "h":"217", + "s":"100", + "l":"24", + "hsl":"217, 100%, 24%" + } + }, + { + "name":"Brillant blue", + "ral":"5007", + "rgb":{ + "r":"38", + "g":"79", + "b":"135", + "rgb":"38, 79, 135" + }, + "hex":"264F87", + "brightness":"0.15", + "cmyk":{ + "c":72, + "m":41, + "y":0, + "k":47, + "cmyk":"72, 41, 0, 47" + }, + "hsl":{ + "h":"215", + "s":"56", + "l":"34", + "hsl":"215, 56%, 34%" + } + }, + { + "name":"Gray blue", + "ral":"5008", + "rgb":{ + "r":"26", + "g":"41", + "b":"56", + "rgb":"26, 41, 56" + }, + "hex":"1A2938", + "brightness":"0.10", + "cmyk":{ + "c":54, + "m":27, + "y":0, + "k":78, + "cmyk":"54, 27, 0, 78" + }, + "hsl":{ + "h":"210", + "s":"37", + "l":"16", + "hsl":"210, 37%, 16%" + } + }, + { + "name":"Azure blue", + "ral":"5009", + "rgb":{ + "r":"23", + "g":"69", + "b":"112", + "rgb":"23, 69, 112" + }, + "hex":"174570", + "brightness":"0.09", + "cmyk":{ + "c":79, + "m":38, + "y":0, + "k":56, + "cmyk":"79, 38, 0, 56" + }, + "hsl":{ + "h":"209", + "s":"66", + "l":"26", + "hsl":"209, 66%, 26%" + } + }, + { + "name":"Steel blue", + "ral":"5011", + "rgb":{ + "r":"0", + "g":"43", + "b":"112", + "rgb":"0, 43, 112" + }, + "hex":"002B70", + "brightness":"0.00", + "cmyk":{ + "c":100, + "m":62, + "y":0, + "k":56, + "cmyk":"100, 62, 0, 56" + }, + "hsl":{ + "h":"217", + "s":"100", + "l":"22", + "hsl":"217, 100%, 22%" + } + }, + { + "name":"Light blue", + "ral":"5012", + "rgb":{ + "r":"41", + "g":"115", + "b":"184", + "rgb":"41, 115, 184" + }, + "hex":"2973B8", + "brightness":"0.16", + "cmyk":{ + "c":78, + "m":38, + "y":0, + "k":28, + "cmyk":"78, 38, 0, 28" + }, + "hsl":{ + "h":"209", + "s":"64", + "l":"44", + "hsl":"209, 64%, 44%" + } + }, + { + "name":"Cobalt blue", + "ral":"5013", + "rgb":{ + "r":"0", + "g":"18", + "b":"69", + "rgb":"0, 18, 69" + }, + "hex":"001245", + "brightness":"0.00", + "cmyk":{ + "c":100, + "m":74, + "y":0, + "k":73, + "cmyk":"100, 74, 0, 73" + }, + "hsl":{ + "h":"224", + "s":"100", + "l":"14", + "hsl":"224, 100%, 14%" + } + }, + { + "name":"Pigeon blue", + "ral":"5014", + "rgb":{ + "r":"77", + "g":"105", + "b":"153", + "rgb":"77, 105, 153" + }, + "hex":"4D6999", + "brightness":"0.30", + "cmyk":{ + "c":50, + "m":31, + "y":0, + "k":40, + "cmyk":"50, 31, 0, 40" + }, + "hsl":{ + "h":"218", + "s":"33", + "l":"45", + "hsl":"218, 33%, 45%" + } + }, + { + "name":"Sky blue", + "ral":"5015", + "rgb":{ + "r":"23", + "g":"97", + "b":"171", + "rgb":"23, 97, 171" + }, + "hex":"1761AB", + "brightness":"0.09", + "cmyk":{ + "c":87, + "m":43, + "y":0, + "k":33, + "cmyk":"87, 43, 0, 33" + }, + "hsl":{ + "h":"210", + "s":"76", + "l":"38", + "hsl":"210, 76%, 38%" + } + }, + { + "name":"Traffic blue", + "ral":"5017", + "rgb":{ + "r":"0", + "g":"59", + "b":"128", + "rgb":"0, 59, 128" + }, + "hex":"003B80", + "brightness":"0.00", + "cmyk":{ + "c":100, + "m":54, + "y":0, + "k":50, + "cmyk":"100, 54, 0, 50" + }, + "hsl":{ + "h":"212", + "s":"100", + "l":"25", + "hsl":"212, 100%, 25%" + } + }, + { + "name":"Turquoise blue", + "ral":"5018", + "rgb":{ + "r":"56", + "g":"148", + "b":"130", + "rgb":"56, 148, 130" + }, + "hex":"389482", + "brightness":"0.22", + "cmyk":{ + "c":62, + "m":0, + "y":12, + "k":42, + "cmyk":"62, 0, 12, 42" + }, + "hsl":{ + "h":"168", + "s":"45", + "l":"40", + "hsl":"168, 45%, 40%" + } + }, + { + "name":"Capri blue", + "ral":"5019", + "rgb":{ + "r":"10", + "g":"66", + "b":"120", + "rgb":"10, 66, 120" + }, + "hex":"0A4278", + "brightness":"0.04", + "cmyk":{ + "c":92, + "m":45, + "y":0, + "k":53, + "cmyk":"92, 45, 0, 53" + }, + "hsl":{ + "h":"209", + "s":"85", + "l":"25", + "hsl":"209, 85%, 25%" + } + }, + { + "name":"Steel blue", + "ral":"5020", + "rgb":{ + "r":"5", + "g":"51", + "b":"51", + "rgb":"5, 51, 51" + }, + "hex":"053333", + "brightness":"0.02", + "cmyk":{ + "c":90, + "m":0, + "y":0, + "k":80, + "cmyk":"90, 0, 0, 80" + }, + "hsl":{ + "h":"180", + "s":"82", + "l":"11", + "hsl":"180, 82%, 11%" + } + }, + { + "name":"Water blue", + "ral":"5021", + "rgb":{ + "r":"26", + "g":"122", + "b":"99", + "rgb":"26, 122, 99" + }, + "hex":"1A7A63", + "brightness":"0.10", + "cmyk":{ + "c":79, + "m":0, + "y":19, + "k":52, + "cmyk":"79, 0, 19, 52" + }, + "hsl":{ + "h":"166", + "s":"65", + "l":"29", + "hsl":"166, 65%, 29%" + } + }, + { + "name":"Night blue", + "ral":"5022", + "rgb":{ + "r":"0", + "g":"8", + "b":"79", + "rgb":"0, 8, 79" + }, + "hex":"00084F", + "brightness":"0.00", + "cmyk":{ + "c":100, + "m":90, + "y":0, + "k":69, + "cmyk":"100, 90, 0, 69" + }, + "hsl":{ + "h":"234", + "s":"100", + "l":"15", + "hsl":"234, 100%, 15%" + } + }, + { + "name":"Distant blue", + "ral":"5023", + "rgb":{ + "r":"46", + "g":"82", + "b":"143", + "rgb":"46, 82, 143" + }, + "hex":"2E528F", + "brightness":"0.18", + "cmyk":{ + "c":68, + "m":43, + "y":0, + "k":44, + "cmyk":"68, 43, 0, 44" + }, + "hsl":{ + "h":"218", + "s":"51", + "l":"37", + "hsl":"218, 51%, 37%" + } + }, + { + "name":"Pastel blue", + "ral":"5024", + "rgb":{ + "r":"87", + "g":"140", + "b":"171", + "rgb":"87, 140, 171" + }, + "hex":"578CAB", + "brightness":"0.34", + "cmyk":{ + "c":49, + "m":18, + "y":0, + "k":33, + "cmyk":"49, 18, 0, 33" + }, + "hsl":{ + "h":"202", + "s":"33", + "l":"51", + "hsl":"202, 33%, 51%" + } + }, + { + "name":"Patina green", + "ral":"6000", + "rgb":{ + "r":"51", + "g":"120", + "b":"84", + "rgb":"51, 120, 84" + }, + "hex":"337854", + "brightness":"0.20", + "cmyk":{ + "c":58, + "m":0, + "y":30, + "k":53, + "cmyk":"58, 0, 30, 53" + }, + "hsl":{ + "h":"149", + "s":"40", + "l":"34", + "hsl":"149, 40%, 34%" + } + }, + { + "name":"Emerald green", + "ral":"6001", + "rgb":{ + "r":"38", + "g":"102", + "b":"81", + "rgb":"38, 102, 81" + }, + "hex":"266651", + "brightness":"0.15", + "cmyk":{ + "c":63, + "m":0, + "y":21, + "k":60, + "cmyk":"63, 0, 21, 60" + }, + "hsl":{ + "h":"160", + "s":"46", + "l":"27", + "hsl":"160, 46%, 27%" + } + }, + { + "name":"Leaf green", + "ral":"6002", + "rgb":{ + "r":"38", + "g":"87", + "b":"33", + "rgb":"38, 87, 33" + }, + "hex":"265721", + "brightness":"0.15", + "cmyk":{ + "c":56, + "m":0, + "y":62, + "k":66, + "cmyk":"56, 0, 62, 66" + }, + "hsl":{ + "h":"114", + "s":"45", + "l":"24", + "hsl":"114, 45%, 24%" + } + }, + { + "name":"Olive green", + "ral":"6003", + "rgb":{ + "r":"61", + "g":"69", + "b":"46", + "rgb":"61, 69, 46" + }, + "hex":"3D452E", + "brightness":"0.24", + "cmyk":{ + "c":12, + "m":0, + "y":33, + "k":73, + "cmyk":"12, 0, 33, 73" + }, + "hsl":{ + "h":"81", + "s":"20", + "l":"23", + "hsl":"81, 20%, 23%" + } + }, + { + "name":"Blue green", + "ral":"6004", + "rgb":{ + "r":"13", + "g":"59", + "b":"46", + "rgb":"13, 59, 46" + }, + "hex":"0D3B2E", + "brightness":"0.05", + "cmyk":{ + "c":78, + "m":0, + "y":22, + "k":77, + "cmyk":"78, 0, 22, 77" + }, + "hsl":{ + "h":"163", + "s":"64", + "l":"14", + "hsl":"163, 64%, 14%" + } + }, + { + "name":"Moss green", + "ral":"6005", + "rgb":{ + "r":"10", + "g":"56", + "b":"31", + "rgb":"10, 56, 31" + }, + "hex":"0A381F", + "brightness":"0.04", + "cmyk":{ + "c":82, + "m":0, + "y":45, + "k":78, + "cmyk":"82, 0, 45, 78" + }, + "hsl":{ + "h":"147", + "s":"70", + "l":"13", + "hsl":"147, 70%, 13%" + } + }, + { + "name":"Grey olive", + "ral":"6006", + "rgb":{ + "r":"41", + "g":"43", + "b":"46", + "rgb":"41, 43, 46" + }, + "hex":"292B2E", + "brightness":"0.16", + "cmyk":{ + "c":11, + "m":7, + "y":0, + "k":82, + "cmyk":"11, 7, 0, 82" + }, + "hsl":{ + "h":"216", + "s":"6", + "l":"17", + "hsl":"216, 6%, 17%" + } + }, + { + "name":"Bottle green", + "ral":"6007", + "rgb":{ + "r":"28", + "g":"38", + "b":"23", + "rgb":"28, 38, 23" + }, + "hex":"1C2617", + "brightness":"0.11", + "cmyk":{ + "c":26, + "m":0, + "y":39, + "k":85, + "cmyk":"26, 0, 39, 85" + }, + "hsl":{ + "h":"100", + "s":"25", + "l":"12", + "hsl":"100, 25%, 12%" + } + }, + { + "name":"Brown green", + "ral":"6008", + "rgb":{ + "r":"33", + "g":"33", + "b":"26", + "rgb":"33, 33, 26" + }, + "hex":"21211A", + "brightness":"0.13", + "cmyk":{ + "c":0, + "m":0, + "y":21, + "k":87, + "cmyk":"0, 0, 21, 87" + }, + "hsl":{ + "h":"60", + "s":"12", + "l":"12", + "hsl":"60, 12%, 12%" + } + }, + { + "name":"Fir green", + "ral":"6009", + "rgb":{ + "r":"23", + "g":"41", + "b":"28", + "rgb":"23, 41, 28" + }, + "hex":"17291C", + "brightness":"0.09", + "cmyk":{ + "c":44, + "m":0, + "y":32, + "k":84, + "cmyk":"44, 0, 32, 84" + }, + "hsl":{ + "h":"137", + "s":"28", + "l":"13", + "hsl":"137, 28%, 13%" + } + }, + { + "name":"Grass green", + "ral":"6010", + "rgb":{ + "r":"54", + "g":"105", + "b":"38", + "rgb":"54, 105, 38" + }, + "hex":"366926", + "brightness":"0.21", + "cmyk":{ + "c":49, + "m":0, + "y":64, + "k":59, + "cmyk":"49, 0, 64, 59" + }, + "hsl":{ + "h":"106", + "s":"47", + "l":"28", + "hsl":"106, 47%, 28%" + } + }, + { + "name":"Reseda green", + "ral":"6011", + "rgb":{ + "r":"94", + "g":"125", + "b":"79", + "rgb":"94, 125, 79" + }, + "hex":"5E7D4F", + "brightness":"0.37", + "cmyk":{ + "c":25, + "m":0, + "y":37, + "k":51, + "cmyk":"25, 0, 37, 51" + }, + "hsl":{ + "h":"100", + "s":"23", + "l":"40", + "hsl":"100, 23%, 40%" + } + }, + { + "name":"Black green", + "ral":"6012", + "rgb":{ + "r":"31", + "g":"46", + "b":"43", + "rgb":"31, 46, 43" + }, + "hex":"1F2E2B", + "brightness":"0.12", + "cmyk":{ + "c":33, + "m":0, + "y":7, + "k":82, + "cmyk":"33, 0, 7, 82" + }, + "hsl":{ + "h":"168", + "s":"19", + "l":"15", + "hsl":"168, 19%, 15%" + } + }, + { + "name":"Reed green", + "ral":"6013", + "rgb":{ + "r":"117", + "g":"115", + "b":"79", + "rgb":"117, 115, 79" + }, + "hex":"75734F", + "brightness":"0.46", + "cmyk":{ + "c":0, + "m":2, + "y":32, + "k":54, + "cmyk":"0, 2, 32, 54" + }, + "hsl":{ + "h":"57", + "s":"19", + "l":"38", + "hsl":"57, 19%, 38%" + } + }, + { + "name":"Yellow olive", + "ral":"6014", + "rgb":{ + "r":"51", + "g":"48", + "b":"38", + "rgb":"51, 48, 38" + }, + "hex":"333026", + "brightness":"0.20", + "cmyk":{ + "c":0, + "m":6, + "y":25, + "k":80, + "cmyk":"0, 6, 25, 80" + }, + "hsl":{ + "h":"46", + "s":"15", + "l":"17", + "hsl":"46, 15%, 17%" + } + }, + { + "name":"Black olive", + "ral":"6015", + "rgb":{ + "r":"41", + "g":"43", + "b":"38", + "rgb":"41, 43, 38" + }, + "hex":"292B26", + "brightness":"0.16", + "cmyk":{ + "c":5, + "m":0, + "y":12, + "k":83, + "cmyk":"5, 0, 12, 83" + }, + "hsl":{ + "h":"84", + "s":"6", + "l":"16", + "hsl":"84, 6%, 16%" + } + }, + { + "name":"Turquoise green", + "ral":"6016", + "rgb":{ + "r":"15", + "g":"112", + "b":"51", + "rgb":"15, 112, 51" + }, + "hex":"0F7033", + "brightness":"0.06", + "cmyk":{ + "c":87, + "m":0, + "y":54, + "k":56, + "cmyk":"87, 0, 54, 56" + }, + "hsl":{ + "h":"142", + "s":"76", + "l":"25", + "hsl":"142, 76%, 25%" + } + }, + { + "name":"Yellow green", + "ral":"6017", + "rgb":{ + "r":"64", + "g":"130", + "b":"54", + "rgb":"64, 130, 54" + }, + "hex":"408236", + "brightness":"0.25", + "cmyk":{ + "c":51, + "m":0, + "y":58, + "k":49, + "cmyk":"51, 0, 58, 49" + }, + "hsl":{ + "h":"112", + "s":"41", + "l":"36", + "hsl":"112, 41%, 36%" + } + }, + { + "name":"May green", + "ral":"6018", + "rgb":{ + "r":"79", + "g":"168", + "b":"51", + "rgb":"79, 168, 51" + }, + "hex":"4FA833", + "brightness":"0.31", + "cmyk":{ + "c":53, + "m":0, + "y":70, + "k":34, + "cmyk":"53, 0, 70, 34" + }, + "hsl":{ + "h":"106", + "s":"53", + "l":"43", + "hsl":"106, 53%, 43%" + } + }, + { + "name":"Pastel green", + "ral":"6019", + "rgb":{ + "r":"191", + "g":"227", + "b":"186", + "rgb":"191, 227, 186" + }, + "hex":"BFE3BA", + "brightness":"0.75", + "cmyk":{ + "c":16, + "m":0, + "y":18, + "k":11, + "cmyk":"16, 0, 18, 11" + }, + "hsl":{ + "h":"113", + "s":"42", + "l":"81", + "hsl":"113, 42%, 81%" + } + }, + { + "name":"Chrome green", + "ral":"6020", + "rgb":{ + "r":"38", + "g":"56", + "b":"41", + "rgb":"38, 56, 41" + }, + "hex":"263829", + "brightness":"0.15", + "cmyk":{ + "c":32, + "m":0, + "y":27, + "k":78, + "cmyk":"32, 0, 27, 78" + }, + "hsl":{ + "h":"130", + "s":"19", + "l":"18", + "hsl":"130, 19%, 18%" + } + }, + { + "name":"Pale green", + "ral":"6021", + "rgb":{ + "r":"133", + "g":"166", + "b":"122", + "rgb":"133, 166, 122" + }, + "hex":"85A67A", + "brightness":"0.52", + "cmyk":{ + "c":20, + "m":0, + "y":27, + "k":35, + "cmyk":"20, 0, 27, 35" + }, + "hsl":{ + "h":"105", + "s":"20", + "l":"56", + "hsl":"105, 20%, 56%" + } + }, + { + "name":"Olive drab", + "ral":"6022", + "rgb":{ + "r":"43", + "g":"38", + "b":"28", + "rgb":"43, 38, 28" + }, + "hex":"2B261C", + "brightness":"0.17", + "cmyk":{ + "c":0, + "m":12, + "y":35, + "k":83, + "cmyk":"0, 12, 35, 83" + }, + "hsl":{ + "h":"40", + "s":"21", + "l":"14", + "hsl":"40, 21%, 14%" + } + }, + { + "name":"Traffic green", + "ral":"6024", + "rgb":{ + "r":"36", + "g":"145", + "b":"64", + "rgb":"36, 145, 64" + }, + "hex":"249140", + "brightness":"0.14", + "cmyk":{ + "c":75, + "m":0, + "y":56, + "k":43, + "cmyk":"75, 0, 56, 43" + }, + "hsl":{ + "h":"135", + "s":"60", + "l":"35", + "hsl":"135, 60%, 35%" + } + }, + { + "name":"Fern green", + "ral":"6025", + "rgb":{ + "r":"74", + "g":"110", + "b":"51", + "rgb":"74, 110, 51" + }, + "hex":"4A6E33", + "brightness":"0.29", + "cmyk":{ + "c":33, + "m":0, + "y":54, + "k":57, + "cmyk":"33, 0, 54, 57" + }, + "hsl":{ + "h":"97", + "s":"37", + "l":"32", + "hsl":"97, 37%, 32%" + } + }, + { + "name":"Opal green", + "ral":"6026", + "rgb":{ + "r":"10", + "g":"92", + "b":"51", + "rgb":"10, 92, 51" + }, + "hex":"0A5C33", + "brightness":"0.04", + "cmyk":{ + "c":89, + "m":0, + "y":45, + "k":64, + "cmyk":"89, 0, 45, 64" + }, + "hsl":{ + "h":"150", + "s":"80", + "l":"20", + "hsl":"150, 80%, 20%" + } + }, + { + "name":"Light green", + "ral":"6027", + "rgb":{ + "r":"125", + "g":"204", + "b":"189", + "rgb":"125, 204, 189" + }, + "hex":"7DCCBD", + "brightness":"0.49", + "cmyk":{ + "c":39, + "m":0, + "y":7, + "k":20, + "cmyk":"39, 0, 7, 20" + }, + "hsl":{ + "h":"169", + "s":"44", + "l":"65", + "hsl":"169, 44%, 65%" + } + }, + { + "name":"Pine green", + "ral":"6028", + "rgb":{ + "r":"38", + "g":"74", + "b":"51", + "rgb":"38, 74, 51" + }, + "hex":"264A33", + "brightness":"0.15", + "cmyk":{ + "c":49, + "m":0, + "y":31, + "k":71, + "cmyk":"49, 0, 31, 71" + }, + "hsl":{ + "h":"142", + "s":"32", + "l":"22", + "hsl":"142, 32%, 22%" + } + }, + { + "name":"Mint green", + "ral":"6029", + "rgb":{ + "r":"18", + "g":"120", + "b":"38", + "rgb":"18, 120, 38" + }, + "hex":"127826", + "brightness":"0.07", + "cmyk":{ + "c":85, + "m":0, + "y":68, + "k":53, + "cmyk":"85, 0, 68, 53" + }, + "hsl":{ + "h":"132", + "s":"74", + "l":"27", + "hsl":"132, 74%, 27%" + } + }, + { + "name":"Signal green", + "ral":"6032", + "rgb":{ + "r":"41", + "g":"138", + "b":"64", + "rgb":"41, 138, 64" + }, + "hex":"298A40", + "brightness":"0.16", + "cmyk":{ + "c":70, + "m":0, + "y":54, + "k":46, + "cmyk":"70, 0, 54, 46" + }, + "hsl":{ + "h":"134", + "s":"54", + "l":"35", + "hsl":"134, 54%, 35%" + } + }, + { + "name":"Mint turquoise", + "ral":"6033", + "rgb":{ + "r":"66", + "g":"140", + "b":"120", + "rgb":"66, 140, 120" + }, + "hex":"428C78", + "brightness":"0.26", + "cmyk":{ + "c":53, + "m":0, + "y":14, + "k":45, + "cmyk":"53, 0, 14, 45" + }, + "hsl":{ + "h":"164", + "s":"36", + "l":"40", + "hsl":"164, 36%, 40%" + } + }, + { + "name":"Pastel turquoise", + "ral":"6034", + "rgb":{ + "r":"125", + "g":"189", + "b":"181", + "rgb":"125, 189, 181" + }, + "hex":"7DBDB5", + "brightness":"0.49", + "cmyk":{ + "c":34, + "m":0, + "y":4, + "k":26, + "cmyk":"34, 0, 4, 26" + }, + "hsl":{ + "h":"173", + "s":"33", + "l":"62", + "hsl":"173, 33%, 62%" + } + }, + { + "name":"Squirrel grey", + "ral":"7000", + "rgb":{ + "r":"115", + "g":"133", + "b":"145", + "rgb":"115, 133, 145" + }, + "hex":"738591", + "brightness":"0.45", + "cmyk":{ + "c":21, + "m":8, + "y":0, + "k":43, + "cmyk":"21, 8, 0, 43" + }, + "hsl":{ + "h":"204", + "s":"12", + "l":"51", + "hsl":"204, 12%, 51%" + } + }, + { + "name":"Silver grey", + "ral":"7001", + "rgb":{ + "r":"135", + "g":"148", + "b":"166", + "rgb":"135, 148, 166" + }, + "hex":"8794A6", + "brightness":"0.53", + "cmyk":{ + "c":19, + "m":11, + "y":0, + "k":35, + "cmyk":"19, 11, 0, 35" + }, + "hsl":{ + "h":"215", + "s":"15", + "l":"59", + "hsl":"215, 15%, 59%" + } + }, + { + "name":"Olive grey", + "ral":"7002", + "rgb":{ + "r":"122", + "g":"117", + "b":"97", + "rgb":"122, 117, 97" + }, + "hex":"7A7561", + "brightness":"0.48", + "cmyk":{ + "c":0, + "m":4, + "y":20, + "k":52, + "cmyk":"0, 4, 20, 52" + }, + "hsl":{ + "h":"48", + "s":"11", + "l":"43", + "hsl":"48, 11%, 43%" + } + }, + { + "name":"Moss grey", + "ral":"7003", + "rgb":{ + "r":"112", + "g":"112", + "b":"97", + "rgb":"112, 112, 97" + }, + "hex":"707061", + "brightness":"0.44", + "cmyk":{ + "c":0, + "m":0, + "y":13, + "k":56, + "cmyk":"0, 0, 13, 56" + }, + "hsl":{ + "h":"60", + "s":"7", + "l":"41", + "hsl":"60, 7%, 41%" + } + }, + { + "name":"Signal grey", + "ral":"7004", + "rgb":{ + "r":"156", + "g":"156", + "b":"166", + "rgb":"156, 156, 166" + }, + "hex":"9C9CA6", + "brightness":"0.61", + "cmyk":{ + "c":6, + "m":6, + "y":0, + "k":35, + "cmyk":"6, 6, 0, 35" + }, + "hsl":{ + "h":"240", + "s":"5", + "l":"63", + "hsl":"240, 5%, 63%" + } + }, + { + "name":"Mouse grey", + "ral":"7005", + "rgb":{ + "r":"97", + "g":"105", + "b":"105", + "rgb":"97, 105, 105" + }, + "hex":"616969", + "brightness":"0.38", + "cmyk":{ + "c":8, + "m":0, + "y":0, + "k":59, + "cmyk":"8, 0, 0, 59" + }, + "hsl":{ + "h":"180", + "s":"4", + "l":"40", + "hsl":"180, 4%, 40%" + } + }, + { + "name":"Beige grey", + "ral":"7006", + "rgb":{ + "r":"107", + "g":"97", + "b":"87", + "rgb":"107, 97, 87" + }, + "hex":"6B6157", + "brightness":"0.42", + "cmyk":{ + "c":0, + "m":9, + "y":19, + "k":58, + "cmyk":"0, 9, 19, 58" + }, + "hsl":{ + "h":"30", + "s":"10", + "l":"38", + "hsl":"30, 10%, 38%" + } + }, + { + "name":"Khaki grey", + "ral":"7008", + "rgb":{ + "r":"105", + "g":"84", + "b":"56", + "rgb":"105, 84, 56" + }, + "hex":"695438", + "brightness":"0.41", + "cmyk":{ + "c":0, + "m":20, + "y":47, + "k":59, + "cmyk":"0, 20, 47, 59" + }, + "hsl":{ + "h":"34", + "s":"30", + "l":"32", + "hsl":"34, 30%, 32%" + } + }, + { + "name":"Green grey", + "ral":"7009", + "rgb":{ + "r":"77", + "g":"82", + "b":"74", + "rgb":"77, 82, 74" + }, + "hex":"4D524A", + "brightness":"0.30", + "cmyk":{ + "c":6, + "m":0, + "y":10, + "k":68, + "cmyk":"6, 0, 10, 68" + }, + "hsl":{ + "h":"98", + "s":"5", + "l":"31", + "hsl":"98, 5%, 31%" + } + }, + { + "name":"Tarpaulin grey", + "ral":"7010", + "rgb":{ + "r":"74", + "g":"79", + "b":"74", + "rgb":"74, 79, 74" + }, + "hex":"4A4F4A", + "brightness":"0.29", + "cmyk":{ + "c":6, + "m":0, + "y":6, + "k":69, + "cmyk":"6, 0, 6, 69" + }, + "hsl":{ + "h":"120", + "s":"3", + "l":"30", + "hsl":"120, 3%, 30%" + } + }, + { + "name":"Iron grey", + "ral":"7011", + "rgb":{ + "r":"64", + "g":"74", + "b":"84", + "rgb":"64, 74, 84" + }, + "hex":"404A54", + "brightness":"0.25", + "cmyk":{ + "c":24, + "m":12, + "y":0, + "k":67, + "cmyk":"24, 12, 0, 67" + }, + "hsl":{ + "h":"210", + "s":"14", + "l":"29", + "hsl":"210, 14%, 29%" + } + }, + { + "name":"Basalt grey", + "ral":"7012", + "rgb":{ + "r":"74", + "g":"84", + "b":"89", + "rgb":"74, 84, 89" + }, + "hex":"4A5459", + "brightness":"0.29", + "cmyk":{ + "c":17, + "m":6, + "y":0, + "k":65, + "cmyk":"17, 6, 0, 65" + }, + "hsl":{ + "h":"200", + "s":"9", + "l":"32", + "hsl":"200, 9%, 32%" + } + }, + { + "name":"Brown grey", + "ral":"7013", + "rgb":{ + "r":"71", + "g":"66", + "b":"56", + "rgb":"71, 66, 56" + }, + "hex":"474238", + "brightness":"0.28", + "cmyk":{ + "c":0, + "m":7, + "y":21, + "k":72, + "cmyk":"0, 7, 21, 72" + }, + "hsl":{ + "h":"40", + "s":"12", + "l":"25", + "hsl":"40, 12%, 25%" + } + }, + { + "name":"Slate grey", + "ral":"7015", + "rgb":{ + "r":"61", + "g":"66", + "b":"82", + "rgb":"61, 66, 82" + }, + "hex":"3D4252", + "brightness":"0.24", + "cmyk":{ + "c":26, + "m":20, + "y":0, + "k":68, + "cmyk":"26, 20, 0, 68" + }, + "hsl":{ + "h":"226", + "s":"15", + "l":"28", + "hsl":"226, 15%, 28%" + } + }, + { + "name":"Anthracite grey", + "ral":"7016", + "rgb":{ + "r":"38", + "g":"46", + "b":"56", + "rgb":"38, 46, 56" + }, + "hex":"262E38", + "brightness":"0.15", + "cmyk":{ + "c":32, + "m":18, + "y":0, + "k":78, + "cmyk":"32, 18, 0, 78" + }, + "hsl":{ + "h":"213", + "s":"19", + "l":"18", + "hsl":"213, 19%, 18%" + } + }, + { + "name":"Black grey", + "ral":"7021", + "rgb":{ + "r":"26", + "g":"33", + "b":"41", + "rgb":"26, 33, 41" + }, + "hex":"1A2129", + "brightness":"0.10", + "cmyk":{ + "c":37, + "m":20, + "y":0, + "k":84, + "cmyk":"37, 20, 0, 84" + }, + "hsl":{ + "h":"212", + "s":"22", + "l":"13", + "hsl":"212, 22%, 13%" + } + }, + { + "name":"Umbra grey", + "ral":"7022", + "rgb":{ + "r":"61", + "g":"61", + "b":"59", + "rgb":"61, 61, 59" + }, + "hex":"3D3D3B", + "brightness":"0.24", + "cmyk":{ + "c":0, + "m":0, + "y":3, + "k":76, + "cmyk":"0, 0, 3, 76" + }, + "hsl":{ + "h":"60", + "s":"2", + "l":"24", + "hsl":"60, 2%, 24%" + } + }, + { + "name":"Concrete grey", + "ral":"7023", + "rgb":{ + "r":"122", + "g":"125", + "b":"117", + "rgb":"122, 125, 117" + }, + "hex":"7A7D75", + "brightness":"0.48", + "cmyk":{ + "c":2, + "m":0, + "y":6, + "k":51, + "cmyk":"2, 0, 6, 51" + }, + "hsl":{ + "h":"82", + "s":"3", + "l":"47", + "hsl":"82, 3%, 47%" + } + }, + { + "name":"Graphite grey", + "ral":"7024", + "rgb":{ + "r":"48", + "g":"56", + "b":"69", + "rgb":"48, 56, 69" + }, + "hex":"303845", + "brightness":"0.19", + "cmyk":{ + "c":30, + "m":19, + "y":0, + "k":73, + "cmyk":"30, 19, 0, 73" + }, + "hsl":{ + "h":"217", + "s":"18", + "l":"23", + "hsl":"217, 18%, 23%" + } + }, + { + "name":"Granite grey", + "ral":"7026", + "rgb":{ + "r":"38", + "g":"51", + "b":"56", + "rgb":"38, 51, 56" + }, + "hex":"263338", + "brightness":"0.15", + "cmyk":{ + "c":32, + "m":9, + "y":0, + "k":78, + "cmyk":"32, 9, 0, 78" + }, + "hsl":{ + "h":"197", + "s":"19", + "l":"18", + "hsl":"197, 19%, 18%" + } + }, + { + "name":"Stone grey", + "ral":"7030", + "rgb":{ + "r":"145", + "g":"143", + "b":"135", + "rgb":"145, 143, 135" + }, + "hex":"918F87", + "brightness":"0.57", + "cmyk":{ + "c":0, + "m":1, + "y":7, + "k":43, + "cmyk":"0, 1, 7, 43" + }, + "hsl":{ + "h":"48", + "s":"4", + "l":"55", + "hsl":"48, 4%, 55%" + } + }, + { + "name":"Blue grey", + "ral":"7031", + "rgb":{ + "r":"77", + "g":"92", + "b":"107", + "rgb":"77, 92, 107" + }, + "hex":"4D5C6B", + "brightness":"0.30", + "cmyk":{ + "c":28, + "m":14, + "y":0, + "k":58, + "cmyk":"28, 14, 0, 58" + }, + "hsl":{ + "h":"210", + "s":"16", + "l":"36", + "hsl":"210, 16%, 36%" + } + }, + { + "name":"Pebble grey", + "ral":"7032", + "rgb":{ + "r":"189", + "g":"186", + "b":"171", + "rgb":"189, 186, 171" + }, + "hex":"BDBAAB", + "brightness":"0.74", + "cmyk":{ + "c":0, + "m":2, + "y":10, + "k":26, + "cmyk":"0, 2, 10, 26" + }, + "hsl":{ + "h":"50", + "s":"12", + "l":"71", + "hsl":"50, 12%, 71%" + } + }, + { + "name":"Cement grey", + "ral":"7033", + "rgb":{ + "r":"122", + "g":"130", + "b":"117", + "rgb":"122, 130, 117" + }, + "hex":"7A8275", + "brightness":"0.48", + "cmyk":{ + "c":6, + "m":0, + "y":10, + "k":49, + "cmyk":"6, 0, 10, 49" + }, + "hsl":{ + "h":"97", + "s":"5", + "l":"48", + "hsl":"97, 5%, 48%" + } + }, + { + "name":"Yellow grey", + "ral":"7034", + "rgb":{ + "r":"143", + "g":"135", + "b":"112", + "rgb":"143, 135, 112" + }, + "hex":"8F8770", + "brightness":"0.56", + "cmyk":{ + "c":0, + "m":6, + "y":22, + "k":44, + "cmyk":"0, 6, 22, 44" + }, + "hsl":{ + "h":"45", + "s":"12", + "l":"50", + "hsl":"45, 12%, 50%" + } + }, + { + "name":"Light grey", + "ral":"7035", + "rgb":{ + "r":"212", + "g":"217", + "b":"219", + "rgb":"212, 217, 219" + }, + "hex":"D4D9DB", + "brightness":"0.83", + "cmyk":{ + "c":3, + "m":1, + "y":0, + "k":14, + "cmyk":"3, 1, 0, 14" + }, + "hsl":{ + "h":"197", + "s":"9", + "l":"85", + "hsl":"197, 9%, 85%" + } + }, + { + "name":"Platinum grey", + "ral":"7036", + "rgb":{ + "r":"158", + "g":"150", + "b":"156", + "rgb":"158, 150, 156" + }, + "hex":"9E969C", + "brightness":"0.62", + "cmyk":{ + "c":0, + "m":5, + "y":1, + "k":38, + "cmyk":"0, 5, 1, 38" + }, + "hsl":{ + "h":"315", + "s":"4", + "l":"60", + "hsl":"315, 4%, 60%" + } + }, + { + "name":"Dusty grey", + "ral":"7037", + "rgb":{ + "r":"122", + "g":"125", + "b":"128", + "rgb":"122, 125, 128" + }, + "hex":"7A7D80", + "brightness":"0.48", + "cmyk":{ + "c":5, + "m":2, + "y":0, + "k":50, + "cmyk":"5, 2, 0, 50" + }, + "hsl":{ + "h":"210", + "s":"2", + "l":"49", + "hsl":"210, 2%, 49%" + } + }, + { + "name":"Agate grey", + "ral":"7038", + "rgb":{ + "r":"186", + "g":"189", + "b":"186", + "rgb":"186, 189, 186" + }, + "hex":"BABDBA", + "brightness":"0.73", + "cmyk":{ + "c":2, + "m":0, + "y":2, + "k":26, + "cmyk":"2, 0, 2, 26" + }, + "hsl":{ + "h":"120", + "s":"2", + "l":"74", + "hsl":"120, 2%, 74%" + } + }, + { + "name":"Quartz grey", + "ral":"7039", + "rgb":{ + "r":"97", + "g":"94", + "b":"89", + "rgb":"97, 94, 89" + }, + "hex":"615E59", + "brightness":"0.38", + "cmyk":{ + "c":0, + "m":3, + "y":8, + "k":62, + "cmyk":"0, 3, 8, 62" + }, + "hsl":{ + "h":"38", + "s":"4", + "l":"36", + "hsl":"38, 4%, 36%" + } + }, + { + "name":"Window grey", + "ral":"7040", + "rgb":{ + "r":"158", + "g":"163", + "b":"176", + "rgb":"158, 163, 176" + }, + "hex":"9EA3B0", + "brightness":"0.62", + "cmyk":{ + "c":10, + "m":7, + "y":0, + "k":31, + "cmyk":"10, 7, 0, 31" + }, + "hsl":{ + "h":"223", + "s":"10", + "l":"65", + "hsl":"223, 10%, 65%" + } + }, + { + "name":"Verkehrsgrau A", + "ral":"7042", + "rgb":{ + "r":"143", + "g":"150", + "b":"153", + "rgb":"143, 150, 153" + }, + "hex":"8F9699", + "brightness":"0.56", + "cmyk":{ + "c":7, + "m":2, + "y":0, + "k":40, + "cmyk":"7, 2, 0, 40" + }, + "hsl":{ + "h":"198", + "s":"5", + "l":"58", + "hsl":"198, 5%, 58%" + } + }, + { + "name":"Verkehrsgrau B", + "ral":"7043", + "rgb":{ + "r":"64", + "g":"69", + "b":"69", + "rgb":"64, 69, 69" + }, + "hex":"404545", + "brightness":"0.25", + "cmyk":{ + "c":7, + "m":0, + "y":0, + "k":73, + "cmyk":"7, 0, 0, 73" + }, + "hsl":{ + "h":"180", + "s":"4", + "l":"26", + "hsl":"180, 4%, 26%" + } + }, + { + "name":"Silk grey", + "ral":"7044", + "rgb":{ + "r":"194", + "g":"191", + "b":"184", + "rgb":"194, 191, 184" + }, + "hex":"C2BFB8", + "brightness":"0.76", + "cmyk":{ + "c":0, + "m":2, + "y":5, + "k":24, + "cmyk":"0, 2, 5, 24" + }, + "hsl":{ + "h":"42", + "s":"8", + "l":"74", + "hsl":"42, 8%, 74%" + } + }, + { + "name":"Telegrau 1", + "ral":"7045", + "rgb":{ + "r":"143", + "g":"148", + "b":"158", + "rgb":"143, 148, 158" + }, + "hex":"8F949E", + "brightness":"0.56", + "cmyk":{ + "c":9, + "m":6, + "y":0, + "k":38, + "cmyk":"9, 6, 0, 38" + }, + "hsl":{ + "h":"220", + "s":"7", + "l":"59", + "hsl":"220, 7%, 59%" + } + }, + { + "name":"Telegrau 2", + "ral":"7046", + "rgb":{ + "r":"120", + "g":"130", + "b":"140", + "rgb":"120, 130, 140" + }, + "hex":"78828C", + "brightness":"0.47", + "cmyk":{ + "c":14, + "m":7, + "y":0, + "k":45, + "cmyk":"14, 7, 0, 45" + }, + "hsl":{ + "h":"210", + "s":"8", + "l":"51", + "hsl":"210, 8%, 51%" + } + }, + { + "name":"Telegrau 4", + "ral":"7047", + "rgb":{ + "r":"217", + "g":"214", + "b":"219", + "rgb":"217, 214, 219" + }, + "hex":"D9D6DB", + "brightness":"0.85", + "cmyk":{ + "c":1, + "m":2, + "y":0, + "k":14, + "cmyk":"1, 2, 0, 14" + }, + "hsl":{ + "h":"276", + "s":"6", + "l":"85", + "hsl":"276, 6%, 85%" + } + }, + { + "name":"Green brown", + "ral":"8000", + "rgb":{ + "r":"125", + "g":"92", + "b":"56", + "rgb":"125, 92, 56" + }, + "hex":"7D5C38", + "brightness":"0.49", + "cmyk":{ + "c":0, + "m":26, + "y":55, + "k":51, + "cmyk":"0, 26, 55, 51" + }, + "hsl":{ + "h":"31", + "s":"38", + "l":"35", + "hsl":"31, 38%, 35%" + } + }, + { + "name":"Ocher brown", + "ral":"8001", + "rgb":{ + "r":"145", + "g":"82", + "b":"46", + "rgb":"145, 82, 46" + }, + "hex":"91522E", + "brightness":"0.57", + "cmyk":{ + "c":0, + "m":43, + "y":68, + "k":43, + "cmyk":"0, 43, 68, 43" + }, + "hsl":{ + "h":"22", + "s":"52", + "l":"37", + "hsl":"22, 52%, 37%" + } + }, + { + "name":"Signal brown", + "ral":"8002", + "rgb":{ + "r":"110", + "g":"59", + "b":"58", + "rgb":"110, 59, 58" + }, + "hex":"6E3B3A", + "brightness":"0.43", + "cmyk":{ + "c":0, + "m":46, + "y":47, + "k":57, + "cmyk":"0, 46, 47, 57" + }, + "hsl":{ + "h":"1", + "s":"31", + "l":"33", + "hsl":"1, 31%, 33%" + } + }, + { + "name":"Clay brown", + "ral":"8003", + "rgb":{ + "r":"115", + "g":"59", + "b":"36", + "rgb":"115, 59, 36" + }, + "hex":"733B24", + "brightness":"0.45", + "cmyk":{ + "c":0, + "m":49, + "y":69, + "k":55, + "cmyk":"0, 49, 69, 55" + }, + "hsl":{ + "h":"17", + "s":"52", + "l":"30", + "hsl":"17, 52%, 30%" + } + }, + { + "name":"Copper brown", + "ral":"8004", + "rgb":{ + "r":"133", + "g":"56", + "b":"43", + "rgb":"133, 56, 43" + }, + "hex":"85382B", + "brightness":"0.52", + "cmyk":{ + "c":0, + "m":58, + "y":68, + "k":48, + "cmyk":"0, 58, 68, 48" + }, + "hsl":{ + "h":"9", + "s":"51", + "l":"35", + "hsl":"9, 51%, 35%" + } + }, + { + "name":"Fawn brown", + "ral":"8007", + "rgb":{ + "r":"94", + "g":"51", + "b":"33", + "rgb":"94, 51, 33" + }, + "hex":"5E3321", + "brightness":"0.37", + "cmyk":{ + "c":0, + "m":46, + "y":65, + "k":63, + "cmyk":"0, 46, 65, 63" + }, + "hsl":{ + "h":"18", + "s":"48", + "l":"25", + "hsl":"18, 48%, 25%" + } + }, + { + "name":"Olive brown", + "ral":"8008", + "rgb":{ + "r":"99", + "g":"61", + "b":"36", + "rgb":"99, 61, 36" + }, + "hex":"633D24", + "brightness":"0.39", + "cmyk":{ + "c":0, + "m":38, + "y":64, + "k":61, + "cmyk":"0, 38, 64, 61" + }, + "hsl":{ + "h":"24", + "s":"47", + "l":"26", + "hsl":"24, 47%, 26%" + } + }, + { + "name":"Nut brown", + "ral":"8011", + "rgb":{ + "r":"71", + "g":"38", + "b":"28", + "rgb":"71, 38, 28" + }, + "hex":"47261C", + "brightness":"0.28", + "cmyk":{ + "c":0, + "m":46, + "y":61, + "k":72, + "cmyk":"0, 46, 61, 72" + }, + "hsl":{ + "h":"14", + "s":"43", + "l":"19", + "hsl":"14, 43%, 19%" + } + }, + { + "name":"Red brown", + "ral":"8012", + "rgb":{ + "r":"84", + "g":"31", + "b":"31", + "rgb":"84, 31, 31" + }, + "hex":"541F1F", + "brightness":"0.33", + "cmyk":{ + "c":0, + "m":63, + "y":63, + "k":67, + "cmyk":"0, 63, 63, 67" + }, + "hsl":{ + "h":"0", + "s":"46", + "l":"23", + "hsl":"0, 46%, 23%" + } + }, + { + "name":"Sepia brown", + "ral":"8014", + "rgb":{ + "r":"56", + "g":"38", + "b":"28", + "rgb":"56, 38, 28" + }, + "hex":"38261C", + "brightness":"0.22", + "cmyk":{ + "c":0, + "m":32, + "y":50, + "k":78, + "cmyk":"0, 32, 50, 78" + }, + "hsl":{ + "h":"21", + "s":"33", + "l":"16", + "hsl":"21, 33%, 16%" + } + }, + { + "name":"Chestnut brown", + "ral":"8015", + "rgb":{ + "r":"77", + "g":"31", + "b":"28", + "rgb":"77, 31, 28" + }, + "hex":"4D1F1C", + "brightness":"0.30", + "cmyk":{ + "c":0, + "m":60, + "y":64, + "k":70, + "cmyk":"0, 60, 64, 70" + }, + "hsl":{ + "h":"4", + "s":"47", + "l":"21", + "hsl":"4, 47%, 21%" + } + }, + { + "name":"Mahogany brown", + "ral":"8016", + "rgb":{ + "r":"61", + "g":"31", + "b":"28", + "rgb":"61, 31, 28" + }, + "hex":"3D1F1C", + "brightness":"0.24", + "cmyk":{ + "c":0, + "m":49, + "y":54, + "k":76, + "cmyk":"0, 49, 54, 76" + }, + "hsl":{ + "h":"5", + "s":"37", + "l":"17", + "hsl":"5, 37%, 17%" + } + }, + { + "name":"Chocolate brown", + "ral":"8017", + "rgb":{ + "r":"46", + "g":"28", + "b":"28", + "rgb":"46, 28, 28" + }, + "hex":"2E1C1C", + "brightness":"0.18", + "cmyk":{ + "c":0, + "m":39, + "y":39, + "k":82, + "cmyk":"0, 39, 39, 82" + }, + "hsl":{ + "h":"0", + "s":"24", + "l":"15", + "hsl":"0, 24%, 15%" + } + }, + { + "name":"Grey brown", + "ral":"8019", + "rgb":{ + "r":"43", + "g":"38", + "b":"41", + "rgb":"43, 38, 41" + }, + "hex":"2B2629", + "brightness":"0.17", + "cmyk":{ + "c":0, + "m":12, + "y":5, + "k":83, + "cmyk":"0, 12, 5, 83" + }, + "hsl":{ + "h":"324", + "s":"6", + "l":"16", + "hsl":"324, 6%, 16%" + } + }, + { + "name":"Black brown", + "ral":"8022", + "rgb":{ + "r":"13", + "g":"8", + "b":"13", + "rgb":"13, 8, 13" + }, + "hex":"0D080D", + "brightness":"0.05", + "cmyk":{ + "c":0, + "m":38, + "y":0, + "k":95, + "cmyk":"0, 38, 0, 95" + }, + "hsl":{ + "h":"300", + "s":"24", + "l":"4", + "hsl":"300, 24%, 4%" + } + }, + { + "name":"Orange brown", + "ral":"8023", + "rgb":{ + "r":"156", + "g":"69", + "b":"41", + "rgb":"156, 69, 41" + }, + "hex":"9C4529", + "brightness":"0.61", + "cmyk":{ + "c":0, + "m":56, + "y":74, + "k":39, + "cmyk":"0, 56, 74, 39" + }, + "hsl":{ + "h":"15", + "s":"58", + "l":"39", + "hsl":"15, 58%, 39%" + } + }, + { + "name":"Beige brown", + "ral":"8024", + "rgb":{ + "r":"110", + "g":"64", + "b":"48", + "rgb":"110, 64, 48" + }, + "hex":"6E4030", + "brightness":"0.43", + "cmyk":{ + "c":0, + "m":42, + "y":56, + "k":57, + "cmyk":"0, 42, 56, 57" + }, + "hsl":{ + "h":"15", + "s":"39", + "l":"31", + "hsl":"15, 39%, 31%" + } + }, + { + "name":"Pale brown", + "ral":"8025", + "rgb":{ + "r":"102", + "g":"74", + "b":"61", + "rgb":"102, 74, 61" + }, + "hex":"664A3D", + "brightness":"0.40", + "cmyk":{ + "c":0, + "m":27, + "y":40, + "k":60, + "cmyk":"0, 27, 40, 60" + }, + "hsl":{ + "h":"19", + "s":"25", + "l":"32", + "hsl":"19, 25%, 32%" + } + }, + { + "name":"Terra brown", + "ral":"8028", + "rgb":{ + "r":"64", + "g":"46", + "b":"33", + "rgb":"64, 46, 33" + }, + "hex":"402E21", + "brightness":"0.25", + "cmyk":{ + "c":0, + "m":28, + "y":48, + "k":75, + "cmyk":"0, 28, 48, 75" + }, + "hsl":{ + "h":"25", + "s":"32", + "l":"19", + "hsl":"25, 32%, 19%" + } + }, + { + "name":"Cream", + "ral":"9001", + "rgb":{ + "r":"252", + "g":"252", + "b":"240", + "rgb":"252, 252, 240" + }, + "hex":"FCFCF0", + "brightness":"0.99", + "cmyk":{ + "c":0, + "m":0, + "y":5, + "k":1, + "cmyk":"0, 0, 5, 1" + }, + "hsl":{ + "h":"60", + "s":"67", + "l":"96", + "hsl":"60, 67%, 96%" + } + }, + { + "name":"Signal white", + "ral":"9003", + "rgb":{ + "r":"255", + "g":"255", + "b":"255", + "rgb":"255, 255, 255" + }, + "hex":"FFFFFF", + "brightness":"1.00", + "cmyk":{ + "c":0, + "m":0, + "y":0, + "k":0, + "cmyk":"0, 0, 0, 0" + }, + "hsl":{ + "h":"0", + "s":"0", + "l":"100", + "hsl":"0, 0%, 100%" + } + }, + { + "name":"Signal black", + "ral":"9004", + "rgb":{ + "r":"28", + "g":"28", + "b":"33", + "rgb":"28, 28, 33" + }, + "hex":"1C1C21", + "brightness":"0.11", + "cmyk":{ + "c":15, + "m":15, + "y":0, + "k":87, + "cmyk":"15, 15, 0, 87" + }, + "hsl":{ + "h":"240", + "s":"8", + "l":"12", + "hsl":"240, 8%, 12%" + } + }, + { + "name":"Jet black", + "ral":"9005", + "rgb":{ + "r":"3", + "g":"5", + "b":"10", + "rgb":"3, 5, 10" + }, + "hex":"03050A", + "brightness":"0.01", + "cmyk":{ + "c":70, + "m":50, + "y":0, + "k":96, + "cmyk":"70, 50, 0, 96" + }, + "hsl":{ + "h":"223", + "s":"54", + "l":"3", + "hsl":"223, 54%, 3%" + } + }, + { + "name":"White aluminium", + "ral":"9006", + "rgb":{ + "r":"166", + "g":"171", + "b":"181", + "rgb":"166, 171, 181" + }, + "hex":"A6ABB5", + "brightness":"0.65", + "cmyk":{ + "c":8, + "m":6, + "y":0, + "k":29, + "cmyk":"8, 6, 0, 29" + }, + "hsl":{ + "h":"220", + "s":"9", + "l":"68", + "hsl":"220, 9%, 68%" + } + }, + { + "name":"Grey aluminium", + "ral":"9007", + "rgb":{ + "r":"125", + "g":"122", + "b":"120", + "rgb":"125, 122, 120" + }, + "hex":"7D7A78", + "brightness":"0.49", + "cmyk":{ + "c":0, + "m":2, + "y":4, + "k":51, + "cmyk":"0, 2, 4, 51" + }, + "hsl":{ + "h":"24", + "s":"2", + "l":"48", + "hsl":"24, 2%, 48%" + } + }, + { + "name":"Pure white", + "ral":"9010", + "rgb":{ + "r":"250", + "g":"255", + "b":"255", + "rgb":"250, 255, 255" + }, + "hex":"FAFFFF", + "brightness":"0.98", + "cmyk":{ + "c":2, + "m":0, + "y":0, + "k":0, + "cmyk":"2, 0, 0, 0" + }, + "hsl":{ + "h":"180", + "s":"100", + "l":"99", + "hsl":"180, 100%, 99%" + } + }, + { + "name":"Graphite black", + "ral":"9011", + "rgb":{ + "r":"13", + "g":"18", + "b":"26", + "rgb":"13, 18, 26" + }, + "hex":"0D121A", + "brightness":"0.05", + "cmyk":{ + "c":50, + "m":31, + "y":0, + "k":90, + "cmyk":"50, 31, 0, 90" + }, + "hsl":{ + "h":"217", + "s":"33", + "l":"8", + "hsl":"217, 33%, 8%" + } + }, + { + "name":"Traffic white", + "ral":"9016", + "rgb":{ + "r":"252", + "g":"255", + "b":"255", + "rgb":"252, 255, 255" + }, + "hex":"FCFFFF", + "brightness":"0.99", + "cmyk":{ + "c":1, + "m":0, + "y":0, + "k":0, + "cmyk":"1, 0, 0, 0" + }, + "hsl":{ + "h":"180", + "s":"100", + "l":"99", + "hsl":"180, 100%, 99%" + } + }, + { + "name":"Traffic black", + "ral":"9017", + "rgb":{ + "r":"20", + "g":"23", + "b":"28", + "rgb":"20, 23, 28" + }, + "hex":"14171C", + "brightness":"0.08", + "cmyk":{ + "c":29, + "m":18, + "y":0, + "k":89, + "cmyk":"29, 18, 0, 89" + }, + "hsl":{ + "h":"218", + "s":"17", + "l":"9", + "hsl":"218, 17%, 9%" + } + }, + { + "name":"Papyrus white", + "ral":"9018", + "rgb":{ + "r":"219", + "g":"227", + "b":"222", + "rgb":"219, 227, 222" + }, + "hex":"DBE3DE", + "brightness":"0.86", + "cmyk":{ + "c":4, + "m":0, + "y":2, + "k":11, + "cmyk":"4, 0, 2, 11" + }, + "hsl":{ + "h":"143", + "s":"12", + "l":"87", + "hsl":"143, 12%, 87%" + } + } +] \ No newline at end of file diff --git a/tools/data/ral_palettes/colourness/outline.json b/tools/data/ral_palettes/colourness/outline.json new file mode 100644 index 0000000..9e5f8ee --- /dev/null +++ b/tools/data/ral_palettes/colourness/outline.json @@ -0,0 +1,79 @@ +{ + "dropRootKeys": true, + "special-values-mapping": { + "null": "null", + "empty": "", + "true": "true", + "false": "false" + }, + "map": [ + [ + "name", + "name" + ], + [ + "ral", + "ral" + ], + [ + "rgb_r", + "rgb.r" + ], + [ + "rgb_g", + "rgb.g" + ], + [ + "rgb_b", + "rgb.b" + ], + [ + "rgb_rgb", + "rgb.rgb" + ], + [ + "hex", + "hex" + ], + [ + "brightness", + "brightness" + ], + [ + "cmyk_c", + "cmyk.c" + ], + [ + "cmyk_m", + "cmyk.m" + ], + [ + "cmyk_y", + "cmyk.y" + ], + [ + "cmyk_k", + "cmyk.k" + ], + [ + "cmyk_cmyk", + "cmyk.cmyk" + ], + [ + "hsl_h", + "hsl.h" + ], + [ + "hsl_s", + "hsl.s" + ], + [ + "hsl_l", + "hsl.l" + ], + [ + "hsl_hsl", + "hsl.hsl" + ] + ] +} \ No newline at end of file diff --git a/tools/data/ral_palettes/ral-colors/1.csv b/tools/data/ral_palettes/ral-colors/1.csv new file mode 100644 index 0000000..45a9459 --- /dev/null +++ b/tools/data/ral_palettes/ral-colors/1.csv @@ -0,0 +1,71 @@ +description,groups_0_id,groups_0_rgb_r,groups_0_rgb_g,groups_0_rgb_b,groups_1_id,groups_1_rgb_r,groups_1_rgb_g,groups_1_rgb_b,groups_2_id,groups_2_rgb_r,groups_2_rgb_g,groups_2_rgb_b,groups_3_id,groups_3_rgb_r,groups_3_rgb_g,groups_3_rgb_b,groups_4_id,groups_4_rgb_r,groups_4_rgb_g,groups_4_rgb_b,groups_5_id,groups_5_rgb_r,groups_5_rgb_g,groups_5_rgb_b,groups_6_id,groups_6_rgb_r,groups_6_rgb_g,groups_6_rgb_b +,1,230,231,230,2,222,221,213,3,200,198,190,4,198,199,196,5,201,204,198,6,200,200,199,M,160,162,164 +,1,237,237,234,2,242,241,236,3,240,238,229,4,233,225,212,5,226,217,198,6,234,225,206,M,143,141,135 +,1,242,237,187,2,241,238,195,3,240,238,205,4,248,240,207,5,237,228,188,6,251,229,176,M,171,171,144 +,1,250,211,169,2,254,218,166,3,254,227,193,4,253,223,190,5,248,228,200,6,229,210,182,M,176,158,126 +,1,247,239,233,2,249,235,227,3,238,225,215,4,251,227,212,5,250,232,220,6,248,223,215,M,171,151,138 +,1,227,225,236,2,231,226,232,3,237,232,232,4,238,225,226,5,239,228,224,6,236,228,233,M,173,166,181 +,1,199,201,208,2,166,173,189,3,186,200,218,4,206,219,236,5,195,198,214,6,198,197,214,M,167,168,185 +,1,174,188,198,2,185,205,221,3,199,219,235,4,201,225,236,5,199,221,225,6,219,233,235,M,150,164,169 +,1,165,218,223,2,185,230,242,3,192,222,225,4,189,218,215,5,212,229,231,6,163,193,191,M,146,180,178 +,1,207,198,178,2,236,231,210,3,227,228,217,4,214,230,227,5,216,232,224,6,216,233,214,M,165,169,155 +,1,102,184,114,2,51,154,81,3,0,111,60,4,127,255,127,5,0,255,0,6,0,128,0,M,0,127,62 +,1,187,219,154,2,150,200,108,3,125,179,68,4,95,151,58,5,57,105,56,6,54,92,48,M,98,167,78 +,1,220,214,145,2,170,175,102,3,147,151,85,4,126,126,66,5,93,109,60,6,79,109,53,M,98,116,57 +,1,238,230,165,2,232,222,111,3,191,183,0,4,164,165,65,5,145,145,56,6,105,101,44,M,174,167,59 +,1,243,233,180,2,241,228,131,3,243,212,70,4,232,192,31,5,222,176,45,6,239,180,22,M,184,148,79 +,1,255,222,131,2,250,204,57,3,244,189,22,4,235,177,0,5,246,182,0,6,254,196,63,M,203,148,55 +,1,253,225,147,2,240,211,145,3,225,190,120,4,214,174,95,5,220,161,64,6,208,151,60,M,178,135,64 +,1,216,155,80,2,191,133,59,3,216,169,96,4,204,146,27,5,230,176,62,6,252,171,4,M,184,126,50 +,1,245,214,180,2,235,194,151,3,223,171,115,4,208,147,85,5,186,124,67,6,142,91,45,M,184,125,79 +,1,210,169,108,2,174,129,81,3,185,134,76,4,160,103,53,5,127,78,46,6,110,68,40,M,185,115,30 +,1,168,104,89,2,142,75,53,3,121,78,62,4,92,59,45,5,80,49,42,6,70,50,46,M,139,89,67 +,1,190,164,169,2,164,140,146,3,127,84,82,4,104,61,64,5,79,42,45,6,79,43,49,M,83,53,59 +,1,157,49,31,2,167,63,50,3,162,71,51,4,129,48,33,5,120,49,34,6,102,50,43,M,88,47,42 +,1,224,125,41,2,217,117,30,3,198,98,23,4,183,86,41,5,154,79,44,6,145,80,51,M,164,86,51 +,1,255,174,71,2,255,155,56,3,255,144,29,4,230,131,22,5,212,120,31,6,205,108,16,M,180,122,60 +,1,255,155,41,2,255,146,4,3,250,132,26,4,226,113,33,5,242,120,47,6,234,106,36,M,167,85,42 +,1,235,119,63,2,227,97,37,3,222,84,17,4,216,81,28,5,216,72,15,6,205,94,42,M,191,99,59 +,1,237,129,101,2,234,115,79,3,228,100,64,4,220,93,56,5,210,85,53,6,208,93,66,M,171,73,36 +,1,237,174,154,2,242,157,134,3,233,138,108,4,228,100,67,5,204,87,56,6,191,80,46,M,157,75,50 +,1,242,194,182,2,236,153,139,3,228,128,116,4,221,90,76,5,213,67,60,6,190,58,36,M,168,76,69 +,1,202,56,60,2,211,76,73,3,186,60,62,4,155,41,41,5,166,49,41,6,185,53,37,M,155,37,44 +,1,244,199,202,2,237,165,170,3,224,122,129,4,200,88,98,5,178,49,47,6,187,32,29,M,167,22,22 +,1,239,163,167,2,227,127,137,3,223,99,104,4,211,82,84,5,168,55,59,6,139,27,40,M,174,54,59 +,1,240,179,193,2,230,139,157,3,222,115,131,4,202,77,103,5,172,45,76,6,156,34,63,M,177,79,93 +,1,245,202,201,2,245,192,190,3,238,186,188,4,238,165,177,5,233,144,158,6,218,108,130,M,168,117,121 +,1,243,207,208,2,247,202,195,3,232,154,146,4,195,123,119,5,190,127,140,6,210,158,168,M,167,125,136 +,1,236,200,220,2,224,165,203,3,213,132,177,4,196,99,141,5,186,72,119,6,154,59,106,M,140,61,113 +,1,239,210,223,2,232,186,210,3,220,165,192,4,186,114,147,5,160,78,111,6,146,82,110,M,158,88,139 +,1,152,68,77,2,143,63,78,3,121,54,68,4,124,47,75,5,102,37,61,6,97,41,74,M,92,45,58 +,1,212,193,215,2,190,161,193,3,128,95,131,4,150,107,152,5,129,83,122,6,86,44,81,M,86,47,78 +,1,224,209,217,2,208,187,201,3,178,146,168,4,156,116,136,5,141,97,119,6,120,76,94,M,167,136,144 +,1,204,188,199,2,176,156,173,3,140,111,128,4,119,84,96,5,133,114,127,6,125,110,127,M,165,146,164 +,1,209,206,232,2,195,191,225,3,173,173,221,4,155,154,207,5,128,120,179,6,121,104,155,M,107,88,154 +,1,194,207,230,2,188,199,224,3,167,178,209,4,105,116,154,5,65,80,110,6,36,49,84,M,99,108,134 +,1,102,109,155,2,66,66,118,3,42,54,107,4,39,47,91,5,20,45,88,6,9,59,122,M,41,56,98 +,1,110,143,171,2,97,122,148,3,109,149,185,4,137,178,216,5,71,119,174,6,67,105,153,M,120,151,181 +,1,52,104,138,2,96,146,172,3,100,129,143,4,58,90,106,5,20,53,75,6,30,45,63,M,9,50,70 +,1,81,163,211,2,68,107,142,3,46,78,111,4,45,74,110,5,31,52,84,6,25,54,84,M,22,48,76 +,1,73,160,197,2,0,135,181,3,0,123,174,4,0,92,140,5,0,84,138,6,0,79,125,M,0,78,135 +,1,100,181,214,2,0,119,160,3,0,108,151,4,0,85,119,5,29,91,120,6,10,73,98,M,0,113,157 +,1,0,148,176,2,11,141,168,3,81,165,184,4,63,184,207,5,108,195,212,6,138,200,213,M,85,151,169 +,1,138,211,234,2,151,218,239,3,143,197,214,4,105,187,211,5,91,185,213,6,78,194,230,M,116,167,184 +,1,114,170,186,2,51,143,164,3,23,113,133,4,38,118,141,5,0,106,133,6,0,91,116,M,14,69,92 +,1,63,191,203,2,0,162,173,3,0,131,142,4,0,108,123,5,0,83,95,6,0,81,96,M,0,103,115 +,1,120,209,205,2,0,170,167,3,5,138,139,4,0,116,118,5,0,92,96,6,12,71,70,M,0,104,107 +,1,194,227,222,2,164,226,219,3,134,211,212,4,88,190,193,5,51,147,160,6,25,124,134,M,26,148,154 +,1,203,231,226,2,152,211,211,3,125,184,186,4,123,185,180,5,121,172,172,6,70,135,127,M,98,162,147 +,1,197,220,206,2,179,214,201,3,149,195,178,4,73,133,116,5,0,111,91,6,0,93,78,M,58,111,95 +,1,191,215,201,2,143,180,160,3,61,116,97,4,22,66,52,5,51,84,73,6,46,60,59,M,23,55,45 +,1,213,227,202,2,184,205,170,3,176,190,155,4,139,155,122,5,109,126,92,6,74,100,72,M,51,75,46 +,1,152,157,132,2,169,168,143,3,122,117,90,4,129,122,102,5,180,175,159,6,126,130,115,M,141,136,100 +,1,233,222,204,2,231,214,185,3,221,196,154,4,209,177,134,5,163,142,121,6,116,105,92,M,178,160,116 +,1,62,72,73,2,59,65,71,3,49,53,56,4,48,47,50,5,33,34,36,6,33,35,45,M,34,31,29 +,1,151,157,162,2,138,148,153,3,121,136,142,4,94,107,115,5,81,89,93,6,57,65,70,M,64,70,73 +,1,197,200,202,2,169,174,178,3,141,147,149,4,125,133,137,5,80,85,92,6,68,73,81,M,146,145,145 +,1,186,188,186,2,164,167,165,3,141,146,145,4,108,112,109,5,81,85,84,6,87,94,96,M,130,129,127 +,1,231,227,216,2,215,213,204,3,184,180,168,4,128,128,119,5,90,93,84,6,71,65,53,M,73,68,64 +,1,195,194,185,2,177,177,170,3,166,166,160,4,145,141,133,5,107,103,96,6,76,75,70,M,98,94,89 +,1,216,218,219,2,207,210,213,3,193,194,196,4,154,154,155,5,122,122,121,6,91,95,95,M,164,160,159 +,1,211,208,208,2,150,147,146,3,99,97,100,4,81,77,78,5,74,71,71,6,61,55,55,M,77,71,71 diff --git a/tools/data/ral_palettes/ral-colors/README.md b/tools/data/ral_palettes/ral-colors/README.md new file mode 100644 index 0000000..e76a4a7 --- /dev/null +++ b/tools/data/ral_palettes/ral-colors/README.md @@ -0,0 +1,41 @@ +# Thanks + + + +## Used Tools + +1. + +2. + +## Actions + +Clone to local. + +```sh +python -m venv venv +``` + +```sh +.\venv\Scripts\activate +``` + +```sh +pip install -r requirements.txt +``` + +```sh +pip install jsmin +``` + +```sh +cd .project_flutter_image_converter/ral_palettes/ral-colors +``` + +```sh +python ../../../gen_outline.py -d classic.json -o outline.json +``` + +```sh +python ../../../json2csv.py classic.json -k outline.json -o 1.csv +``` diff --git a/tools/data/ral_palettes/ral-colors/classic.js b/tools/data/ral_palettes/ral-colors/classic.js new file mode 100644 index 0000000..e898d8f --- /dev/null +++ b/tools/data/ral_palettes/ral-colors/classic.js @@ -0,0 +1,217 @@ +export const classic = { + RAL1000: { description: 'Green beige', HEX: '#CDBA88', rgb: { r: 205, g: 186, b: 136 }, group: 'yellow and beige' }, + RAL1001: { description: 'Beige', HEX: '#D0B084', rgb: { r: 208, g: 176, b: 132 }, group: 'yellow and beige' }, + RAL1002: { description: 'Sand yellow', HEX: '#D2AA6D', rgb: { r: 210, g: 170, b: 109 }, group: 'yellow and beige' }, + RAL1003: { description: 'Signal yellow', HEX: '#F9A800', rgb: { r: 249, g: 168, b: 0 }, group: 'yellow and beige' }, + RAL1004: { description: 'Golden yellow', HEX: '#E49E00', rgb: { r: 228, g: 158, b: 0 }, group: 'yellow and beige' }, + RAL1005: { description: 'Honey yellow', HEX: '#CB8E00', rgb: { r: 203, g: 142, b: 0 }, group: 'yellow and beige' }, + RAL1006: { description: 'Maize yellow', HEX: '#E29000', rgb: { r: 226, g: 144, b: 0 }, group: 'yellow and beige' }, + RAL1007: { description: 'Daffodil yellow', HEX: '#E88C00', rgb: { r: 232, g: 140, b: 0 }, group: 'yellow and beige' }, + RAL1011: { description: 'Brown beige', HEX: '#AF804F', rgb: { r: 175, g: 128, b: 79 }, group: 'yellow and beige'}, + RAL1012: { description: 'Lemon yellow', HEX: '#DDAF27', rgb: { r: 221, g: 175, b: 39 }, group: 'yellow and beige' }, + RAL1013: { description: 'Oyster white', HEX: '#E3D9C6', rgb: { r: 227, g: 217, b: 198 }, group: 'yellow and beige' }, + RAL1014: { description: 'Ivory', HEX: '#DDC49A', rgb: { r: 221, g: 196, b: 154 }, group: 'yellow and beige' }, + RAL1015: { description: 'Light ivory', HEX: '#E6D2B5', rgb: { r: 230, g: 210, b: 181 }, group: 'yellow and beige' }, + RAL1016: { description: 'Sulfur yellow', HEX: '#F1DD38', rgb: { r: 241, g: 221, b: 56 }, group: 'yellow and beige' }, + RAL1017: { description: 'Saffron yellow', HEX: '#F6A950', rgb: { r: 246, g: 169, b: 80 }, group: 'yellow and beige' }, + RAL1018: { description: 'Zinc yellow', HEX: '#FACA30', rgb: { r: 250, g: 202, b: 48 }, group: 'yellow and beige' }, + RAL1019: { description: 'Grey beige', HEX: '#A48F7A', rgb: { r: 164, g: 143, b: 122 }, group: 'yellow and beige'}, + RAL1020: { description: 'Olive yellow', HEX: '#A08F65', rgb: { r: 160, g: 143, b: 101 }, group: 'yellow and beige' }, + RAL1021: { description: 'Colza yellow', HEX: '#F6B600', rgb: { r: 246, g: 182, b: 0 }, group: 'yellow and beige' }, + RAL1023: { description: 'Traffic yellow', HEX: '#F7B500', rgb: { r: 247, g: 181, b: 0 }, group: 'yellow and beige' }, + RAL1024: { description: 'Ochre yellow', HEX: '#BA8F4C', rgb: { r: 186, g: 143, b: 76 }, group: 'yellow and beige' }, + RAL1026: { description: 'Luminous yellow', HEX: '#FFFF00', rgb: { r: 255, g: 255, b: 0 }, group: 'yellow and beige' }, + RAL1027: { description: 'Curry', HEX: '#A77F0E', rgb: { r: 167, g: 127, b: 14 }, group: 'yellow and beige' }, + RAL1028: { description: 'Melon yellow', HEX: '#FF9B00', rgb: { r: 255, g: 155, b: 0 }, group: 'yellow and beige' }, + RAL1032: { description: 'Broom yellow', HEX: '#E2A300', rgb: { r: 226, g: 163, b: 0 }, group: 'yellow and beige' }, + RAL1033: { description: 'Dahlia yellow', HEX: '#F99A1C', rgb: { r: 249, g: 154, b: 28 }, group: 'yellow and beige' }, + RAL1034: { description: 'Pastel yellow', HEX: '#EB9C52', rgb: { r: 235, g: 156, b: 82 }, group: 'yellow and beige' }, + RAL1035: { description: 'Pearl beige', HEX: '#908370', rgb: { r: 144, g: 131, b: 112 }, group: 'yellow and beige' }, + RAL1036: { description: 'Pearl gold', HEX: '#80643F', rgb: { r: 128, g: 100, b: 63 }, group: 'yellow and beige' }, + RAL1037: { description: 'Sun yellow', HEX: '#F09200', rgb: { r: 240, g: 146, b: 0 }, group: 'yellow and beige' }, + RAL2000: { description: 'Yellow orange', HEX: '#DD7907', rgb: { r: 213, g: 111, b: 0 }, group: 'orange' }, + RAL2001: { description: 'Red orange', HEX: '#BE4E20', rgb: { r: 182, g: 72, b: 28 }, group: 'orange' }, + RAL2002: { description: 'Vermilion', HEX: '#C63927', rgb: { r: 188, g: 56, b: 35 }, group: 'orange' }, + RAL2003: { description: 'Pastel orange', HEX: '#FA842B', rgb: { r: 241, g: 120, b: 41 }, group: 'orange' }, + RAL2004: { description: 'Pure orange', HEX: '#E75B12', rgb: { r: 222, g: 83, b: 6 }, group: 'orange' }, + RAL2005: { description: 'Luminous orange', HEX: '#FF2300', rgb: { r: 255, g: 75, b: 17 }, group: 'orange' }, + RAL2007: { description: 'Luminous bright orange', HEX: '#FFA421', rgb: { r: 255, g: 183, b: 0 }, group: 'orange' }, + RAL2008: { description: 'Bright red orange', HEX: '#F3752C', rgb: { r: 232, g: 107, b: 34 }, group: 'orange' }, + RAL2009: { description: 'Traffic orange', HEX: '#E15501', rgb: { r: 218, g: 83, b: 10 }, group: 'orange' }, + RAL2010: { description: 'Signal orange', HEX: '#D4652F', rgb: { r: 204, g: 93, b: 41 }, group: 'orange' }, + RAL2011: { description: 'Deep orange', HEX: '#EC7C25', rgb: { r: 221, g: 110, b: 15 }, group: 'orange' }, + RAL2012: { description: 'Salmon orange', HEX: '#DB6A50', rgb: { r: 209, g: 101, b: 78 }, group: 'orange' }, + RAL2013: { description: 'Pearl orange', HEX: '#954527', rgb: { r: 143, g: 62, b: 38 }, group: 'orange' }, + RAL2017: { description: 'RAL orange', HEX: '#FA4402', rgb: { r: 250, g: 68, b: 2 }, group: 'orange' }, + RAL3000: { description: 'Flame red', HEX: '#AB2524', rgb: { r: 164, g: 40, b: 33 }, group: 'red' }, + RAL3001: { description: 'Signal red', HEX: '#A02128', rgb: { r: 152, g: 35, b: 35 }, group: 'red' }, + RAL3002: { description: 'Carmine red', HEX: '#A1232B', rgb: { r: 152, g: 34, b: 34 }, group: 'red' }, + RAL3003: { description: 'Ruby red', HEX: '#8D1D2C', rgb: { r: 132, g: 25, b: 34 }, group: 'red' }, + RAL3004: { description: 'Purple red', HEX: '#701F29', rgb: { r: 105, g: 27, b: 35 }, group: 'red' }, + RAL3005: { description: 'Wine red', HEX: '#5E2028', rgb: { r: 88 , g: 24, b: 31 }, group: 'red' }, + RAL3007: { description: 'Black red', HEX: '#402225', rgb: { r: 61 , g: 32, b: 34 }, group: 'red' }, + RAL3009: { description: 'Oxide red', HEX: '#703731', rgb: { r: 102, g: 48, b: 41 }, group: 'red' }, + RAL3011: { description: 'Brown red', HEX: '#7E292C', rgb: { r: 119, g: 36, b: 36 }, group: 'red' }, + RAL3012: { description: 'Beige red', HEX: '#CB8D73', rgb: { r: 194, g: 133, b: 109 }, group: 'red' }, + RAL3013: { description: 'Tomato red', HEX: '#9C322E', rgb: { r: 149, g: 46, b: 37 }, group: 'red' }, + RAL3014: { description: 'Antique pink', HEX: '#D47479', rgb: { r: 201, g: 115, b: 117 }, group: 'red' }, + RAL3015: { description: 'Light pink', HEX: '#E1A6AD', rgb: { r: 215, g: 160, b: 166 }, group: 'red' }, + RAL3016: { description: 'Coral red', HEX: '#AC4034', rgb: { r: 164, g: 60, b: 48 }, group: 'red' }, + RAL3017: { description: 'Rose', HEX: '#D3545F', rgb: { r: 200, g: 84, b: 93 }, group: 'red' }, + RAL3018: { description: 'Strawberry red', HEX: '#D14152', rgb: { r: 196, g: 62, b: 74 }, group: 'red' }, + RAL3020: { description: 'Traffic red', HEX: '#C1121C', rgb: { r: 184, g: 29, b: 19 }, group: 'red' }, + RAL3022: { description: 'Salmon pink', HEX: '#D56D56', rgb: { r: 204, g: 105, b: 85 }, group: 'red' }, + RAL3024: { description: 'Luminous red', HEX: '#F70000', rgb: { r: 255, g: 42, b: 36 }, group: 'red' }, + RAL3026: { description: 'Luminous bright red', HEX: '#FF0000', rgb: { r: 255, g: 38, b: 32 }, group: 'red' }, + RAL3027: { description: 'Raspberry red', HEX: '#B42041', rgb: { r: 169, g: 38, b: 61 }, group: 'red' }, + RAL3028: { description: 'Pure red', HEX: '#E72512', rgb: { r: 201, g: 43, b: 38 }, group: 'red' }, + RAL3031: { description: 'Orient red', HEX: '#AC323B', rgb: { r: 164, g: 51, b: 56 }, group: 'red' }, + RAL3032: { description: 'Pearl ruby red', HEX: '#711521', rgb: { r: 110, g: 28, b: 36 }, group: 'red' }, + RAL3033: { description: 'Pearl pink', HEX: '#B24C43', rgb: { r: 162, g: 57, b: 46 }, group: 'red' }, + RAL4001: { description: 'Red lilac', HEX: '#8A5A83', rgb: { r: 131, g: 96, b: 131 }, group: 'violet' }, + RAL4002: { description: 'Red violet', HEX: '#933D50', rgb: { r: 140, g: 60, b: 75 }, group: 'violet' }, + RAL4003: { description: 'Heather violet', HEX: '#D15B8F', rgb: { r: 196, g: 96, b: 140 }, group: 'violet' }, + RAL4004: { description: 'Claret violet', HEX: '#691639', rgb: { r: 100, g: 29, b: 57 }, group: 'violet' }, + RAL4005: { description: 'Blue lilac', HEX: '#83639D', rgb: { r: 123, g: 103, b: 154 }, group: 'violet' }, + RAL4006: { description: 'Traffic purple', HEX: '#992572', rgb: { r: 145, g: 48, b: 115 }, group: 'violet' }, + RAL4007: { description: 'Purple violet', HEX: '#4A203B', rgb: { r: 71 , g: 36, b: 60 }, group: 'violet' }, + RAL4008: { description: 'Signal violet', HEX: '#904684', rgb: { r: 135, g: 75, b: 131 }, group: 'violet' }, + RAL4009: { description: 'Pastel violet', HEX: '#A38995', rgb: { r: 157, g: 133, b: 146 }, group: 'violet' }, + RAL4010: { description: 'Telemagenta', HEX: '#C63678', rgb: { r: 187, g: 62, b: 119 }, group: 'violet' }, + RAL4011: { description: 'Pearl violet', HEX: '#8773A1', rgb: { r: 113, g: 98, b: 135 }, group: 'violet' }, + RAL4012: { description: 'Pearl blackberry', HEX: '#6B6880', rgb: { r: 109, g: 107, b: 127 } , group: 'violet'}, + RAL5000: { description: 'Violet blue', HEX: '#384C70', rgb: { r: 56 , g: 78, b: 111 }, group: 'blue' }, + RAL5001: { description: 'Green blue', HEX: '#1F4764', rgb: { r: 29 , g: 76, b: 100 }, group: 'blue' }, + RAL5002: { description: 'Ultramarine blue', HEX: '#2B2C7C', rgb: { r: 30 , g: 54, b: 123 }, group: 'blue' }, + RAL5003: { description: 'Sapphire blue', HEX: '#2A3756', rgb: { r: 38 , g: 56, b: 85 }, group: 'blue' }, + RAL5004: { description: 'Black blue', HEX: '#1D1F2A', rgb: { r: 26 , g: 30, b: 40 }, group: 'blue' }, + RAL5005: { description: 'Signal blue', HEX: '#154889', rgb: { r: 0 , g: 81, b: 135 }, group: 'blue' }, + RAL5007: { description: 'Brilliant blue', HEX: '#41678D', rgb: { r: 66 , g: 106, b: 140 }, group: 'blue' }, + RAL5008: { description: 'Grey blue', HEX: '#313C48', rgb: { r: 45 , g: 58, b: 68 }, group: 'blue' }, + RAL5009: { description: 'Azure blue', HEX: '#2E5978', rgb: { r: 45 , g: 94, b: 120 }, group: 'blue' }, + RAL5010: { description: 'Gentian blue', HEX: '#13447C', rgb: { r: 0 , g: 78, b: 124 }, group: 'blue' }, + RAL5011: { description: 'Steel blue', HEX: '#232C3F', rgb: { r: 30 , g: 43, b: 61 }, group: 'blue' }, + RAL5012: { description: 'Light blue', HEX: '#3481B8', rgb: { r: 46 , g: 136, b: 182 }, group: 'blue' }, + RAL5013: { description: 'Cobalt blue', HEX: '#232D53', rgb: { r: 34 , g: 48, b: 83 }, group: 'blue' }, + RAL5014: { description: 'Pigeon blue', HEX: '#6C7C98', rgb: { r: 104, g: 124, b: 150 }, group: 'blue' }, + RAL5015: { description: 'Sky blue', HEX: '#2874B2', rgb: { r: 11 , g: 123, b: 176 }, group: 'blue' }, + RAL5017: { description: 'Traffic blue', HEX: '#0E518D', rgb: { r: 0 , g: 90, b: 140 }, group: 'blue' }, + RAL5018: { description: 'Turquoise blue', HEX: '#21888F', rgb: { r: 27 , g: 139, b: 140 }, group: 'blue' }, + RAL5019: { description: 'Capri blue', HEX: '#1A5784', rgb: { r: 15 , g: 93, b: 132 }, group: 'blue' }, + RAL5020: { description: 'Ocean blue', HEX: '#0B4151', rgb: { r: 0 , g: 65, b: 75 }, group: 'blue' }, + RAL5021: { description: 'Water blue', HEX: '#07737A', rgb: { r: 0 , g: 117, b: 119 }, group: 'blue' }, + RAL5022: { description: 'Night blue', HEX: '#2F2A5A', rgb: { r: 43 , g: 44, b: 90 }, group: 'blue' }, + RAL5023: { description: 'Distant blue', HEX: '#4D668E', rgb: { r: 74 , g: 104, b: 141 }, group: 'blue' }, + RAL5024: { description: 'Pastel blue', HEX: '#6A93B0', rgb: { r: 103, g: 146, b: 172 }, group: 'blue' }, + RAL5025: { description: 'Pearl Gentian blue', HEX: '#296478', rgb: { r: 44 , g: 105, b: 124 }, group: 'blue' }, + RAL5026: { description: 'Pearl night blue', HEX: '#102C54', rgb: { r: 27 , g: 47, b: 82 }, group: 'blue' }, + RAL6000: { description: 'Patina green', HEX: '#327662', rgb: { r: 59 , g: 116, b: 96 }, group: 'green' }, + RAL6001: { description: 'Emerald green', HEX: '#28713E', rgb: { r: 49 , g: 104, b: 52 }, group: 'green' }, + RAL6002: { description: 'Leaf green', HEX: '#276235', rgb: { r: 45 , g: 90, b: 39 }, group: 'green' }, + RAL6003: { description: 'Olive green', HEX: '#4B573E', rgb: { r: 78 , g: 83, b: 59 }, group: 'green' }, + RAL6004: { description: 'Blue green', HEX: '#0E4243', rgb: { r: 8 , g: 68, b: 66 }, group: 'green' }, + RAL6005: { description: 'Moss green', HEX: '#0F4336', rgb: { r: 17 , g: 66, b: 50 }, group: 'green' }, + RAL6006: { description: 'Grey olive', HEX: '#40433B', rgb: { r: 59 , g: 57, b: 46 }, group: 'green' }, + RAL6007: { description: 'Bottle green', HEX: '#283424', rgb: { r: 42 , g: 50, b: 34 }, group: 'green' }, + RAL6008: { description: 'Brown green', HEX: '#35382E', rgb: { r: 54 , g: 52, b: 42 }, group: 'green' }, + RAL6009: { description: 'Fir green', HEX: '#26392F', rgb: { r: 39 , g: 54, b: 42 }, group: 'green' }, + RAL6010: { description: 'Grass green', HEX: '#3E753B', rgb: { r: 72 , g: 111, b: 56 }, group: 'green' }, + RAL6011: { description: 'Reseda green', HEX: '#68825B', rgb: { r: 105, g: 125, b: 88 }, group: 'green' }, + RAL6012: { description: 'Black green', HEX: '#31403D', rgb: { r: 48 , g: 61, b: 58 }, group: 'green' }, + RAL6013: { description: 'Reed green', HEX: '#797C5A', rgb: { r: 122, g: 118, b: 90 }, group: 'green' }, + RAL6014: { description: 'Yellow olive', HEX: '#444337', rgb: { r: 70 , g: 65, b: 53 }, group: 'green' }, + RAL6015: { description: 'Black olive', HEX: '#3D403A', rgb: { r: 60 , g: 61, b: 54 }, group: 'green' }, + RAL6016: { description: 'Turquoise green', HEX: '#026A52', rgb: { r: 0 , g: 106, b: 76 }, group: 'green' }, + RAL6017: { description: 'May green', HEX: '#468641', rgb: { r: 83 , g: 128, b: 63 }, group: 'green' }, + RAL6018: { description: 'Yellow green', HEX: '#48A43F', rgb: { r: 89 , g: 154, b: 57 }, group: 'green' }, + RAL6019: { description: 'Pastel green', HEX: '#B7D9B1', rgb: { r: 183, g: 206, b: 172}, group: 'green' }, + RAL6020: { description: 'Chrome green', HEX: '#354733', rgb: { r: 54 , g: 66, b: 47 }, group: 'green' }, + RAL6021: { description: 'Pale green', HEX: '#86A47C', rgb: { r: 135, g: 154, b: 119 }, group: 'green' }, + RAL6022: { description: 'Olive-drab/brown olive', HEX: '#3E3C32', rgb: { r: 57 , g: 51, b: 39 }, group: 'green' }, + RAL6024: { description: 'Traffic green', HEX: '#008754', rgb: { r: 0 , g: 132, b: 80 }, group: 'green' }, + RAL6025: { description: 'Fern green', HEX: '#53753C', rgb: { r: 90 , g: 110, b: 59 }, group: 'green' }, + RAL6026: { description: 'Opal green', HEX: '#005D52', rgb: { r: 0 , g: 95, b: 78 }, group: 'green' }, + RAL6027: { description: 'Light green', HEX: '#81C0BB', rgb: { r: 128, g: 186, b: 181 }, group: 'green' }, + RAL6028: { description: 'Pine green', HEX: '#2D5546', rgb: { r: 48 , g: 84, b: 66 }, group: 'green' }, + RAL6029: { description: 'Mint green', HEX: '#007243', rgb: { r: 0 , g: 112, b: 60 }, group: 'green' }, + RAL6032: { description: 'Signal green', HEX: '#0F8558', rgb: { r: 28 , g: 128, b: 81 }, group: 'green' }, + RAL6033: { description: 'Mint turquoise', HEX: '#478A84', rgb: { r: 72 , g: 135, b: 127 }, group: 'green' }, + RAL6034: { description: 'Pastel turquoise', HEX: '#7FB0B2', rgb: { r: 124, g: 173, b: 172 }, group: 'green' }, + RAL6035: { description: 'Pearl green', HEX: '#1B542C', rgb: { r: 19 , g: 77, b: 36 }, group: 'green' }, + RAL6036: { description: 'Pearl opal green', HEX: '#005D4C', rgb: { r: 7 , g: 88, b: 75 }, group: 'green' }, + RAL6037: { description: 'Pure green', HEX: '#25E712', rgb: { r: 0 , g: 140, b: 39 }, group: 'green' }, + RAL6038: { description: 'Luminous green', HEX: '#00F700', rgb: { r: 0 , g: 182, b: 18 }, group: 'green' }, + RAL7000: { description: 'Squirrel grey', HEX: '#7E8B92', rgb: { r: 123, g: 136, b: 142 }, group: 'grey' }, + RAL7001: { description: 'Silver grey', HEX: '#8F999F', rgb: { r: 142, g: 150, b: 157 }, group: 'grey' }, + RAL7002: { description: 'Olive grey', HEX: '#817F68', rgb: { r: 127, g: 120, b: 99 }, group: 'grey' }, + RAL7003: { description: 'Moss grey', HEX: '#7A7B6D', rgb: { r: 120, g: 119, b: 105 }, group: 'grey' }, + RAL7004: { description: 'Signal grey', HEX: '#9EA0A1', rgb: { r: 155, g: 155, b: 155 }, group: 'grey' }, + RAL7005: { description: 'Mouse grey', HEX: '#6B716F', rgb: { r: 107, g: 110, b: 107 }, group: 'grey' }, + RAL7006: { description: 'Beige grey', HEX: '#756F61', rgb: { r: 117, g: 106, b: 94 }, group: 'grey' }, + RAL7008: { description: 'Khaki grey', HEX: '#746643', rgb: { r: 114, g: 95, b: 60 }, group: 'grey' }, + RAL7009: { description: 'Green grey', HEX: '#5B6259', rgb: { r: 92 , g: 96, b: 88 }, group: 'grey' }, + RAL7010: { description: 'Tarpaulin grey', HEX: '#575D57', rgb: { r: 88 , g: 92, b: 86 }, group: 'grey' }, + RAL7011: { description: 'Iron grey', HEX: '#555D61', rgb: { r: 83 , g: 89, b: 93 }, group: 'grey' }, + RAL7012: { description: 'Basalt grey', HEX: '#596163', rgb: { r: 88 , g: 93, b: 94 }, group: 'grey' }, + RAL7013: { description: 'Brown grey', HEX: '#555548', rgb: { r: 86 , g: 80, b: 68 }, group: 'grey' }, + RAL7015: { description: 'Slate grey', HEX: '#51565C', rgb: { r: 80 , g: 83, b: 89 }, group: 'grey' }, + RAL7016: { description: 'Anthracite grey', HEX: '#373F43', rgb: { r: 56 , g: 62, b: 66 }, group: 'grey' }, + RAL7021: { description: 'Black grey', HEX: '#2E3234', rgb: { r: 48 , g: 50, b: 52 }, group: 'grey' }, + RAL7022: { description: 'Umbra grey', HEX: '#4B4D46', rgb: { r: 76 , g: 74, b: 68 }, group: 'grey' }, + RAL7023: { description: 'Concrete grey', HEX: '#818479', rgb: { r: 127, g: 128, b: 118 }, group: 'grey' }, + RAL7024: { description: 'Graphite grey', HEX: '#474A50', rgb: { r: 70 , g: 73, b: 79 }, group: 'grey' }, + RAL7026: { description: 'Granite grey', HEX: '#374447', rgb: { r: 56 , g: 67, b: 69 }, group: 'grey' }, + RAL7030: { description: 'Stone grey', HEX: '#939388', rgb: { r: 145, g: 142, b: 133 }, group: 'grey' }, + RAL7031: { description: 'Blue grey', HEX: '#5D6970', rgb: { r: 93 , g: 104, b: 109 }, group: 'grey' }, + RAL7032: { description: 'Pebble grey', HEX: '#B9B9A8', rgb: { r: 180, g: 176, b: 161 }, group: 'grey' }, + RAL7033: { description: 'Cement grey', HEX: '#818979', rgb: { r: 126, g: 130, b: 116 }, group: 'grey' }, + RAL7034: { description: 'Yellow grey', HEX: '#939176', rgb: { r: 144, g: 136, b: 111 }, group: 'grey' }, + RAL7035: { description: 'Light grey', HEX: '#CBD0CC', rgb: { r: 197, g: 199, b: 196 }, group: 'grey' }, + RAL7036: { description: 'Platinum grey', HEX: '#9A9697', rgb: { r: 151, g: 147, b: 146 }, group: 'grey' }, + RAL7037: { description: 'Dusty grey', HEX: '#7C7F7E', rgb: { r: 122, g: 123, b: 122 }, group: 'grey' }, + RAL7038: { description: 'Agate grey', HEX: '#B4B8B0', rgb: { r: 175, g: 177, b: 169 }, group: 'grey' }, + RAL7039: { description: 'Quartz grey', HEX: '#6B695F', rgb: { r: 106, g: 102, b: 94 }, group: 'grey' }, + RAL7040: { description: 'Window grey', HEX: '#9DA3A6', rgb: { r: 152, g: 158, b: 161 }, group: 'grey' }, + RAL7042: { description: 'Traffic grey A', HEX: '#8F9695', rgb: { r: 142, g: 146, b: 145 }, group: 'grey' }, + RAL7043: { description: 'Traffic grey B', HEX: '#4E5451', rgb: { r: 79 , g: 82, b: 80 }, group: 'grey' }, + RAL7044: { description: 'Silk grey', HEX: '#BDBDB2', rgb: { r: 182, g: 179, b: 168 }, group: 'grey' }, + RAL7045: { description: 'Telegrey 1', HEX: '#91969A', rgb: { r: 142, g: 146, b: 149 }, group: 'grey' }, + RAL7046: { description: 'Telegrey 2', HEX: '#82898E', rgb: { r: 127, g: 134, b: 138 }, group: 'grey' }, + RAL7047: { description: 'Telegrey 4', HEX: '#CFD0CF', rgb: { r: 200, g: 200, b: 199 }, group: 'grey' }, + RAL7048: { description: 'Pearl mouse grey', HEX: '#888175', rgb: { r: 128, g: 123, b: 115 }, group: 'grey' }, + RAL8000: { description: 'Green brown', HEX: '#887142', rgb: { r: 134, g: 106, b: 62 }, group: 'brown' }, + RAL8001: { description: 'Ochre brown', HEX: '#9C6B30', rgb: { r: 153, g: 99, b: 43 }, group: 'brown' }, + RAL8002: { description: 'Signal brown', HEX: '#7B5141', rgb: { r: 119, g: 77, b: 62 }, group: 'brown' }, + RAL8003: { description: 'Clay brown', HEX: '#80542F', rgb: { r: 124, g: 75, b: 39 }, group: 'brown' }, + RAL8004: { description: 'Copper brown', HEX: '#8F4E35', rgb: { r: 138, g: 73, b: 49 }, group: 'brown' }, + RAL8007: { description: 'Fawn brown', HEX: '#6F4A2F', rgb: { r: 109, g: 70, b: 43 }, group: 'brown' }, + RAL8008: { description: 'Olive brown', HEX: '#6F4F28', rgb: { r: 111, g: 74, b: 37 }, group: 'brown' }, + RAL8011: { description: 'Nut brown', HEX: '#5A3A29', rgb: { r: 88 , g: 56, b: 39 }, group: 'brown' }, + RAL8012: { description: 'Red brown', HEX: '#673831', rgb: { r: 100, g: 51, b: 43 }, group: 'brown' }, + RAL8014: { description: 'Sepia brown', HEX: '#49392D', rgb: { r: 72 , g: 53, b: 38 }, group: 'brown' }, + RAL8015: { description: 'Chestnut brown', HEX: '#633A34', rgb: { r: 93 , g: 47, b: 39 }, group: 'brown' }, + RAL8016: { description: 'Mahogany brown', HEX: '#4C2F26', rgb: { r: 75 , g: 43, b: 32 }, group: 'brown' }, + RAL8017: { description: 'Chocolate brown', HEX: '#44322D', rgb: { r: 67 , g: 47, b: 41 }, group: 'brown' }, + RAL8019: { description: 'Grey brown', HEX: '#3F3A3A', rgb: { r: 61 , g: 54, b: 53 }, group: 'brown' }, + RAL8022: { description: 'Black brown', HEX: '#211F20', rgb: { r: 26 , g: 23, b: 25 }, group: 'brown' }, + RAL8023: { description: 'Orange brown', HEX: '#A65E2F', rgb: { r: 160, g: 87, b: 41 }, group: 'brown' }, + RAL8024: { description: 'Beige brown', HEX: '#79553C', rgb: { r: 118, g: 80, b: 56 }, group: 'brown' }, + RAL8025: { description: 'Pale brown', HEX: '#755C49', rgb: { r: 115, g: 88, b: 71 }, group: 'brown' }, + RAL8028: { description: 'Terra brown', HEX: '#4E3B2B', rgb: { r: 79 , g: 58, b: 42 }, group: 'brown' }, + RAL8029: { description: 'Pearl copper', HEX: '#773C27', rgb: { r: 125, g: 64, b: 49 }, group: 'brown' }, + RAL9001: { description: 'Cream', HEX: '#EFEBDC', rgb: { r: 233, g: 224, b: 210 }, group: 'white and black' }, + RAL9002: { description: 'Grey white', HEX: '#DDDED4', rgb: { r: 215, g: 213, b: 203 }, group: 'white and black' }, + RAL9003: { description: 'Signal white', HEX: '#F4F8F4', rgb: { r: 236, g: 236, b: 231 }, group: 'white and black' }, + RAL9004: { description: 'Signal black', HEX: '#2E3032', rgb: { r: 43 , g: 43, b: 44 }, group: 'white and black' }, + RAL9005: { description: 'Jet black', HEX: '#0A0A0D', rgb: { r: 14 , g: 14, b: 16 }, group: 'white and black' }, + RAL9006: { description: 'White aluminium', HEX: '#A5A8A6', rgb: { r: 161, g: 161, b: 160 }, group: 'white and black' }, + RAL9007: { description: 'Grey aluminium', HEX: '#8F8F8C', rgb: { r: 135, g: 133, b: 129 }, group: 'white and black' }, + RAL9010: { description: 'Pure white', HEX: '#F7F9EF', rgb: { r: 241, g: 236, b: 225 }, group: 'white and black' }, + RAL9011: { description: 'Graphite black', HEX: '#292C2F', rgb: { r: 39 , g: 41, b: 43 }, group: 'white and black' }, + RAL9012: { description: 'Clean room white', HEX: '#FFFDE6', rgb: { r: 255, g: 253, b: 230 }, group: 'white and black' }, + RAL9016: { description: 'Traffic white', HEX: '#F7FBF5', rgb: { r: 241, g: 240, b: 234 }, group: 'white and black' }, + RAL9017: { description: 'Traffic black', HEX: '#2A2D2F', rgb: { r: 42 , g: 41, b: 42 }, group: 'white and black' }, + RAL9018: { description: 'Papyrus white', HEX: '#CFD3CD', rgb: { r: 200, g: 203, b: 196 }, group: 'white and black' }, + RAL9022: { description: 'Pearl light grey', HEX: '#9C9C9C', rgb: { r: 133, g: 133, b: 131 }, group: 'white and black' }, + RAL9023: { description: 'Pearl dark grey', HEX: '#7E8182', rgb: { r: 121, g: 123, b: 122 }, group: 'white and black' } +}; \ No newline at end of file diff --git a/tools/data/ral_palettes/ral-colors/classic.json b/tools/data/ral_palettes/ral-colors/classic.json new file mode 100644 index 0000000..38baed2 --- /dev/null +++ b/tools/data/ral_palettes/ral-colors/classic.json @@ -0,0 +1,2152 @@ +{ + "RAL1000": { + "description": "Green beige", + "HEX": "#CDBA88", + "rgb": { + "r": 205, + "g": 186, + "b": 136 + }, + "group": "yellow and beige" + }, + "RAL1001": { + "description": "Beige", + "HEX": "#D0B084", + "rgb": { + "r": 208, + "g": 176, + "b": 132 + }, + "group": "yellow and beige" + }, + "RAL1002": { + "description": "Sand yellow", + "HEX": "#D2AA6D", + "rgb": { + "r": 210, + "g": 170, + "b": 109 + }, + "group": "yellow and beige" + }, + "RAL1003": { + "description": "Signal yellow", + "HEX": "#F9A800", + "rgb": { + "r": 249, + "g": 168, + "b": 0 + }, + "group": "yellow and beige" + }, + "RAL1004": { + "description": "Golden yellow", + "HEX": "#E49E00", + "rgb": { + "r": 228, + "g": 158, + "b": 0 + }, + "group": "yellow and beige" + }, + "RAL1005": { + "description": "Honey yellow", + "HEX": "#CB8E00", + "rgb": { + "r": 203, + "g": 142, + "b": 0 + }, + "group": "yellow and beige" + }, + "RAL1006": { + "description": "Maize yellow", + "HEX": "#E29000", + "rgb": { + "r": 226, + "g": 144, + "b": 0 + }, + "group": "yellow and beige" + }, + "RAL1007": { + "description": "Daffodil yellow", + "HEX": "#E88C00", + "rgb": { + "r": 232, + "g": 140, + "b": 0 + }, + "group": "yellow and beige" + }, + "RAL1011": { + "description": "Brown beige", + "HEX": "#AF804F", + "rgb": { + "r": 175, + "g": 128, + "b": 79 + }, + "group": "yellow and beige" + }, + "RAL1012": { + "description": "Lemon yellow", + "HEX": "#DDAF27", + "rgb": { + "r": 221, + "g": 175, + "b": 39 + }, + "group": "yellow and beige" + }, + "RAL1013": { + "description": "Oyster white", + "HEX": "#E3D9C6", + "rgb": { + "r": 227, + "g": 217, + "b": 198 + }, + "group": "yellow and beige" + }, + "RAL1014": { + "description": "Ivory", + "HEX": "#DDC49A", + "rgb": { + "r": 221, + "g": 196, + "b": 154 + }, + "group": "yellow and beige" + }, + "RAL1015": { + "description": "Light ivory", + "HEX": "#E6D2B5", + "rgb": { + "r": 230, + "g": 210, + "b": 181 + }, + "group": "yellow and beige" + }, + "RAL1016": { + "description": "Sulfur yellow", + "HEX": "#F1DD38", + "rgb": { + "r": 241, + "g": 221, + "b": 56 + }, + "group": "yellow and beige" + }, + "RAL1017": { + "description": "Saffron yellow", + "HEX": "#F6A950", + "rgb": { + "r": 246, + "g": 169, + "b": 80 + }, + "group": "yellow and beige" + }, + "RAL1018": { + "description": "Zinc yellow", + "HEX": "#FACA30", + "rgb": { + "r": 250, + "g": 202, + "b": 48 + }, + "group": "yellow and beige" + }, + "RAL1019": { + "description": "Grey beige", + "HEX": "#A48F7A", + "rgb": { + "r": 164, + "g": 143, + "b": 122 + }, + "group": "yellow and beige" + }, + "RAL1020": { + "description": "Olive yellow", + "HEX": "#A08F65", + "rgb": { + "r": 160, + "g": 143, + "b": 101 + }, + "group": "yellow and beige" + }, + "RAL1021": { + "description": "Colza yellow", + "HEX": "#F6B600", + "rgb": { + "r": 246, + "g": 182, + "b": 0 + }, + "group": "yellow and beige" + }, + "RAL1023": { + "description": "Traffic yellow", + "HEX": "#F7B500", + "rgb": { + "r": 247, + "g": 181, + "b": 0 + }, + "group": "yellow and beige" + }, + "RAL1024": { + "description": "Ochre yellow", + "HEX": "#BA8F4C", + "rgb": { + "r": 186, + "g": 143, + "b": 76 + }, + "group": "yellow and beige" + }, + "RAL1026": { + "description": "Luminous yellow", + "HEX": "#FFFF00", + "rgb": { + "r": 255, + "g": 255, + "b": 0 + }, + "group": "yellow and beige" + }, + "RAL1027": { + "description": "Curry", + "HEX": "#A77F0E", + "rgb": { + "r": 167, + "g": 127, + "b": 14 + }, + "group": "yellow and beige" + }, + "RAL1028": { + "description": "Melon yellow", + "HEX": "#FF9B00", + "rgb": { + "r": 255, + "g": 155, + "b": 0 + }, + "group": "yellow and beige" + }, + "RAL1032": { + "description": "Broom yellow", + "HEX": "#E2A300", + "rgb": { + "r": 226, + "g": 163, + "b": 0 + }, + "group": "yellow and beige" + }, + "RAL1033": { + "description": "Dahlia yellow", + "HEX": "#F99A1C", + "rgb": { + "r": 249, + "g": 154, + "b": 28 + }, + "group": "yellow and beige" + }, + "RAL1034": { + "description": "Pastel yellow", + "HEX": "#EB9C52", + "rgb": { + "r": 235, + "g": 156, + "b": 82 + }, + "group": "yellow and beige" + }, + "RAL1035": { + "description": "Pearl beige", + "HEX": "#908370", + "rgb": { + "r": 144, + "g": 131, + "b": 112 + }, + "group": "yellow and beige" + }, + "RAL1036": { + "description": "Pearl gold", + "HEX": "#80643F", + "rgb": { + "r": 128, + "g": 100, + "b": 63 + }, + "group": "yellow and beige" + }, + "RAL1037": { + "description": "Sun yellow", + "HEX": "#F09200", + "rgb": { + "r": 240, + "g": 146, + "b": 0 + }, + "group": "yellow and beige" + }, + "RAL2000": { + "description": "Yellow orange", + "HEX": "#DD7907", + "rgb": { + "r": 213, + "g": 111, + "b": 0 + }, + "group": "orange" + }, + "RAL2001": { + "description": "Red orange", + "HEX": "#BE4E20", + "rgb": { + "r": 182, + "g": 72, + "b": 28 + }, + "group": "orange" + }, + "RAL2002": { + "description": "Vermilion", + "HEX": "#C63927", + "rgb": { + "r": 188, + "g": 56, + "b": 35 + }, + "group": "orange" + }, + "RAL2003": { + "description": "Pastel orange", + "HEX": "#FA842B", + "rgb": { + "r": 241, + "g": 120, + "b": 41 + }, + "group": "orange" + }, + "RAL2004": { + "description": "Pure orange", + "HEX": "#E75B12", + "rgb": { + "r": 222, + "g": 83, + "b": 6 + }, + "group": "orange" + }, + "RAL2005": { + "description": "Luminous orange", + "HEX": "#FF2300", + "rgb": { + "r": 255, + "g": 75, + "b": 17 + }, + "group": "orange" + }, + "RAL2007": { + "description": "Luminous bright orange", + "HEX": "#FFA421", + "rgb": { + "r": 255, + "g": 183, + "b": 0 + }, + "group": "orange" + }, + "RAL2008": { + "description": "Bright red orange", + "HEX": "#F3752C", + "rgb": { + "r": 232, + "g": 107, + "b": 34 + }, + "group": "orange" + }, + "RAL2009": { + "description": "Traffic orange", + "HEX": "#E15501", + "rgb": { + "r": 218, + "g": 83, + "b": 10 + }, + "group": "orange" + }, + "RAL2010": { + "description": "Signal orange", + "HEX": "#D4652F", + "rgb": { + "r": 204, + "g": 93, + "b": 41 + }, + "group": "orange" + }, + "RAL2011": { + "description": "Deep orange", + "HEX": "#EC7C25", + "rgb": { + "r": 221, + "g": 110, + "b": 15 + }, + "group": "orange" + }, + "RAL2012": { + "description": "Salmon orange", + "HEX": "#DB6A50", + "rgb": { + "r": 209, + "g": 101, + "b": 78 + }, + "group": "orange" + }, + "RAL2013": { + "description": "Pearl orange", + "HEX": "#954527", + "rgb": { + "r": 143, + "g": 62, + "b": 38 + }, + "group": "orange" + }, + "RAL2017": { + "description": "RAL orange", + "HEX": "#FA4402", + "rgb": { + "r": 250, + "g": 68, + "b": 2 + }, + "group": "orange" + }, + "RAL3000": { + "description": "Flame red", + "HEX": "#AB2524", + "rgb": { + "r": 164, + "g": 40, + "b": 33 + }, + "group": "red" + }, + "RAL3001": { + "description": "Signal red", + "HEX": "#A02128", + "rgb": { + "r": 152, + "g": 35, + "b": 35 + }, + "group": "red" + }, + "RAL3002": { + "description": "Carmine red", + "HEX": "#A1232B", + "rgb": { + "r": 152, + "g": 34, + "b": 34 + }, + "group": "red" + }, + "RAL3003": { + "description": "Ruby red", + "HEX": "#8D1D2C", + "rgb": { + "r": 132, + "g": 25, + "b": 34 + }, + "group": "red" + }, + "RAL3004": { + "description": "Purple red", + "HEX": "#701F29", + "rgb": { + "r": 105, + "g": 27, + "b": 35 + }, + "group": "red" + }, + "RAL3005": { + "description": "Wine red", + "HEX": "#5E2028", + "rgb": { + "r": 88, + "g": 24, + "b": 31 + }, + "group": "red" + }, + "RAL3007": { + "description": "Black red", + "HEX": "#402225", + "rgb": { + "r": 61, + "g": 32, + "b": 34 + }, + "group": "red" + }, + "RAL3009": { + "description": "Oxide red", + "HEX": "#703731", + "rgb": { + "r": 102, + "g": 48, + "b": 41 + }, + "group": "red" + }, + "RAL3011": { + "description": "Brown red", + "HEX": "#7E292C", + "rgb": { + "r": 119, + "g": 36, + "b": 36 + }, + "group": "red" + }, + "RAL3012": { + "description": "Beige red", + "HEX": "#CB8D73", + "rgb": { + "r": 194, + "g": 133, + "b": 109 + }, + "group": "red" + }, + "RAL3013": { + "description": "Tomato red", + "HEX": "#9C322E", + "rgb": { + "r": 149, + "g": 46, + "b": 37 + }, + "group": "red" + }, + "RAL3014": { + "description": "Antique pink", + "HEX": "#D47479", + "rgb": { + "r": 201, + "g": 115, + "b": 117 + }, + "group": "red" + }, + "RAL3015": { + "description": "Light pink", + "HEX": "#E1A6AD", + "rgb": { + "r": 215, + "g": 160, + "b": 166 + }, + "group": "red" + }, + "RAL3016": { + "description": "Coral red", + "HEX": "#AC4034", + "rgb": { + "r": 164, + "g": 60, + "b": 48 + }, + "group": "red" + }, + "RAL3017": { + "description": "Rose", + "HEX": "#D3545F", + "rgb": { + "r": 200, + "g": 84, + "b": 93 + }, + "group": "red" + }, + "RAL3018": { + "description": "Strawberry red", + "HEX": "#D14152", + "rgb": { + "r": 196, + "g": 62, + "b": 74 + }, + "group": "red" + }, + "RAL3020": { + "description": "Traffic red", + "HEX": "#C1121C", + "rgb": { + "r": 184, + "g": 29, + "b": 19 + }, + "group": "red" + }, + "RAL3022": { + "description": "Salmon pink", + "HEX": "#D56D56", + "rgb": { + "r": 204, + "g": 105, + "b": 85 + }, + "group": "red" + }, + "RAL3024": { + "description": "Luminous red", + "HEX": "#F70000", + "rgb": { + "r": 255, + "g": 42, + "b": 36 + }, + "group": "red" + }, + "RAL3026": { + "description": "Luminous bright red", + "HEX": "#FF0000", + "rgb": { + "r": 255, + "g": 38, + "b": 32 + }, + "group": "red" + }, + "RAL3027": { + "description": "Raspberry red", + "HEX": "#B42041", + "rgb": { + "r": 169, + "g": 38, + "b": 61 + }, + "group": "red" + }, + "RAL3028": { + "description": "Pure red", + "HEX": "#E72512", + "rgb": { + "r": 201, + "g": 43, + "b": 38 + }, + "group": "red" + }, + "RAL3031": { + "description": "Orient red", + "HEX": "#AC323B", + "rgb": { + "r": 164, + "g": 51, + "b": 56 + }, + "group": "red" + }, + "RAL3032": { + "description": "Pearl ruby red", + "HEX": "#711521", + "rgb": { + "r": 110, + "g": 28, + "b": 36 + }, + "group": "red" + }, + "RAL3033": { + "description": "Pearl pink", + "HEX": "#B24C43", + "rgb": { + "r": 162, + "g": 57, + "b": 46 + }, + "group": "red" + }, + "RAL4001": { + "description": "Red lilac", + "HEX": "#8A5A83", + "rgb": { + "r": 131, + "g": 96, + "b": 131 + }, + "group": "violet" + }, + "RAL4002": { + "description": "Red violet", + "HEX": "#933D50", + "rgb": { + "r": 140, + "g": 60, + "b": 75 + }, + "group": "violet" + }, + "RAL4003": { + "description": "Heather violet", + "HEX": "#D15B8F", + "rgb": { + "r": 196, + "g": 96, + "b": 140 + }, + "group": "violet" + }, + "RAL4004": { + "description": "Claret violet", + "HEX": "#691639", + "rgb": { + "r": 100, + "g": 29, + "b": 57 + }, + "group": "violet" + }, + "RAL4005": { + "description": "Blue lilac", + "HEX": "#83639D", + "rgb": { + "r": 123, + "g": 103, + "b": 154 + }, + "group": "violet" + }, + "RAL4006": { + "description": "Traffic purple", + "HEX": "#992572", + "rgb": { + "r": 145, + "g": 48, + "b": 115 + }, + "group": "violet" + }, + "RAL4007": { + "description": "Purple violet", + "HEX": "#4A203B", + "rgb": { + "r": 71, + "g": 36, + "b": 60 + }, + "group": "violet" + }, + "RAL4008": { + "description": "Signal violet", + "HEX": "#904684", + "rgb": { + "r": 135, + "g": 75, + "b": 131 + }, + "group": "violet" + }, + "RAL4009": { + "description": "Pastel violet", + "HEX": "#A38995", + "rgb": { + "r": 157, + "g": 133, + "b": 146 + }, + "group": "violet" + }, + "RAL4010": { + "description": "Telemagenta", + "HEX": "#C63678", + "rgb": { + "r": 187, + "g": 62, + "b": 119 + }, + "group": "violet" + }, + "RAL4011": { + "description": "Pearl violet", + "HEX": "#8773A1", + "rgb": { + "r": 113, + "g": 98, + "b": 135 + }, + "group": "violet" + }, + "RAL4012": { + "description": "Pearl blackberry", + "HEX": "#6B6880", + "rgb": { + "r": 109, + "g": 107, + "b": 127 + }, + "group": "violet" + }, + "RAL5000": { + "description": "Violet blue", + "HEX": "#384C70", + "rgb": { + "r": 56, + "g": 78, + "b": 111 + }, + "group": "blue" + }, + "RAL5001": { + "description": "Green blue", + "HEX": "#1F4764", + "rgb": { + "r": 29, + "g": 76, + "b": 100 + }, + "group": "blue" + }, + "RAL5002": { + "description": "Ultramarine blue", + "HEX": "#2B2C7C", + "rgb": { + "r": 30, + "g": 54, + "b": 123 + }, + "group": "blue" + }, + "RAL5003": { + "description": "Sapphire blue", + "HEX": "#2A3756", + "rgb": { + "r": 38, + "g": 56, + "b": 85 + }, + "group": "blue" + }, + "RAL5004": { + "description": "Black blue", + "HEX": "#1D1F2A", + "rgb": { + "r": 26, + "g": 30, + "b": 40 + }, + "group": "blue" + }, + "RAL5005": { + "description": "Signal blue", + "HEX": "#154889", + "rgb": { + "r": 0, + "g": 81, + "b": 135 + }, + "group": "blue" + }, + "RAL5007": { + "description": "Brilliant blue", + "HEX": "#41678D", + "rgb": { + "r": 66, + "g": 106, + "b": 140 + }, + "group": "blue" + }, + "RAL5008": { + "description": "Grey blue", + "HEX": "#313C48", + "rgb": { + "r": 45, + "g": 58, + "b": 68 + }, + "group": "blue" + }, + "RAL5009": { + "description": "Azure blue", + "HEX": "#2E5978", + "rgb": { + "r": 45, + "g": 94, + "b": 120 + }, + "group": "blue" + }, + "RAL5010": { + "description": "Gentian blue", + "HEX": "#13447C", + "rgb": { + "r": 0, + "g": 78, + "b": 124 + }, + "group": "blue" + }, + "RAL5011": { + "description": "Steel blue", + "HEX": "#232C3F", + "rgb": { + "r": 30, + "g": 43, + "b": 61 + }, + "group": "blue" + }, + "RAL5012": { + "description": "Light blue", + "HEX": "#3481B8", + "rgb": { + "r": 46, + "g": 136, + "b": 182 + }, + "group": "blue" + }, + "RAL5013": { + "description": "Cobalt blue", + "HEX": "#232D53", + "rgb": { + "r": 34, + "g": 48, + "b": 83 + }, + "group": "blue" + }, + "RAL5014": { + "description": "Pigeon blue", + "HEX": "#6C7C98", + "rgb": { + "r": 104, + "g": 124, + "b": 150 + }, + "group": "blue" + }, + "RAL5015": { + "description": "Sky blue", + "HEX": "#2874B2", + "rgb": { + "r": 11, + "g": 123, + "b": 176 + }, + "group": "blue" + }, + "RAL5017": { + "description": "Traffic blue", + "HEX": "#0E518D", + "rgb": { + "r": 0, + "g": 90, + "b": 140 + }, + "group": "blue" + }, + "RAL5018": { + "description": "Turquoise blue", + "HEX": "#21888F", + "rgb": { + "r": 27, + "g": 139, + "b": 140 + }, + "group": "blue" + }, + "RAL5019": { + "description": "Capri blue", + "HEX": "#1A5784", + "rgb": { + "r": 15, + "g": 93, + "b": 132 + }, + "group": "blue" + }, + "RAL5020": { + "description": "Ocean blue", + "HEX": "#0B4151", + "rgb": { + "r": 0, + "g": 65, + "b": 75 + }, + "group": "blue" + }, + "RAL5021": { + "description": "Water blue", + "HEX": "#07737A", + "rgb": { + "r": 0, + "g": 117, + "b": 119 + }, + "group": "blue" + }, + "RAL5022": { + "description": "Night blue", + "HEX": "#2F2A5A", + "rgb": { + "r": 43, + "g": 44, + "b": 90 + }, + "group": "blue" + }, + "RAL5023": { + "description": "Distant blue", + "HEX": "#4D668E", + "rgb": { + "r": 74, + "g": 104, + "b": 141 + }, + "group": "blue" + }, + "RAL5024": { + "description": "Pastel blue", + "HEX": "#6A93B0", + "rgb": { + "r": 103, + "g": 146, + "b": 172 + }, + "group": "blue" + }, + "RAL5025": { + "description": "Pearl Gentian blue", + "HEX": "#296478", + "rgb": { + "r": 44, + "g": 105, + "b": 124 + }, + "group": "blue" + }, + "RAL5026": { + "description": "Pearl night blue", + "HEX": "#102C54", + "rgb": { + "r": 27, + "g": 47, + "b": 82 + }, + "group": "blue" + }, + "RAL6000": { + "description": "Patina green", + "HEX": "#327662", + "rgb": { + "r": 59, + "g": 116, + "b": 96 + }, + "group": "green" + }, + "RAL6001": { + "description": "Emerald green", + "HEX": "#28713E", + "rgb": { + "r": 49, + "g": 104, + "b": 52 + }, + "group": "green" + }, + "RAL6002": { + "description": "Leaf green", + "HEX": "#276235", + "rgb": { + "r": 45, + "g": 90, + "b": 39 + }, + "group": "green" + }, + "RAL6003": { + "description": "Olive green", + "HEX": "#4B573E", + "rgb": { + "r": 78, + "g": 83, + "b": 59 + }, + "group": "green" + }, + "RAL6004": { + "description": "Blue green", + "HEX": "#0E4243", + "rgb": { + "r": 8, + "g": 68, + "b": 66 + }, + "group": "green" + }, + "RAL6005": { + "description": "Moss green", + "HEX": "#0F4336", + "rgb": { + "r": 17, + "g": 66, + "b": 50 + }, + "group": "green" + }, + "RAL6006": { + "description": "Grey olive", + "HEX": "#40433B", + "rgb": { + "r": 59, + "g": 57, + "b": 46 + }, + "group": "green" + }, + "RAL6007": { + "description": "Bottle green", + "HEX": "#283424", + "rgb": { + "r": 42, + "g": 50, + "b": 34 + }, + "group": "green" + }, + "RAL6008": { + "description": "Brown green", + "HEX": "#35382E", + "rgb": { + "r": 54, + "g": 52, + "b": 42 + }, + "group": "green" + }, + "RAL6009": { + "description": "Fir green", + "HEX": "#26392F", + "rgb": { + "r": 39, + "g": 54, + "b": 42 + }, + "group": "green" + }, + "RAL6010": { + "description": "Grass green", + "HEX": "#3E753B", + "rgb": { + "r": 72, + "g": 111, + "b": 56 + }, + "group": "green" + }, + "RAL6011": { + "description": "Reseda green", + "HEX": "#68825B", + "rgb": { + "r": 105, + "g": 125, + "b": 88 + }, + "group": "green" + }, + "RAL6012": { + "description": "Black green", + "HEX": "#31403D", + "rgb": { + "r": 48, + "g": 61, + "b": 58 + }, + "group": "green" + }, + "RAL6013": { + "description": "Reed green", + "HEX": "#797C5A", + "rgb": { + "r": 122, + "g": 118, + "b": 90 + }, + "group": "green" + }, + "RAL6014": { + "description": "Yellow olive", + "HEX": "#444337", + "rgb": { + "r": 70, + "g": 65, + "b": 53 + }, + "group": "green" + }, + "RAL6015": { + "description": "Black olive", + "HEX": "#3D403A", + "rgb": { + "r": 60, + "g": 61, + "b": 54 + }, + "group": "green" + }, + "RAL6016": { + "description": "Turquoise green", + "HEX": "#026A52", + "rgb": { + "r": 0, + "g": 106, + "b": 76 + }, + "group": "green" + }, + "RAL6017": { + "description": "May green", + "HEX": "#468641", + "rgb": { + "r": 83, + "g": 128, + "b": 63 + }, + "group": "green" + }, + "RAL6018": { + "description": "Yellow green", + "HEX": "#48A43F", + "rgb": { + "r": 89, + "g": 154, + "b": 57 + }, + "group": "green" + }, + "RAL6019": { + "description": "Pastel green", + "HEX": "#B7D9B1", + "rgb": { + "r": 183, + "g": 206, + "b": 172 + }, + "group": "green" + }, + "RAL6020": { + "description": "Chrome green", + "HEX": "#354733", + "rgb": { + "r": 54, + "g": 66, + "b": 47 + }, + "group": "green" + }, + "RAL6021": { + "description": "Pale green", + "HEX": "#86A47C", + "rgb": { + "r": 135, + "g": 154, + "b": 119 + }, + "group": "green" + }, + "RAL6022": { + "description": "Olive-drab/brown olive", + "HEX": "#3E3C32", + "rgb": { + "r": 57, + "g": 51, + "b": 39 + }, + "group": "green" + }, + "RAL6024": { + "description": "Traffic green", + "HEX": "#008754", + "rgb": { + "r": 0, + "g": 132, + "b": 80 + }, + "group": "green" + }, + "RAL6025": { + "description": "Fern green", + "HEX": "#53753C", + "rgb": { + "r": 90, + "g": 110, + "b": 59 + }, + "group": "green" + }, + "RAL6026": { + "description": "Opal green", + "HEX": "#005D52", + "rgb": { + "r": 0, + "g": 95, + "b": 78 + }, + "group": "green" + }, + "RAL6027": { + "description": "Light green", + "HEX": "#81C0BB", + "rgb": { + "r": 128, + "g": 186, + "b": 181 + }, + "group": "green" + }, + "RAL6028": { + "description": "Pine green", + "HEX": "#2D5546", + "rgb": { + "r": 48, + "g": 84, + "b": 66 + }, + "group": "green" + }, + "RAL6029": { + "description": "Mint green", + "HEX": "#007243", + "rgb": { + "r": 0, + "g": 112, + "b": 60 + }, + "group": "green" + }, + "RAL6032": { + "description": "Signal green", + "HEX": "#0F8558", + "rgb": { + "r": 28, + "g": 128, + "b": 81 + }, + "group": "green" + }, + "RAL6033": { + "description": "Mint turquoise", + "HEX": "#478A84", + "rgb": { + "r": 72, + "g": 135, + "b": 127 + }, + "group": "green" + }, + "RAL6034": { + "description": "Pastel turquoise", + "HEX": "#7FB0B2", + "rgb": { + "r": 124, + "g": 173, + "b": 172 + }, + "group": "green" + }, + "RAL6035": { + "description": "Pearl green", + "HEX": "#1B542C", + "rgb": { + "r": 19, + "g": 77, + "b": 36 + }, + "group": "green" + }, + "RAL6036": { + "description": "Pearl opal green", + "HEX": "#005D4C", + "rgb": { + "r": 7, + "g": 88, + "b": 75 + }, + "group": "green" + }, + "RAL6037": { + "description": "Pure green", + "HEX": "#25E712", + "rgb": { + "r": 0, + "g": 140, + "b": 39 + }, + "group": "green" + }, + "RAL6038": { + "description": "Luminous green", + "HEX": "#00F700", + "rgb": { + "r": 0, + "g": 182, + "b": 18 + }, + "group": "green" + }, + "RAL7000": { + "description": "Squirrel grey", + "HEX": "#7E8B92", + "rgb": { + "r": 123, + "g": 136, + "b": 142 + }, + "group": "grey" + }, + "RAL7001": { + "description": "Silver grey", + "HEX": "#8F999F", + "rgb": { + "r": 142, + "g": 150, + "b": 157 + }, + "group": "grey" + }, + "RAL7002": { + "description": "Olive grey", + "HEX": "#817F68", + "rgb": { + "r": 127, + "g": 120, + "b": 99 + }, + "group": "grey" + }, + "RAL7003": { + "description": "Moss grey", + "HEX": "#7A7B6D", + "rgb": { + "r": 120, + "g": 119, + "b": 105 + }, + "group": "grey" + }, + "RAL7004": { + "description": "Signal grey", + "HEX": "#9EA0A1", + "rgb": { + "r": 155, + "g": 155, + "b": 155 + }, + "group": "grey" + }, + "RAL7005": { + "description": "Mouse grey", + "HEX": "#6B716F", + "rgb": { + "r": 107, + "g": 110, + "b": 107 + }, + "group": "grey" + }, + "RAL7006": { + "description": "Beige grey", + "HEX": "#756F61", + "rgb": { + "r": 117, + "g": 106, + "b": 94 + }, + "group": "grey" + }, + "RAL7008": { + "description": "Khaki grey", + "HEX": "#746643", + "rgb": { + "r": 114, + "g": 95, + "b": 60 + }, + "group": "grey" + }, + "RAL7009": { + "description": "Green grey", + "HEX": "#5B6259", + "rgb": { + "r": 92, + "g": 96, + "b": 88 + }, + "group": "grey" + }, + "RAL7010": { + "description": "Tarpaulin grey", + "HEX": "#575D57", + "rgb": { + "r": 88, + "g": 92, + "b": 86 + }, + "group": "grey" + }, + "RAL7011": { + "description": "Iron grey", + "HEX": "#555D61", + "rgb": { + "r": 83, + "g": 89, + "b": 93 + }, + "group": "grey" + }, + "RAL7012": { + "description": "Basalt grey", + "HEX": "#596163", + "rgb": { + "r": 88, + "g": 93, + "b": 94 + }, + "group": "grey" + }, + "RAL7013": { + "description": "Brown grey", + "HEX": "#555548", + "rgb": { + "r": 86, + "g": 80, + "b": 68 + }, + "group": "grey" + }, + "RAL7015": { + "description": "Slate grey", + "HEX": "#51565C", + "rgb": { + "r": 80, + "g": 83, + "b": 89 + }, + "group": "grey" + }, + "RAL7016": { + "description": "Anthracite grey", + "HEX": "#373F43", + "rgb": { + "r": 56, + "g": 62, + "b": 66 + }, + "group": "grey" + }, + "RAL7021": { + "description": "Black grey", + "HEX": "#2E3234", + "rgb": { + "r": 48, + "g": 50, + "b": 52 + }, + "group": "grey" + }, + "RAL7022": { + "description": "Umbra grey", + "HEX": "#4B4D46", + "rgb": { + "r": 76, + "g": 74, + "b": 68 + }, + "group": "grey" + }, + "RAL7023": { + "description": "Concrete grey", + "HEX": "#818479", + "rgb": { + "r": 127, + "g": 128, + "b": 118 + }, + "group": "grey" + }, + "RAL7024": { + "description": "Graphite grey", + "HEX": "#474A50", + "rgb": { + "r": 70, + "g": 73, + "b": 79 + }, + "group": "grey" + }, + "RAL7026": { + "description": "Granite grey", + "HEX": "#374447", + "rgb": { + "r": 56, + "g": 67, + "b": 69 + }, + "group": "grey" + }, + "RAL7030": { + "description": "Stone grey", + "HEX": "#939388", + "rgb": { + "r": 145, + "g": 142, + "b": 133 + }, + "group": "grey" + }, + "RAL7031": { + "description": "Blue grey", + "HEX": "#5D6970", + "rgb": { + "r": 93, + "g": 104, + "b": 109 + }, + "group": "grey" + }, + "RAL7032": { + "description": "Pebble grey", + "HEX": "#B9B9A8", + "rgb": { + "r": 180, + "g": 176, + "b": 161 + }, + "group": "grey" + }, + "RAL7033": { + "description": "Cement grey", + "HEX": "#818979", + "rgb": { + "r": 126, + "g": 130, + "b": 116 + }, + "group": "grey" + }, + "RAL7034": { + "description": "Yellow grey", + "HEX": "#939176", + "rgb": { + "r": 144, + "g": 136, + "b": 111 + }, + "group": "grey" + }, + "RAL7035": { + "description": "Light grey", + "HEX": "#CBD0CC", + "rgb": { + "r": 197, + "g": 199, + "b": 196 + }, + "group": "grey" + }, + "RAL7036": { + "description": "Platinum grey", + "HEX": "#9A9697", + "rgb": { + "r": 151, + "g": 147, + "b": 146 + }, + "group": "grey" + }, + "RAL7037": { + "description": "Dusty grey", + "HEX": "#7C7F7E", + "rgb": { + "r": 122, + "g": 123, + "b": 122 + }, + "group": "grey" + }, + "RAL7038": { + "description": "Agate grey", + "HEX": "#B4B8B0", + "rgb": { + "r": 175, + "g": 177, + "b": 169 + }, + "group": "grey" + }, + "RAL7039": { + "description": "Quartz grey", + "HEX": "#6B695F", + "rgb": { + "r": 106, + "g": 102, + "b": 94 + }, + "group": "grey" + }, + "RAL7040": { + "description": "Window grey", + "HEX": "#9DA3A6", + "rgb": { + "r": 152, + "g": 158, + "b": 161 + }, + "group": "grey" + }, + "RAL7042": { + "description": "Traffic grey A", + "HEX": "#8F9695", + "rgb": { + "r": 142, + "g": 146, + "b": 145 + }, + "group": "grey" + }, + "RAL7043": { + "description": "Traffic grey B", + "HEX": "#4E5451", + "rgb": { + "r": 79, + "g": 82, + "b": 80 + }, + "group": "grey" + }, + "RAL7044": { + "description": "Silk grey", + "HEX": "#BDBDB2", + "rgb": { + "r": 182, + "g": 179, + "b": 168 + }, + "group": "grey" + }, + "RAL7045": { + "description": "Telegrey 1", + "HEX": "#91969A", + "rgb": { + "r": 142, + "g": 146, + "b": 149 + }, + "group": "grey" + }, + "RAL7046": { + "description": "Telegrey 2", + "HEX": "#82898E", + "rgb": { + "r": 127, + "g": 134, + "b": 138 + }, + "group": "grey" + }, + "RAL7047": { + "description": "Telegrey 4", + "HEX": "#CFD0CF", + "rgb": { + "r": 200, + "g": 200, + "b": 199 + }, + "group": "grey" + }, + "RAL7048": { + "description": "Pearl mouse grey", + "HEX": "#888175", + "rgb": { + "r": 128, + "g": 123, + "b": 115 + }, + "group": "grey" + }, + "RAL8000": { + "description": "Green brown", + "HEX": "#887142", + "rgb": { + "r": 134, + "g": 106, + "b": 62 + }, + "group": "brown" + }, + "RAL8001": { + "description": "Ochre brown", + "HEX": "#9C6B30", + "rgb": { + "r": 153, + "g": 99, + "b": 43 + }, + "group": "brown" + }, + "RAL8002": { + "description": "Signal brown", + "HEX": "#7B5141", + "rgb": { + "r": 119, + "g": 77, + "b": 62 + }, + "group": "brown" + }, + "RAL8003": { + "description": "Clay brown", + "HEX": "#80542F", + "rgb": { + "r": 124, + "g": 75, + "b": 39 + }, + "group": "brown" + }, + "RAL8004": { + "description": "Copper brown", + "HEX": "#8F4E35", + "rgb": { + "r": 138, + "g": 73, + "b": 49 + }, + "group": "brown" + }, + "RAL8007": { + "description": "Fawn brown", + "HEX": "#6F4A2F", + "rgb": { + "r": 109, + "g": 70, + "b": 43 + }, + "group": "brown" + }, + "RAL8008": { + "description": "Olive brown", + "HEX": "#6F4F28", + "rgb": { + "r": 111, + "g": 74, + "b": 37 + }, + "group": "brown" + }, + "RAL8011": { + "description": "Nut brown", + "HEX": "#5A3A29", + "rgb": { + "r": 88, + "g": 56, + "b": 39 + }, + "group": "brown" + }, + "RAL8012": { + "description": "Red brown", + "HEX": "#673831", + "rgb": { + "r": 100, + "g": 51, + "b": 43 + }, + "group": "brown" + }, + "RAL8014": { + "description": "Sepia brown", + "HEX": "#49392D", + "rgb": { + "r": 72, + "g": 53, + "b": 38 + }, + "group": "brown" + }, + "RAL8015": { + "description": "Chestnut brown", + "HEX": "#633A34", + "rgb": { + "r": 93, + "g": 47, + "b": 39 + }, + "group": "brown" + }, + "RAL8016": { + "description": "Mahogany brown", + "HEX": "#4C2F26", + "rgb": { + "r": 75, + "g": 43, + "b": 32 + }, + "group": "brown" + }, + "RAL8017": { + "description": "Chocolate brown", + "HEX": "#44322D", + "rgb": { + "r": 67, + "g": 47, + "b": 41 + }, + "group": "brown" + }, + "RAL8019": { + "description": "Grey brown", + "HEX": "#3F3A3A", + "rgb": { + "r": 61, + "g": 54, + "b": 53 + }, + "group": "brown" + }, + "RAL8022": { + "description": "Black brown", + "HEX": "#211F20", + "rgb": { + "r": 26, + "g": 23, + "b": 25 + }, + "group": "brown" + }, + "RAL8023": { + "description": "Orange brown", + "HEX": "#A65E2F", + "rgb": { + "r": 160, + "g": 87, + "b": 41 + }, + "group": "brown" + }, + "RAL8024": { + "description": "Beige brown", + "HEX": "#79553C", + "rgb": { + "r": 118, + "g": 80, + "b": 56 + }, + "group": "brown" + }, + "RAL8025": { + "description": "Pale brown", + "HEX": "#755C49", + "rgb": { + "r": 115, + "g": 88, + "b": 71 + }, + "group": "brown" + }, + "RAL8028": { + "description": "Terra brown", + "HEX": "#4E3B2B", + "rgb": { + "r": 79, + "g": 58, + "b": 42 + }, + "group": "brown" + }, + "RAL8029": { + "description": "Pearl copper", + "HEX": "#773C27", + "rgb": { + "r": 125, + "g": 64, + "b": 49 + }, + "group": "brown" + }, + "RAL9001": { + "description": "Cream", + "HEX": "#EFEBDC", + "rgb": { + "r": 233, + "g": 224, + "b": 210 + }, + "group": "white and black" + }, + "RAL9002": { + "description": "Grey white", + "HEX": "#DDDED4", + "rgb": { + "r": 215, + "g": 213, + "b": 203 + }, + "group": "white and black" + }, + "RAL9003": { + "description": "Signal white", + "HEX": "#F4F8F4", + "rgb": { + "r": 236, + "g": 236, + "b": 231 + }, + "group": "white and black" + }, + "RAL9004": { + "description": "Signal black", + "HEX": "#2E3032", + "rgb": { + "r": 43, + "g": 43, + "b": 44 + }, + "group": "white and black" + }, + "RAL9005": { + "description": "Jet black", + "HEX": "#0A0A0D", + "rgb": { + "r": 14, + "g": 14, + "b": 16 + }, + "group": "white and black" + }, + "RAL9006": { + "description": "White aluminium", + "HEX": "#A5A8A6", + "rgb": { + "r": 161, + "g": 161, + "b": 160 + }, + "group": "white and black" + }, + "RAL9007": { + "description": "Grey aluminium", + "HEX": "#8F8F8C", + "rgb": { + "r": 135, + "g": 133, + "b": 129 + }, + "group": "white and black" + }, + "RAL9010": { + "description": "Pure white", + "HEX": "#F7F9EF", + "rgb": { + "r": 241, + "g": 236, + "b": 225 + }, + "group": "white and black" + }, + "RAL9011": { + "description": "Graphite black", + "HEX": "#292C2F", + "rgb": { + "r": 39, + "g": 41, + "b": 43 + }, + "group": "white and black" + }, + "RAL9012": { + "description": "Clean room white", + "HEX": "#FFFDE6", + "rgb": { + "r": 255, + "g": 253, + "b": 230 + }, + "group": "white and black" + }, + "RAL9016": { + "description": "Traffic white", + "HEX": "#F7FBF5", + "rgb": { + "r": 241, + "g": 240, + "b": 234 + }, + "group": "white and black" + }, + "RAL9017": { + "description": "Traffic black", + "HEX": "#2A2D2F", + "rgb": { + "r": 42, + "g": 41, + "b": 42 + }, + "group": "white and black" + }, + "RAL9018": { + "description": "Papyrus white", + "HEX": "#CFD3CD", + "rgb": { + "r": 200, + "g": 203, + "b": 196 + }, + "group": "white and black" + }, + "RAL9022": { + "description": "Pearl light grey", + "HEX": "#9C9C9C", + "rgb": { + "r": 133, + "g": 133, + "b": 131 + }, + "group": "white and black" + }, + "RAL9023": { + "description": "Pearl dark grey", + "HEX": "#7E8182", + "rgb": { + "r": 121, + "g": 123, + "b": 122 + }, + "group": "white and black" + } +} diff --git a/tools/data/ral_palettes/ral-colors/design.js b/tools/data/ral_palettes/ral-colors/design.js new file mode 100644 index 0000000..87d6231 --- /dev/null +++ b/tools/data/ral_palettes/ral-colors/design.js @@ -0,0 +1,1827 @@ +export const design = { + H000L15C00 : { description: 'Ink Black', hue: '0°', lightness: '15%', chromaticity: '0%', rgb: { r: 33 , g: 33 ,b: 34 } }, + H000L20C00 : { description: 'Slate Black', hue: '0°', lightness: '20%', chromaticity: '0%', rgb: { r: 43 , g: 43 ,b: 43 } }, + H000L25C00 : { description: 'Onyx Black', hue: '0°', lightness: '25%', chromaticity: '0%', rgb: { r: 58 , g: 58 ,b: 58 } }, + H000L30C00 : { description: 'Medium Black', hue: '0°', lightness: '30%', chromaticity: '0%', rgb: { r: 68 , g: 68 ,b: 67 } }, + H000L35C00 : { description: 'Briquette Grey', hue: '0°', lightness: '35%', chromaticity: '0%', rgb: { r: 80 , g: 80 ,b: 80 } }, + H000L40C00 : { description: 'Dark Grey', hue: '0°', lightness: '40%', chromaticity: '0%', rgb: { r: 93 , g: 92 ,b: 91 } }, + H000L45C00 : { description: 'Architecture Grey', hue: '0°', lightness: '45%', chromaticity: '0%', rgb: { r: 107 , g: 106 ,b: 105 } }, + H000L50C00 : { description: 'Steel Grey', hue: '0°', lightness: '50%', chromaticity: '0%', rgb: { r: 118 , g: 118 ,b: 117 } }, + H000L55C00 : { description: 'Medium Grey', hue: '0°', lightness: '55%', chromaticity: '0%', rgb: { r: 130 , g: 130 ,b: 130 } }, + H000L60C00 : { description: 'Ash Grey', hue: '0°', lightness: '60%', chromaticity: '0%', rgb: { r: 143 , g: 143 ,b: 142 } }, + H000L65C00 : { description: 'Mortar Grey', hue: '0°', lightness: '65%', chromaticity: '0%', rgb: { r: 158 , g: 159 ,b: 158 } }, + H000L70C00 : { description: 'Light Grey', hue: '0°', lightness: '70%', chromaticity: '0%', rgb: { r: 172 , g: 173 ,b: 172 } }, + H000L75C00 : { description: 'Marble Grey', hue: '0°', lightness: '75%', chromaticity: '0%', rgb: { r: 186 , g: 186 ,b: 186 } }, + H000L80C00 : { description: 'Foggy Grey', hue: '0°', lightness: '80%', chromaticity: '0%', rgb: { r: 201 , g: 200 ,b: 199 } }, + H000L85C00 : { description: 'Shadow White', hue: '0°', lightness: '85%', chromaticity: '0%', rgb: { r: 214 , g: 214 ,b: 212 } }, + H000L90C00 : { description: 'Winter White', hue: '0°', lightness: '90%', chromaticity: '0%', rgb: { r: 226 , g: 227 ,b: 224 } }, + H010L20C10 : { description: 'Wenge Black', hue: '10°', lightness: '20%', chromaticity: '10%', rgb: { r: 62 , g: 42 ,b: 44 } }, + H010L20C15 : { description: 'Cherry Black', hue: '10°', lightness: '20%', chromaticity: '15%', rgb: { r: 66 , g: 35 ,b: 41 } }, + H010L20C20 : { description: 'Dark Mahogany', hue: '10°', lightness: '20%', chromaticity: '20%', rgb: { r: 72 , g: 32 ,b: 41 } }, + H010L20C25 : { description: 'Rusty Red', hue: '10°', lightness: '20%', chromaticity: '25%', rgb: { r: 75 , g: 28 ,b: 40 } }, + H010L30C10 : { description: 'Wood-Black Red', hue: '10°', lightness: '30%', chromaticity: '10%', rgb: { r: 88 , g: 64 ,b: 67 } }, + H010L30C15 : { description: 'Night Mauve', hue: '10°', lightness: '30%', chromaticity: '15%', rgb: { r: 93 , g: 59 ,b: 65 } }, + H010L30C20 : { description: 'Pinkish Brown', hue: '10°', lightness: '30%', chromaticity: '20%', rgb: { r: 100 , g: 57 ,b: 65 } }, + H010L30C25 : { description: 'Chestnut Red', hue: '10°', lightness: '30%', chromaticity: '25%', rgb: { r: 108 , g: 51 ,b: 63 } }, + H010L30C30 : { description: 'Leather Red', hue: '10°', lightness: '30%', chromaticity: '30%', rgb: { r: 113 , g: 47 ,b: 62 } }, + H010L30C35 : { description: 'Anthracite Red', hue: '10°', lightness: '30%', chromaticity: '35%', rgb: { r: 115 , g: 41 ,b: 59 } }, + H010L30C40 : { description: 'Brown Magenta', hue: '10°', lightness: '30%', chromaticity: '40%', rgb: { r: 123 , g: 32 ,b: 57 } }, + H010L30C44 : { description: 'Atlas Red', hue: '10°', lightness: '30%', chromaticity: '44%', rgb: { r: 130 , g: 25 ,b: 58 } }, + H010L40C10 : { description: 'Caput Mortuum Grey Red', hue: '10°', lightness: '40%', chromaticity: '10%', rgb: { r: 111 , g: 88 ,b: 91 } }, + H010L40C15 : { description: 'Rust Brown', hue: '10°', lightness: '40%', chromaticity: '15%', rgb: { r: 119 , g: 83 ,b: 89 } }, + H010L40C20 : { description: 'Sunset Red', hue: '10°', lightness: '40%', chromaticity: '20%', rgb: { r: 127 , g: 81 ,b: 88 } }, + H010L40C25 : { description: 'Mineral Red', hue: '10°', lightness: '40%', chromaticity: '25%', rgb: { r: 134 , g: 77 ,b: 88 } }, + H010L40C30 : { description: 'Dull Magenta', hue: '10°', lightness: '40%', chromaticity: '30%', rgb: { r: 141 , g: 72 ,b: 86 } }, + H010L40C35 : { description: 'Velvet Red', hue: '10°', lightness: '40%', chromaticity: '35%', rgb: { r: 144 , g: 67 ,b: 83 } }, + H010L40C40 : { description: 'Algae Red', hue: '10°', lightness: '40%', chromaticity: '40%', rgb: { r: 152 , g: 61 ,b: 83 } }, + H010L40C45 : { description: 'Raspberry Ice Red', hue: '10°', lightness: '40%', chromaticity: '45%', rgb: { r: 159 , g: 55 ,b: 83 } }, + H010L40C50 : { description: 'Fuchsia Red', hue: '10°', lightness: '40%', chromaticity: '50%', rgb: { r: 165 , g: 49 ,b: 82 } }, + H010L40C53 : { description: 'Primal Red', hue: '10°', lightness: '40%', chromaticity: '53%', rgb: { r: 169 , g: 43 ,b: 79 } }, + H010L50C10 : { description: 'Old Mahogany', hue: '10°', lightness: '50%', chromaticity: '10%', rgb: { r: 136 , g: 113 ,b: 117 } }, + H010L50C15 : { description: 'Dull Dusky Pink', hue: '10°', lightness: '50%', chromaticity: '15%', rgb: { r: 143 , g: 109 ,b: 115 } }, + H010L50C20 : { description: 'Brickwork Red', hue: '10°', lightness: '50%', chromaticity: '20%', rgb: { r: 152 , g: 105 ,b: 113 } }, + H010L50C25 : { description: 'Matte Carmine', hue: '10°', lightness: '50%', chromaticity: '25%', rgb: { r: 160 , g: 101 ,b: 112 } }, + H010L50C30 : { description: 'Marble Red', hue: '10°', lightness: '50%', chromaticity: '30%', rgb: { r: 169 , g: 96 ,b: 110 } }, + H010L50C35 : { description: 'Geranium Red', hue: '10°', lightness: '50%', chromaticity: '35%', rgb: { r: 174 , g: 91 ,b: 108 } }, + H010L50C40 : { description: 'Slate Pink', hue: '10°', lightness: '50%', chromaticity: '40%', rgb: { r: 179 , g: 88 ,b: 108 } }, + H010L50C45 : { description: 'Tulip Red', hue: '10°', lightness: '50%', chromaticity: '45%', rgb: { r: 184 , g: 81 ,b: 106 } }, + H010L50C50 : { description: 'Vibrant Red', hue: '10°', lightness: '50%', chromaticity: '50%', rgb: { r: 194 , g: 76 ,b: 106 } }, + H010L60C10 : { description: 'Lilac Grey', hue: '10°', lightness: '60%', chromaticity: '10%', rgb: { r: 163 , g: 138 ,b: 141 } }, + H010L60C15 : { description: 'Orchid Red', hue: '10°', lightness: '60%', chromaticity: '15%', rgb: { r: 173 , g: 135 ,b: 141 } }, + H010L60C20 : { description: 'Lime Pink', hue: '10°', lightness: '60%', chromaticity: '20%', rgb: { r: 182 , g: 132 ,b: 140 } }, + H010L60C25 : { description: 'Lipstick Pink', hue: '10°', lightness: '60%', chromaticity: '25%', rgb: { r: 189 , g: 127 ,b: 138 } }, + H010L60C30 : { description: 'Japanese Coral', hue: '10°', lightness: '60%', chromaticity: '30%', rgb: { r: 196 , g: 122 ,b: 136 } }, + H010L60C35 : { description: 'Rose Red', hue: '10°', lightness: '60%', chromaticity: '35%', rgb: { r: 205 , g: 118 ,b: 135 } }, + H010L60C40 : { description: 'Strawberry Milkshake Red', hue: '10°', lightness: '60%', chromaticity: '40%', rgb: { r: 212 , g: 113 ,b: 134 } }, + H010L60C45 : { description: 'Luminous Pink', hue: '10°', lightness: '60%', chromaticity: '45%', rgb: { r: 220 , g: 108 ,b: 132 } }, + H010L70C10 : { description: 'Pale Mauve', hue: '10°', lightness: '70%', chromaticity: '10%', rgb: { r: 192 , g: 166 ,b: 170 } }, + H010L70C15 : { description: 'Powder Rose', hue: '10°', lightness: '70%', chromaticity: '15%', rgb: { r: 200 , g: 162 ,b: 167 } }, + H010L70C20 : { description: 'Silver Rose', hue: '10°', lightness: '70%', chromaticity: '20%', rgb: { r: 210 , g: 158 ,b: 166 } }, + H010L70C25 : { description: 'Flamingo Pink', hue: '10°', lightness: '70%', chromaticity: '25%', rgb: { r: 219 , g: 154 ,b: 165 } }, + H010L70C30 : { description: 'Cherry Blossom Pink', hue: '10°', lightness: '70%', chromaticity: '30%', rgb: { r: 226 , g: 151 ,b: 164 } }, + H010L70C35 : { description: 'Baby Pink', hue: '10°', lightness: '70%', chromaticity: '35%', rgb: { r: 234 , g: 145 ,b: 161 } }, + H010L80C10 : { description: 'Mud Pink', hue: '10°', lightness: '80%', chromaticity: '10%', rgb: { r: 220 , g: 192 ,b: 195 } }, + H010L80C15 : { description: 'Ice Hot Pink', hue: '10°', lightness: '80%', chromaticity: '15%', rgb: { r: 228 , g: 189 ,b: 194 } }, + H010L80C20 : { description: 'Pastel Pink', hue: '10°', lightness: '80%', chromaticity: '20%', rgb: { r: 239 , g: 185 ,b: 192 } }, + H010L85C05 : { description: 'Pearl Rose', hue: '10°', lightness: '85%', chromaticity: '5%', rgb: { r: 223 , g: 211 ,b: 212 } }, + H010L85C10 : { description: 'Salmon Rose', hue: '10°', lightness: '85%', chromaticity: '10%', rgb: { r: 230 , g: 207 ,b: 210 } }, + H010L85C15 : { description: 'Milkshake Pink', hue: '10°', lightness: '85%', chromaticity: '15%', rgb: { r: 240 , g: 205 ,b: 210 } }, + H010L85C20 : { description: 'Flesh Pink', hue: '10°', lightness: '85%', chromaticity: '20%', rgb: { r: 249 , g: 203 ,b: 211 } }, + H010L90C05 : { description: 'Rose Cream', hue: '10°', lightness: '90%', chromaticity: '5%', rgb: { r: 239 , g: 224 ,b: 222 } }, + H010L90C10 : { description: 'Light Apricot', hue: '10°', lightness: '90%', chromaticity: '10%', rgb: { r: 242 , g: 218 ,b: 214 } }, + H010L93C05 : { description: 'White-Red', hue: '10°', lightness: '93%', chromaticity: '5%', rgb: { r: 243 , g: 232 ,b: 234 } }, + H020L20C05 : { description: 'Deep Brown', hue: '20°', lightness: '20%', chromaticity: '5%', rgb: { r: 52 , g: 42 ,b: 42 } }, + H020L20C10 : { description: 'Night Red', hue: '20°', lightness: '20%', chromaticity: '10%', rgb: { r: 60 , g: 39 ,b: 39 } }, + H020L20C20 : { description: 'Dark Red Brown', hue: '20°', lightness: '20%', chromaticity: '20%', rgb: { r: 74 , g: 33 ,b: 37 } }, + H020L20C29 : { description: 'Burgundy', hue: '20°', lightness: '20%', chromaticity: '29%', rgb: { r: 83 , g: 24 ,b: 31 } }, + H020L30C05 : { description: 'Rhodonite Brown', hue: '20°', lightness: '30%', chromaticity: '5%', rgb: { r: 77 , g: 65 ,b: 65 } }, + H020L30C10 : { description: 'Budapest Brown', hue: '20°', lightness: '30%', chromaticity: '10%', rgb: { r: 85 , g: 61 ,b: 62 } }, + H020L30C20 : { description: 'Kremlin Red', hue: '20°', lightness: '30%', chromaticity: '20%', rgb: { r: 99 , g: 54 ,b: 57 } }, + H020L30C30 : { description: 'Crystal Dark Red', hue: '20°', lightness: '30%', chromaticity: '30%', rgb: { r: 109 , g: 44 ,b: 50 } }, + H020L30C40 : { description: 'Amaranth Blossom', hue: '20°', lightness: '30%', chromaticity: '40%', rgb: { r: 123 , g: 35 ,b: 49 } }, + H020L30C48 : { description: 'Sweet Cherry Red', hue: '20°', lightness: '30%', chromaticity: '48%', rgb: { r: 132 , g: 23 ,b: 44 } }, + H020L40C05 : { description: 'Greyish Brown', hue: '20°', lightness: '40%', chromaticity: '5%', rgb: { r: 103 , g: 91 ,b: 91 } }, + H020L40C10 : { description: 'Nut Brown', hue: '20°', lightness: '40%', chromaticity: '10%', rgb: { r: 110 , g: 86 ,b: 87 } }, + H020L40C20 : { description: 'Antique Red', hue: '20°', lightness: '40%', chromaticity: '20%', rgb: { r: 125 , g: 79 ,b: 81 } }, + H020L40C30 : { description: 'Hermosa Pink', hue: '20°', lightness: '40%', chromaticity: '30%', rgb: { r: 138 , g: 71 ,b: 76 } }, + H020L40C40 : { description: 'October Red', hue: '20°', lightness: '40%', chromaticity: '40%', rgb: { r: 148 , g: 61 ,b: 70 } }, + H020L40C50 : { description: 'Bright Red', hue: '20°', lightness: '40%', chromaticity: '50%', rgb: { r: 160 , g: 46 ,b: 62 } }, + H020L50C05 : { description: 'Zircon Grey', hue: '20°', lightness: '50%', chromaticity: '5%', rgb: { r: 128 , g: 116 ,b: 115 } }, + H020L50C10 : { description: 'Sandstone Red Grey', hue: '20°', lightness: '50%', chromaticity: '10%', rgb: { r: 136 , g: 110 ,b: 112 } }, + H020L50C20 : { description: 'Red Grey', hue: '20°', lightness: '50%', chromaticity: '20%', rgb: { r: 153 , g: 104 ,b: 106 } }, + H020L50C30 : { description: 'Venetian Red', hue: '20°', lightness: '50%', chromaticity: '30%', rgb: { r: 167 , g: 96 ,b: 101 } }, + H020L50C40 : { description: 'Alsike Clover Red', hue: '20°', lightness: '50%', chromaticity: '40%', rgb: { r: 177 , g: 87 ,b: 95 } }, + H020L50C50 : { description: 'Flame Red', hue: '20°', lightness: '50%', chromaticity: '50%', rgb: { r: 190 , g: 76 ,b: 90 } }, + H020L50C58 : { description: 'Lingonberry Red', hue: '20°', lightness: '50%', chromaticity: '58%', rgb: { r: 206 , g: 68 ,b: 88 } }, + H020L60C05 : { description: 'Globe Thistle Grey Rose', hue: '20°', lightness: '60%', chromaticity: '5%', rgb: { r: 153 , g: 141 ,b: 141 } }, + H020L60C10 : { description: 'Tin Pink', hue: '20°', lightness: '60%', chromaticity: '10%', rgb: { r: 163 , g: 137 ,b: 138 } }, + H020L60C20 : { description: 'Retro Pink', hue: '20°', lightness: '60%', chromaticity: '20%', rgb: { r: 180 , g: 130 ,b: 134 } }, + H020L60C30 : { description: 'Begonia Rose', hue: '20°', lightness: '60%', chromaticity: '30%', rgb: { r: 195 , g: 121 ,b: 127 } }, + H020L60C40 : { description: 'Lotus Red', hue: '20°', lightness: '60%', chromaticity: '40%', rgb: { r: 209 , g: 113 ,b: 123 } }, + H020L70C05 : { description: 'Fashion Mauve', hue: '20°', lightness: '70%', chromaticity: '5%', rgb: { r: 181 , g: 168 ,b: 168 } }, + H020L70C10 : { description: 'Tourmaline Mauve', hue: '20°', lightness: '70%', chromaticity: '10%', rgb: { r: 189 , g: 163 ,b: 165 } }, + H020L70C20 : { description: 'Rosewood Apricot', hue: '20°', lightness: '70%', chromaticity: '20%', rgb: { r: 211 , g: 158 ,b: 162 } }, + H020L70C30 : { description: 'Marker Pink', hue: '20°', lightness: '70%', chromaticity: '30%', rgb: { r: 227 , g: 150 ,b: 155 } }, + H020L80C05 : { description: 'Aurora Grey', hue: '20°', lightness: '80%', chromaticity: '5%', rgb: { r: 211 , g: 197 ,b: 196 } }, + H020L80C10 : { description: 'Quartz Rose', hue: '20°', lightness: '80%', chromaticity: '10%', rgb: { r: 219 , g: 191 ,b: 192 } }, + H020L80C20 : { description: 'Marzipan Pink', hue: '20°', lightness: '80%', chromaticity: '20%', rgb: { r: 238 , g: 186 ,b: 188 } }, + H020L85C05 : { description: 'Almond Blossom Pink', hue: '20°', lightness: '85%', chromaticity: '5%', rgb: { r: 224 , g: 210 ,b: 209 } }, + H020L85C10 : { description: 'Salmon Cream', hue: '20°', lightness: '85%', chromaticity: '10%', rgb: { r: 233 , g: 207 ,b: 207 } }, + H020L85C20 : { description: 'Elegant Light Rose', hue: '20°', lightness: '85%', chromaticity: '20%', rgb: { r: 253 , g: 202 ,b: 202 } }, + H020L90C05 : { description: 'Mussel White', hue: '20°', lightness: '90%', chromaticity: '5%', rgb: { r: 240 , g: 226 ,b: 222 } }, + H020L90C10 : { description: 'Peach Cream', hue: '20°', lightness: '90%', chromaticity: '10%', rgb: { r: 244 , g: 220 ,b: 216 } }, + H020L93C05 : { description: 'Blossom White', hue: '20°', lightness: '93%', chromaticity: '5%', rgb: { r: 248 , g: 232 ,b: 228 } }, + H030L30C10 : { description: 'Laurel Nut Brown', hue: '30°', lightness: '30%', chromaticity: '10%', rgb: { r: 85 , g: 64 ,b: 62 } }, + H030L30C20 : { description: 'Autumn Leaf Red', hue: '30°', lightness: '30%', chromaticity: '20%', rgb: { r: 98 , g: 56 ,b: 54 } }, + H030L30C30 : { description: 'Macore Veneer Red', hue: '30°', lightness: '30%', chromaticity: '30%', rgb: { r: 110 , g: 47 ,b: 44 } }, + H030L30C40 : { description: 'Crimson Red', hue: '30°', lightness: '30%', chromaticity: '40%', rgb: { r: 124 , g: 41 ,b: 42 } }, + H030L30C45 : { description: 'Blood Red', hue: '30°', lightness: '30%', chromaticity: '45%', rgb: { r: 125 , g: 30 ,b: 32 } }, + H030L40C10 : { description: 'Peat Red Brown', hue: '30°', lightness: '40%', chromaticity: '10%', rgb: { r: 108 , g: 87 ,b: 85 } }, + H030L40C20 : { description: 'Cranberry Red', hue: '30°', lightness: '40%', chromaticity: '20%', rgb: { r: 126 , g: 83 ,b: 80 } }, + H030L40C30 : { description: 'Brick Brown', hue: '30°', lightness: '40%', chromaticity: '30%', rgb: { r: 139 , g: 75 ,b: 71 } }, + H030L40C40 : { description: 'Spicy Red', hue: '30°', lightness: '40%', chromaticity: '40%', rgb: { r: 151 , g: 65 ,b: 62 } }, + H030L40C50 : { description: 'Hibiscus Red', hue: '30°', lightness: '40%', chromaticity: '50%', rgb: { r: 163 , g: 55 ,b: 55 } }, + H030L40C60 : { description: 'Emperor Cherry Red', hue: '30°', lightness: '40%', chromaticity: '60%', rgb: { r: 172 , g: 44 ,b: 50 } }, + H030L50C10 : { description: 'Earth Red', hue: '30°', lightness: '50%', chromaticity: '10%', rgb: { r: 136 , g: 111 ,b: 109 } }, + H030L50C20 : { description: 'Terracotta Red Brown', hue: '30°', lightness: '50%', chromaticity: '20%', rgb: { r: 151 , g: 106 ,b: 102 } }, + H030L50C30 : { description: 'Clay Red', hue: '30°', lightness: '50%', chromaticity: '30%', rgb: { r: 166 , g: 97 ,b: 93 } }, + H030L50C40 : { description: 'Vermilion Red', hue: '30°', lightness: '50%', chromaticity: '40%', rgb: { r: 180 , g: 90 ,b: 86 } }, + H030L50C50 : { description: 'Maple Red', hue: '30°', lightness: '50%', chromaticity: '50%', rgb: { r: 191 , g: 81 ,b: 78 } }, + H030L50C60 : { description: 'Holland Red', hue: '30°', lightness: '50%', chromaticity: '60%', rgb: { r: 203 , g: 69 ,b: 67 } }, + H030L60C10 : { description: 'Storm Red', hue: '30°', lightness: '60%', chromaticity: '10%', rgb: { r: 162 , g: 138 ,b: 136 } }, + H030L60C20 : { description: 'Desert Red', hue: '30°', lightness: '60%', chromaticity: '20%', rgb: { r: 179 , g: 131 ,b: 127 } }, + H030L60C30 : { description: 'Antique Pink', hue: '30°', lightness: '60%', chromaticity: '30%', rgb: { r: 194 , g: 122 ,b: 116 } }, + H030L60C40 : { description: 'Light Tomato', hue: '30°', lightness: '60%', chromaticity: '40%', rgb: { r: 208 , g: 117 ,b: 111 } }, + H030L60C50 : { description: 'Calypso Red', hue: '30°', lightness: '60%', chromaticity: '50%', rgb: { r: 222 , g: 107 ,b: 102 } }, + H030L70C10 : { description: 'Florida Grey', hue: '30°', lightness: '70%', chromaticity: '10%', rgb: { r: 190 , g: 164 ,b: 162 } }, + H030L70C20 : { description: 'Dull Apricot', hue: '30°', lightness: '70%', chromaticity: '20%', rgb: { r: 208 , g: 156 ,b: 151 } }, + H030L70C30 : { description: 'Salmon Pink Red', hue: '30°', lightness: '70%', chromaticity: '30%', rgb: { r: 225 , g: 149 ,b: 143 } }, + H030L70C40 : { description: 'Flamingo Red', hue: '30°', lightness: '70%', chromaticity: '40%', rgb: { r: 239 , g: 142 ,b: 135 } }, + H030L80C10 : { description: 'Salt Pink', hue: '30°', lightness: '80%', chromaticity: '10%', rgb: { r: 218 , g: 192 ,b: 188 } }, + H030L80C20 : { description: 'Magnolia Pink', hue: '30°', lightness: '80%', chromaticity: '20%', rgb: { r: 236 , g: 185 ,b: 179 } }, + H030L85C05 : { description: 'Almond Cream', hue: '30°', lightness: '85%', chromaticity: '5%', rgb: { r: 224 , g: 209 ,b: 203 } }, + H030L85C10 : { description: 'Soft Ice Rose', hue: '30°', lightness: '85%', chromaticity: '10%', rgb: { r: 231 , g: 207 ,b: 202 } }, + H030L85C20 : { description: 'Peach Red', hue: '30°', lightness: '85%', chromaticity: '20%', rgb: { r: 249 , g: 205 ,b: 196 } }, + H030L90C05 : { description: 'Antique White', hue: '30°', lightness: '90%', chromaticity: '5%', rgb: { r: 238 , g: 224 ,b: 220 } }, + H030L90C10 : { description: 'Wedding Pink', hue: '30°', lightness: '90%', chromaticity: '10%', rgb: { r: 246 , g: 223 ,b: 216 } }, + H030L93C05 : { description: 'Parchment White', hue: '30°', lightness: '93%', chromaticity: '5%', rgb: { r: 249 , g: 234 ,b: 229 } }, + H040L20C19 : { description: 'Wild Brown', hue: '40°', lightness: '20%', chromaticity: '19%', rgb: { r: 71 , g: 36 ,b: 26 } }, + H040L30C05 : { description: 'Basalt Black', hue: '40°', lightness: '30%', chromaticity: '5%', rgb: { r: 77 , g: 66 ,b: 62 } }, + H040L30C10 : { description: 'Caviar Black', hue: '40°', lightness: '30%', chromaticity: '10%', rgb: { r: 83 , g: 62 ,b: 57 } }, + H040L30C20 : { description: 'Coffee Brown', hue: '40°', lightness: '30%', chromaticity: '20%', rgb: { r: 96 , g: 57 ,b: 47 } }, + H040L30C30 : { description: 'Root Brown', hue: '40°', lightness: '30%', chromaticity: '30%', rgb: { r: 107 , g: 50 ,b: 38 } }, + H040L30C40 : { description: 'Corrosion Red', hue: '40°', lightness: '30%', chromaticity: '40%', rgb: { r: 119 , g: 47 ,b: 33 } }, + H040L40C05 : { description: 'Ash Brown', hue: '40°', lightness: '40%', chromaticity: '5%', rgb: { r: 103 , g: 91 ,b: 88 } }, + H040L40C10 : { description: 'Somali Brown', hue: '40°', lightness: '40%', chromaticity: '10%', rgb: { r: 108 , g: 87 ,b: 81 } }, + H040L40C20 : { description: 'Vandyck Brown', hue: '40°', lightness: '40%', chromaticity: '20%', rgb: { r: 123 , g: 83 ,b: 73 } }, + H040L40C30 : { description: 'Chestnut Brown', hue: '40°', lightness: '40%', chromaticity: '30%', rgb: { r: 133 , g: 75 ,b: 60 } }, + H040L40C40 : { description: 'Brick Red', hue: '40°', lightness: '40%', chromaticity: '40%', rgb: { r: 145 , g: 65 ,b: 47 } }, + H040L40C50 : { description: 'Henna Red', hue: '40°', lightness: '40%', chromaticity: '50%', rgb: { r: 157 , g: 61 ,b: 39 } }, + H040L40C60 : { description: 'Copper Red', hue: '40°', lightness: '40%', chromaticity: '60%', rgb: { r: 165 , g: 49 ,b: 26 } }, + H040L40C67 : { description: 'China Red', hue: '40°', lightness: '40%', chromaticity: '67%', rgb: { r: 173 , g: 43 ,b: 16 } }, + H040L50C05 : { description: 'Nomad Grey', hue: '40°', lightness: '50%', chromaticity: '5%', rgb: { r: 126 , g: 115 ,b: 111 } }, + H040L50C10 : { description: 'Umbra Sand', hue: '40°', lightness: '50%', chromaticity: '10%', rgb: { r: 135 , g: 112 ,b: 107 } }, + H040L50C20 : { description: 'Agate Brown', hue: '40°', lightness: '50%', chromaticity: '20%', rgb: { r: 149 , g: 106 ,b: 96 } }, + H040L50C30 : { description: 'Rust Coloured', hue: '40°', lightness: '50%', chromaticity: '30%', rgb: { r: 164 , g: 100 ,b: 84 } }, + H040L50C40 : { description: 'Ant Red', hue: '40°', lightness: '50%', chromaticity: '40%', rgb: { r: 176 , g: 93 ,b: 74 } }, + H040L50C50 : { description: 'English Red', hue: '40°', lightness: '50%', chromaticity: '50%', rgb: { r: 189 , g: 85 ,b: 62 } }, + H040L50C60 : { description: 'Fox Red', hue: '40°', lightness: '50%', chromaticity: '60%', rgb: { r: 202 , g: 78 ,b: 51 } }, + H040L50C70 : { description: 'Pompeii Red', hue: '40°', lightness: '50%', chromaticity: '70%', rgb: { r: 209 , g: 70 ,b: 44 } }, + H040L60C05 : { description: 'Warm Grey', hue: '40°', lightness: '60%', chromaticity: '5%', rgb: { r: 153 , g: 142 ,b: 138 } }, + H040L60C10 : { description: 'Light Caramel', hue: '40°', lightness: '60%', chromaticity: '10%', rgb: { r: 163 , g: 138 ,b: 131 } }, + H040L60C20 : { description: 'Sienna Yellow', hue: '40°', lightness: '60%', chromaticity: '20%', rgb: { r: 176 , g: 130 ,b: 119 } }, + H040L60C30 : { description: 'Cedar Red', hue: '40°', lightness: '60%', chromaticity: '30%', rgb: { r: 194 , g: 126 ,b: 111 } }, + H040L60C40 : { description: 'Terra Orange', hue: '40°', lightness: '60%', chromaticity: '40%', rgb: { r: 204 , g: 118 ,b: 97 } }, + H040L60C50 : { description: 'Mandarin Orange', hue: '40°', lightness: '60%', chromaticity: '50%', rgb: { r: 218 , g: 113 ,b: 87 } }, + H040L60C60 : { description: 'Coral Orange', hue: '40°', lightness: '60%', chromaticity: '60%', rgb: { r: 228 , g: 105 ,b: 76 } }, + H040L70C05 : { description: 'Matte Grey', hue: '40°', lightness: '70%', chromaticity: '5%', rgb: { r: 180 , g: 168 ,b: 164 } }, + H040L70C10 : { description: 'Mohair Mauve', hue: '40°', lightness: '70%', chromaticity: '10%', rgb: { r: 191 , g: 165 ,b: 158 } }, + H040L70C20 : { description: 'Soft Sienna', hue: '40°', lightness: '70%', chromaticity: '20%', rgb: { r: 208 , g: 159 ,b: 147 } }, + H040L70C30 : { description: 'Industrial Rose', hue: '40°', lightness: '70%', chromaticity: '30%', rgb: { r: 224 , g: 152 ,b: 135 } }, + H040L70C40 : { description: 'Apricot Red', hue: '40°', lightness: '70%', chromaticity: '40%', rgb: { r: 232 , g: 145 ,b: 125 } }, + H040L70C50 : { description: 'Fruit Red', hue: '40°', lightness: '70%', chromaticity: '50%', rgb: { r: 250 , g: 137 ,b: 112 } }, + H040L80C05 : { description: 'Natural Silk Grey', hue: '40°', lightness: '80%', chromaticity: '5%', rgb: { r: 211 , g: 197 ,b: 192 } }, + H040L80C10 : { description: 'Thulite Rose', hue: '40°', lightness: '80%', chromaticity: '10%', rgb: { r: 221 , g: 194 ,b: 186 } }, + H040L80C20 : { description: 'Madder Orange', hue: '40°', lightness: '80%', chromaticity: '20%', rgb: { r: 241 , g: 190 ,b: 176 } }, + H040L80C30 : { description: 'Nature Apricot', hue: '40°', lightness: '80%', chromaticity: '30%', rgb: { r: 254 , g: 183 ,b: 165 } }, + H040L85C05 : { description: 'Pandora Grey', hue: '40°', lightness: '85%', chromaticity: '5%', rgb: { r: 227 , g: 212 ,b: 207 } }, + H040L85C10 : { description: 'Fine Alabaster', hue: '40°', lightness: '85%', chromaticity: '10%', rgb: { r: 236 , g: 211 ,b: 203 } }, + H040L85C20 : { description: 'Delicate Sweet Apricot', hue: '40°', lightness: '85%', chromaticity: '20%', rgb: { r: 253 , g: 205 ,b: 189 } }, + H040L90C05 : { description: 'Sahara Light Red', hue: '40°', lightness: '90%', chromaticity: '5%', rgb: { r: 240 , g: 225 ,b: 219 } }, + H040L90C10 : { description: 'Delicate Rose', hue: '40°', lightness: '90%', chromaticity: '10%', rgb: { r: 247 , g: 224 ,b: 214 } }, + H040L93C05 : { description: 'Natural White', hue: '40°', lightness: '93%', chromaticity: '5%', rgb: { r: 251 , g: 237 ,b: 229 } }, + H050L20C10 : { description: 'Granite Brown', hue: '50°', lightness: '20%', chromaticity: '10%', rgb: { r: 61 , g: 45 ,b: 36 } }, + H050L20C16 : { description: 'Night Brown', hue: '50°', lightness: '20%', chromaticity: '16%', rgb: { r: 68 , g: 40 ,b: 27 } }, + H050L30C10 : { description: 'Obsidian Brown', hue: '50°', lightness: '30%', chromaticity: '10%', rgb: { r: 82 , g: 62 ,b: 53 } }, + H050L30C20 : { description: 'Tropical Wood Brown', hue: '50°', lightness: '30%', chromaticity: '20%', rgb: { r: 96 , g: 59 ,b: 42 } }, + H050L30C30 : { description: 'Tobacco Brown', hue: '50°', lightness: '30%', chromaticity: '30%', rgb: { r: 108 , g: 56 ,b: 33 } }, + H050L30C36 : { description: 'Rosewood Brown', hue: '50°', lightness: '30%', chromaticity: '36%', rgb: { r: 114 , g: 55 ,b: 28 } }, + H050L40C10 : { description: 'Mocha Black', hue: '50°', lightness: '40%', chromaticity: '10%', rgb: { r: 111 , g: 91 ,b: 82 } }, + H050L40C20 : { description: 'Florentine Brown', hue: '50°', lightness: '40%', chromaticity: '20%', rgb: { r: 122 , g: 85 ,b: 68 } }, + H050L40C30 : { description: 'Curry Brown', hue: '50°', lightness: '40%', chromaticity: '30%', rgb: { r: 132 , g: 80 ,b: 56 } }, + H050L40C40 : { description: 'Madeira Brown', hue: '50°', lightness: '40%', chromaticity: '40%', rgb: { r: 143 , g: 72 ,b: 38 } }, + H050L40C50 : { description: 'Autumn Red', hue: '50°', lightness: '40%', chromaticity: '50%', rgb: { r: 153 , g: 69 ,b: 31 } }, + H050L50C10 : { description: 'Teakwood Brown', hue: '50°', lightness: '50%', chromaticity: '10%', rgb: { r: 137 , g: 117 ,b: 107 } }, + H050L50C20 : { description: 'Milk Coffee Brown', hue: '50°', lightness: '50%', chromaticity: '20%', rgb: { r: 150 , g: 111 ,b: 93 } }, + H050L50C30 : { description: 'Golden Brown', hue: '50°', lightness: '50%', chromaticity: '30%', rgb: { r: 163 , g: 106 ,b: 79 } }, + H050L50C40 : { description: 'Copper-Metal Red', hue: '50°', lightness: '50%', chromaticity: '40%', rgb: { r: 173 , g: 99 ,b: 66 } }, + H050L50C50 : { description: 'Gold Varnish Brown', hue: '50°', lightness: '50%', chromaticity: '50%', rgb: { r: 185 , g: 94 ,b: 51 } }, + H050L50C60 : { description: 'Titian Red', hue: '50°', lightness: '50%', chromaticity: '60%', rgb: { r: 189 , g: 86 ,b: 32 } }, + H050L50C70 : { description: 'Poppy Red', hue: '50°', lightness: '50%', chromaticity: '70%', rgb: { r: 205 , g: 77 ,b: 4 } }, + H050L50C78 : { description: 'Persian Orange', hue: '50°', lightness: '50%', chromaticity: '78%', rgb: { r: 212 , g: 88 ,b: 20 } }, + H050L60C10 : { description: 'Ecru Ochre', hue: '50°', lightness: '60%', chromaticity: '10%', rgb: { r: 164 , g: 141 ,b: 131 } }, + H050L60C20 : { description: 'Caramel Brown', hue: '50°', lightness: '60%', chromaticity: '20%', rgb: { r: 177 , g: 135 ,b: 117 } }, + H050L60C30 : { description: 'Medium Brown', hue: '50°', lightness: '60%', chromaticity: '30%', rgb: { r: 194 , g: 132 ,b: 104 } }, + H050L60C40 : { description: 'Apricot Brown', hue: '50°', lightness: '60%', chromaticity: '40%', rgb: { r: 204 , g: 126 ,b: 91 } }, + H050L60C50 : { description: 'Orange Yellow', hue: '50°', lightness: '60%', chromaticity: '50%', rgb: { r: 216 , g: 121 ,b: 76 } }, + H050L60C60 : { description: 'Camel Red', hue: '50°', lightness: '60%', chromaticity: '60%', rgb: { r: 229 , g: 116 ,b: 59 } }, + H050L60C70 : { description: 'Carrot Orange', hue: '50°', lightness: '60%', chromaticity: '70%', rgb: { r: 233 , g: 103 ,b: 45 } }, + H050L60C80 : { description: 'Gerbera Red', hue: '50°', lightness: '60%', chromaticity: '80%', rgb: { r: 246 , g: 97 ,b: 26 } }, + H050L70C10 : { description: 'Bamboo Beige', hue: '50°', lightness: '70%', chromaticity: '10%', rgb: { r: 193 , g: 171 ,b: 160 } }, + H050L70C20 : { description: 'Amber Grey', hue: '50°', lightness: '70%', chromaticity: '20%', rgb: { r: 208 , g: 165 ,b: 146 } }, + H050L70C30 : { description: 'Sienna Ochre', hue: '50°', lightness: '70%', chromaticity: '30%', rgb: { r: 222 , g: 159 ,b: 131 } }, + H050L70C40 : { description: 'Light Amber Orange', hue: '50°', lightness: '70%', chromaticity: '40%', rgb: { r: 237 , g: 154 ,b: 118 } }, + H050L70C50 : { description: 'Melon Red', hue: '50°', lightness: '70%', chromaticity: '50%', rgb: { r: 246 , g: 146 ,b: 104 } }, + H050L70C60 : { description: 'Mango Orange', hue: '50°', lightness: '70%', chromaticity: '60%', rgb: { r: 255 , g: 139 ,b: 88 } }, + H050L80C10 : { description: 'Pale Sienna', hue: '50°', lightness: '80%', chromaticity: '10%', rgb: { r: 223 , g: 199 ,b: 188 } }, + H050L80C20 : { description: 'Soft Orange', hue: '50°', lightness: '80%', chromaticity: '20%', rgb: { r: 238 , g: 192 ,b: 171 } }, + H050L80C30 : { description: 'Pallid Orange', hue: '50°', lightness: '80%', chromaticity: '30%', rgb: { r: 252 , g: 185 ,b: 157 } }, + H050L85C05 : { description: 'Ocean Sand', hue: '50°', lightness: '85%', chromaticity: '5%', rgb: { r: 228 , g: 213 ,b: 205 } }, + H050L85C10 : { description: 'Pure Beige', hue: '50°', lightness: '85%', chromaticity: '10%', rgb: { r: 233 , g: 208 ,b: 196 } }, + H050L85C20 : { description: 'Biscuit Cream', hue: '50°', lightness: '85%', chromaticity: '20%', rgb: { r: 249 , g: 204 ,b: 183 } }, + H050L90C05 : { description: 'Eggshell White', hue: '50°', lightness: '90%', chromaticity: '5%', rgb: { r: 243 , g: 228 ,b: 220 } }, + H050L90C10 : { description: 'Light Peach Rose', hue: '50°', lightness: '90%', chromaticity: '10%', rgb: { r: 255 , g: 230 ,b: 216 } }, + H050L93C05 : { description: 'Tulle White', hue: '50°', lightness: '93%', chromaticity: '5%', rgb: { r: 251 , g: 237 ,b: 229 } }, + H060L20C05 : { description: 'Industrial Black', hue: '60°', lightness: '20%', chromaticity: '5%', rgb: { r: 50 , g: 43 ,b: 38 } }, + H060L30C05 : { description: 'Vehicle Body Grey', hue: '60°', lightness: '30%', chromaticity: '5%', rgb: { r: 76 , g: 67 ,b: 61 } }, + H060L30C10 : { description: 'Nutria Fur Brown', hue: '60°', lightness: '30%', chromaticity: '10%', rgb: { r: 81 , g: 64 ,b: 53 } }, + H060L30C20 : { description: 'Peat Brown', hue: '60°', lightness: '30%', chromaticity: '20%', rgb: { r: 90 , g: 61 ,b: 41 } }, + H060L30C27 : { description: 'Cassiterite Brown', hue: '60°', lightness: '30%', chromaticity: '27%', rgb: { r: 98 , g: 60 ,b: 31 } }, + H060L40C05 : { description: 'Zinc Grey', hue: '60°', lightness: '40%', chromaticity: '5%', rgb: { r: 101 , g: 91 ,b: 85 } }, + H060L40C10 : { description: 'Moor Oak Grey', hue: '60°', lightness: '40%', chromaticity: '10%', rgb: { r: 106 , g: 88 ,b: 77 } }, + H060L40C20 : { description: 'Coffee Bean Brown', hue: '60°', lightness: '40%', chromaticity: '20%', rgb: { r: 118 , g: 86 ,b: 64 } }, + H060L40C30 : { description: 'Brazilian Brown', hue: '60°', lightness: '40%', chromaticity: '30%', rgb: { r: 127 , g: 81 ,b: 49 } }, + H060L40C40 : { description: 'Plane Brown', hue: '60°', lightness: '40%', chromaticity: '40%', rgb: { r: 138 , g: 80 ,b: 36 } }, + H060L50C05 : { description: 'Chinchilla Grey', hue: '60°', lightness: '50%', chromaticity: '5%', rgb: { r: 127 , g: 116 ,b: 110 } }, + H060L50C10 : { description: 'Sandstone Grey', hue: '60°', lightness: '50%', chromaticity: '10%', rgb: { r: 133 , g: 114 ,b: 102 } }, + H060L50C20 : { description: 'Mushroom Brown', hue: '60°', lightness: '50%', chromaticity: '20%', rgb: { r: 144 , g: 110 ,b: 88 } }, + H060L50C30 : { description: 'Mustard Brown', hue: '60°', lightness: '50%', chromaticity: '30%', rgb: { r: 157 , g: 108 ,b: 74 } }, + H060L50C40 : { description: 'Camel Brown', hue: '60°', lightness: '50%', chromaticity: '40%', rgb: { r: 165 , g: 102 ,b: 57 } }, + H060L50C50 : { description: 'Date Fruit Brown', hue: '60°', lightness: '50%', chromaticity: '50%', rgb: { r: 175 , g: 100 ,b: 43 } }, + H060L50C60 : { description: 'Elm Brown Red', hue: '60°', lightness: '50%', chromaticity: '60%', rgb: { r: 178 , g: 91 ,b: 9 } }, + H060L50C70 : { description: 'Dry Clay', hue: '60°', lightness: '50%', chromaticity: '70%', rgb: { r: 189 , g: 92 ,b: 0 } }, + H060L60C05 : { description: 'Screed Grey', hue: '60°', lightness: '60%', chromaticity: '5%', rgb: { r: 154 , g: 144 ,b: 138 } }, + H060L60C10 : { description: 'Oak Brown', hue: '60°', lightness: '60%', chromaticity: '10%', rgb: { r: 161 , g: 141 ,b: 128 } }, + H060L60C20 : { description: 'Light Topaz Ochre', hue: '60°', lightness: '60%', chromaticity: '20%', rgb: { r: 176 , g: 137 ,b: 113 } }, + H060L60C30 : { description: 'Cognac Brown', hue: '60°', lightness: '60%', chromaticity: '30%', rgb: { r: 185 , g: 133 ,b: 99 } }, + H060L60C40 : { description: 'Maple Syrup Brown', hue: '60°', lightness: '60%', chromaticity: '40%', rgb: { r: 200 , g: 133 ,b: 84 } }, + H060L60C50 : { description: 'Turmeric Red', hue: '60°', lightness: '60%', chromaticity: '50%', rgb: { r: 202 , g: 122 ,b: 64 } }, + H060L60C60 : { description: 'Bitter Orange', hue: '60°', lightness: '60%', chromaticity: '60%', rgb: { r: 213 , g: 118 ,b: 43 } }, + H060L60C70 : { description: 'Gold Orange', hue: '60°', lightness: '60%', chromaticity: '70%', rgb: { r: 219 , g: 114 ,b: 16 } }, + H060L60C80 : { description: 'Accent Orange', hue: '60°', lightness: '60%', chromaticity: '80%', rgb: { r: 229 , g: 109 ,b: 0 } }, + H060L70C05 : { description: 'Cement Greige', hue: '60°', lightness: '70%', chromaticity: '5%', rgb: { r: 181 , g: 171 ,b: 164 } }, + H060L70C10 : { description: 'Putty Grey', hue: '60°', lightness: '70%', chromaticity: '10%', rgb: { r: 189 , g: 168 ,b: 156 } }, + H060L70C20 : { description: 'Peanutbutter', hue: '60°', lightness: '70%', chromaticity: '20%', rgb: { r: 200 , g: 163 ,b: 138 } }, + H060L70C30 : { description: 'Peach Yellow', hue: '60°', lightness: '70%', chromaticity: '30%', rgb: { r: 209 , g: 156 ,b: 121 } }, + H060L70C40 : { description: 'Candle Yellow', hue: '60°', lightness: '70%', chromaticity: '40%', rgb: { r: 224 , g: 155 ,b: 110 } }, + H060L70C50 : { description: 'Topaz Yellow', hue: '60°', lightness: '70%', chromaticity: '50%', rgb: { r: 235 , g: 151 ,b: 94 } }, + H060L70C60 : { description: 'Melon Orange', hue: '60°', lightness: '70%', chromaticity: '60%', rgb: { r: 240 , g: 143 ,b: 72 } }, + H060L70C70 : { description: 'Indian Yellow', hue: '60°', lightness: '70%', chromaticity: '70%', rgb: { r: 252 , g: 140 ,b: 53 } }, + H060L80C05 : { description: 'Light Chamois Beige', hue: '60°', lightness: '80%', chromaticity: '5%', rgb: { r: 209 , g: 198 ,b: 190 } }, + H060L80C10 : { description: 'Soft Greige', hue: '60°', lightness: '80%', chromaticity: '10%', rgb: { r: 215 , g: 195 ,b: 181 } }, + H060L80C20 : { description: 'Biscuit Beige', hue: '60°', lightness: '80%', chromaticity: '20%', rgb: { r: 230 , g: 191 ,b: 166 } }, + H060L80C30 : { description: 'Mild Orange', hue: '60°', lightness: '80%', chromaticity: '30%', rgb: { r: 244 , g: 186 ,b: 148 } }, + H060L80C40 : { description: 'Apricot Orange', hue: '60°', lightness: '80%', chromaticity: '40%', rgb: { r: 253 , g: 180 ,b: 130 } }, + H060L85C05 : { description: 'Champagne Rose', hue: '60°', lightness: '85%', chromaticity: '5%', rgb: { r: 227 , g: 214 ,b: 204 } }, + H060L85C10 : { description: 'Cornmeal Beige', hue: '60°', lightness: '85%', chromaticity: '10%', rgb: { r: 235 , g: 213 ,b: 197 } }, + H060L85C20 : { description: 'Dough Yellow', hue: '60°', lightness: '85%', chromaticity: '20%', rgb: { r: 246 , g: 208 ,b: 182 } }, + H060L85C30 : { description: 'Light Saffron Orange', hue: '60°', lightness: '85%', chromaticity: '30%', rgb: { r: 255 , g: 204 ,b: 165 } }, + H060L90C05 : { description: 'Grain White', hue: '60°', lightness: '90%', chromaticity: '5%', rgb: { r: 239 , g: 227 ,b: 216 } }, + H060L90C10 : { description: 'Vanilla Cream', hue: '60°', lightness: '90%', chromaticity: '10%', rgb: { r: 247 , g: 224 ,b: 210 } }, + H060L90C15 : { description: 'Apricot Cream', hue: '60°', lightness: '90%', chromaticity: '15%', rgb: { r: 253 , g: 220 ,b: 200 } }, + H060L93C05 : { description: 'Wool White', hue: '60°', lightness: '93%', chromaticity: '5%', rgb: { r: 249 , g: 237 ,b: 228 } }, + H070L30C10 : { description: 'Mineral Brown', hue: '70°', lightness: '30%', chromaticity: '10%', rgb: { r: 77 , g: 63 ,b: 51 } }, + H070L30C20 : { description: 'Beech Brown', hue: '70°', lightness: '30%', chromaticity: '20%', rgb: { r: 87 , g: 65 ,b: 40 } }, + H070L40C10 : { description: 'Mink Brown', hue: '70°', lightness: '40%', chromaticity: '10%', rgb: { r: 103 , g: 89 ,b: 76 } }, + H070L40C20 : { description: 'Huckleberry Brown', hue: '70°', lightness: '40%', chromaticity: '20%', rgb: { r: 113 , g: 86 ,b: 59 } }, + H070L40C30 : { description: 'Arable Brown', hue: '70°', lightness: '40%', chromaticity: '30%', rgb: { r: 122 , g: 85 ,b: 46 } }, + H070L40C40 : { description: 'Autumn Gold', hue: '70°', lightness: '40%', chromaticity: '40%', rgb: { r: 128 , g: 82 ,b: 26 } }, + H070L50C10 : { description: 'Saruk Grey', hue: '70°', lightness: '50%', chromaticity: '10%', rgb: { r: 129 , g: 114 ,b: 101 } }, + H070L50C20 : { description: 'Ash Gold', hue: '70°', lightness: '50%', chromaticity: '20%', rgb: { r: 140 , g: 111 ,b: 84 } }, + H070L50C30 : { description: "Lion's Mane Blonde", hue: '70°', lightness: '50%', chromaticity: '30%', rgb: { r: 148 , g: 107 ,b: 65 } }, + H070L50C40 : { description: 'Antique Gold', hue: '70°', lightness: '50%', chromaticity: '40%', rgb: { r: 157 , g: 105 ,b: 47 } }, + H070L50C50 : { description: 'Stage Gold', hue: '70°', lightness: '50%', chromaticity: '50%', rgb: { r: 158 , g: 105 ,b: 40 } }, + H070L50C55 : { description: 'Theatre Gold', hue: '70°', lightness: '50%', chromaticity: '55%', rgb: { r: 167 , g: 105 ,b: 36 } }, + H070L60C10 : { description: 'Light Mahogany', hue: '70°', lightness: '60%', chromaticity: '10%', rgb: { r: 155 , g: 139 ,b: 124 } }, + H070L60C20 : { description: 'Dark Blond', hue: '70°', lightness: '60%', chromaticity: '20%', rgb: { r: 166 , g: 138 ,b: 110 } }, + H070L60C30 : { description: 'Light Oak Brown', hue: '70°', lightness: '60%', chromaticity: '30%', rgb: { r: 175 , g: 133 ,b: 92 } }, + H070L60C40 : { description: 'Grain Brown', hue: '70°', lightness: '60%', chromaticity: '40%', rgb: { r: 184 , g: 131 ,b: 73 } }, + H070L60C50 : { description: 'Mud Yellow', hue: '70°', lightness: '60%', chromaticity: '50%', rgb: { r: 193 , g: 129 ,b: 54 } }, + H070L60C60 : { description: 'Mustard Yellow', hue: '70°', lightness: '60%', chromaticity: '60%', rgb: { r: 203 , g: 129 ,b: 45 } }, + H070L60C70 : { description: 'Seabuckthorn Yellow Brown', hue: '70°', lightness: '60%', chromaticity: '70%', rgb: { r: 205 , g: 123 ,b: 0 } }, + H070L60C75 : { description: 'Autumn Leaf Orange', hue: '70°', lightness: '60%', chromaticity: '75%', rgb: { r: 208 , g: 122 ,b: 4 } }, + H070L70C10 : { description: 'Ginger Grey Yellow', hue: '70°', lightness: '70%', chromaticity: '10%', rgb: { r: 184 , g: 168 ,b: 153 } }, + H070L70C20 : { description: 'Light Ash Brown', hue: '70°', lightness: '70%', chromaticity: '20%', rgb: { r: 194 , g: 164 ,b: 135 } }, + H070L70C30 : { description: 'Golden Beige', hue: '70°', lightness: '70%', chromaticity: '30%', rgb: { r: 206 , g: 162 ,b: 119 } }, + H070L70C40 : { description: 'Dechant Pear Yellow', hue: '70°', lightness: '70%', chromaticity: '40%', rgb: { r: 215 , g: 158 ,b: 98 } }, + H070L70C50 : { description: 'Honeycomb Yellow', hue: '70°', lightness: '70%', chromaticity: '50%', rgb: { r: 222 , g: 156 ,b: 82 } }, + H070L70C60 : { description: 'Gorse Yellow Orange', hue: '70°', lightness: '70%', chromaticity: '60%', rgb: { r: 233 , g: 154 ,b: 60 } }, + H070L70C70 : { description: 'Naples Yellow', hue: '70°', lightness: '70%', chromaticity: '70%', rgb: { r: 235 , g: 147 ,b: 31 } }, + H070L70C80 : { description: 'Saffron Gold', hue: '70°', lightness: '70%', chromaticity: '80%', rgb: { r: 240 , g: 143 ,b: 0 } }, + H070L80C10 : { description: 'Flax Beige', hue: '70°', lightness: '80%', chromaticity: '10%', rgb: { r: 212 , g: 195 ,b: 179 } }, + H070L80C20 : { description: 'Buttercup Yellow', hue: '70°', lightness: '80%', chromaticity: '20%', rgb: { r: 227 , g: 194 ,b: 163 } }, + H070L80C30 : { description: 'Golden Oat Coloured', hue: '70°', lightness: '80%', chromaticity: '30%', rgb: { r: 236 , g: 190 ,b: 145 } }, + H070L80C40 : { description: 'Apricot Yellow', hue: '70°', lightness: '80%', chromaticity: '40%', rgb: { r: 247 , g: 189 ,b: 129 } }, + H070L80C50 : { description: 'Warm Apricot', hue: '70°', lightness: '80%', chromaticity: '50%', rgb: { r: 255 , g: 184 ,b: 107 } }, + H070L80C60 : { description: 'Golden Rain Yellow', hue: '70°', lightness: '80%', chromaticity: '60%', rgb: { r: 255 , g: 182 ,b: 87 } }, + H070L85C05 : { description: 'Almond Beige', hue: '70°', lightness: '85%', chromaticity: '5%', rgb: { r: 223 , g: 213 ,b: 202 } }, + H070L85C10 : { description: 'Silver Thistle Beige', hue: '70°', lightness: '85%', chromaticity: '10%', rgb: { r: 231 , g: 213 ,b: 197 } }, + H070L85C20 : { description: 'Sandalwood Beige', hue: '70°', lightness: '85%', chromaticity: '20%', rgb: { r: 242 , g: 209 ,b: 177 } }, + H070L85C30 : { description: 'Hair Blonde', hue: '70°', lightness: '85%', chromaticity: '30%', rgb: { r: 253 , g: 207 ,b: 161 } }, + H070L90C05 : { description: 'Off White', hue: '70°', lightness: '90%', chromaticity: '5%', rgb: { r: 237 , g: 228 ,b: 217 } }, + H070L90C10 : { description: 'Light Corn', hue: '70°', lightness: '90%', chromaticity: '10%', rgb: { r: 243 , g: 226 ,b: 209 } }, + H070L90C20 : { description: 'Chalk Yellow', hue: '70°', lightness: '90%', chromaticity: '20%', rgb: { r: 255 , g: 222 ,b: 190 } }, + H070L93C05 : { description: 'Anemone White', hue: '70°', lightness: '93%', chromaticity: '5%', rgb: { r: 249 , g: 239 ,b: 228 } }, + H075L40C10 : { description: 'Tree Bark Brown', hue: '75°', lightness: '40%', chromaticity: '10%', rgb: { r: 102 , g: 91 ,b: 78 } }, + H075L40C20 : { description: 'Caraway Brown', hue: '75°', lightness: '40%', chromaticity: '20%', rgb: { r: 109 , g: 86 ,b: 60 } }, + H075L40C30 : { description: 'Bark Brown', hue: '75°', lightness: '40%', chromaticity: '30%', rgb: { r: 115 , g: 83 ,b: 42 } }, + H075L40C38 : { description: 'Lizard Brown', hue: '75°', lightness: '40%', chromaticity: '38%', rgb: { r: 121 , g: 84 ,b: 25 } }, + H075L50C10 : { description: 'Rye Dough Brown', hue: '75°', lightness: '50%', chromaticity: '10%', rgb: { r: 128 , g: 115 ,b: 101 } }, + H075L50C20 : { description: 'China Cinnamon', hue: '75°', lightness: '50%', chromaticity: '20%', rgb: { r: 138 , g: 112 ,b: 84 } }, + H075L50C30 : { description: 'Grog Yellow', hue: '75°', lightness: '50%', chromaticity: '30%', rgb: { r: 147 , g: 112 ,b: 67 } }, + H075L50C40 : { description: 'Amber Brown', hue: '75°', lightness: '50%', chromaticity: '40%', rgb: { r: 154 , g: 108 ,b: 49 } }, + H075L50C50 : { description: 'Cinnamon Brown', hue: '75°', lightness: '50%', chromaticity: '50%', rgb: { r: 158 , g: 106 ,b: 25 } }, + H075L50C58 : { description: 'Cumin Ochre', hue: '75°', lightness: '50%', chromaticity: '58%', rgb: { r: 160 , g: 102 ,b: 0 } }, + H075L60C10 : { description: 'Putty Yellow', hue: '75°', lightness: '60%', chromaticity: '10%', rgb: { r: 157 , g: 142 ,b: 127 } }, + H075L60C20 : { description: 'Walnut Shell Brown', hue: '75°', lightness: '60%', chromaticity: '20%', rgb: { r: 166 , g: 139 ,b: 110 } }, + H075L60C30 : { description: 'Clay Ochre', hue: '75°', lightness: '60%', chromaticity: '30%', rgb: { r: 174 , g: 137 ,b: 93 } }, + H075L60C40 : { description: 'Funchal Yellow', hue: '75°', lightness: '60%', chromaticity: '40%', rgb: { r: 182 , g: 136 ,b: 77 } }, + H075L60C50 : { description: 'Mango Brown', hue: '75°', lightness: '60%', chromaticity: '50%', rgb: { r: 187 , g: 132 ,b: 52 } }, + H075L60C60 : { description: 'Turmeric Brown', hue: '75°', lightness: '60%', chromaticity: '60%', rgb: { r: 193 , g: 129 ,b: 22 } }, + H075L60C70 : { description: 'Bamboo Brown', hue: '75°', lightness: '60%', chromaticity: '70%', rgb: { r: 200 , g: 127 ,b: 0 } }, + H075L70C10 : { description: 'Flax Fibre Grey', hue: '75°', lightness: '70%', chromaticity: '10%', rgb: { r: 183 , g: 169 ,b: 154 } }, + H075L70C20 : { description: 'Light Pumpkin Brown', hue: '75°', lightness: '70%', chromaticity: '20%', rgb: { r: 194 , g: 165 ,b: 133 } }, + H075L70C30 : { description: 'Golden Thistle Yellow', hue: '75°', lightness: '70%', chromaticity: '30%', rgb: { r: 202 , g: 163 ,b: 117 } }, + H075L70C40 : { description: 'Brick Yellow', hue: '75°', lightness: '70%', chromaticity: '40%', rgb: { r: 210 , g: 161 ,b: 97 } }, + H075L70C50 : { description: 'Deep Bamboo Yellow', hue: '75°', lightness: '70%', chromaticity: '50%', rgb: { r: 217 , g: 159 ,b: 80 } }, + H075L70C60 : { description: 'Intense Yellow', hue: '75°', lightness: '70%', chromaticity: '60%', rgb: { r: 225 , g: 156 ,b: 53 } }, + H075L70C70 : { description: 'Pumpkin Yellow', hue: '75°', lightness: '70%', chromaticity: '70%', rgb: { r: 233 , g: 154 ,b: 16 } }, + H075L70C80 : { description: 'Autumn Yellow', hue: '75°', lightness: '70%', chromaticity: '80%', rgb: { r: 233 , g: 151 ,b: 0 } }, + H075L80C10 : { description: 'Chalk Beige', hue: '75°', lightness: '80%', chromaticity: '10%', rgb: { r: 214 , g: 197 ,b: 180 } }, + H075L80C20 : { description: 'Light Corn Yellow', hue: '75°', lightness: '80%', chromaticity: '20%', rgb: { r: 224 , g: 195 ,b: 162 } }, + H075L80C30 : { description: 'Dark Yellow', hue: '75°', lightness: '80%', chromaticity: '30%', rgb: { r: 231 , g: 191 ,b: 142 } }, + H075L80C40 : { description: 'Ash Yellow', hue: '75°', lightness: '80%', chromaticity: '40%', rgb: { r: 240 , g: 189 ,b: 126 } }, + H075L80C50 : { description: 'Orient Yellow', hue: '75°', lightness: '80%', chromaticity: '50%', rgb: { r: 247 , g: 185 ,b: 105 } }, + H075L80C60 : { description: 'Carriage Yellow', hue: '75°', lightness: '80%', chromaticity: '60%', rgb: { r: 255 , g: 183 ,b: 86 } }, + H075L85C10 : { description: 'Water Lily White', hue: '75°', lightness: '85%', chromaticity: '10%', rgb: { r: 230 , g: 214 ,b: 196 } }, + H075L85C20 : { description: 'Banana Ice Cream', hue: '75°', lightness: '85%', chromaticity: '20%', rgb: { r: 241 , g: 211 ,b: 178 } }, + H075L85C30 : { description: 'Maple Beige', hue: '75°', lightness: '85%', chromaticity: '30%', rgb: { r: 250 , g: 208 ,b: 161 } }, + H075L85C40 : { description: 'Goldenrod Yellow', hue: '75°', lightness: '85%', chromaticity: '40%', rgb: { r: 255 , g: 206 ,b: 143 } }, + H075L90C10 : { description: 'Dessert Cream', hue: '75°', lightness: '90%', chromaticity: '10%', rgb: { r: 246 , g: 228 ,b: 208 } }, + H075L90C20 : { description: 'Butter White', hue: '75°', lightness: '90%', chromaticity: '20%', rgb: { r: 253 , g: 222 ,b: 189 } }, + H075L93C05 : { description: 'Vanilla White', hue: '75°', lightness: '93%', chromaticity: '5%', rgb: { r: 246 , g: 238 ,b: 229 } }, + H080L20C05 : { description: 'Night Brown Black', hue: '80°', lightness: '20%', chromaticity: '5%', rgb: { r: 50 , g: 45 ,b: 37 } }, + H080L20C10 : { description: 'Vanilla Bean Brown', hue: '80°', lightness: '20%', chromaticity: '10%', rgb: { r: 54 , g: 44 ,b: 29 } }, + H080L30C05 : { description: 'Earth Black', hue: '80°', lightness: '30%', chromaticity: '5%', rgb: { r: 73 , g: 67 ,b: 59 } }, + H080L30C10 : { description: 'Olive Black', hue: '80°', lightness: '30%', chromaticity: '10%', rgb: { r: 75 , g: 64 ,b: 49 } }, + H080L30C20 : { description: 'Clove Yellow Brown', hue: '80°', lightness: '30%', chromaticity: '20%', rgb: { r: 82 , g: 63 ,b: 33 } }, + H080L30C26 : { description: 'Smoked Oak Brown', hue: '80°', lightness: '30%', chromaticity: '26%', rgb: { r: 87 , g: 63 ,b: 22 } }, + H080L40C05 : { description: 'Office Grey', hue: '80°', lightness: '40%', chromaticity: '5%', rgb: { r: 99 , g: 93 ,b: 84 } }, + H080L40C10 : { description: 'Stone Brown', hue: '80°', lightness: '40%', chromaticity: '10%', rgb: { r: 102 , g: 91 ,b: 77 } }, + H080L40C20 : { description: 'Pimento Grain Brown', hue: '80°', lightness: '40%', chromaticity: '20%', rgb: { r: 108 , g: 87 ,b: 56 } }, + H080L40C30 : { description: 'Ochre Green', hue: '80°', lightness: '40%', chromaticity: '30%', rgb: { r: 114 , g: 87 ,b: 40 } }, + H080L40C40 : { description: 'Autumn Leaf Brown', hue: '80°', lightness: '40%', chromaticity: '40%', rgb: { r: 122 , g: 86 ,b: 14 } }, + H080L50C05 : { description: 'Dusk Grey', hue: '80°', lightness: '50%', chromaticity: '5%', rgb: { r: 123 , g: 117 ,b: 108 } }, + H080L50C10 : { description: 'Rye Brown', hue: '80°', lightness: '50%', chromaticity: '10%', rgb: { r: 128 , g: 116 ,b: 101 } }, + H080L50C20 : { description: 'Greyish Yellow', hue: '80°', lightness: '50%', chromaticity: '20%', rgb: { r: 135 , g: 114 ,b: 84 } }, + H080L50C30 : { description: 'Chili Green', hue: '80°', lightness: '50%', chromaticity: '30%', rgb: { r: 141 , g: 112 ,b: 64 } }, + H080L50C40 : { description: 'Dirt Yellow', hue: '80°', lightness: '50%', chromaticity: '40%', rgb: { r: 146 , g: 110 ,b: 46 } }, + H080L50C50 : { description: 'Chamois Yellow', hue: '80°', lightness: '50%', chromaticity: '50%', rgb: { r: 152 , g: 110 ,b: 25 } }, + H080L60C05 : { description: 'Flannel Grey', hue: '80°', lightness: '60%', chromaticity: '5%', rgb: { r: 150 , g: 144 ,b: 135 } }, + H080L60C10 : { description: 'Light Khaki', hue: '80°', lightness: '60%', chromaticity: '10%', rgb: { r: 153 , g: 141 ,b: 124 } }, + H080L60C20 : { description: 'Spelt Grain Brown', hue: '80°', lightness: '60%', chromaticity: '20%', rgb: { r: 163 , g: 140 ,b: 107 } }, + H080L60C30 : { description: 'Golden Quartz Ochre', hue: '80°', lightness: '60%', chromaticity: '30%', rgb: { r: 170 , g: 138 ,b: 88 } }, + H080L60C40 : { description: 'Bamboo Yellow', hue: '80°', lightness: '60%', chromaticity: '40%', rgb: { r: 174 , g: 136 ,b: 75 } }, + H080L60C50 : { description: 'Brass Yellow', hue: '80°', lightness: '60%', chromaticity: '50%', rgb: { r: 181 , g: 135 ,b: 53 } }, + H080L60C60 : { description: 'Fig Mustard Yellow', hue: '80°', lightness: '60%', chromaticity: '60%', rgb: { r: 187 , g: 134 ,b: 16 } }, + H080L60C70 : { description: 'Yellow Gold', hue: '80°', lightness: '60%', chromaticity: '70%', rgb: { r: 190 , g: 132 ,b: 0 } }, + H080L70C05 : { description: 'Garlic Beige', hue: '80°', lightness: '70%', chromaticity: '5%', rgb: { r: 176 , g: 170 ,b: 161 } }, + H080L70C10 : { description: 'Fine Greige', hue: '80°', lightness: '70%', chromaticity: '10%', rgb: { r: 181 , g: 169 ,b: 152 } }, + H080L70C20 : { description: 'Yellow Brown', hue: '80°', lightness: '70%', chromaticity: '20%', rgb: { r: 191 , g: 167 ,b: 133 } }, + H080L70C30 : { description: 'Mustard Seed Beige', hue: '80°', lightness: '70%', chromaticity: '30%', rgb: { r: 197 , g: 165 ,b: 116 } }, + H080L70C40 : { description: 'Diamond Yellow', hue: '80°', lightness: '70%', chromaticity: '40%', rgb: { r: 206 , g: 164 ,b: 97 } }, + H080L70C50 : { description: 'Antique Brass', hue: '80°', lightness: '70%', chromaticity: '50%', rgb: { r: 212 , g: 162 ,b: 78 } }, + H080L70C60 : { description: 'Courgette Yellow', hue: '80°', lightness: '70%', chromaticity: '60%', rgb: { r: 218 , g: 161 ,b: 53 } }, + H080L70C70 : { description: 'Grapefruit Yellow', hue: '80°', lightness: '70%', chromaticity: '70%', rgb: { r: 223 , g: 160 ,b: 26 } }, + H080L70C80 : { description: 'Sunflower Yellow', hue: '80°', lightness: '70%', chromaticity: '80%', rgb: { r: 225 , g: 156 ,b: 0 } }, + H080L70C88 : { description: 'Arnica Yellow', hue: '80°', lightness: '70%', chromaticity: '88%', rgb: { r: 229 , g: 155 ,b: 0 } }, + H080L80C05 : { description: 'Micaceous Light Grey', hue: '80°', lightness: '80%', chromaticity: '5%', rgb: { r: 205 , g: 199 ,b: 189 } }, + H080L80C10 : { description: 'Pastel Sand', hue: '80°', lightness: '80%', chromaticity: '10%', rgb: { r: 213 , g: 198 ,b: 180 } }, + H080L80C20 : { description: 'Natural Rice Beige', hue: '80°', lightness: '80%', chromaticity: '20%', rgb: { r: 220 , g: 195 ,b: 159 } }, + H080L80C30 : { description: 'Yellow Beige', hue: '80°', lightness: '80%', chromaticity: '30%', rgb: { r: 227 , g: 192 ,b: 141 } }, + H080L80C40 : { description: 'Straw Yellow', hue: '80°', lightness: '80%', chromaticity: '40%', rgb: { r: 236 , g: 191 ,b: 122 } }, + H080L80C50 : { description: 'Mirabelle Yellow', hue: '80°', lightness: '80%', chromaticity: '50%', rgb: { r: 243 , g: 190 ,b: 103 } }, + H080L80C60 : { description: 'Full Yellow', hue: '80°', lightness: '80%', chromaticity: '60%', rgb: { r: 249 , g: 188 ,b: 79 } }, + H080L80C70 : { description: 'Pear Yellow', hue: '80°', lightness: '80%', chromaticity: '70%', rgb: { r: 252 , g: 185 ,b: 55 } }, + H080L80C80 : { description: 'Fire Yellow', hue: '80°', lightness: '80%', chromaticity: '80%', rgb: { r: 255 , g: 183 ,b: 11 } }, + H080L80C90 : { description: 'Summer Yellow', hue: '80°', lightness: '80%', chromaticity: '90%', rgb: { r: 255 , g: 183 ,b: 0 } }, + H080L85C05 : { description: 'Wheat Flour White', hue: '80°', lightness: '85%', chromaticity: '5%', rgb: { r: 221 , g: 214 ,b: 202 } }, + H080L85C10 : { description: 'Onion White', hue: '80°', lightness: '85%', chromaticity: '10%', rgb: { r: 226 , g: 213 ,b: 194 } }, + H080L85C20 : { description: 'Nashi Pear Beige', hue: '80°', lightness: '85%', chromaticity: '20%', rgb: { r: 237 , g: 212 ,b: 177 } }, + H080L85C30 : { description: 'Vespa Yellow', hue: '80°', lightness: '85%', chromaticity: '30%', rgb: { r: 243 , g: 209 ,b: 159 } }, + H080L85C40 : { description: 'Puff Pastry Yellow', hue: '80°', lightness: '85%', chromaticity: '40%', rgb: { r: 252 , g: 207 ,b: 139 } }, + H080L90C05 : { description: 'Japanese White', hue: '80°', lightness: '90%', chromaticity: '5%', rgb: { r: 238 , g: 230 ,b: 217 } }, + H080L90C10 : { description: 'Mushroom White', hue: '80°', lightness: '90%', chromaticity: '10%', rgb: { r: 240 , g: 225 ,b: 205 } }, + H080L90C20 : { description: 'Macadamia Beige', hue: '80°', lightness: '90%', chromaticity: '20%', rgb: { r: 247 , g: 223 ,b: 186 } }, + H080L90C30 : { description: 'Horseradish Yellow', hue: '80°', lightness: '90%', chromaticity: '30%', rgb: { r: 255 , g: 222 ,b: 169 } }, + H080L93C05 : { description: 'Milk Star White', hue: '80°', lightness: '93%', chromaticity: '5%', rgb: { r: 245 , g: 237 ,b: 226 } }, + H085L40C10 : { description: 'Mineral Green', hue: '85°', lightness: '40%', chromaticity: '10%', rgb: { r: 102 , g: 93 ,b: 78 } }, + H085L40C20 : { description: 'Khaki Green', hue: '85°', lightness: '40%', chromaticity: '20%', rgb: { r: 106 , g: 90 ,b: 57 } }, + H085L40C30 : { description: 'Moss Brown', hue: '85°', lightness: '40%', chromaticity: '30%', rgb: { r: 113 , g: 91 ,b: 46 } }, + H085L50C10 : { description: 'Coriander Ochre', hue: '85°', lightness: '50%', chromaticity: '10%', rgb: { r: 126 , g: 116 ,b: 99 } }, + H085L50C20 : { description: 'Pyrite Slate Green', hue: '85°', lightness: '50%', chromaticity: '20%', rgb: { r: 134 , g: 116 ,b: 82 } }, + H085L50C30 : { description: 'Sepia Yellow', hue: '85°', lightness: '50%', chromaticity: '30%', rgb: { r: 140 , g: 115 ,b: 64 } }, + H085L50C40 : { description: 'Marshy Green', hue: '85°', lightness: '50%', chromaticity: '40%', rgb: { r: 142 , g: 113 ,b: 46 } }, + H085L50C50 : { description: 'Honey Yellow Green', hue: '85°', lightness: '50%', chromaticity: '50%', rgb: { r: 147 , g: 112 ,b: 22 } }, + H085L60C10 : { description: 'Matte Olive', hue: '85°', lightness: '60%', chromaticity: '10%', rgb: { r: 153 , g: 143 ,b: 127 } }, + H085L60C20 : { description: 'Pond Green', hue: '85°', lightness: '60%', chromaticity: '20%', rgb: { r: 161 , g: 142 ,b: 107 } }, + H085L60C30 : { description: 'Wood Green', hue: '85°', lightness: '60%', chromaticity: '30%', rgb: { r: 167 , g: 140 ,b: 89 } }, + H085L60C40 : { description: 'Lichen Green', hue: '85°', lightness: '60%', chromaticity: '40%', rgb: { r: 172 , g: 139 ,b: 70 } }, + H085L60C50 : { description: 'Mineral Umber', hue: '85°', lightness: '60%', chromaticity: '50%', rgb: { r: 177 , g: 139 ,b: 50 } }, + H085L60C60 : { description: 'Loden Yellow', hue: '85°', lightness: '60%', chromaticity: '60%', rgb: { r: 182 , g: 139 ,b: 19 } }, + H085L70C10 : { description: 'Raffia Greige', hue: '85°', lightness: '70%', chromaticity: '10%', rgb: { r: 179 , g: 169 ,b: 150 } }, + H085L70C20 : { description: 'Feldspar Grey', hue: '85°', lightness: '70%', chromaticity: '20%', rgb: { r: 188 , g: 168 ,b: 133 } }, + H085L70C30 : { description: 'Hay Yellow', hue: '85°', lightness: '70%', chromaticity: '30%', rgb: { r: 194 , g: 167 ,b: 112 } }, + H085L70C40 : { description: 'Winter Pear Beige', hue: '85°', lightness: '70%', chromaticity: '40%', rgb: { r: 199 , g: 165 ,b: 95 } }, + H085L70C50 : { description: 'Autumn Apple Yellow', hue: '85°', lightness: '70%', chromaticity: '50%', rgb: { r: 205 , g: 164 ,b: 73 } }, + H085L70C60 : { description: 'Pitmaston Pear Yellow', hue: '85°', lightness: '70%', chromaticity: '60%', rgb: { r: 208 , g: 163 ,b: 46 } }, + H085L70C70 : { description: 'Immortelle Yellow', hue: '85°', lightness: '70%', chromaticity: '70%', rgb: { r: 212 , g: 162 ,b: 7 } }, + H085L70C75 : { description: 'Golden Beryl Yellow', hue: '85°', lightness: '70%', chromaticity: '75%', rgb: { r: 217 , g: 164 ,b: 0 } }, + H085L80C10 : { description: 'Velvet Beige', hue: '85°', lightness: '80%', chromaticity: '10%', rgb: { r: 208 , g: 197 ,b: 177 } }, + H085L80C20 : { description: 'Mineral Beige', hue: '85°', lightness: '80%', chromaticity: '20%', rgb: { r: 216 , g: 196 ,b: 159 } }, + H085L80C30 : { description: 'Moonlight Yellow', hue: '85°', lightness: '80%', chromaticity: '30%', rgb: { r: 225 , g: 195 ,b: 139 } }, + H085L80C40 : { description: 'Table Pear Yellow', hue: '85°', lightness: '80%', chromaticity: '40%', rgb: { r: 229 , g: 194 ,b: 121 } }, + H085L80C50 : { description: 'Fruit Yellow', hue: '85°', lightness: '80%', chromaticity: '50%', rgb: { r: 234 , g: 192 ,b: 100 } }, + H085L80C60 : { description: 'Adonis Rose Yellow', hue: '85°', lightness: '80%', chromaticity: '60%', rgb: { r: 239 , g: 191 ,b: 77 } }, + H085L80C70 : { description: 'Barberry Yellow', hue: '85°', lightness: '80%', chromaticity: '70%', rgb: { r: 243 , g: 189 ,b: 50 } }, + H085L80C80 : { description: 'Dandelion Yellow', hue: '85°', lightness: '80%', chromaticity: '80%', rgb: { r: 245 , g: 187 ,b: 0 } }, + H085L80C85 : { description: 'Decor Yellow', hue: '85°', lightness: '80%', chromaticity: '85%', rgb: { r: 246 , g: 187 ,b: 0 } }, + H085L85C10 : { description: 'Alabaster White', hue: '85°', lightness: '85%', chromaticity: '10%', rgb: { r: 223 , g: 212 ,b: 191 } }, + H085L85C20 : { description: 'Light Blond', hue: '85°', lightness: '85%', chromaticity: '20%', rgb: { r: 232 , g: 211 ,b: 175 } }, + H085L85C30 : { description: 'Willow-Flower Yellow', hue: '85°', lightness: '85%', chromaticity: '30%', rgb: { r: 240 , g: 210 ,b: 157 } }, + H085L85C40 : { description: 'Light Ginger Yellow', hue: '85°', lightness: '85%', chromaticity: '40%', rgb: { r: 247 , g: 210 ,b: 140 } }, + H085L90C10 : { description: 'Tulip White', hue: '85°', lightness: '90%', chromaticity: '10%', rgb: { r: 241 , g: 229 ,b: 209 } }, + H085L90C20 : { description: 'Alpine Berry Yellow', hue: '85°', lightness: '90%', chromaticity: '20%', rgb: { r: 247 , g: 224 ,b: 186 } }, + H085L90C30 : { description: 'Porcelain Yellow', hue: '85°', lightness: '90%', chromaticity: '30%', rgb: { r: 253 , g: 221 ,b: 167 } }, + H085L93C05 : { description: 'Vintage White', hue: '85°', lightness: '93%', chromaticity: '5%', rgb: { r: 244 , g: 239 ,b: 228 } }, + H090L30C10 : { description: 'Limonite Brown', hue: '90°', lightness: '30%', chromaticity: '10%', rgb: { r: 75 , g: 68 ,b: 51 } }, + H090L30C20 : { description: 'Bark Green', hue: '90°', lightness: '30%', chromaticity: '20%', rgb: { r: 81 , g: 68 ,b: 33 } }, + H090L40C10 : { description: 'Boulder Brown', hue: '90°', lightness: '40%', chromaticity: '10%', rgb: { r: 101 , g: 94 ,b: 78 } }, + H090L40C20 : { description: 'Plum Green', hue: '90°', lightness: '40%', chromaticity: '20%', rgb: { r: 105 , g: 92 ,b: 57 } }, + H090L40C30 : { description: 'Vine Leaf Green', hue: '90°', lightness: '40%', chromaticity: '30%', rgb: { r: 110 , g: 94 ,b: 44 } }, + H090L50C10 : { description: 'Graphite Grey Green', hue: '90°', lightness: '50%', chromaticity: '10%', rgb: { r: 124 , g: 118 ,b: 102 } }, + H090L50C20 : { description: 'Pesto Green', hue: '90°', lightness: '50%', chromaticity: '20%', rgb: { r: 129 , g: 117 ,b: 83 } }, + H090L50C30 : { description: 'Giant Cactus Green', hue: '90°', lightness: '50%', chromaticity: '30%', rgb: { r: 136 , g: 118 ,b: 63 } }, + H090L50C40 : { description: 'Aubergine Green', hue: '90°', lightness: '50%', chromaticity: '40%', rgb: { r: 139 , g: 118 ,b: 44 } }, + H090L60C10 : { description: 'Oyster Grey', hue: '90°', lightness: '60%', chromaticity: '10%', rgb: { r: 150 , g: 143 ,b: 127 } }, + H090L60C20 : { description: 'Manzanilla Olive', hue: '90°', lightness: '60%', chromaticity: '20%', rgb: { r: 158 , g: 143 ,b: 107 } }, + H090L60C30 : { description: 'Camouflage Olive', hue: '90°', lightness: '60%', chromaticity: '30%', rgb: { r: 162 , g: 143 ,b: 92 } }, + H090L60C40 : { description: 'Laurel Green', hue: '90°', lightness: '60%', chromaticity: '40%', rgb: { r: 165 , g: 141 ,b: 69 } }, + H090L60C50 : { description: 'Faint Green', hue: '90°', lightness: '60%', chromaticity: '50%', rgb: { r: 165 , g: 139 ,b: 44 } }, + H090L60C60 : { description: 'Titanite Yellow', hue: '90°', lightness: '60%', chromaticity: '60%', rgb: { r: 173 , g: 143 ,b: 15 } }, + H090L70C10 : { description: 'Dusty Yellow', hue: '90°', lightness: '70%', chromaticity: '10%', rgb: { r: 178 , g: 170 ,b: 152 } }, + H090L70C20 : { description: 'Barbados Beige', hue: '90°', lightness: '70%', chromaticity: '20%', rgb: { r: 184 , g: 169 ,b: 131 } }, + H090L70C30 : { description: 'Rhubarb Leaf Green', hue: '90°', lightness: '70%', chromaticity: '30%', rgb: { r: 188 , g: 168 ,b: 114 } }, + H090L70C40 : { description: 'Hedgehog Cactus Yellow Green', hue: '90°', lightness: '70%', chromaticity: '40%', rgb: { r: 196 , g: 170 ,b: 94 } }, + H090L70C50 : { description: 'Gooseberry Yellow', hue: '90°', lightness: '70%', chromaticity: '50%', rgb: { r: 199 , g: 169 ,b: 74 } }, + H090L70C60 : { description: 'Bud Green', hue: '90°', lightness: '70%', chromaticity: '60%', rgb: { r: 202 , g: 168 ,b: 47 } }, + H090L70C70 : { description: 'Catkin Yellow', hue: '90°', lightness: '70%', chromaticity: '70%', rgb: { r: 204 , g: 168 ,b: 0 } }, + H090L70C80 : { description: 'Prehnite Yellow', hue: '90°', lightness: '70%', chromaticity: '80%', rgb: { r: 208 , g: 167 ,b: 0 } }, + H090L80C10 : { description: 'Light Beige', hue: '90°', lightness: '80%', chromaticity: '10%', rgb: { r: 207 , g: 197 ,b: 176 } }, + H090L80C20 : { description: 'Champagne Beige', hue: '90°', lightness: '80%', chromaticity: '20%', rgb: { r: 212 , g: 196 ,b: 158 } }, + H090L80C30 : { description: 'Lemon Sorbet Yellow', hue: '90°', lightness: '80%', chromaticity: '30%', rgb: { r: 220 , g: 198 ,b: 142 } }, + H090L80C40 : { description: 'Blossom Yellow', hue: '90°', lightness: '80%', chromaticity: '40%', rgb: { r: 225 , g: 199 ,b: 125 } }, + H090L80C50 : { description: 'Tasman Honey Yellow', hue: '90°', lightness: '80%', chromaticity: '50%', rgb: { r: 230 , g: 197 ,b: 98 } }, + H090L80C60 : { description: 'New Yellow', hue: '90°', lightness: '80%', chromaticity: '60%', rgb: { r: 232 , g: 194 ,b: 71 } }, + H090L80C70 : { description: 'Fashion Yellow', hue: '90°', lightness: '80%', chromaticity: '70%', rgb: { r: 237 , g: 197 ,b: 55 } }, + H090L80C80 : { description: 'Poster Yellow', hue: '90°', lightness: '80%', chromaticity: '80%', rgb: { r: 236 , g: 193 ,b: 0 } }, + H090L80C90 : { description: 'Contrasting Yellow', hue: '90°', lightness: '80%', chromaticity: '90%', rgb: { r: 242 , g: 194 ,b: 0 } }, + H090L85C05 : { description: 'Pepper White', hue: '90°', lightness: '85%', chromaticity: '5%', rgb: { r: 219 , g: 214 ,b: 203 } }, + H090L85C10 : { description: 'Paella Natural White', hue: '90°', lightness: '85%', chromaticity: '10%', rgb: { r: 225 , g: 215 ,b: 194 } }, + H090L85C20 : { description: 'Cider Yellow', hue: '90°', lightness: '85%', chromaticity: '20%', rgb: { r: 231 , g: 214 ,b: 175 } }, + H090L85C30 : { description: 'Palm Sugar Yellow', hue: '90°', lightness: '85%', chromaticity: '30%', rgb: { r: 237 , g: 214 ,b: 157 } }, + H090L85C40 : { description: 'March Yellow', hue: '90°', lightness: '85%', chromaticity: '40%', rgb: { r: 241 , g: 212 ,b: 138 } }, + H090L85C50 : { description: 'Oriole Yellow', hue: '90°', lightness: '85%', chromaticity: '50%', rgb: { r: 246 , g: 213 ,b: 118 } }, + H090L90C05 : { description: 'Marzipan White', hue: '90°', lightness: '90%', chromaticity: '5%', rgb: { r: 234 , g: 228 ,b: 216 } }, + H090L90C10 : { description: 'Primrose White', hue: '90°', lightness: '90%', chromaticity: '10%', rgb: { r: 236 , g: 228 ,b: 208 } }, + H090L90C20 : { description: 'Cream Yellow', hue: '90°', lightness: '90%', chromaticity: '20%', rgb: { r: 244 , g: 227 ,b: 187 } }, + H090L90C30 : { description: 'Wax Yellow', hue: '90°', lightness: '90%', chromaticity: '30%', rgb: { r: 248 , g: 225 ,b: 168 } }, + H090L90C40 : { description: 'Lemon Cream', hue: '90°', lightness: '90%', chromaticity: '40%', rgb: { r: 254 , g: 225 ,b: 147 } }, + H090L90C50 : { description: 'Tiger Yellow', hue: '90°', lightness: '90%', chromaticity: '50%', rgb: { r: 255 , g: 222 ,b: 126 } }, + H090L90C60 : { description: 'Sunrose Yellow', hue: '90°', lightness: '90%', chromaticity: '60%', rgb: { r: 255 , g: 219 ,b: 103 } }, + H090L93C05 : { description: 'Cream White', hue: '90°', lightness: '93%', chromaticity: '5%', rgb: { r: 242 , g: 238 ,b: 226 } }, + H095L40C10 : { description: 'Shady Green', hue: '95°', lightness: '40%', chromaticity: '10%', rgb: { r: 99 , g: 93 ,b: 76 } }, + H095L40C20 : { description: 'Forest Green', hue: '95°', lightness: '40%', chromaticity: '20%', rgb: { r: 102 , g: 91 ,b: 56 } }, + H095L40C30 : { description: 'Bean Green', hue: '95°', lightness: '40%', chromaticity: '30%', rgb: { r: 104 , g: 92 ,b: 39 } }, + H095L50C10 : { description: 'Dull Olive', hue: '95°', lightness: '50%', chromaticity: '10%', rgb: { r: 122 , g: 117 ,b: 100 } }, + H095L50C20 : { description: 'Cabbage Green', hue: '95°', lightness: '50%', chromaticity: '20%', rgb: { r: 128 , g: 117 ,b: 83 } }, + H095L50C30 : { description: 'Caper Green', hue: '95°', lightness: '50%', chromaticity: '30%', rgb: { r: 132 , g: 118 ,b: 64 } }, + H095L50C40 : { description: 'Garden Lettuce Green', hue: '95°', lightness: '50%', chromaticity: '40%', rgb: { r: 135 , g: 118 ,b: 43 } }, + H095L50C50 : { description: 'Artichoke Green', hue: '95°', lightness: '50%', chromaticity: '50%', rgb: { r: 137 , g: 119 ,b: 20 } }, + H095L60C10 : { description: 'Pale Green Grey', hue: '95°', lightness: '60%', chromaticity: '10%', rgb: { r: 150 , g: 144 ,b: 126 } }, + H095L60C20 : { description: 'Pale Green', hue: '95°', lightness: '60%', chromaticity: '20%', rgb: { r: 154 , g: 143 ,b: 108 } }, + H095L60C30 : { description: 'Cypress Green', hue: '95°', lightness: '60%', chromaticity: '30%', rgb: { r: 158 , g: 143 ,b: 87 } }, + H095L60C40 : { description: 'Grape Green', hue: '95°', lightness: '60%', chromaticity: '40%', rgb: { r: 161 , g: 143 ,b: 68 } }, + H095L60C50 : { description: 'Gooseberry Green', hue: '95°', lightness: '60%', chromaticity: '50%', rgb: { r: 163 , g: 145 ,b: 47 } }, + H095L60C60 : { description: 'Guava Green', hue: '95°', lightness: '60%', chromaticity: '60%', rgb: { r: 161 , g: 141 ,b: 13 } }, + H095L60C70 : { description: 'Romaine Green', hue: '95°', lightness: '60%', chromaticity: '70%', rgb: { r: 163 , g: 142 ,b: 0 } }, + H095L70C10 : { description: 'Sand Grey', hue: '95°', lightness: '70%', chromaticity: '10%', rgb: { r: 178 , g: 171 ,b: 152 } }, + H095L70C20 : { description: 'Crocodile Green', hue: '95°', lightness: '70%', chromaticity: '20%', rgb: { r: 183 , g: 172 ,b: 135 } }, + H095L70C30 : { description: 'Chicory Green', hue: '95°', lightness: '70%', chromaticity: '30%', rgb: { r: 187 , g: 171 ,b: 117 } }, + H095L70C40 : { description: 'Banana Green', hue: '95°', lightness: '70%', chromaticity: '40%', rgb: { r: 189 , g: 170 ,b: 93 } }, + H095L70C50 : { description: 'Star Fruit Yellow Green', hue: '95°', lightness: '70%', chromaticity: '50%', rgb: { r: 190 , g: 170 ,b: 74 } }, + H095L70C60 : { description: 'Papaya Yellow Green', hue: '95°', lightness: '70%', chromaticity: '60%', rgb: { r: 190 , g: 169 ,b: 50 } }, + H095L70C70 : { description: 'Bronze Green', hue: '95°', lightness: '70%', chromaticity: '70%', rgb: { r: 195 , g: 170 ,b: 0 } }, + H095L80C10 : { description: 'Sapphire Light Yellow', hue: '95°', lightness: '80%', chromaticity: '10%', rgb: { r: 205 , g: 199 ,b: 180 } }, + H095L80C20 : { description: 'Pale Olive', hue: '95°', lightness: '80%', chromaticity: '20%', rgb: { r: 211 , g: 199 ,b: 161 } }, + H095L80C30 : { description: 'Asparagus Yellow', hue: '95°', lightness: '80%', chromaticity: '30%', rgb: { r: 218 , g: 201 ,b: 142 } }, + H095L80C40 : { description: 'Pea Green', hue: '95°', lightness: '80%', chromaticity: '40%', rgb: { r: 221 , g: 200 ,b: 122 } }, + H095L80C50 : { description: 'Williams Pear Yellow', hue: '95°', lightness: '80%', chromaticity: '50%', rgb: { r: 221 , g: 199 ,b: 101 } }, + H095L80C60 : { description: 'Greenish Yellow', hue: '95°', lightness: '80%', chromaticity: '60%', rgb: { r: 219 , g: 196 ,b: 77 } }, + H095L80C70 : { description: 'Mimosa Yellow', hue: '95°', lightness: '80%', chromaticity: '70%', rgb: { r: 223 , g: 198 ,b: 51 } }, + H095L80C80 : { description: 'Sorbet Yellow', hue: '95°', lightness: '80%', chromaticity: '80%', rgb: { r: 218 , g: 193 ,b: 0 } }, + H095L85C10 : { description: 'Salsify White', hue: '95°', lightness: '85%', chromaticity: '10%', rgb: { r: 222 , g: 216 ,b: 196 } }, + H095L85C20 : { description: 'Dull Light Yellow', hue: '95°', lightness: '85%', chromaticity: '20%', rgb: { r: 229 , g: 217 ,b: 180 } }, + H095L85C30 : { description: 'Leaf Yellow', hue: '95°', lightness: '85%', chromaticity: '30%', rgb: { r: 233 , g: 215 ,b: 158 } }, + H095L85C40 : { description: 'Natural Yellow', hue: '95°', lightness: '85%', chromaticity: '40%', rgb: { r: 238 , g: 216 ,b: 139 } }, + H095L85C50 : { description: 'Sport Yellow', hue: '95°', lightness: '85%', chromaticity: '50%', rgb: { r: 239 , g: 214 ,b: 120 } }, + H095L90C10 : { description: 'Atlas White', hue: '95°', lightness: '90%', chromaticity: '10%', rgb: { r: 236 , g: 228 ,b: 206 } }, + H095L90C20 : { description: 'Pearl Yellow', hue: '95°', lightness: '90%', chromaticity: '20%', rgb: { r: 241 , g: 227 ,b: 188 } }, + H095L90C30 : { description: 'Lemon Ice Yellow', hue: '95°', lightness: '90%', chromaticity: '30%', rgb: { r: 246 , g: 226 ,b: 167 } }, + H095L90C40 : { description: 'Fresh Yellow', hue: '95°', lightness: '90%', chromaticity: '40%', rgb: { r: 247 , g: 225 ,b: 144 } }, + H095L90C50 : { description: 'Luminous Yellow', hue: '95°', lightness: '90%', chromaticity: '50%', rgb: { r: 254 , g: 227 ,b: 127 } }, + H095L90C59 : { description: 'Dynamic Yellow', hue: '95°', lightness: '90%', chromaticity: '59%', rgb: { r: 255 , g: 227 ,b: 109 } }, + H095L93C05 : { description: 'Crepe Silk White', hue: '95°', lightness: '93%', chromaticity: '5%', rgb: { r: 240 , g: 238 ,b: 227 } }, + H100L20C05 : { description: 'Night Green', hue: '100°', lightness: '20%', chromaticity: '5%', rgb: { r: 48 , g: 47 ,b: 39 } }, + H100L30C05 : { description: 'Volcanic Stone Green', hue: '100°', lightness: '30%', chromaticity: '5%', rgb: { r: 69 , g: 67 ,b: 59 } }, + H100L30C10 : { description: 'Vermilion Green', hue: '100°', lightness: '30%', chromaticity: '10%', rgb: { r: 71 , g: 66 ,b: 48 } }, + H100L30C20 : { description: 'Uniform Green', hue: '100°', lightness: '30%', chromaticity: '20%', rgb: { r: 76 , g: 70 ,b: 35 } }, + H100L40C05 : { description: 'Dove Grey', hue: '100°', lightness: '40%', chromaticity: '5%', rgb: { r: 93 , g: 91 ,b: 83 } }, + H100L40C10 : { description: 'Slick Green', hue: '100°', lightness: '40%', chromaticity: '10%', rgb: { r: 97 , g: 93 ,b: 76 } }, + H100L40C20 : { description: 'Broccoli Green', hue: '100°', lightness: '40%', chromaticity: '20%', rgb: { r: 99 , g: 93 ,b: 59 } }, + H100L40C30 : { description: 'High Forest Green', hue: '100°', lightness: '40%', chromaticity: '30%', rgb: { r: 102 , g: 93 ,b: 37 } }, + H100L40C40 : { description: 'Brussels Sprout Green', hue: '100°', lightness: '40%', chromaticity: '40%', rgb: { r: 102 , g: 94 ,b: 13 } }, + H100L50C05 : { description: 'Forest Floor Khaki', hue: '100°', lightness: '50%', chromaticity: '5%', rgb: { r: 120 , g: 118 ,b: 109 } }, + H100L50C10 : { description: 'Lapwing Grey Green', hue: '100°', lightness: '50%', chromaticity: '10%', rgb: { r: 122 , g: 117 ,b: 98 } }, + H100L50C20 : { description: 'Green Woodpecker Olive', hue: '100°', lightness: '50%', chromaticity: '20%', rgb: { r: 125 , g: 120 ,b: 83 } }, + H100L50C30 : { description: 'Steppe Green', hue: '100°', lightness: '50%', chromaticity: '30%', rgb: { r: 125 , g: 118 ,b: 64 } }, + H100L50C40 : { description: 'Faience Green', hue: '100°', lightness: '50%', chromaticity: '40%', rgb: { r: 129 , g: 118 ,b: 43 } }, + H100L50C50 : { description: 'Tool Green', hue: '100°', lightness: '50%', chromaticity: '50%', rgb: { r: 127 , g: 119 ,b: 17 } }, + H100L60C05 : { description: 'Smoky Grey Green', hue: '100°', lightness: '60%', chromaticity: '5%', rgb: { r: 147 , g: 144 ,b: 135 } }, + H100L60C10 : { description: 'Olivine Grey', hue: '100°', lightness: '60%', chromaticity: '10%', rgb: { r: 146 , g: 142 ,b: 124 } }, + H100L60C20 : { description: 'Grey-Headed Woodpecker Green', hue: '100°', lightness: '60%', chromaticity: '20%', rgb: { r: 152 , g: 145 ,b: 108 } }, + H100L60C30 : { description: 'Cardamom Green', hue: '100°', lightness: '60%', chromaticity: '30%', rgb: { r: 152 , g: 144 ,b: 87 } }, + H100L60C40 : { description: 'Lettuce Green', hue: '100°', lightness: '60%', chromaticity: '40%', rgb: { r: 155 , g: 146 ,b: 70 } }, + H100L60C50 : { description: 'Art Nouveau Green', hue: '100°', lightness: '60%', chromaticity: '50%', rgb: { r: 156 , g: 147 ,b: 47 } }, + H100L60C60 : { description: 'Smoothie Green', hue: '100°', lightness: '60%', chromaticity: '60%', rgb: { r: 152 , g: 142 ,b: 1 } }, + H100L70C05 : { description: 'Smoky White', hue: '100°', lightness: '70%', chromaticity: '5%', rgb: { r: 174 , g: 173 ,b: 163 } }, + H100L70C10 : { description: 'Anise Grey Yellow', hue: '100°', lightness: '70%', chromaticity: '10%', rgb: { r: 176 , g: 172 ,b: 152 } }, + H100L70C20 : { description: 'Sand Brown', hue: '100°', lightness: '70%', chromaticity: '20%', rgb: { r: 179 , g: 172 ,b: 133 } }, + H100L70C30 : { description: 'Hippie Green', hue: '100°', lightness: '70%', chromaticity: '30%', rgb: { r: 180 , g: 172 ,b: 113 } }, + H100L70C40 : { description: 'Linden Green', hue: '100°', lightness: '70%', chromaticity: '40%', rgb: { r: 184 , g: 174 ,b: 96 } }, + H100L70C50 : { description: 'Dill Green', hue: '100°', lightness: '70%', chromaticity: '50%', rgb: { r: 182 , g: 172 ,b: 75 } }, + H100L70C60 : { description: 'New Green', hue: '100°', lightness: '70%', chromaticity: '60%', rgb: { r: 181 , g: 172 ,b: 49 } }, + H100L80C05 : { description: 'Natural Grey', hue: '100°', lightness: '80%', chromaticity: '5%', rgb: { r: 200 , g: 199 ,b: 188 } }, + H100L80C10 : { description: 'Pale Beige', hue: '100°', lightness: '80%', chromaticity: '10%', rgb: { r: 204 , g: 199 ,b: 177 } }, + H100L80C20 : { description: 'Soft Green', hue: '100°', lightness: '80%', chromaticity: '20%', rgb: { r: 210 , g: 202 ,b: 161 } }, + H100L80C30 : { description: 'Silver Green', hue: '100°', lightness: '80%', chromaticity: '30%', rgb: { r: 210 , g: 200 ,b: 140 } }, + H100L80C40 : { description: 'March Tulip Green', hue: '100°', lightness: '80%', chromaticity: '40%', rgb: { r: 212 , g: 201 ,b: 120 } }, + H100L80C50 : { description: 'Light Olive', hue: '100°', lightness: '80%', chromaticity: '50%', rgb: { r: 212 , g: 201 ,b: 100 } }, + H100L80C60 : { description: 'Advertisement Green', hue: '100°', lightness: '80%', chromaticity: '60%', rgb: { r: 216 , g: 203 ,b: 75 } }, + H100L80C70 : { description: 'LED Green', hue: '100°', lightness: '80%', chromaticity: '70%', rgb: { r: 216 , g: 203 ,b: 50 } }, + H100L80C80 : { description: 'March Green', hue: '100°', lightness: '80%', chromaticity: '80%', rgb: { r: 212 , g: 204 ,b: 0 } }, + H100L85C05 : { description: 'Celery White', hue: '100°', lightness: '85%', chromaticity: '5%', rgb: { r: 219 , g: 217 ,b: 205 } }, + H100L85C10 : { description: 'Palm Heart Cream', hue: '100°', lightness: '85%', chromaticity: '10%', rgb: { r: 221 , g: 216 ,b: 194 } }, + H100L85C20 : { description: 'Beige Green', hue: '100°', lightness: '85%', chromaticity: '20%', rgb: { r: 224 , g: 216 ,b: 176 } }, + H100L85C30 : { description: 'Crystal Yellow', hue: '100°', lightness: '85%', chromaticity: '30%', rgb: { r: 228 , g: 217 ,b: 159 } }, + H100L90C05 : { description: 'Brilliant Yellow', hue: '100°', lightness: '90%', chromaticity: '5%', rgb: { r: 232 , g: 229 ,b: 216 } }, + H100L90C10 : { description: 'Elderberry White', hue: '100°', lightness: '90%', chromaticity: '10%', rgb: { r: 234 , g: 229 ,b: 207 } }, + H100L90C20 : { description: 'Designer Cream Yellow', hue: '100°', lightness: '90%', chromaticity: '20%', rgb: { r: 239 , g: 229 ,b: 187 } }, + H100L90C30 : { description: 'Boxwood Yellow', hue: '100°', lightness: '90%', chromaticity: '30%', rgb: { r: 239 , g: 228 ,b: 165 } }, + H100L90C40 : { description: 'Primrose Yellow', hue: '100°', lightness: '90%', chromaticity: '40%', rgb: { r: 243 , g: 230 ,b: 146 } }, + H100L90C50 : { description: 'Spring Yellow', hue: '100°', lightness: '90%', chromaticity: '50%', rgb: { r: 242 , g: 228 ,b: 125 } }, + H100L93C05 : { description: 'Fog White', hue: '100°', lightness: '93%', chromaticity: '5%', rgb: { r: 241 , g: 239 ,b: 228 } }, + H110L20C10 : { description: 'Metal Construction Green', hue: '110°', lightness: '20%', chromaticity: '10%', rgb: { r: 47 , g: 46 ,b: 31 } }, + H110L30C10 : { description: 'Dark Olive Green', hue: '110°', lightness: '30%', chromaticity: '10%', rgb: { r: 69 , g: 70 ,b: 54 } }, + H110L30C20 : { description: 'Nori Seaweed Green', hue: '110°', lightness: '30%', chromaticity: '20%', rgb: { r: 70 , g: 72 ,b: 38 } }, + H110L40C10 : { description: 'Stump Green', hue: '110°', lightness: '40%', chromaticity: '10%', rgb: { r: 94 , g: 95 ,b: 77 } }, + H110L40C20 : { description: 'Antique Green', hue: '110°', lightness: '40%', chromaticity: '20%', rgb: { r: 92 , g: 93 ,b: 57 } }, + H110L40C30 : { description: 'Gardener Green', hue: '110°', lightness: '40%', chromaticity: '30%', rgb: { r: 94 , g: 96 ,b: 42 } }, + H110L40C40 : { description: 'Kirchner Green', hue: '110°', lightness: '40%', chromaticity: '40%', rgb: { r: 92 , g: 97 ,b: 22 } }, + H110L50C10 : { description: 'November Green', hue: '110°', lightness: '50%', chromaticity: '10%', rgb: { r: 118 , g: 119 ,b: 100 } }, + H110L50C20 : { description: 'Alexandrite Green', hue: '110°', lightness: '50%', chromaticity: '20%', rgb: { r: 118 , g: 120 ,b: 83 } }, + H110L50C30 : { description: 'Plant Green', hue: '110°', lightness: '50%', chromaticity: '30%', rgb: { r: 119 , g: 122 ,b: 68 } }, + H110L50C40 : { description: 'Ripe Green', hue: '110°', lightness: '50%', chromaticity: '40%', rgb: { r: 116 , g: 122 ,b: 44 } }, + H110L50C50 : { description: 'Portuguese Green', hue: '110°', lightness: '50%', chromaticity: '50%', rgb: { r: 113 , g: 121 ,b: 16 } }, + H110L50C55 : { description: 'Flag Green', hue: '110°', lightness: '50%', chromaticity: '55%', rgb: { r: 113 , g: 124 ,b: 0 } }, + H110L60C10 : { description: 'Grey Green', hue: '110°', lightness: '60%', chromaticity: '10%', rgb: { r: 144 , g: 145 ,b: 126 } }, + H110L60C20 : { description: 'Peapod Green', hue: '110°', lightness: '60%', chromaticity: '20%', rgb: { r: 142 , g: 145 ,b: 109 } }, + H110L60C30 : { description: 'Indian Green', hue: '110°', lightness: '60%', chromaticity: '30%', rgb: { r: 145 , g: 149 ,b: 95 } }, + H110L60C40 : { description: 'Winterpea Green', hue: '110°', lightness: '60%', chromaticity: '40%', rgb: { r: 142 , g: 149 ,b: 73 } }, + H110L60C50 : { description: 'Airline Green', hue: '110°', lightness: '60%', chromaticity: '50%', rgb: { r: 140 , g: 150 ,b: 50 } }, + H110L60C60 : { description: 'Woodruff Green', hue: '110°', lightness: '60%', chromaticity: '60%', rgb: { r: 139 , g: 153 ,b: 22 } }, + H110L60C65 : { description: 'Traffic Light Green', hue: '110°', lightness: '60%', chromaticity: '65%', rgb: { r: 140 , g: 153 ,b: 0 } }, + H110L70C10 : { description: 'Chinese Tea Green', hue: '110°', lightness: '70%', chromaticity: '10%', rgb: { r: 172 , g: 173 ,b: 152 } }, + H110L70C20 : { description: 'Wall Green', hue: '110°', lightness: '70%', chromaticity: '20%', rgb: { r: 171 , g: 174 ,b: 134 } }, + H110L70C30 : { description: 'Wasabi Green', hue: '110°', lightness: '70%', chromaticity: '30%', rgb: { r: 169 , g: 173 ,b: 116 } }, + H110L70C40 : { description: 'April Green', hue: '110°', lightness: '70%', chromaticity: '40%', rgb: { r: 169 , g: 176 ,b: 98 } }, + H110L70C50 : { description: 'Delaunay Green', hue: '110°', lightness: '70%', chromaticity: '50%', rgb: { r: 170 , g: 179 ,b: 80 } }, + H110L70C60 : { description: 'Lime Green', hue: '110°', lightness: '70%', chromaticity: '60%', rgb: { r: 166 , g: 178 ,b: 55 } }, + H110L70C70 : { description: 'Chlorophyll Green', hue: '110°', lightness: '70%', chromaticity: '70%', rgb: { r: 158 , g: 177 ,b: 0 } }, + H110L70C77 : { description: 'Marker Green', hue: '110°', lightness: '70%', chromaticity: '77%', rgb: { r: 157 , g: 175 ,b: 0 } }, + H110L80C10 : { description: 'Spring Grey', hue: '110°', lightness: '80%', chromaticity: '10%', rgb: { r: 197 , g: 198 ,b: 179 } }, + H110L80C20 : { description: 'Mint Ice Green', hue: '110°', lightness: '80%', chromaticity: '20%', rgb: { r: 201 , g: 202 ,b: 161 } }, + H110L80C30 : { description: 'Springtide Green', hue: '110°', lightness: '80%', chromaticity: '30%', rgb: { r: 200 , g: 203 ,b: 142 } }, + H110L80C40 : { description: 'Lime Sorbet Green', hue: '110°', lightness: '80%', chromaticity: '40%', rgb: { r: 198 , g: 205 ,b: 125 } }, + H110L80C50 : { description: 'Easter Green', hue: '110°', lightness: '80%', chromaticity: '50%', rgb: { r: 199 , g: 207 ,b: 104 } }, + H110L80C60 : { description: 'Clown Green', hue: '110°', lightness: '80%', chromaticity: '60%', rgb: { r: 196 , g: 208 ,b: 86 } }, + H110L80C70 : { description: 'Juice Green', hue: '110°', lightness: '80%', chromaticity: '70%', rgb: { r: 192 , g: 208 ,b: 54 } }, + H110L85C10 : { description: 'Veltliner White', hue: '110°', lightness: '85%', chromaticity: '10%', rgb: { r: 215 , g: 216 ,b: 195 } }, + H110L85C20 : { description: 'Kohlrabi Green', hue: '110°', lightness: '85%', chromaticity: '20%', rgb: { r: 217 , g: 217 ,b: 177 } }, + H110L85C30 : { description: 'Burgundy Grey', hue: '110°', lightness: '85%', chromaticity: '30%', rgb: { r: 218 , g: 219 ,b: 160 } }, + H110L85C40 : { description: 'Wax Green', hue: '110°', lightness: '85%', chromaticity: '40%', rgb: { r: 216 , g: 219 ,b: 139 } }, + H110L85C50 : { description: 'Sprout Green', hue: '110°', lightness: '85%', chromaticity: '50%', rgb: { r: 214 , g: 219 ,b: 118 } }, + H110L90C05 : { description: 'Cotton White', hue: '110°', lightness: '90%', chromaticity: '5%', rgb: { r: 228 , g: 227 ,b: 216 } }, + H110L90C10 : { description: 'Light Fern Green', hue: '110°', lightness: '90%', chromaticity: '10%', rgb: { r: 230 , g: 230 ,b: 208 } }, + H110L90C20 : { description: 'Lily Scent Green', hue: '110°', lightness: '90%', chromaticity: '20%', rgb: { r: 230 , g: 230 ,b: 188 } }, + H110L90C30 : { description: 'Kiwi Ice Cream Green', hue: '110°', lightness: '90%', chromaticity: '30%', rgb: { r: 229 , g: 231 ,b: 167 } }, + H110L90C40 : { description: 'Lime Juice Green', hue: '110°', lightness: '90%', chromaticity: '40%', rgb: { r: 229 , g: 232 ,b: 150 } }, + H110L93C05 : { description: 'Raffia White', hue: '110°', lightness: '93%', chromaticity: '5%', rgb: { r: 238 , g: 238 ,b: 227 } }, + H110L96C02 : { description: 'Laundry White', hue: '110°', lightness: '96%', chromaticity: '2%', rgb: { r: 246 , g: 247 ,b: 241 } }, + H120L30C05 : { description: 'Racing Green', hue: '120°', lightness: '30%', chromaticity: '5%', rgb: { r: 65 , g: 67 ,b: 58 } }, + H120L30C10 : { description: 'Country House Green', hue: '120°', lightness: '30%', chromaticity: '10%', rgb: { r: 65 , g: 70 ,b: 52 } }, + H120L30C20 : { description: 'Avocado Dark Green', hue: '120°', lightness: '30%', chromaticity: '20%', rgb: { r: 62 , g: 72 ,b: 38 } }, + H120L40C05 : { description: 'English Green', hue: '120°', lightness: '40%', chromaticity: '5%', rgb: { r: 90 , g: 92 ,b: 83 } }, + H120L40C10 : { description: 'Almond Green', hue: '120°', lightness: '40%', chromaticity: '10%', rgb: { r: 89 , g: 94 ,b: 76 } }, + H120L40C20 : { description: 'Cactus Green', hue: '120°', lightness: '40%', chromaticity: '20%', rgb: { r: 86 , g: 96 ,b: 61 } }, + H120L40C30 : { description: 'Basil Green', hue: '120°', lightness: '40%', chromaticity: '30%', rgb: { r: 84 , g: 98 ,b: 46 } }, + H120L40C40 : { description: 'Pepper Green', hue: '120°', lightness: '40%', chromaticity: '40%', rgb: { r: 78 , g: 99 ,b: 20 } }, + H120L50C05 : { description: 'Smoke Green', hue: '120°', lightness: '50%', chromaticity: '5%', rgb: { r: 117 , g: 118 ,b: 108 } }, + H120L50C10 : { description: 'Velvet Green Grey', hue: '120°', lightness: '50%', chromaticity: '10%', rgb: { r: 115 , g: 120 ,b: 102 } }, + H120L50C20 : { description: 'Parrot Green', hue: '120°', lightness: '50%', chromaticity: '20%', rgb: { r: 113 , g: 123 ,b: 86 } }, + H120L50C30 : { description: 'Quartz Green', hue: '120°', lightness: '50%', chromaticity: '30%', rgb: { r: 110 , g: 124 ,b: 69 } }, + H120L50C40 : { description: 'Hedge Green', hue: '120°', lightness: '50%', chromaticity: '40%', rgb: { r: 105 , g: 125 ,b: 54 } }, + H120L50C50 : { description: 'Birch Leaf Green', hue: '120°', lightness: '50%', chromaticity: '50%', rgb: { r: 99 , g: 126 ,b: 29 } }, + H120L60C05 : { description: 'Bluish Grey', hue: '120°', lightness: '60%', chromaticity: '5%', rgb: { r: 146 , g: 148 ,b: 137 } }, + H120L60C10 : { description: 'Lavender Leaf Green', hue: '120°', lightness: '60%', chromaticity: '10%', rgb: { r: 140 , g: 145 ,b: 128 } }, + H120L60C20 : { description: 'Cider Pear Green', hue: '120°', lightness: '60%', chromaticity: '20%', rgb: { r: 138 , g: 148 ,b: 111 } }, + H120L60C30 : { description: 'Vesuvian Green', hue: '120°', lightness: '60%', chromaticity: '30%', rgb: { r: 135 , g: 152 ,b: 96 } }, + H120L60C40 : { description: 'Bamboo Grass Green', hue: '120°', lightness: '60%', chromaticity: '40%', rgb: { r: 130 , g: 153 ,b: 76 } }, + H120L60C50 : { description: 'Aloe Vera Green', hue: '120°', lightness: '60%', chromaticity: '50%', rgb: { r: 126 , g: 155 ,b: 57 } }, + H120L60C60 : { description: 'Mamba Green', hue: '120°', lightness: '60%', chromaticity: '60%', rgb: { r: 119 , g: 154 ,b: 32 } }, + H120L60C63 : { description: 'Luminescent Green', hue: '120°', lightness: '60%', chromaticity: '63%', rgb: { r: 118 , g: 156 ,b: 24 } }, + H120L70C05 : { description: 'Laurel Grey', hue: '120°', lightness: '70%', chromaticity: '5%', rgb: { r: 170 , g: 172 ,b: 162 } }, + H120L70C10 : { description: 'Nile Green', hue: '120°', lightness: '70%', chromaticity: '10%', rgb: { r: 169 , g: 173 ,b: 153 } }, + H120L70C20 : { description: 'Filigree Green', hue: '120°', lightness: '70%', chromaticity: '20%', rgb: { r: 165 , g: 175 ,b: 137 } }, + H120L70C30 : { description: 'Serpentine Green', hue: '120°', lightness: '70%', chromaticity: '30%', rgb: { r: 162 , g: 179 ,b: 122 } }, + H120L70C40 : { description: 'Light Birch Green', hue: '120°', lightness: '70%', chromaticity: '40%', rgb: { r: 157 , g: 181 ,b: 103 } }, + H120L70C50 : { description: 'Clematis Green', hue: '120°', lightness: '70%', chromaticity: '50%', rgb: { r: 152 , g: 182 ,b: 82 } }, + H120L70C60 : { description: 'Tourmaline Green', hue: '120°', lightness: '70%', chromaticity: '60%', rgb: { r: 145 , g: 179 ,b: 60 } }, + H120L70C70 : { description: 'Cocktail Green', hue: '120°', lightness: '70%', chromaticity: '70%', rgb: { r: 142 , g: 184 ,b: 38 } }, + H120L70C75 : { description: 'Brilliant Green', hue: '120°', lightness: '70%', chromaticity: '75%', rgb: { r: 136 , g: 180 ,b: 7 } }, + H120L80C05 : { description: 'Dust Green', hue: '120°', lightness: '80%', chromaticity: '5%', rgb: { r: 198 , g: 200 ,b: 190 } }, + H120L80C10 : { description: 'Jugendstil Green', hue: '120°', lightness: '80%', chromaticity: '10%', rgb: { r: 195 , g: 200 ,b: 179 } }, + H120L80C20 : { description: 'Avocado Cream', hue: '120°', lightness: '80%', chromaticity: '20%', rgb: { r: 194 , g: 205 ,b: 165 } }, + H120L80C30 : { description: 'Natural Green', hue: '120°', lightness: '80%', chromaticity: '30%', rgb: { r: 188 , g: 205 ,b: 145 } }, + H120L80C40 : { description: 'Summer Green', hue: '120°', lightness: '80%', chromaticity: '40%', rgb: { r: 185 , g: 208 ,b: 128 } }, + H120L80C50 : { description: 'Fashion Green', hue: '120°', lightness: '80%', chromaticity: '50%', rgb: { r: 179 , g: 210 ,b: 109 } }, + H120L80C60 : { description: 'Neon Green', hue: '120°', lightness: '80%', chromaticity: '60%', rgb: { r: 176 , g: 212 ,b: 93 } }, + H120L85C05 : { description: 'Chalk Green', hue: '120°', lightness: '85%', chromaticity: '5%', rgb: { r: 214 , g: 216 ,b: 205 } }, + H120L85C10 : { description: 'Light Feather Green', hue: '120°', lightness: '85%', chromaticity: '10%', rgb: { r: 211 , g: 217 ,b: 197 } }, + H120L85C20 : { description: 'Lake Green', hue: '120°', lightness: '85%', chromaticity: '20%', rgb: { r: 210 , g: 219 ,b: 180 } }, + H120L85C30 : { description: 'Aqua Green', hue: '120°', lightness: '85%', chromaticity: '30%', rgb: { r: 206 , g: 220 ,b: 160 } }, + H120L90C05 : { description: 'Lily of the Valley White', hue: '120°', lightness: '90%', chromaticity: '5%', rgb: { r: 225 , g: 227 ,b: 215 } }, + H120L90C10 : { description: 'Pale Pistachio', hue: '120°', lightness: '90%', chromaticity: '10%', rgb: { r: 227 , g: 231 ,b: 209 } }, + H120L90C20 : { description: 'Kiwi Sorbet Green', hue: '120°', lightness: '90%', chromaticity: '20%', rgb: { r: 222 , g: 232 ,b: 190 } }, + H120L90C30 : { description: 'Ice Cold Green', hue: '120°', lightness: '90%', chromaticity: '30%', rgb: { r: 217 , g: 235 ,b: 172 } }, + H120L93C05 : { description: 'Touch Of White Green', hue: '120°', lightness: '93%', chromaticity: '5%', rgb: { r: 236 , g: 239 ,b: 227 } }, + H130L30C10 : { description: 'Arame Seaweed Green', hue: '130°', lightness: '30%', chromaticity: '10%', rgb: { r: 63 , g: 70 ,b: 53 } }, + H130L30C20 : { description: 'Kelp Green', hue: '130°', lightness: '30%', chromaticity: '20%', rgb: { r: 57 , g: 72 ,b: 39 } }, + H130L40C10 : { description: 'Soft Olive', hue: '130°', lightness: '40%', chromaticity: '10%', rgb: { r: 89 , g: 96 ,b: 79 } }, + H130L40C20 : { description: 'Alpine Lake Green', hue: '130°', lightness: '40%', chromaticity: '20%', rgb: { r: 79 , g: 96 ,b: 62 } }, + H130L40C30 : { description: 'Gemstone Green', hue: '130°', lightness: '40%', chromaticity: '30%', rgb: { r: 75 , g: 99 ,b: 49 } }, + H130L50C10 : { description: 'Dubuffet Green', hue: '130°', lightness: '50%', chromaticity: '10%', rgb: { r: 111 , g: 119 ,b: 102 } }, + H130L50C20 : { description: 'Spanish Green', hue: '130°', lightness: '50%', chromaticity: '20%', rgb: { r: 106 , g: 123 ,b: 89 } }, + H130L50C30 : { description: 'Algae Green', hue: '130°', lightness: '50%', chromaticity: '30%', rgb: { r: 97 , g: 125 ,b: 72 } }, + H130L50C40 : { description: 'Hot Pepper Green', hue: '130°', lightness: '50%', chromaticity: '40%', rgb: { r: 89 , g: 128 ,b: 57 } }, + H130L50C50 : { description: 'Emerald Clear Green', hue: '130°', lightness: '50%', chromaticity: '50%', rgb: { r: 79 , g: 129 ,b: 41 } }, + H130L60C10 : { description: 'Matte Sage Green', hue: '130°', lightness: '60%', chromaticity: '10%', rgb: { r: 138 , g: 147 ,b: 129 } }, + H130L60C20 : { description: 'Old Green', hue: '130°', lightness: '60%', chromaticity: '20%', rgb: { r: 131 , g: 149 ,b: 115 } }, + H130L60C30 : { description: 'Pea Aubergine Green', hue: '130°', lightness: '60%', chromaticity: '30%', rgb: { r: 124 , g: 152 ,b: 101 } }, + H130L60C40 : { description: 'Bavarian Green', hue: '130°', lightness: '60%', chromaticity: '40%', rgb: { r: 116 , g: 154 ,b: 84 } }, + H130L60C50 : { description: 'Parisian Green', hue: '130°', lightness: '60%', chromaticity: '50%', rgb: { r: 107 , g: 156 ,b: 66 } }, + H130L60C60 : { description: 'Primal Green', hue: '130°', lightness: '60%', chromaticity: '60%', rgb: { r: 96 , g: 158 ,b: 47 } }, + H130L70C10 : { description: 'Limestone Green', hue: '130°', lightness: '70%', chromaticity: '10%', rgb: { r: 165 , g: 175 ,b: 157 } }, + H130L70C20 : { description: 'Soap Green', hue: '130°', lightness: '70%', chromaticity: '20%', rgb: { r: 160 , g: 178 ,b: 142 } }, + H130L70C30 : { description: 'Watercolour Green', hue: '130°', lightness: '70%', chromaticity: '30%', rgb: { r: 150 , g: 180 ,b: 126 } }, + H130L70C40 : { description: 'Van Gogh Green', hue: '130°', lightness: '70%', chromaticity: '40%', rgb: { r: 143 , g: 182 ,b: 109 } }, + H130L70C50 : { description: 'Apple Green', hue: '130°', lightness: '70%', chromaticity: '50%', rgb: { r: 135 , g: 185 ,b: 96 } }, + H130L70C60 : { description: 'Ultra Green', hue: '130°', lightness: '70%', chromaticity: '60%', rgb: { r: 126 , g: 186 ,b: 77 } }, + H130L80C10 : { description: 'Jade Light Green', hue: '130°', lightness: '80%', chromaticity: '10%', rgb: { r: 193 , g: 202 ,b: 183 } }, + H130L80C20 : { description: 'Enamel Green', hue: '130°', lightness: '80%', chromaticity: '20%', rgb: { r: 186 , g: 204 ,b: 168 } }, + H130L80C30 : { description: 'Pastel Green', hue: '130°', lightness: '80%', chromaticity: '30%', rgb: { r: 179 , g: 207 ,b: 153 } }, + H130L80C40 : { description: 'Jasmine Green', hue: '130°', lightness: '80%', chromaticity: '40%', rgb: { r: 172 , g: 211 ,b: 139 } }, + H130L80C50 : { description: 'Crystal Green', hue: '130°', lightness: '80%', chromaticity: '50%', rgb: { r: 164 , g: 213 ,b: 121 } }, + H130L85C05 : { description: 'Grape Oil Green', hue: '130°', lightness: '85%', chromaticity: '5%', rgb: { r: 211 , g: 217 ,b: 206 } }, + H130L85C10 : { description: 'Duchamp Light Green', hue: '130°', lightness: '85%', chromaticity: '10%', rgb: { r: 209 , g: 219 ,b: 199 } }, + H130L85C20 : { description: 'Pallid Light Green', hue: '130°', lightness: '85%', chromaticity: '20%', rgb: { r: 203 , g: 220 ,b: 183 } }, + H130L85C30 : { description: 'Viridine Green', hue: '130°', lightness: '85%', chromaticity: '30%', rgb: { r: 200 , g: 224 ,b: 171 } }, + H130L90C05 : { description: 'Poplar White', hue: '130°', lightness: '90%', chromaticity: '5%', rgb: { r: 223 , g: 227 ,b: 216 } }, + H130L90C10 : { description: 'Mediterranean Green', hue: '130°', lightness: '90%', chromaticity: '10%', rgb: { r: 224 , g: 233 ,b: 211 } }, + H130L90C20 : { description: 'Spring Green', hue: '130°', lightness: '90%', chromaticity: '20%', rgb: { r: 214 , g: 233 ,b: 195 } }, + H130L93C05 : { description: 'Bean White', hue: '130°', lightness: '93%', chromaticity: '5%', rgb: { r: 235 , g: 240 ,b: 228 } }, + H140L20C05 : { description: 'Melanite Black Green', hue: '140°', lightness: '20%', chromaticity: '5%', rgb: { r: 40 , g: 46 ,b: 39 } }, + H140L20C10 : { description: 'Mountain Range Green', hue: '140°', lightness: '20%', chromaticity: '10%', rgb: { r: 40 , g: 49 ,b: 35 } }, + H140L20C20 : { description: 'Bavarian Green', hue: '140°', lightness: '20%', chromaticity: '20%', rgb: { r: 37 , g: 54 ,b: 30 } }, + H140L30C05 : { description: 'Black Forest Green', hue: '140°', lightness: '30%', chromaticity: '5%', rgb: { r: 66 , g: 71 ,b: 64 } }, + H140L30C10 : { description: 'Copper Pyrite Green', hue: '140°', lightness: '30%', chromaticity: '10%', rgb: { r: 62 , g: 73 ,b: 57 } }, + H140L30C20 : { description: 'Nettle Green', hue: '140°', lightness: '30%', chromaticity: '20%', rgb: { r: 54 , g: 76 ,b: 46 } }, + H140L30C30 : { description: 'Chestnut Green', hue: '140°', lightness: '30%', chromaticity: '30%', rgb: { r: 42 , g: 79 ,b: 33 } }, + H140L30C40 : { description: 'Ranger Green', hue: '140°', lightness: '30%', chromaticity: '40%', rgb: { r: 27 , g: 79 ,b: 28 } }, + H140L40C05 : { description: 'Stone Green', hue: '140°', lightness: '40%', chromaticity: '5%', rgb: { r: 89 , g: 95 ,b: 87 } }, + H140L40C10 : { description: 'Loden Green', hue: '140°', lightness: '40%', chromaticity: '10%', rgb: { r: 85 , g: 97 ,b: 81 } }, + H140L40C20 : { description: 'Acacia Green', hue: '140°', lightness: '40%', chromaticity: '20%', rgb: { r: 72 , g: 98 ,b: 65 } }, + H140L40C30 : { description: 'Peacock Green', hue: '140°', lightness: '40%', chromaticity: '30%', rgb: { r: 64 , g: 102 ,b: 53 } }, + H140L40C40 : { description: 'Radical Green', hue: '140°', lightness: '40%', chromaticity: '40%', rgb: { r: 50 , g: 106 ,b: 43 } }, + H140L40C50 : { description: 'Brazilian Green', hue: '140°', lightness: '40%', chromaticity: '50%', rgb: { r: 41 , g: 109 ,b: 35 } }, + H140L50C05 : { description: 'Silver Maple Green', hue: '140°', lightness: '50%', chromaticity: '5%', rgb: { r: 113 , g: 119 ,b: 110 } }, + H140L50C10 : { description: 'Fir Spruce Green', hue: '140°', lightness: '50%', chromaticity: '10%', rgb: { r: 109 , g: 121 ,b: 105 } }, + H140L50C20 : { description: 'Silver Willow Green', hue: '140°', lightness: '50%', chromaticity: '20%', rgb: { r: 99 , g: 124 ,b: 91 } }, + H140L50C30 : { description: 'Rambling Green', hue: '140°', lightness: '50%', chromaticity: '30%', rgb: { r: 90 , g: 128 ,b: 79 } }, + H140L50C40 : { description: 'Guinean Green', hue: '140°', lightness: '50%', chromaticity: '40%', rgb: { r: 74 , g: 129 ,b: 64 } }, + H140L50C50 : { description: 'Mountain Meadow Green', hue: '140°', lightness: '50%', chromaticity: '50%', rgb: { r: 65 , g: 134 ,b: 56 } }, + H140L50C60 : { description: 'Temperamental Green', hue: '140°', lightness: '50%', chromaticity: '60%', rgb: { r: 43 , g: 135 ,b: 37 } }, + H140L60C05 : { description: 'Camouflage Green', hue: '140°', lightness: '60%', chromaticity: '5%', rgb: { r: 139 , g: 145 ,b: 138 } }, + H140L60C10 : { description: 'Silver Linden Grey', hue: '140°', lightness: '60%', chromaticity: '10%', rgb: { r: 133 , g: 147 ,b: 130 } }, + H140L60C20 : { description: 'Spinach Green', hue: '140°', lightness: '60%', chromaticity: '20%', rgb: { r: 126 , g: 153 ,b: 119 } }, + H140L60C30 : { description: 'Blackthorn Green', hue: '140°', lightness: '60%', chromaticity: '30%', rgb: { r: 115 , g: 156 ,b: 105 } }, + H140L60C40 : { description: 'Fresh Green', hue: '140°', lightness: '60%', chromaticity: '40%', rgb: { r: 106 , g: 158 ,b: 92 } }, + H140L60C50 : { description: 'Parsley Green', hue: '140°', lightness: '60%', chromaticity: '50%', rgb: { r: 90 , g: 159 ,b: 77 } }, + H140L60C60 : { description: 'Oregano Green', hue: '140°', lightness: '60%', chromaticity: '60%', rgb: { r: 77 , g: 162 ,b: 65 } }, + H140L60C70 : { description: 'Balloon Green', hue: '140°', lightness: '60%', chromaticity: '70%', rgb: { r: 59 , g: 162 ,b: 52 } }, + H140L70C05 : { description: 'Ginkgo Green', hue: '140°', lightness: '70%', chromaticity: '5%', rgb: { r: 165 , g: 172 ,b: 164 } }, + H140L70C10 : { description: 'Wormwood Green', hue: '140°', lightness: '70%', chromaticity: '10%', rgb: { r: 159 , g: 174 ,b: 158 } }, + H140L70C20 : { description: 'Dew Green', hue: '140°', lightness: '70%', chromaticity: '20%', rgb: { r: 151 , g: 179 ,b: 145 } }, + H140L70C30 : { description: 'Aniseed Leaf Green', hue: '140°', lightness: '70%', chromaticity: '30%', rgb: { r: 140 , g: 182 ,b: 132 } }, + H140L70C40 : { description: 'Sour Green', hue: '140°', lightness: '70%', chromaticity: '40%', rgb: { r: 132 , g: 185 ,b: 119 } }, + H140L70C50 : { description: 'Acid Green', hue: '140°', lightness: '70%', chromaticity: '50%', rgb: { r: 118 , g: 187 ,b: 104 } }, + H140L70C60 : { description: 'Drop Green', hue: '140°', lightness: '70%', chromaticity: '60%', rgb: { r: 105 , g: 189 ,b: 90 } }, + H140L80C05 : { description: 'Willow Green', hue: '140°', lightness: '80%', chromaticity: '5%', rgb: { r: 195 , g: 202 ,b: 191 } }, + H140L80C10 : { description: 'Pastel Grey Green', hue: '140°', lightness: '80%', chromaticity: '10%', rgb: { r: 188 , g: 203 ,b: 185 } }, + H140L80C20 : { description: 'Gio Ponti Green', hue: '140°', lightness: '80%', chromaticity: '20%', rgb: { r: 179 , g: 206 ,b: 171 } }, + H140L80C30 : { description: 'Relaxation Green', hue: '140°', lightness: '80%', chromaticity: '30%', rgb: { r: 168 , g: 209 ,b: 158 } }, + H140L80C40 : { description: 'Dentist Green', hue: '140°', lightness: '80%', chromaticity: '40%', rgb: { r: 153 , g: 213 ,b: 144 } }, + H140L85C05 : { description: 'Deadnettle White', hue: '140°', lightness: '85%', chromaticity: '5%', rgb: { r: 210 , g: 218 ,b: 208 } }, + H140L85C10 : { description: 'Leek White', hue: '140°', lightness: '85%', chromaticity: '10%', rgb: { r: 206 , g: 220 ,b: 202 } }, + H140L85C20 : { description: 'Limestone Slate', hue: '140°', lightness: '85%', chromaticity: '20%', rgb: { r: 197 , g: 224 ,b: 189 } }, + H140L85C30 : { description: 'Mint Cocktail Green', hue: '140°', lightness: '85%', chromaticity: '30%', rgb: { r: 184 , g: 226 ,b: 176 } }, + H140L90C05 : { description: 'Rosemary White', hue: '140°', lightness: '90%', chromaticity: '5%', rgb: { r: 223 , g: 230 ,b: 218 } }, + H140L90C10 : { description: 'Touch Of Green', hue: '140°', lightness: '90%', chromaticity: '10%', rgb: { r: 219 , g: 233 ,b: 213 } }, + H140L93C05 : { description: 'Chestnut White', hue: '140°', lightness: '93%', chromaticity: '5%', rgb: { r: 234 , g: 241 ,b: 230 } }, + H150L30C10 : { description: 'Thyme Green', hue: '150°', lightness: '30%', chromaticity: '10%', rgb: { r: 61 , g: 75 ,b: 61 } }, + H150L30C20 : { description: 'Moselle Green', hue: '150°', lightness: '30%', chromaticity: '20%', rgb: { r: 46 , g: 78 ,b: 54 } }, + H150L30C30 : { description: 'Mountain Green', hue: '150°', lightness: '30%', chromaticity: '30%', rgb: { r: 30 , g: 79 ,b: 43 } }, + H150L40C10 : { description: 'Felt Green', hue: '150°', lightness: '40%', chromaticity: '10%', rgb: { r: 82 , g: 97 ,b: 83 } }, + H150L40C20 : { description: 'Firm Green', hue: '150°', lightness: '40%', chromaticity: '20%', rgb: { r: 71 , g: 101 ,b: 74 } }, + H150L40C30 : { description: 'Genever Green', hue: '150°', lightness: '40%', chromaticity: '30%', rgb: { r: 51 , g: 103 ,b: 63 } }, + H150L40C40 : { description: 'Ink Green', hue: '150°', lightness: '40%', chromaticity: '40%', rgb: { r: 28 , g: 106 ,b: 53 } }, + H150L40C50 : { description: 'Ireland Green', hue: '150°', lightness: '40%', chromaticity: '50%', rgb: { r: 0 , g: 108 ,b: 46 } }, + H150L50C10 : { description: 'Sage Green Grey', hue: '150°', lightness: '50%', chromaticity: '10%', rgb: { r: 105 , g: 121 ,b: 106 } }, + H150L50C20 : { description: 'Korean Mint', hue: '150°', lightness: '50%', chromaticity: '20%', rgb: { r: 93 , g: 125 ,b: 97 } }, + H150L50C30 : { description: 'Field Green', hue: '150°', lightness: '50%', chromaticity: '30%', rgb: { r: 83 , g: 128 ,b: 89 } }, + H150L50C40 : { description: 'Celery Green', hue: '150°', lightness: '50%', chromaticity: '40%', rgb: { r: 63 , g: 134 ,b: 83 } }, + H150L50C50 : { description: 'Rich Green', hue: '150°', lightness: '50%', chromaticity: '50%', rgb: { r: 33 , g: 136 ,b: 69 } }, + H150L50C60 : { description: 'Cold Green', hue: '150°', lightness: '50%', chromaticity: '60%', rgb: { r: 0 , g: 139 ,b: 60 } }, + H150L60C10 : { description: 'Pointed Cabbage Green', hue: '150°', lightness: '60%', chromaticity: '10%', rgb: { r: 133 , g: 149 ,b: 135 } }, + H150L60C20 : { description: 'Orient Green', hue: '150°', lightness: '60%', chromaticity: '20%', rgb: { r: 119 , g: 153 ,b: 125 } }, + H150L60C30 : { description: 'Rosemary Green', hue: '150°', lightness: '60%', chromaticity: '30%', rgb: { r: 105 , g: 155 ,b: 114 } }, + H150L60C40 : { description: 'Mosaic Green', hue: '150°', lightness: '60%', chromaticity: '40%', rgb: { r: 89 , g: 159 ,b: 104 } }, + H150L60C50 : { description: 'Bouncy Ball Green', hue: '150°', lightness: '60%', chromaticity: '50%', rgb: { r: 73 , g: 164 ,b: 98 } }, + H150L60C60 : { description: 'Energy Green', hue: '150°', lightness: '60%', chromaticity: '60%', rgb: { r: 28 , g: 163 ,b: 80 } }, + H150L70C10 : { description: 'Tea Green', hue: '150°', lightness: '70%', chromaticity: '10%', rgb: { r: 158 , g: 175 ,b: 160 } }, + H150L70C20 : { description: 'Liebermann Green', hue: '150°', lightness: '70%', chromaticity: '20%', rgb: { r: 146 , g: 180 ,b: 152 } }, + H150L70C30 : { description: 'Oilcloth Green', hue: '150°', lightness: '70%', chromaticity: '30%', rgb: { r: 131 , g: 186 ,b: 142 } }, + H150L70C40 : { description: 'Jade Stone Green', hue: '150°', lightness: '70%', chromaticity: '40%', rgb: { r: 116 , g: 187 ,b: 131 } }, + H150L70C50 : { description: 'Verdigris Coloured', hue: '150°', lightness: '70%', chromaticity: '50%', rgb: { r: 98 , g: 190 ,b: 119 } }, + H150L80C10 : { description: 'Organza Green', hue: '150°', lightness: '80%', chromaticity: '10%', rgb: { r: 187 , g: 204 ,b: 189 } }, + H150L80C20 : { description: 'Pastel Mint Green', hue: '150°', lightness: '80%', chromaticity: '20%', rgb: { r: 173 , g: 208 ,b: 179 } }, + H150L80C30 : { description: 'Bright Green', hue: '150°', lightness: '80%', chromaticity: '30%', rgb: { r: 159 , g: 212 ,b: 170 } }, + H150L80C40 : { description: 'Mother-Of-Pearl Green', hue: '150°', lightness: '80%', chromaticity: '40%', rgb: { r: 143 , g: 216 ,b: 159 } }, + H150L85C05 : { description: 'Asparagus White', hue: '150°', lightness: '85%', chromaticity: '5%', rgb: { r: 206 , g: 217 ,b: 207 } }, + H150L85C10 : { description: 'Transparent White', hue: '150°', lightness: '85%', chromaticity: '10%', rgb: { r: 203 , g: 220 ,b: 203 } }, + H150L85C20 : { description: 'Pallid Green', hue: '150°', lightness: '85%', chromaticity: '20%', rgb: { r: 193 , g: 224 ,b: 193 } }, + H150L90C05 : { description: 'Mineral White', hue: '150°', lightness: '90%', chromaticity: '5%', rgb: { r: 220 , g: 229 ,b: 217 } }, + H150L90C10 : { description: 'Alabaster Green', hue: '150°', lightness: '90%', chromaticity: '10%', rgb: { r: 215 , g: 233 ,b: 215 } }, + H150L93C05 : { description: 'Quark White', hue: '150°', lightness: '93%', chromaticity: '5%', rgb: { r: 231 , g: 241 ,b: 230 } }, + H160L20C05 : { description: 'Beryl Black Green', hue: '160°', lightness: '20%', chromaticity: '5%', rgb: { r: 43 , g: 50 ,b: 45 } }, + H160L20C10 : { description: 'Mussel Green', hue: '160°', lightness: '20%', chromaticity: '10%', rgb: { r: 36 , g: 52 ,b: 42 } }, + H160L20C15 : { description: 'Pumpkin Green Black', hue: '160°', lightness: '20%', chromaticity: '15%', rgb: { r: 24 , g: 52 ,b: 37 } }, + H160L20C20 : { description: 'Opulent Green', hue: '160°', lightness: '20%', chromaticity: '20%', rgb: { r: 16 , g: 50 ,b: 34 } }, + H160L30C05 : { description: 'Rich Olive', hue: '160°', lightness: '30%', chromaticity: '5%', rgb: { r: 62 , g: 71 ,b: 64 } }, + H160L30C10 : { description: 'Exclusive Green', hue: '160°', lightness: '30%', chromaticity: '10%', rgb: { r: 56 , g: 73 ,b: 62 } }, + H160L30C15 : { description: 'Leaf Green', hue: '160°', lightness: '30%', chromaticity: '15%', rgb: { r: 47 , g: 73 ,b: 57 } }, + H160L30C20 : { description: 'Mountain Mint', hue: '160°', lightness: '30%', chromaticity: '20%', rgb: { r: 37 , g: 75 ,b: 55 } }, + H160L30C25 : { description: 'Order Green', hue: '160°', lightness: '30%', chromaticity: '25%', rgb: { r: 26 , g: 76 ,b: 50 } }, + H160L30C30 : { description: 'Troll Green', hue: '160°', lightness: '30%', chromaticity: '30%', rgb: { r: 1 , g: 78 ,b: 46 } }, + H160L30C35 : { description: 'Card Table Green', hue: '160°', lightness: '30%', chromaticity: '35%', rgb: { r: 0 , g: 81 ,b: 44 } }, + H160L30C40 : { description: 'Lemon Balm Green', hue: '160°', lightness: '30%', chromaticity: '40%', rgb: { r: 0 , g: 82 ,b: 40 } }, + H160L40C05 : { description: 'Jasper Green', hue: '160°', lightness: '40%', chromaticity: '5%', rgb: { r: 87 , g: 96 ,b: 90 } }, + H160L40C10 : { description: 'Siberian Green', hue: '160°', lightness: '40%', chromaticity: '10%', rgb: { r: 78 , g: 97 ,b: 87 } }, + H160L40C15 : { description: 'Cucumber Green', hue: '160°', lightness: '40%', chromaticity: '15%', rgb: { r: 70 , g: 99 ,b: 83 } }, + H160L40C20 : { description: 'Serbian Green', hue: '160°', lightness: '40%', chromaticity: '20%', rgb: { r: 62 , g: 100 ,b: 79 } }, + H160L40C25 : { description: 'Black Pine Green', hue: '160°', lightness: '40%', chromaticity: '25%', rgb: { r: 51 , g: 101 ,b: 74 } }, + H160L40C30 : { description: 'Pumpkin Green', hue: '160°', lightness: '40%', chromaticity: '30%', rgb: { r: 40 , g: 104 ,b: 72 } }, + H160L40C35 : { description: 'Jade Mussel Green', hue: '160°', lightness: '40%', chromaticity: '35%', rgb: { r: 22 , g: 106 ,b: 69 } }, + H160L40C40 : { description: 'Clover Green', hue: '160°', lightness: '40%', chromaticity: '40%', rgb: { r: 0 , g: 108 ,b: 68 } }, + H160L40C45 : { description: 'Frog Green', hue: '160°', lightness: '40%', chromaticity: '45%', rgb: { r: 0 , g: 105 ,b: 60 } }, + H160L40C50 : { description: 'Universal Green', hue: '160°', lightness: '40%', chromaticity: '50%', rgb: { r: 0 , g: 107 ,b: 56 } }, + H160L40C55 : { description: 'Column Of Oak Green', hue: '160°', lightness: '40%', chromaticity: '55%', rgb: { r: 0 , g: 111 ,b: 55 } }, + H160L50C05 : { description: 'Arctic Lichen Green', hue: '160°', lightness: '50%', chromaticity: '5%', rgb: { r: 111 , g: 120 ,b: 114 } }, + H160L50C10 : { description: 'Atlas Cedar Green', hue: '160°', lightness: '50%', chromaticity: '10%', rgb: { r: 102 , g: 122 ,b: 110 } }, + H160L50C15 : { description: 'Stone Cypress Green', hue: '160°', lightness: '50%', chromaticity: '15%', rgb: { r: 95 , g: 125 ,b: 108 } }, + H160L50C20 : { description: 'Juniper Green', hue: '160°', lightness: '50%', chromaticity: '20%', rgb: { r: 86 , g: 127 ,b: 105 } }, + H160L50C25 : { description: 'Sports Field Green', hue: '160°', lightness: '50%', chromaticity: '25%', rgb: { r: 77 , g: 128 ,b: 100 } }, + H160L50C30 : { description: 'Leisure Green', hue: '160°', lightness: '50%', chromaticity: '30%', rgb: { r: 67 , g: 130 ,b: 97 } }, + H160L50C35 : { description: 'Adamite Green', hue: '160°', lightness: '50%', chromaticity: '35%', rgb: { r: 59 , g: 132 ,b: 94 } }, + H160L50C40 : { description: 'Metallic Green', hue: '160°', lightness: '50%', chromaticity: '40%', rgb: { r: 36 , g: 133 ,b: 91 } }, + H160L50C45 : { description: 'Vital Green', hue: '160°', lightness: '50%', chromaticity: '45%', rgb: { r: 19 , g: 136 ,b: 89 } }, + H160L50C50 : { description: 'Golf Green', hue: '160°', lightness: '50%', chromaticity: '50%', rgb: { r: 0 , g: 136 ,b: 84 } }, + H160L50C55 : { description: 'Iceland Green', hue: '160°', lightness: '50%', chromaticity: '55%', rgb: { r: 0 , g: 139 ,b: 82 } }, + H160L50C60 : { description: 'Real Turquoise', hue: '160°', lightness: '50%', chromaticity: '60%', rgb: { r: 0 , g: 138 ,b: 76 } }, + H160L60C05 : { description: 'Sandstone Grey Green', hue: '160°', lightness: '60%', chromaticity: '5%', rgb: { r: 136 , g: 146 ,b: 140 } }, + H160L60C10 : { description: 'Slate Green', hue: '160°', lightness: '60%', chromaticity: '10%', rgb: { r: 127 , g: 148 ,b: 136 } }, + H160L60C15 : { description: 'Mild Green', hue: '160°', lightness: '60%', chromaticity: '15%', rgb: { r: 120 , g: 152 ,b: 133 } }, + H160L60C20 : { description: 'Douglas Fir Green', hue: '160°', lightness: '60%', chromaticity: '20%', rgb: { r: 111 , g: 152 ,b: 129 } }, + H160L60C25 : { description: 'Practice Green', hue: '160°', lightness: '60%', chromaticity: '25%', rgb: { r: 103 , g: 154 ,b: 124 } }, + H160L60C30 : { description: 'Memphis Green', hue: '160°', lightness: '60%', chromaticity: '30%', rgb: { r: 94 , g: 157 ,b: 123 } }, + H160L60C35 : { description: 'Advertising Green', hue: '160°', lightness: '60%', chromaticity: '35%', rgb: { r: 83 , g: 160 ,b: 121 } }, + H160L60C40 : { description: 'Hunter Green', hue: '160°', lightness: '60%', chromaticity: '40%', rgb: { r: 69 , g: 160 ,b: 116 } }, + H160L60C45 : { description: 'Linoleum Green', hue: '160°', lightness: '60%', chromaticity: '45%', rgb: { r: 58 , g: 163 ,b: 114 } }, + H160L60C50 : { description: 'Parakeet Green', hue: '160°', lightness: '60%', chromaticity: '50%', rgb: { r: 26 , g: 163 ,b: 109 } }, + H160L60C55 : { description: 'Emerald Light Green', hue: '160°', lightness: '60%', chromaticity: '55%', rgb: { r: 0 , g: 162 ,b: 103 } }, + H160L60C58 : { description: 'Alhambra Green', hue: '160°', lightness: '60%', chromaticity: '58%', rgb: { r: 0 , g: 164 ,b: 101 } }, + H160L70C05 : { description: 'Greenish Grey', hue: '160°', lightness: '70%', chromaticity: '5%', rgb: { r: 163 , g: 174 ,b: 167 } }, + H160L70C10 : { description: 'Weak Green', hue: '160°', lightness: '70%', chromaticity: '10%', rgb: { r: 153 , g: 175 ,b: 163 } }, + H160L70C15 : { description: 'Andean Slate', hue: '160°', lightness: '70%', chromaticity: '15%', rgb: { r: 144 , g: 177 ,b: 157 } }, + H160L70C20 : { description: 'Ceramic Green', hue: '160°', lightness: '70%', chromaticity: '20%', rgb: { r: 138 , g: 179 ,b: 155 } }, + H160L70C25 : { description: 'Water Green', hue: '160°', lightness: '70%', chromaticity: '25%', rgb: { r: 129 , g: 184 ,b: 154 } }, + H160L70C30 : { description: 'Mountain Lake Green', hue: '160°', lightness: '70%', chromaticity: '30%', rgb: { r: 117 , g: 185 ,b: 150 } }, + H160L70C35 : { description: 'American Green', hue: '160°', lightness: '70%', chromaticity: '35%', rgb: { r: 106 , g: 186 ,b: 146 } }, + H160L70C40 : { description: 'Techno Turquoise', hue: '160°', lightness: '70%', chromaticity: '40%', rgb: { r: 96 , g: 189 ,b: 142 } }, + H160L70C45 : { description: 'Garish Green', hue: '160°', lightness: '70%', chromaticity: '45%', rgb: { r: 81 , g: 191 ,b: 138 } }, + H160L70C50 : { description: 'Malachite Green', hue: '160°', lightness: '70%', chromaticity: '50%', rgb: { r: 68 , g: 192 ,b: 137 } }, + H160L80C05 : { description: 'Fog Green', hue: '160°', lightness: '80%', chromaticity: '5%', rgb: { r: 188 , g: 200 ,b: 193 } }, + H160L80C10 : { description: 'Matte Jade Green', hue: '160°', lightness: '80%', chromaticity: '10%', rgb: { r: 181 , g: 203 ,b: 189 } }, + H160L80C15 : { description: 'Sun Yellow', hue: '160°', lightness: '80%', chromaticity: '15%', rgb: { r: 171 , g: 206 ,b: 186 } }, + H160L80C20 : { description: 'Feather Green', hue: '160°', lightness: '80%', chromaticity: '20%', rgb: { r: 163 , g: 208 ,b: 182 } }, + H160L80C25 : { description: 'Menthol Green', hue: '160°', lightness: '80%', chromaticity: '25%', rgb: { r: 156 , g: 210 ,b: 180 } }, + H160L80C30 : { description: 'Silk Green', hue: '160°', lightness: '80%', chromaticity: '30%', rgb: { r: 148 , g: 214 ,b: 178 } }, + H160L85C05 : { description: 'Light Green', hue: '160°', lightness: '85%', chromaticity: '5%', rgb: { r: 204 , g: 216 ,b: 208 } }, + H160L85C10 : { description: 'Micaceous Green', hue: '160°', lightness: '85%', chromaticity: '10%', rgb: { r: 197 , g: 218 ,b: 204 } }, + H160L85C15 : { description: 'Moonstone Green', hue: '160°', lightness: '85%', chromaticity: '15%', rgb: { r: 189 , g: 221 ,b: 200 } }, + H160L90C05 : { description: 'Watercolour White', hue: '160°', lightness: '90%', chromaticity: '5%', rgb: { r: 219 , g: 229 ,b: 219 } }, + H160L90C10 : { description: 'Moonlight Green', hue: '160°', lightness: '90%', chromaticity: '10%', rgb: { r: 210 , g: 232 ,b: 216 } }, + H160L90C15 : { description: 'Glacial Water Green', hue: '160°', lightness: '90%', chromaticity: '15%', rgb: { r: 201 , g: 234 ,b: 212 } }, + H160L93C05 : { description: 'Mountain Crystal Silver', hue: '160°', lightness: '93%', chromaticity: '5%', rgb: { r: 226 , g: 239 ,b: 232 } }, + H170L20C10 : { description: 'Deep Green', hue: '170°', lightness: '20%', chromaticity: '10%', rgb: { r: 28 , g: 49 ,b: 41 } }, + H170L20C15 : { description: 'Intense Green', hue: '170°', lightness: '20%', chromaticity: '15%', rgb: { r: 18 , g: 51 ,b: 40 } }, + H170L20C20 : { description: 'Coach Green', hue: '170°', lightness: '20%', chromaticity: '20%', rgb: { r: 0 , g: 53 ,b: 39 } }, + H170L20C25 : { description: 'Off-Road Green', hue: '170°', lightness: '20%', chromaticity: '25%', rgb: { r: 0 , g: 55 ,b: 35 } }, + H170L30C10 : { description: 'Garnet Black Green', hue: '170°', lightness: '30%', chromaticity: '10%', rgb: { r: 53 , g: 74 ,b: 65 } }, + H170L30C15 : { description: 'Dark Green', hue: '170°', lightness: '30%', chromaticity: '15%', rgb: { r: 40 , g: 75 ,b: 62 } }, + H170L30C20 : { description: 'Thistle Green', hue: '170°', lightness: '30%', chromaticity: '20%', rgb: { r: 30 , g: 75 ,b: 59 } }, + H170L30C25 : { description: 'Raspberry Leaf Green', hue: '170°', lightness: '30%', chromaticity: '25%', rgb: { r: 4 , g: 79 ,b: 59 } }, + H170L30C30 : { description: 'Chrysocolla Dark Green', hue: '170°', lightness: '30%', chromaticity: '30%', rgb: { r: 0 , g: 79 ,b: 57 } }, + H170L30C35 : { description: 'Trapper Green', hue: '170°', lightness: '30%', chromaticity: '35%', rgb: { r: 0 , g: 82 ,b: 57 } }, + H170L30C40 : { description: 'Permanent Green', hue: '170°', lightness: '30%', chromaticity: '40%', rgb: { r: 0 , g: 84 ,b: 55 } }, + H170L40C10 : { description: 'Chalcedony Green', hue: '170°', lightness: '40%', chromaticity: '10%', rgb: { r: 75 , g: 96 ,b: 87 } }, + H170L40C15 : { description: 'Palace Green', hue: '170°', lightness: '40%', chromaticity: '15%', rgb: { r: 66 , g: 98 ,b: 85 } }, + H170L40C20 : { description: 'Plantain Green', hue: '170°', lightness: '40%', chromaticity: '20%', rgb: { r: 53 , g: 101 ,b: 84 } }, + H170L40C25 : { description: 'Ore Mountains Green', hue: '170°', lightness: '40%', chromaticity: '25%', rgb: { r: 43 , g: 101 ,b: 81 } }, + H170L40C30 : { description: 'Tractor Green', hue: '170°', lightness: '40%', chromaticity: '30%', rgb: { r: 28 , g: 106 ,b: 81 } }, + H170L40C35 : { description: 'Victoria Green', hue: '170°', lightness: '40%', chromaticity: '35%', rgb: { r: 0 , g: 106 ,b: 77 } }, + H170L40C40 : { description: 'Device Green', hue: '170°', lightness: '40%', chromaticity: '40%', rgb: { r: 0 , g: 107 ,b: 77 } }, + H170L40C45 : { description: 'Environmental Green', hue: '170°', lightness: '40%', chromaticity: '45%', rgb: { r: 0 , g: 108 ,b: 75 } }, + H170L40C50 : { description: 'Vegan Green', hue: '170°', lightness: '40%', chromaticity: '50%', rgb: { r: 0 , g: 108 ,b: 71 } }, + H170L50C10 : { description: 'Bournonite Green', hue: '170°', lightness: '50%', chromaticity: '10%', rgb: { r: 99 , g: 122 ,b: 114 } }, + H170L50C15 : { description: 'Fuchsite Green', hue: '170°', lightness: '50%', chromaticity: '15%', rgb: { r: 91 , g: 126 ,b: 112 } }, + H170L50C20 : { description: 'Blackberry Leaf Green', hue: '170°', lightness: '50%', chromaticity: '20%', rgb: { r: 80 , g: 127 ,b: 109 } }, + H170L50C25 : { description: 'Tourmaline Blue', hue: '170°', lightness: '50%', chromaticity: '25%', rgb: { r: 70 , g: 129 ,b: 108 } }, + H170L50C30 : { description: 'Dream Green', hue: '170°', lightness: '50%', chromaticity: '30%', rgb: { r: 53 , g: 131 ,b: 106 } }, + H170L50C35 : { description: 'Accent Green Blue', hue: '170°', lightness: '50%', chromaticity: '35%', rgb: { r: 32 , g: 132 ,b: 104 } }, + H170L50C40 : { description: 'Spectral Green', hue: '170°', lightness: '50%', chromaticity: '40%', rgb: { r: 0 , g: 134 ,b: 100 } }, + H170L50C45 : { description: 'Mallard Green', hue: '170°', lightness: '50%', chromaticity: '45%', rgb: { r: 0 , g: 135 ,b: 100 } }, + H170L50C50 : { description: 'Chagall Green', hue: '170°', lightness: '50%', chromaticity: '50%', rgb: { r: 0 , g: 139 ,b: 98 } }, + H170L50C55 : { description: 'Absinthe Turquoise', hue: '170°', lightness: '50%', chromaticity: '55%', rgb: { r: 0 , g: 138 ,b: 96 } }, + H170L60C10 : { description: 'Quantum Green', hue: '170°', lightness: '60%', chromaticity: '10%', rgb: { r: 124 , g: 148 ,b: 139 } }, + H170L60C15 : { description: 'Bitter Clover Green', hue: '170°', lightness: '60%', chromaticity: '15%', rgb: { r: 118 , g: 151 ,b: 137 } }, + H170L60C20 : { description: 'Cyprus Green', hue: '170°', lightness: '60%', chromaticity: '20%', rgb: { r: 105 , g: 154 ,b: 136 } }, + H170L60C25 : { description: 'Succulent Green', hue: '170°', lightness: '60%', chromaticity: '25%', rgb: { r: 94 , g: 155 ,b: 134 } }, + H170L60C30 : { description: 'Vibrant Green', hue: '170°', lightness: '60%', chromaticity: '30%', rgb: { r: 80 , g: 157 ,b: 131 } }, + H170L60C35 : { description: 'Klimt Green', hue: '170°', lightness: '60%', chromaticity: '35%', rgb: { r: 63 , g: 162 ,b: 130 } }, + H170L60C40 : { description: 'Persian Green', hue: '170°', lightness: '60%', chromaticity: '40%', rgb: { r: 44 , g: 161 ,b: 128 } }, + H170L60C45 : { description: 'Sport Green', hue: '170°', lightness: '60%', chromaticity: '45%', rgb: { r: 0 , g: 162 ,b: 125 } }, + H170L60C50 : { description: 'Active Green', hue: '170°', lightness: '60%', chromaticity: '50%', rgb: { r: 0 , g: 166 ,b: 126 } }, + H170L70C10 : { description: 'Lovage Green', hue: '170°', lightness: '70%', chromaticity: '10%', rgb: { r: 152 , g: 177 ,b: 166 } }, + H170L70C15 : { description: 'Chrysopal Light Green', hue: '170°', lightness: '70%', chromaticity: '15%', rgb: { r: 143 , g: 178 ,b: 163 } }, + H170L70C20 : { description: 'Source Green', hue: '170°', lightness: '70%', chromaticity: '20%', rgb: { r: 132 , g: 182 ,b: 162 } }, + H170L70C25 : { description: 'Orient Mosaic Green', hue: '170°', lightness: '70%', chromaticity: '25%', rgb: { r: 124 , g: 184 ,b: 161 } }, + H170L70C30 : { description: 'Mint Cold Green', hue: '170°', lightness: '70%', chromaticity: '30%', rgb: { r: 108 , g: 187 ,b: 160 } }, + H170L70C35 : { description: 'Emerald Green', hue: '170°', lightness: '70%', chromaticity: '35%', rgb: { r: 95 , g: 187 ,b: 156 } }, + H170L70C40 : { description: 'Expressionism Green', hue: '170°', lightness: '70%', chromaticity: '40%', rgb: { r: 82 , g: 188 ,b: 154 } }, + H170L80C10 : { description: 'Fluorite Blue', hue: '170°', lightness: '80%', chromaticity: '10%', rgb: { r: 180 , g: 204 ,b: 194 } }, + H170L80C15 : { description: 'Swimming Pool Green', hue: '170°', lightness: '80%', chromaticity: '15%', rgb: { r: 168 , g: 207 ,b: 192 } }, + H170L80C20 : { description: 'Sky Green', hue: '170°', lightness: '80%', chromaticity: '20%', rgb: { r: 159 , g: 211 ,b: 191 } }, + H170L80C25 : { description: 'Larimar Green', hue: '170°', lightness: '80%', chromaticity: '25%', rgb: { r: 147 , g: 211 ,b: 188 } }, + H170L85C05 : { description: 'Silicate Light Turquoise', hue: '170°', lightness: '85%', chromaticity: '5%', rgb: { r: 205 , g: 218 ,b: 211 } }, + H170L85C10 : { description: 'Topaz Green', hue: '170°', lightness: '85%', chromaticity: '10%', rgb: { r: 197 , g: 221 ,b: 208 } }, + H170L85C15 : { description: 'Refrigerator Green', hue: '170°', lightness: '85%', chromaticity: '15%', rgb: { r: 186 , g: 223 ,b: 205 } }, + H170L85C20 : { description: 'Crystal Glass Green', hue: '170°', lightness: '85%', chromaticity: '20%', rgb: { r: 177 , g: 226 ,b: 203 } }, + H170L90C05 : { description: 'Crystal Salt White', hue: '170°', lightness: '90%', chromaticity: '5%', rgb: { r: 217 , g: 229 ,b: 221 } }, + H170L90C10 : { description: 'Turquoise White', hue: '170°', lightness: '90%', chromaticity: '10%', rgb: { r: 207 , g: 233 ,b: 220 } }, + H170L93C05 : { description: 'Snow Crystal Green', hue: '170°', lightness: '93%', chromaticity: '5%', rgb: { r: 228 , g: 240 ,b: 232 } }, + H180L20C05 : { description: 'Pitch Green', hue: '180°', lightness: '20%', chromaticity: '5%', rgb: { r: 40 , g: 51 ,b: 48 } }, + H180L20C10 : { description: 'Lacquer Green', hue: '180°', lightness: '20%', chromaticity: '10%', rgb: { r: 27 , g: 50 ,b: 44 } }, + H180L20C15 : { description: 'Fence Green', hue: '180°', lightness: '20%', chromaticity: '15%', rgb: { r: 9 , g: 51 ,b: 44 } }, + H180L20C20 : { description: 'Myrtle Green', hue: '180°', lightness: '20%', chromaticity: '20%', rgb: { r: 0 , g: 53 ,b: 44 } }, + H180L30C05 : { description: 'Amazon Green', hue: '180°', lightness: '30%', chromaticity: '5%', rgb: { r: 63 , g: 74 ,b: 71 } }, + H180L30C10 : { description: 'Rich Grey Turquoise', hue: '180°', lightness: '30%', chromaticity: '10%', rgb: { r: 50 , g: 73 ,b: 67 } }, + H180L30C15 : { description: 'Blackboard Green', hue: '180°', lightness: '30%', chromaticity: '15%', rgb: { r: 39 , g: 76 ,b: 67 } }, + H180L30C20 : { description: 'Swedish Green', hue: '180°', lightness: '30%', chromaticity: '20%', rgb: { r: 24 , g: 77 ,b: 67 } }, + H180L30C25 : { description: 'Fjord Green', hue: '180°', lightness: '30%', chromaticity: '25%', rgb: { r: 0 , g: 80 ,b: 67 } }, + H180L30C30 : { description: 'Urban Green', hue: '180°', lightness: '30%', chromaticity: '30%', rgb: { r: 0 , g: 80 ,b: 66 } }, + H180L30C35 : { description: 'Jungle Green', hue: '180°', lightness: '30%', chromaticity: '35%', rgb: { r: 0 , g: 83 ,b: 65 } }, + H180L40C05 : { description: 'Earth Green', hue: '180°', lightness: '40%', chromaticity: '5%', rgb: { r: 84 , g: 95 ,b: 91 } }, + H180L40C10 : { description: 'Pine Green', hue: '180°', lightness: '40%', chromaticity: '10%', rgb: { r: 74 , g: 99 ,b: 92 } }, + H180L40C15 : { description: 'Forest Greenery', hue: '180°', lightness: '40%', chromaticity: '15%', rgb: { r: 62 , g: 100 ,b: 91 } }, + H180L40C20 : { description: 'Sea Green', hue: '180°', lightness: '40%', chromaticity: '20%', rgb: { r: 48 , g: 103 ,b: 92 } }, + H180L40C25 : { description: 'Eucalyptus Green', hue: '180°', lightness: '40%', chromaticity: '25%', rgb: { r: 30 , g: 103 ,b: 90 } }, + H180L40C30 : { description: 'Fresh Ivy Green', hue: '180°', lightness: '40%', chromaticity: '30%', rgb: { r: 0 , g: 106 ,b: 91 } }, + H180L40C35 : { description: 'Chrysocolla Medium Green', hue: '180°', lightness: '40%', chromaticity: '35%', rgb: { r: 0 , g: 107 ,b: 87 } }, + H180L40C40 : { description: 'Poster Green', hue: '180°', lightness: '40%', chromaticity: '40%', rgb: { r: 0 , g: 107 ,b: 86 } }, + H180L40C45 : { description: 'Teal Dark Green', hue: '180°', lightness: '40%', chromaticity: '45%', rgb: { r: 0 , g: 109 ,b: 87 } }, + H180L50C05 : { description: 'Dusk Green', hue: '180°', lightness: '50%', chromaticity: '5%', rgb: { r: 110 , g: 122 ,b: 119 } }, + H180L50C10 : { description: 'Refreshing Green', hue: '180°', lightness: '50%', chromaticity: '10%', rgb: { r: 97 , g: 122 ,b: 116 } }, + H180L50C15 : { description: 'Dull Turquoise', hue: '180°', lightness: '50%', chromaticity: '15%', rgb: { r: 85 , g: 125 ,b: 115 } }, + H180L50C20 : { description: 'Azurite Water Green', hue: '180°', lightness: '50%', chromaticity: '20%', rgb: { r: 73 , g: 127 ,b: 115 } }, + H180L50C25 : { description: 'Copper Mineral Green', hue: '180°', lightness: '50%', chromaticity: '25%', rgb: { r: 57 , g: 129 ,b: 116 } }, + H180L50C30 : { description: 'Glass Green', hue: '180°', lightness: '50%', chromaticity: '30%', rgb: { r: 35 , g: 132 ,b: 114 } }, + H180L50C35 : { description: 'Summer Turquoise', hue: '180°', lightness: '50%', chromaticity: '35%', rgb: { r: 0 , g: 133 ,b: 114 } }, + H180L50C40 : { description: 'Christmas Green', hue: '180°', lightness: '50%', chromaticity: '40%', rgb: { r: 0 , g: 133 ,b: 113 } }, + H180L50C45 : { description: 'Industrial Turquoise', hue: '180°', lightness: '50%', chromaticity: '45%', rgb: { r: 0 , g: 138 ,b: 112 } }, + H180L50C50 : { description: 'Ocean Green', hue: '180°', lightness: '50%', chromaticity: '50%', rgb: { r: 0 , g: 138 ,b: 111 } }, + H180L60C05 : { description: 'Marble Green-Grey', hue: '180°', lightness: '60%', chromaticity: '5%', rgb: { r: 133 , g: 146 ,b: 143 } }, + H180L60C10 : { description: 'Tile Green', hue: '180°', lightness: '60%', chromaticity: '10%', rgb: { r: 122 , g: 149 ,b: 142 } }, + H180L60C15 : { description: 'Copper Roof Green', hue: '180°', lightness: '60%', chromaticity: '15%', rgb: { r: 111 , g: 151 ,b: 142 } }, + H180L60C20 : { description: 'Sage Green', hue: '180°', lightness: '60%', chromaticity: '20%', rgb: { r: 99 , g: 154 ,b: 142 } }, + H180L60C25 : { description: 'Petrol Green', hue: '180°', lightness: '60%', chromaticity: '25%', rgb: { r: 84 , g: 155 ,b: 140 } }, + H180L60C30 : { description: 'Dioptase Green', hue: '180°', lightness: '60%', chromaticity: '30%', rgb: { r: 67 , g: 158 ,b: 141 } }, + H180L60C35 : { description: 'Stamp Pad Green', hue: '180°', lightness: '60%', chromaticity: '35%', rgb: { r: 46 , g: 161 ,b: 140 } }, + H180L60C40 : { description: 'Light Turquoise', hue: '180°', lightness: '60%', chromaticity: '40%', rgb: { r: 0 , g: 163 ,b: 140 } }, + H180L60C45 : { description: 'Caribbean Green', hue: '180°', lightness: '60%', chromaticity: '45%', rgb: { r: 0 , g: 165 ,b: 140 } }, + H180L60C50 : { description: 'Brilliant Turquoise', hue: '180°', lightness: '60%', chromaticity: '50%', rgb: { r: 0 , g: 166 ,b: 139 } }, + H180L70C05 : { description: 'Feldspar Silver', hue: '180°', lightness: '70%', chromaticity: '5%', rgb: { r: 160 , g: 173 ,b: 169 } }, + H180L70C10 : { description: 'Delicate Green', hue: '180°', lightness: '70%', chromaticity: '10%', rgb: { r: 147 , g: 176 ,b: 169 } }, + H180L70C15 : { description: 'Silicate Green', hue: '180°', lightness: '70%', chromaticity: '15%', rgb: { r: 136 , g: 178 ,b: 169 } }, + H180L70C20 : { description: 'Mint Bonbon Green', hue: '180°', lightness: '70%', chromaticity: '20%', rgb: { r: 125 , g: 182 ,b: 168 } }, + H180L70C25 : { description: 'Glacial Green', hue: '180°', lightness: '70%', chromaticity: '25%', rgb: { r: 111 , g: 183 ,b: 168 } }, + H180L70C30 : { description: 'Bath Turquoise', hue: '180°', lightness: '70%', chromaticity: '30%', rgb: { r: 98 , g: 186 ,b: 168 } }, + H180L70C35 : { description: 'Mountain Lake Azure', hue: '180°', lightness: '70%', chromaticity: '35%', rgb: { r: 76 , g: 188 ,b: 167 } }, + H180L70C40 : { description: 'Pure Cyan', hue: '180°', lightness: '70%', chromaticity: '40%', rgb: { r: 54 , g: 191 ,b: 168 } }, + H180L80C05 : { description: 'Aragonite White', hue: '180°', lightness: '80%', chromaticity: '5%', rgb: { r: 188 , g: 201 ,b: 195 } }, + H180L80C10 : { description: 'Light Teal', hue: '180°', lightness: '80%', chromaticity: '10%', rgb: { r: 177 , g: 204 ,b: 197 } }, + H180L80C15 : { description: 'Whirlpool Green', hue: '180°', lightness: '80%', chromaticity: '15%', rgb: { r: 167 , g: 208 ,b: 197 } }, + H180L80C20 : { description: 'Opal Turquoise', hue: '180°', lightness: '80%', chromaticity: '20%', rgb: { r: 150 , g: 209 ,b: 195 } }, + H180L80C25 : { description: 'Light Capri Green', hue: '180°', lightness: '80%', chromaticity: '25%', rgb: { r: 139 , g: 212 ,b: 195 } }, + H180L80C30 : { description: 'Tender Turquoise', hue: '180°', lightness: '80%', chromaticity: '30%', rgb: { r: 130 , g: 217 ,b: 197 } }, + H180L85C05 : { description: 'Sea Haze Grey', hue: '180°', lightness: '85%', chromaticity: '5%', rgb: { r: 203 , g: 217 ,b: 212 } }, + H180L85C10 : { description: 'Tierra Del Fuego Sea Green', hue: '180°', lightness: '85%', chromaticity: '10%', rgb: { r: 194 , g: 221 ,b: 211 } }, + H180L85C15 : { description: 'Pale Mountain Lake Turquoise', hue: '180°', lightness: '85%', chromaticity: '15%', rgb: { r: 186 , g: 225 ,b: 211 } }, + H180L85C20 : { description: 'Coral Green', hue: '180°', lightness: '85%', chromaticity: '20%', rgb: { r: 171 , g: 226 ,b: 207 } }, + H180L90C05 : { description: 'Transparent Green', hue: '180°', lightness: '90%', chromaticity: '5%', rgb: { r: 217 , g: 231 ,b: 226 } }, + H180L90C10 : { description: 'Ice Water Green', hue: '180°', lightness: '90%', chromaticity: '10%', rgb: { r: 205 , g: 235 ,b: 225 } }, + H180L93C05 : { description: 'Arctic White', hue: '180°', lightness: '93%', chromaticity: '5%', rgb: { r: 229 , g: 241 ,b: 236 } }, + H190L20C20 : { description: 'Night Turquoise', hue: '190°', lightness: '20%', chromaticity: '20%', rgb: { r: 0 , g: 56 ,b: 51 } }, + H190L30C15 : { description: 'Carriage Green', hue: '190°', lightness: '30%', chromaticity: '15%', rgb: { r: 37 , g: 77 ,b: 72 } }, + H190L30C20 : { description: 'Stockade Green', hue: '190°', lightness: '30%', chromaticity: '20%', rgb: { r: 16 , g: 79 ,b: 74 } }, + H190L30C25 : { description: 'Action Green', hue: '190°', lightness: '30%', chromaticity: '25%', rgb: { r: 0 , g: 80 ,b: 75 } }, + H190L30C30 : { description: 'Myrtle Deep Green', hue: '190°', lightness: '30%', chromaticity: '30%', rgb: { r: 0 , g: 82 ,b: 76 } }, + H190L30C35 : { description: 'Plankton Green', hue: '190°', lightness: '30%', chromaticity: '35%', rgb: { r: 0 , g: 83 ,b: 76 } }, + H190L40C10 : { description: 'Mud Green', hue: '190°', lightness: '40%', chromaticity: '10%', rgb: { r: 73 , g: 98 ,b: 94 } }, + H190L40C15 : { description: 'Moor Pond Green', hue: '190°', lightness: '40%', chromaticity: '15%', rgb: { r: 60 , g: 100 ,b: 97 } }, + H190L40C20 : { description: 'Lush Green', hue: '190°', lightness: '40%', chromaticity: '20%', rgb: { r: 41 , g: 102 ,b: 97 } }, + H190L40C25 : { description: 'Butterfly Green', hue: '190°', lightness: '40%', chromaticity: '25%', rgb: { r: 11 , g: 104 ,b: 99 } }, + H190L40C30 : { description: 'Fashion Blue', hue: '190°', lightness: '40%', chromaticity: '30%', rgb: { r: 0 , g: 107 ,b: 100 } }, + H190L40C35 : { description: 'Office Blue Green', hue: '190°', lightness: '40%', chromaticity: '35%', rgb: { r: 0 , g: 108 ,b: 101 } }, + H190L40C40 : { description: 'Iguana Green', hue: '190°', lightness: '40%', chromaticity: '40%', rgb: { r: 0 , g: 110 ,b: 102 } }, + H190L40C45 : { description: 'Dark Teal', hue: '190°', lightness: '40%', chromaticity: '45%', rgb: { r: 0 , g: 113 ,b: 103 } }, + H190L50C10 : { description: 'Storm Green', hue: '190°', lightness: '50%', chromaticity: '10%', rgb: { r: 97 , g: 124 ,b: 120 } }, + H190L50C15 : { description: 'Dark Turquoise', hue: '190°', lightness: '50%', chromaticity: '15%', rgb: { r: 84 , g: 126 ,b: 121 } }, + H190L50C20 : { description: 'Fir Blue', hue: '190°', lightness: '50%', chromaticity: '20%', rgb: { r: 70 , g: 128 ,b: 123 } }, + H190L50C25 : { description: 'Apatite Blue', hue: '190°', lightness: '50%', chromaticity: '25%', rgb: { r: 49 , g: 130 ,b: 123 } }, + H190L50C30 : { description: 'Egyptian Green', hue: '190°', lightness: '50%', chromaticity: '30%', rgb: { r: 8 , g: 132 ,b: 124 } }, + H190L50C35 : { description: 'Ornamental Turquoise', hue: '190°', lightness: '50%', chromaticity: '35%', rgb: { r: 0 , g: 134 ,b: 125 } }, + H190L50C40 : { description: 'Eyeshadow Turquoise', hue: '190°', lightness: '50%', chromaticity: '40%', rgb: { r: 0 , g: 137 ,b: 128 } }, + H190L50C45 : { description: 'Clear Turquoise', hue: '190°', lightness: '50%', chromaticity: '45%', rgb: { r: 0 , g: 138 ,b: 129 } }, + H190L60C10 : { description: 'Subtle Turquoise', hue: '190°', lightness: '60%', chromaticity: '10%', rgb: { r: 122 , g: 150 ,b: 147 } }, + H190L60C15 : { description: 'Pale Verdigris', hue: '190°', lightness: '60%', chromaticity: '15%', rgb: { r: 111 , g: 152 ,b: 146 } }, + H190L60C20 : { description: 'Goose Pond Green', hue: '190°', lightness: '60%', chromaticity: '20%', rgb: { r: 99 , g: 155 ,b: 149 } }, + H190L60C25 : { description: 'Tourmaline Turquoise', hue: '190°', lightness: '60%', chromaticity: '25%', rgb: { r: 79 , g: 158 ,b: 150 } }, + H190L60C30 : { description: 'Baltic Green', hue: '190°', lightness: '60%', chromaticity: '30%', rgb: { r: 58 , g: 160 ,b: 152 } }, + H190L60C35 : { description: 'Ceramic Blue Turquoise', hue: '190°', lightness: '60%', chromaticity: '35%', rgb: { r: 22 , g: 162 ,b: 154 } }, + H190L60C40 : { description: 'Baltic Turquoise', hue: '190°', lightness: '60%', chromaticity: '40%', rgb: { r: 0 , g: 164 ,b: 154 } }, + H190L60C45 : { description: 'Tyrolite Blue-Green', hue: '190°', lightness: '60%', chromaticity: '45%', rgb: { r: 0 , g: 164 ,b: 153 } }, + H190L70C10 : { description: 'Marble Green', hue: '190°', lightness: '70%', chromaticity: '10%', rgb: { r: 149 , g: 176 ,b: 173 } }, + H190L70C15 : { description: 'Jade Green', hue: '190°', lightness: '70%', chromaticity: '15%', rgb: { r: 137 , g: 179 ,b: 173 } }, + H190L70C20 : { description: 'Spring Water Turquoise', hue: '190°', lightness: '70%', chromaticity: '20%', rgb: { r: 122 , g: 181 ,b: 174 } }, + H190L70C25 : { description: 'Florida Turquoise', hue: '190°', lightness: '70%', chromaticity: '25%', rgb: { r: 107 , g: 184 ,b: 177 } }, + H190L70C30 : { description: 'Hygiene Green', hue: '190°', lightness: '70%', chromaticity: '30%', rgb: { r: 93 , g: 188 ,b: 180 } }, + H190L70C35 : { description: 'Arctic Green', hue: '190°', lightness: '70%', chromaticity: '35%', rgb: { r: 69 , g: 188 ,b: 179 } }, + H190L80C10 : { description: 'Andean Opal Green', hue: '190°', lightness: '80%', chromaticity: '10%', rgb: { r: 175 , g: 205 ,b: 199 } }, + H190L80C15 : { description: 'Cold Turquoise', hue: '190°', lightness: '80%', chromaticity: '15%', rgb: { r: 165 , g: 208 ,b: 203 } }, + H190L80C20 : { description: 'Teal Blue', hue: '190°', lightness: '80%', chromaticity: '20%', rgb: { r: 151 , g: 209 ,b: 203 } }, + H190L80C25 : { description: 'Pool Green', hue: '190°', lightness: '80%', chromaticity: '25%', rgb: { r: 136 , g: 212 ,b: 204 } }, + H190L85C05 : { description: 'Morning Dew White', hue: '190°', lightness: '85%', chromaticity: '5%', rgb: { r: 198 , g: 219 ,b: 214 } }, + H190L85C10 : { description: 'Bath Salt Green', hue: '190°', lightness: '85%', chromaticity: '10%', rgb: { r: 187 , g: 222 ,b: 215 } }, + H190L85C15 : { description: 'Capri Water Blue', hue: '190°', lightness: '85%', chromaticity: '15%', rgb: { r: 171 , g: 226 ,b: 214 } }, + H190L85C20 : { description: 'Horizon Blue', hue: '190°', lightness: '85%', chromaticity: '20%', rgb: { r: 157 , g: 229 ,b: 216 } }, + H190L90C05 : { description: 'Cool White', hue: '190°', lightness: '90%', chromaticity: '5%', rgb: { r: 218 , g: 230 ,b: 226 } }, + H190L90C10 : { description: 'Source Blue', hue: '190°', lightness: '90%', chromaticity: '10%', rgb: { r: 205 , g: 234 ,b: 229 } }, + H190L93C05 : { description: 'Egyptian White', hue: '190°', lightness: '93%', chromaticity: '5%', rgb: { r: 229 , g: 241 ,b: 236 } }, + H200L20C05 : { description: 'Concealed Green', hue: '200°', lightness: '20%', chromaticity: '5%', rgb: { r: 38 , g: 49 ,b: 48 } }, + H200L20C10 : { description: 'Dark Pine Green', hue: '200°', lightness: '20%', chromaticity: '10%', rgb: { r: 25 , g: 50 ,b: 50 } }, + H200L20C15 : { description: 'Roof Tile Green', hue: '200°', lightness: '20%', chromaticity: '15%', rgb: { r: 4 , g: 49 ,b: 50 } }, + H200L20C20 : { description: 'Shrub Green', hue: '200°', lightness: '20%', chromaticity: '20%', rgb: { r: 0 , g: 54 ,b: 54 } }, + H200L20C23 : { description: 'Customs Green', hue: '200°', lightness: '20%', chromaticity: '23%', rgb: { r: 0 , g: 56 ,b: 57 } }, + H200L30C05 : { description: 'Darkness Green', hue: '200°', lightness: '30%', chromaticity: '5%', rgb: { r: 58 , g: 70 ,b: 69 } }, + H200L30C10 : { description: 'Tree Bark Green', hue: '200°', lightness: '30%', chromaticity: '10%', rgb: { r: 48 , g: 75 ,b: 74 } }, + H200L30C15 : { description: 'Hornblende Green', hue: '200°', lightness: '30%', chromaticity: '15%', rgb: { r: 35 , g: 78 ,b: 77 } }, + H200L30C20 : { description: 'Malachite Blue Turquoise', hue: '200°', lightness: '30%', chromaticity: '20%', rgb: { r: 14 , g: 79 ,b: 79 } }, + H200L30C25 : { description: 'Antique Turquoise', hue: '200°', lightness: '30%', chromaticity: '25%', rgb: { r: 0 , g: 78 ,b: 78 } }, + H200L30C30 : { description: 'Wool Turquoise', hue: '200°', lightness: '30%', chromaticity: '30%', rgb: { r: 0 , g: 81 ,b: 82 } }, + H200L30C33 : { description: 'Ice Dark Turquoise', hue: '200°', lightness: '30%', chromaticity: '33%', rgb: { r: 0 , g: 84 ,b: 86 } }, + H200L40C05 : { description: 'Calcite Grey Green', hue: '200°', lightness: '40%', chromaticity: '5%', rgb: { r: 82 , g: 96 ,b: 95 } }, + H200L40C10 : { description: 'Brochantite Green', hue: '200°', lightness: '40%', chromaticity: '10%', rgb: { r: 72 , g: 98 ,b: 98 } }, + H200L40C15 : { description: 'Pyrite Green', hue: '200°', lightness: '40%', chromaticity: '15%', rgb: { r: 58 , g: 99 ,b: 100 } }, + H200L40C20 : { description: 'Dusky Alpine Blue', hue: '200°', lightness: '40%', chromaticity: '20%', rgb: { r: 41 , g: 103 ,b: 103 } }, + H200L40C25 : { description: 'Bath Green', hue: '200°', lightness: '40%', chromaticity: '25%', rgb: { r: 10 , g: 105 ,b: 106 } }, + H200L40C30 : { description: 'Mayan Blue', hue: '200°', lightness: '40%', chromaticity: '30%', rgb: { r: 0 , g: 107 ,b: 108 } }, + H200L40C35 : { description: 'Byzantine Blue', hue: '200°', lightness: '40%', chromaticity: '35%', rgb: { r: 0 , g: 108 ,b: 110 } }, + H200L40C40 : { description: 'Active Turquoise', hue: '200°', lightness: '40%', chromaticity: '40%', rgb: { r: 0 , g: 111 ,b: 114 } }, + H200L50C05 : { description: 'North Grey', hue: '200°', lightness: '50%', chromaticity: '5%', rgb: { r: 106 , g: 119 ,b: 119 } }, + H200L50C10 : { description: 'Eye Grey', hue: '200°', lightness: '50%', chromaticity: '10%', rgb: { r: 96 , g: 123 ,b: 123 } }, + H200L50C15 : { description: 'Nickel Ore Green', hue: '200°', lightness: '50%', chromaticity: '15%', rgb: { r: 83 , g: 126 ,b: 126 } }, + H200L50C20 : { description: 'Seafoam Green', hue: '200°', lightness: '50%', chromaticity: '20%', rgb: { r: 66 , g: 127 ,b: 128 } }, + H200L50C25 : { description: 'Kandinsky Turquoise', hue: '200°', lightness: '50%', chromaticity: '25%', rgb: { r: 45 , g: 130 ,b: 132 } }, + H200L50C30 : { description: 'Caribbean Turquoise', hue: '200°', lightness: '50%', chromaticity: '30%', rgb: { r: 0 , g: 132 ,b: 134 } }, + H200L50C35 : { description: 'Well Blue', hue: '200°', lightness: '50%', chromaticity: '35%', rgb: { r: 0 , g: 136 ,b: 139 } }, + H200L50C40 : { description: 'Industrial Blue', hue: '200°', lightness: '50%', chromaticity: '40%', rgb: { r: 0 , g: 137 ,b: 140 } }, + H200L50C45 : { description: 'India Blue', hue: '200°', lightness: '50%', chromaticity: '45%', rgb: { r: 0 , g: 138 ,b: 142 } }, + H200L60C05 : { description: 'Shady Grey', hue: '200°', lightness: '60%', chromaticity: '5%', rgb: { r: 132 , g: 146 ,b: 146 } }, + H200L60C10 : { description: 'North Cape Grey', hue: '200°', lightness: '60%', chromaticity: '10%', rgb: { r: 122 , g: 149 ,b: 149 } }, + H200L60C15 : { description: 'Woad Indigo', hue: '200°', lightness: '60%', chromaticity: '15%', rgb: { r: 108 , g: 152 ,b: 152 } }, + H200L60C20 : { description: 'Jugendstil Turquoise', hue: '200°', lightness: '60%', chromaticity: '20%', rgb: { r: 95 , g: 155 ,b: 156 } }, + H200L60C25 : { description: 'Coolbox Ice Turquoise', hue: '200°', lightness: '60%', chromaticity: '25%', rgb: { r: 73 , g: 156 ,b: 157 } }, + H200L60C30 : { description: 'Aquamarine Blue', hue: '200°', lightness: '60%', chromaticity: '30%', rgb: { r: 49 , g: 159 ,b: 159 } }, + H200L60C35 : { description: 'Arctic Blue', hue: '200°', lightness: '60%', chromaticity: '35%', rgb: { r: 0 , g: 161 ,b: 163 } }, + H200L60C40 : { description: 'Wax Crayon Blue', hue: '200°', lightness: '60%', chromaticity: '40%', rgb: { r: 0 , g: 164 ,b: 166 } }, + H200L70C05 : { description: 'Prince Grey', hue: '200°', lightness: '70%', chromaticity: '5%', rgb: { r: 160 , g: 173 ,b: 172 } }, + H200L70C10 : { description: 'Calcite Blue', hue: '200°', lightness: '70%', chromaticity: '10%', rgb: { r: 148 , g: 178 ,b: 178 } }, + H200L70C15 : { description: 'Cold Front Green', hue: '200°', lightness: '70%', chromaticity: '15%', rgb: { r: 133 , g: 179 ,b: 178 } }, + H200L70C20 : { description: 'Kingfisher Turquoise', hue: '200°', lightness: '70%', chromaticity: '20%', rgb: { r: 122 , g: 182 ,b: 182 } }, + H200L70C25 : { description: 'Fresh Soft Blue', hue: '200°', lightness: '70%', chromaticity: '25%', rgb: { r: 106 , g: 185 ,b: 187 } }, + H200L80C05 : { description: 'China Light Green', hue: '200°', lightness: '80%', chromaticity: '5%', rgb: { r: 188 , g: 201 ,b: 199 } }, + H200L80C10 : { description: 'Baroque Chalk Soft Blue', hue: '200°', lightness: '80%', chromaticity: '10%', rgb: { r: 174 , g: 204 ,b: 203 } }, + H200L80C15 : { description: 'Ice Boutique Turquoise', hue: '200°', lightness: '80%', chromaticity: '15%', rgb: { r: 162 , g: 205 ,b: 203 } }, + H200L80C20 : { description: 'Summer Soft Blue', hue: '200°', lightness: '80%', chromaticity: '20%', rgb: { r: 148 , g: 211 ,b: 209 } }, + H200L80C25 : { description: 'Mountain Lake Blue', hue: '200°', lightness: '80%', chromaticity: '25%', rgb: { r: 133 , g: 212 ,b: 212 } }, + H200L85C05 : { description: 'Raffia Light Grey', hue: '200°', lightness: '85%', chromaticity: '5%', rgb: { r: 203 , g: 217 ,b: 216 } }, + H200L85C10 : { description: 'Cold Air Turquoise', hue: '200°', lightness: '85%', chromaticity: '10%', rgb: { r: 193 , g: 220 ,b: 219 } }, + H200L85C15 : { description: 'Frosty Soft Blue', hue: '200°', lightness: '85%', chromaticity: '15%', rgb: { r: 180 , g: 224 ,b: 222 } }, + H200L85C20 : { description: 'Ice Crystal Blue', hue: '200°', lightness: '85%', chromaticity: '20%', rgb: { r: 166 , g: 227 ,b: 224 } }, + H200L90C05 : { description: 'Frosty Green', hue: '200°', lightness: '90%', chromaticity: '5%', rgb: { r: 217 , g: 231 ,b: 228 } }, + H200L90C10 : { description: 'Frosty White Blue', hue: '200°', lightness: '90%', chromaticity: '10%', rgb: { r: 204 , g: 233 ,b: 228 } }, + H200L93C05 : { description: 'Chilly White', hue: '200°', lightness: '93%', chromaticity: '5%', rgb: { r: 229 , g: 241 ,b: 237 } }, + H210L30C10 : { description: 'Graphite Black Green', hue: '210°', lightness: '30%', chromaticity: '10%', rgb: { r: 50 , g: 73 ,b: 75 } }, + H210L30C15 : { description: 'Mallard Blue', hue: '210°', lightness: '30%', chromaticity: '15%', rgb: { r: 33 , g: 76 ,b: 79 } }, + H210L30C20 : { description: 'Transporter Green', hue: '210°', lightness: '30%', chromaticity: '20%', rgb: { r: 0 , g: 79 ,b: 84 } }, + H210L30C25 : { description: 'Deep Atlantic Blue', hue: '210°', lightness: '30%', chromaticity: '25%', rgb: { r: 0 , g: 79 ,b: 87 } }, + H210L30C30 : { description: 'Kali Blue', hue: '210°', lightness: '30%', chromaticity: '30%', rgb: { r: 0 , g: 80 ,b: 90 } }, + H210L40C10 : { description: 'Linen Grey', hue: '210°', lightness: '40%', chromaticity: '10%', rgb: { r: 70 , g: 97 ,b: 99 } }, + H210L40C15 : { description: 'China Green Blue', hue: '210°', lightness: '40%', chromaticity: '15%', rgb: { r: 58 , g: 100 ,b: 104 } }, + H210L40C20 : { description: 'Dusk Blue', hue: '210°', lightness: '40%', chromaticity: '20%', rgb: { r: 38 , g: 102 ,b: 107 } }, + H210L40C25 : { description: 'Trouser Blue', hue: '210°', lightness: '40%', chromaticity: '25%', rgb: { r: 0 , g: 102 ,b: 109 } }, + H210L40C30 : { description: 'Indigo Blue', hue: '210°', lightness: '40%', chromaticity: '30%', rgb: { r: 0 , g: 105 ,b: 115 } }, + H210L40C35 : { description: 'Cold Blue', hue: '210°', lightness: '40%', chromaticity: '35%', rgb: { r: 0 , g: 108 ,b: 120 } }, + H210L40C38 : { description: 'Mary Blue', hue: '210°', lightness: '40%', chromaticity: '38%', rgb: { r: 0 , g: 106 ,b: 119 } }, + H210L50C10 : { description: 'Uniform Green Grey', hue: '210°', lightness: '50%', chromaticity: '10%', rgb: { r: 95 , g: 123 ,b: 126 } }, + H210L50C15 : { description: 'Labradorite Green', hue: '210°', lightness: '50%', chromaticity: '15%', rgb: { r: 84 , g: 125 ,b: 128 } }, + H210L50C20 : { description: 'Enamel Antique Green', hue: '210°', lightness: '50%', chromaticity: '20%', rgb: { r: 66 , g: 127 ,b: 133 } }, + H210L50C25 : { description: 'Cranach Blue', hue: '210°', lightness: '50%', chromaticity: '25%', rgb: { r: 43 , g: 130 ,b: 136 } }, + H210L50C30 : { description: 'China Blue', hue: '210°', lightness: '50%', chromaticity: '30%', rgb: { r: 0 , g: 131 ,b: 141 } }, + H210L50C35 : { description: 'Glacier Blue', hue: '210°', lightness: '50%', chromaticity: '35%', rgb: { r: 0 , g: 134 ,b: 145 } }, + H210L50C40 : { description: 'Curaçao Blue', hue: '210°', lightness: '50%', chromaticity: '40%', rgb: { r: 0 , g: 136 ,b: 148 } }, + H210L50C45 : { description: 'Atlantic Blue', hue: '210°', lightness: '50%', chromaticity: '45%', rgb: { r: 0 , g: 137 ,b: 151 } }, + H210L60C10 : { description: 'Ash Blue', hue: '210°', lightness: '60%', chromaticity: '10%', rgb: { r: 122 , g: 149 ,b: 152 } }, + H210L60C15 : { description: 'Baltic Blue', hue: '210°', lightness: '60%', chromaticity: '15%', rgb: { r: 108 , g: 150 ,b: 154 } }, + H210L60C20 : { description: 'Beach Blue', hue: '210°', lightness: '60%', chromaticity: '20%', rgb: { r: 95 , g: 156 ,b: 162 } }, + H210L60C25 : { description: 'Basilica Blue', hue: '210°', lightness: '60%', chromaticity: '25%', rgb: { r: 74 , g: 159 ,b: 167 } }, + H210L60C30 : { description: 'Danube Blue', hue: '210°', lightness: '60%', chromaticity: '30%', rgb: { r: 48 , g: 160 ,b: 170 } }, + H210L60C35 : { description: 'Altdorf Sky Blue', hue: '210°', lightness: '60%', chromaticity: '35%', rgb: { r: 0 , g: 161 ,b: 172 } }, + H210L60C40 : { description: 'Garish Blue', hue: '210°', lightness: '60%', chromaticity: '40%', rgb: { r: 0 , g: 164 ,b: 177 } }, + H210L70C10 : { description: 'Storm Grey', hue: '210°', lightness: '70%', chromaticity: '10%', rgb: { r: 149 , g: 177 ,b: 179 } }, + H210L70C15 : { description: 'Persian Blue', hue: '210°', lightness: '70%', chromaticity: '15%', rgb: { r: 137 , g: 179 ,b: 182 } }, + H210L70C20 : { description: 'Aqua Blue', hue: '210°', lightness: '70%', chromaticity: '20%', rgb: { r: 121 , g: 182 ,b: 188 } }, + H210L70C25 : { description: 'Maritime Soft Blue', hue: '210°', lightness: '70%', chromaticity: '25%', rgb: { r: 105 , g: 184 ,b: 192 } }, + H210L70C30 : { description: 'Mountain Blue', hue: '210°', lightness: '70%', chromaticity: '30%', rgb: { r: 83 , g: 188 ,b: 197 } }, + H210L70C35 : { description: 'Panorama Blue', hue: '210°', lightness: '70%', chromaticity: '35%', rgb: { r: 53 , g: 189 ,b: 200 } }, + H210L80C10 : { description: 'Turquoise Grey', hue: '210°', lightness: '80%', chromaticity: '10%', rgb: { r: 180 , g: 206 ,b: 207 } }, + H210L80C15 : { description: 'Dolphin Blue', hue: '210°', lightness: '80%', chromaticity: '15%', rgb: { r: 165 , g: 209 ,b: 211 } }, + H210L80C20 : { description: 'Aroma Blue', hue: '210°', lightness: '80%', chromaticity: '20%', rgb: { r: 150 , g: 210 ,b: 214 } }, + H210L80C25 : { description: 'Vibrant Soft Blue', hue: '210°', lightness: '80%', chromaticity: '25%', rgb: { r: 136 , g: 214 ,b: 220 } }, + H210L85C05 : { description: 'Siesta White', hue: '210°', lightness: '85%', chromaticity: '5%', rgb: { r: 202 , g: 218 ,b: 218 } }, + H210L85C10 : { description: 'Mint Blue', hue: '210°', lightness: '85%', chromaticity: '10%', rgb: { r: 188 , g: 224 ,b: 223 } }, + H210L85C15 : { description: 'Fine Blue', hue: '210°', lightness: '85%', chromaticity: '15%', rgb: { r: 182 , g: 225 ,b: 225 } }, + H210L85C20 : { description: 'Pale Blue', hue: '210°', lightness: '85%', chromaticity: '20%', rgb: { r: 167 , g: 227 ,b: 226 } }, + H210L90C05 : { description: 'Tulle Soft Blue', hue: '210°', lightness: '90%', chromaticity: '5%', rgb: { r: 217 , g: 231 ,b: 229 } }, + H210L90C10 : { description: 'Antarctic Blue', hue: '210°', lightness: '90%', chromaticity: '10%', rgb: { r: 204 , g: 234 ,b: 231 } }, + H220L20C05 : { description: 'Navy Black', hue: '220°', lightness: '20%', chromaticity: '5%', rgb: { r: 38 , g: 48 ,b: 50 } }, + H220L20C10 : { description: 'Indigo Carmine', hue: '220°', lightness: '20%', chromaticity: '10%', rgb: { r: 26 , g: 51 ,b: 56 } }, + H220L20C15 : { description: 'Artist Blue', hue: '220°', lightness: '20%', chromaticity: '15%', rgb: { r: 1 , g: 52 ,b: 58 } }, + H220L20C20 : { description: 'Natural Indigo', hue: '220°', lightness: '20%', chromaticity: '20%', rgb: { r: 0 , g: 55 ,b: 64 } }, + H220L30C05 : { description: 'Panda Black', hue: '220°', lightness: '30%', chromaticity: '5%', rgb: { r: 60 , g: 71 ,b: 72 } }, + H220L30C10 : { description: 'Pallasite Blue', hue: '220°', lightness: '30%', chromaticity: '10%', rgb: { r: 49 , g: 74 ,b: 78 } }, + H220L30C15 : { description: 'Hurricane Green Blue', hue: '220°', lightness: '30%', chromaticity: '15%', rgb: { r: 37 , g: 77 ,b: 84 } }, + H220L30C20 : { description: 'Watercolour Blue', hue: '220°', lightness: '30%', chromaticity: '20%', rgb: { r: 8 , g: 77 ,b: 88 } }, + H220L30C25 : { description: 'Coral Blue', hue: '220°', lightness: '30%', chromaticity: '25%', rgb: { r: 0 , g: 81 ,b: 93 } }, + H220L30C30 : { description: 'Sandalwood Grey Blue', hue: '220°', lightness: '30%', chromaticity: '30%', rgb: { r: 0 , g: 81 ,b: 96 } }, + H220L40C05 : { description: 'Limousine Grey Blue', hue: '220°', lightness: '40%', chromaticity: '5%', rgb: { r: 83 , g: 95 ,b: 98 } }, + H220L40C10 : { description: 'Corundum Blue', hue: '220°', lightness: '40%', chromaticity: '10%', rgb: { r: 74 , g: 98 ,b: 103 } }, + H220L40C15 : { description: 'Smock Blue', hue: '220°', lightness: '40%', chromaticity: '15%', rgb: { r: 59 , g: 100 ,b: 108 } }, + H220L40C20 : { description: 'Mordant Blue', hue: '220°', lightness: '40%', chromaticity: '20%', rgb: { r: 42 , g: 102 ,b: 113 } }, + H220L40C25 : { description: 'Cotton Indigo', hue: '220°', lightness: '40%', chromaticity: '25%', rgb: { r: 6 , g: 105 ,b: 118 } }, + H220L40C30 : { description: 'Fjord Blue', hue: '220°', lightness: '40%', chromaticity: '30%', rgb: { r: 0 , g: 107 ,b: 125 } }, + H220L40C35 : { description: 'Azure Green Blue', hue: '220°', lightness: '40%', chromaticity: '35%', rgb: { r: 0 , g: 108 ,b: 129 } }, + H220L40C40 : { description: 'Cyan Blue', hue: '220°', lightness: '40%', chromaticity: '40%', rgb: { r: 0 , g: 111 ,b: 134 } }, + H220L50C05 : { description: 'Winter Could Grey', hue: '220°', lightness: '50%', chromaticity: '5%', rgb: { r: 110 , g: 122 ,b: 124 } }, + H220L50C10 : { description: 'Cadet Grey', hue: '220°', lightness: '50%', chromaticity: '10%', rgb: { r: 99 , g: 123 ,b: 128 } }, + H220L50C15 : { description: 'Holbein Blue Grey', hue: '220°', lightness: '50%', chromaticity: '15%', rgb: { r: 84 , g: 125 ,b: 134 } }, + H220L50C20 : { description: 'Shady Blue', hue: '220°', lightness: '50%', chromaticity: '20%', rgb: { r: 66 , g: 128 ,b: 138 } }, + H220L50C25 : { description: 'Fresco Blue', hue: '220°', lightness: '50%', chromaticity: '25%', rgb: { r: 48 , g: 129 ,b: 143 } }, + H220L50C30 : { description: 'Craftsman Blue', hue: '220°', lightness: '50%', chromaticity: '30%', rgb: { r: 0 , g: 129 ,b: 147 } }, + H220L50C35 : { description: 'Marker Blue', hue: '220°', lightness: '50%', chromaticity: '35%', rgb: { r: 0 , g: 134 ,b: 154 } }, + H220L50C40 : { description: 'Toy Blue', hue: '220°', lightness: '50%', chromaticity: '40%', rgb: { r: 0 , g: 136 ,b: 159 } }, + H220L60C05 : { description: 'Deep Sea Grey', hue: '220°', lightness: '60%', chromaticity: '5%', rgb: { r: 135 , g: 146 ,b: 148 } }, + H220L60C10 : { description: 'Tile Blue', hue: '220°', lightness: '60%', chromaticity: '10%', rgb: { r: 124 , g: 149 ,b: 155 } }, + H220L60C15 : { description: 'Morning Blue', hue: '220°', lightness: '60%', chromaticity: '15%', rgb: { r: 112 , g: 152 ,b: 160 } }, + H220L60C20 : { description: 'Frost Blue', hue: '220°', lightness: '60%', chromaticity: '20%', rgb: { r: 93 , g: 154 ,b: 166 } }, + H220L60C25 : { description: 'Summer Turquoise Blue', hue: '220°', lightness: '60%', chromaticity: '25%', rgb: { r: 75 , g: 156 ,b: 171 } }, + H220L60C30 : { description: 'Fischer Blue', hue: '220°', lightness: '60%', chromaticity: '30%', rgb: { r: 50 , g: 160 ,b: 177 } }, + H220L60C35 : { description: 'Planet Blue', hue: '220°', lightness: '60%', chromaticity: '35%', rgb: { r: 0 , g: 159 ,b: 179 } }, + H220L60C40 : { description: 'January Blue', hue: '220°', lightness: '60%', chromaticity: '40%', rgb: { r: 0 , g: 161 ,b: 185 } }, + H220L70C05 : { description: 'Tempered Grey', hue: '220°', lightness: '70%', chromaticity: '5%', rgb: { r: 161 , g: 174 ,b: 177 } }, + H220L70C10 : { description: 'Mohair Soft Blue Grey', hue: '220°', lightness: '70%', chromaticity: '10%', rgb: { r: 151 , g: 178 ,b: 183 } }, + H220L70C15 : { description: 'Kitchen Blue', hue: '220°', lightness: '70%', chromaticity: '15%', rgb: { r: 138 , g: 181 ,b: 189 } }, + H220L70C20 : { description: 'Culinary Blue', hue: '220°', lightness: '70%', chromaticity: '20%', rgb: { r: 123 , g: 182 ,b: 193 } }, + H220L70C25 : { description: 'Blouson Blue', hue: '220°', lightness: '70%', chromaticity: '25%', rgb: { r: 103 , g: 183 ,b: 198 } }, + H220L70C30 : { description: 'Mountain Range Blue', hue: '220°', lightness: '70%', chromaticity: '30%', rgb: { r: 83 , g: 184 ,b: 201 } }, + H220L70C35 : { description: 'Holiday Blue', hue: '220°', lightness: '70%', chromaticity: '35%', rgb: { r: 50 , g: 188 ,b: 209 } }, + H220L80C05 : { description: 'Pastel Blue', hue: '220°', lightness: '80%', chromaticity: '5%', rgb: { r: 188 , g: 202 ,b: 202 } }, + H220L80C10 : { description: 'Clinical Soft Blue', hue: '220°', lightness: '80%', chromaticity: '10%', rgb: { r: 178 , g: 207 ,b: 211 } }, + H220L80C15 : { description: "Children's Soft Blue", hue: '220°', lightness: '80%', chromaticity: '15%', rgb: { r: 161 , g: 206 ,b: 215 } }, + H220L80C20 : { description: 'Tourmaline Water Blue', hue: '220°', lightness: '80%', chromaticity: '20%', rgb: { r: 153 , g: 211 ,b: 223 } }, + H220L80C25 : { description: 'Fresh Blue', hue: '220°', lightness: '80%', chromaticity: '25%', rgb: { r: 139 , g: 214 ,b: 226 } }, + H220L85C05 : { description: 'Transparent Blue', hue: '220°', lightness: '85%', chromaticity: '5%', rgb: { r: 205 , g: 219 ,b: 221 } }, + H220L85C10 : { description: 'Ice Shard Soft Blue', hue: '220°', lightness: '85%', chromaticity: '10%', rgb: { r: 193 , g: 222 ,b: 226 } }, + H220L85C15 : { description: 'Polar Blue', hue: '220°', lightness: '85%', chromaticity: '15%', rgb: { r: 179 , g: 224 ,b: 231 } }, + H220L90C05 : { description: 'Cold Soft Blue', hue: '220°', lightness: '90%', chromaticity: '5%', rgb: { r: 217 , g: 231 ,b: 230 } }, + H220L90C10 : { description: 'Full Moon Grey', hue: '220°', lightness: '90%', chromaticity: '10%', rgb: { r: 207 , g: 234 ,b: 233 } }, + H230L20C10 : { description: 'Ore Bluish Black', hue: '230°', lightness: '20%', chromaticity: '10%', rgb: { r: 28 , g: 51 ,b: 57 } }, + H230L20C15 : { description: 'Firmanent Blue', hue: '230°', lightness: '20%', chromaticity: '15%', rgb: { r: 17 , g: 53 ,b: 63 } }, + H230L20C20 : { description: 'Prussian Blue', hue: '230°', lightness: '20%', chromaticity: '20%', rgb: { r: 0 , g: 52 ,b: 66 } }, + H230L30C10 : { description: 'Galenite Blue', hue: '230°', lightness: '30%', chromaticity: '10%', rgb: { r: 55 , g: 75 ,b: 82 } }, + H230L30C15 : { description: 'Berry Blue Green', hue: '230°', lightness: '30%', chromaticity: '15%', rgb: { r: 38 , g: 75 ,b: 86 } }, + H230L30C20 : { description: 'Teal Dark Blue', hue: '230°', lightness: '30%', chromaticity: '20%', rgb: { r: 15 , g: 77 ,b: 92 } }, + H230L30C25 : { description: 'Thunderstorm Blue', hue: '230°', lightness: '30%', chromaticity: '25%', rgb: { r: 0 , g: 79 ,b: 99 } }, + H230L40C10 : { description: 'Cone Green Blue', hue: '230°', lightness: '40%', chromaticity: '10%', rgb: { r: 74 , g: 97 ,b: 105 } }, + H230L40C15 : { description: 'Juniper Berry Blue', hue: '230°', lightness: '40%', chromaticity: '15%', rgb: { r: 63 , g: 98 ,b: 110 } }, + H230L40C20 : { description: 'Loon Turquoise', hue: '230°', lightness: '40%', chromaticity: '20%', rgb: { r: 46 , g: 102 ,b: 118 } }, + H230L40C25 : { description: 'Workshop Blue', hue: '230°', lightness: '40%', chromaticity: '25%', rgb: { r: 2 , g: 102 ,b: 123 } }, + H230L40C30 : { description: 'Pilot Blue', hue: '230°', lightness: '40%', chromaticity: '30%', rgb: { r: 0 , g: 105 ,b: 129 } }, + H230L40C35 : { description: 'Ink Blue', hue: '230°', lightness: '40%', chromaticity: '35%', rgb: { r: 0 , g: 107 ,b: 136 } }, + H230L40C40 : { description: 'Techno Blue', hue: '230°', lightness: '40%', chromaticity: '40%', rgb: { r: 0 , g: 107 ,b: 139 } }, + H230L50C10 : { description: 'Gravel Grey Blue', hue: '230°', lightness: '50%', chromaticity: '10%', rgb: { r: 99 , g: 122 ,b: 130 } }, + H230L50C15 : { description: 'Spruce Blue', hue: '230°', lightness: '50%', chromaticity: '15%', rgb: { r: 87 , g: 126 ,b: 137 } }, + H230L50C20 : { description: 'Casual Blue', hue: '230°', lightness: '50%', chromaticity: '20%', rgb: { r: 73 , g: 128 ,b: 144 } }, + H230L50C25 : { description: 'Forget-Me-Not Blue', hue: '230°', lightness: '50%', chromaticity: '25%', rgb: { r: 53 , g: 128 ,b: 148 } }, + H230L50C30 : { description: 'Zircon Blue', hue: '230°', lightness: '50%', chromaticity: '30%', rgb: { r: 0 , g: 132 ,b: 157 } }, + H230L50C35 : { description: 'Lagoon Blue', hue: '230°', lightness: '50%', chromaticity: '35%', rgb: { r: 0 , g: 132 ,b: 160 } }, + H230L50C40 : { description: 'Azores Blue', hue: '230°', lightness: '50%', chromaticity: '40%', rgb: { r: 0 , g: 133 ,b: 167 } }, + H230L60C10 : { description: 'Kingfisher Grey', hue: '230°', lightness: '60%', chromaticity: '10%', rgb: { r: 126 , g: 150 ,b: 159 } }, + H230L60C15 : { description: 'Silver Fir Blue', hue: '230°', lightness: '60%', chromaticity: '15%', rgb: { r: 113 , g: 150 ,b: 162 } }, + H230L60C20 : { description: 'Pyjama Blue', hue: '230°', lightness: '60%', chromaticity: '20%', rgb: { r: 98 , g: 153 ,b: 170 } }, + H230L60C25 : { description: 'Starflower Blue', hue: '230°', lightness: '60%', chromaticity: '25%', rgb: { r: 78 , g: 154 ,b: 176 } }, + H230L60C30 : { description: 'Sports Blue', hue: '230°', lightness: '60%', chromaticity: '30%', rgb: { r: 57 , g: 155 ,b: 180 } }, + H230L60C35 : { description: 'Greek Blue', hue: '230°', lightness: '60%', chromaticity: '35%', rgb: { r: 0 , g: 159 ,b: 189 } }, + H230L60C40 : { description: 'Alpine Blue', hue: '230°', lightness: '60%', chromaticity: '40%', rgb: { r: 0 , g: 160 ,b: 195 } }, + H230L70C10 : { description: 'Ice Gull Grey Blue', hue: '230°', lightness: '70%', chromaticity: '10%', rgb: { r: 155 , g: 178 ,b: 186 } }, + H230L70C15 : { description: 'Thistleblossom Soft Blue', hue: '230°', lightness: '70%', chromaticity: '15%', rgb: { r: 138 , g: 179 ,b: 191 } }, + H230L70C20 : { description: 'Tennis Blue', hue: '230°', lightness: '70%', chromaticity: '20%', rgb: { r: 124 , g: 181 ,b: 198 } }, + H230L70C25 : { description: 'Vintage Blue', hue: '230°', lightness: '70%', chromaticity: '25%', rgb: { r: 111 , g: 183 ,b: 204 } }, + H230L70C30 : { description: 'Fitness Blue', hue: '230°', lightness: '70%', chromaticity: '30%', rgb: { r: 91 , g: 185 ,b: 210 } }, + H230L80C10 : { description: 'Pallid Blue', hue: '230°', lightness: '80%', chromaticity: '10%', rgb: { r: 179 , g: 205 ,b: 212 } }, + H230L80C15 : { description: 'Alpine Morning Blue', hue: '230°', lightness: '80%', chromaticity: '15%', rgb: { r: 166 , g: 204 ,b: 216 } }, + H230L80C20 : { description: 'Light Blue', hue: '230°', lightness: '80%', chromaticity: '20%', rgb: { r: 155 , g: 208 ,b: 225 } }, + H230L85C05 : { description: 'Polar Soft Blue', hue: '230°', lightness: '85%', chromaticity: '5%', rgb: { r: 208 , g: 220 ,b: 222 } }, + H230L85C10 : { description: 'Washing Powder White', hue: '230°', lightness: '85%', chromaticity: '10%', rgb: { r: 194 , g: 220 ,b: 227 } }, + H230L85C15 : { description: 'Himalaya White Blue', hue: '230°', lightness: '85%', chromaticity: '15%', rgb: { r: 185 , g: 222 ,b: 233 } }, + H230L85C20 : { description: 'Atmospheric Soft Blue', hue: '230°', lightness: '85%', chromaticity: '20%', rgb: { r: 172 , g: 225 ,b: 240 } }, + H230L90C05 : { description: 'Brilliant White', hue: '230°', lightness: '90%', chromaticity: '5%', rgb: { r: 218 , g: 230 ,b: 229 } }, + H240L20C05 : { description: 'Nightshade Blue', hue: '240°', lightness: '20%', chromaticity: '5%', rgb: { r: 41 , g: 49 ,b: 53 } }, + H240L20C10 : { description: 'Elderberry Black', hue: '240°', lightness: '20%', chromaticity: '10%', rgb: { r: 30 , g: 50 ,b: 59 } }, + H240L20C15 : { description: 'Metal Blue', hue: '240°', lightness: '20%', chromaticity: '15%', rgb: { r: 15 , g: 51 ,b: 65 } }, + H240L20C20 : { description: 'Crowberry Blue', hue: '240°', lightness: '20%', chromaticity: '20%', rgb: { r: 0 , g: 52 ,b: 71 } }, + H240L20C22 : { description: 'Rich Blue', hue: '240°', lightness: '20%', chromaticity: '22%', rgb: { r: 0 , g: 52 ,b: 74 } }, + H240L30C05 : { description: 'Diamond Grey', hue: '240°', lightness: '30%', chromaticity: '5%', rgb: { r: 62 , g: 71 ,b: 75 } }, + H240L30C10 : { description: 'Dirty Blue', hue: '240°', lightness: '30%', chromaticity: '10%', rgb: { r: 52 , g: 73 ,b: 83 } }, + H240L30C15 : { description: 'Deep Sea Blue', hue: '240°', lightness: '30%', chromaticity: '15%', rgb: { r: 42 , g: 75 ,b: 90 } }, + H240L30C20 : { description: 'Lasurite Blue', hue: '240°', lightness: '30%', chromaticity: '20%', rgb: { r: 23 , g: 76 ,b: 96 } }, + H240L30C25 : { description: 'Work Blue', hue: '240°', lightness: '30%', chromaticity: '25%', rgb: { r: 0 , g: 77 ,b: 103 } }, + H240L30C30 : { description: 'Gemstone Blue', hue: '240°', lightness: '30%', chromaticity: '30%', rgb: { r: 0 , g: 79 ,b: 109 } }, + H240L30C35 : { description: 'Captain Blue', hue: '240°', lightness: '30%', chromaticity: '35%', rgb: { r: 0 , g: 81 ,b: 113 } }, + H240L40C05 : { description: 'Blue Anthracite', hue: '240°', lightness: '40%', chromaticity: '5%', rgb: { r: 85 , g: 94 ,b: 100 } }, + H240L40C10 : { description: 'Blackthorn Blue', hue: '240°', lightness: '40%', chromaticity: '10%', rgb: { r: 76 , g: 96 ,b: 107 } }, + H240L40C15 : { description: 'Celeste Blue', hue: '240°', lightness: '40%', chromaticity: '15%', rgb: { r: 64 , g: 99 ,b: 116 } }, + H240L40C20 : { description: 'Denim Blue', hue: '240°', lightness: '40%', chromaticity: '20%', rgb: { r: 47 , g: 100 ,b: 121 } }, + H240L40C25 : { description: 'Orient Blue', hue: '240°', lightness: '40%', chromaticity: '25%', rgb: { r: 21 , g: 102 ,b: 129 } }, + H240L40C30 : { description: 'Sailor Blue', hue: '240°', lightness: '40%', chromaticity: '30%', rgb: { r: 0 , g: 102 ,b: 135 } }, + H240L40C35 : { description: 'Stone Blue', hue: '240°', lightness: '40%', chromaticity: '35%', rgb: { r: 0 , g: 104 ,b: 141 } }, + H240L40C40 : { description: 'Pure Light Blue', hue: '240°', lightness: '40%', chromaticity: '40%', rgb: { r: 0 , g: 106 ,b: 147 } }, + H240L50C05 : { description: 'Smoky Blue', hue: '240°', lightness: '50%', chromaticity: '5%', rgb: { r: 111 , g: 120 ,b: 125 } }, + H240L50C10 : { description: 'Tool Blue', hue: '240°', lightness: '50%', chromaticity: '10%', rgb: { r: 99 , g: 121 ,b: 133 } }, + H240L50C15 : { description: 'Technical Blue', hue: '240°', lightness: '50%', chromaticity: '15%', rgb: { r: 88 , g: 124 ,b: 141 } }, + H240L50C20 : { description: 'Coelin Blue', hue: '240°', lightness: '50%', chromaticity: '20%', rgb: { r: 73 , g: 125 ,b: 147 } }, + H240L50C25 : { description: 'Greenland Blue', hue: '240°', lightness: '50%', chromaticity: '25%', rgb: { r: 54 , g: 127 ,b: 154 } }, + H240L50C30 : { description: 'Summer Blue', hue: '240°', lightness: '50%', chromaticity: '30%', rgb: { r: 24 , g: 128 ,b: 161 } }, + H240L50C35 : { description: 'Advertising Blue', hue: '240°', lightness: '50%', chromaticity: '35%', rgb: { r: 0 , g: 129 ,b: 168 } }, + H240L50C40 : { description: 'Tusche Blue', hue: '240°', lightness: '50%', chromaticity: '40%', rgb: { r: 0 , g: 130 ,b: 173 } }, + H240L60C05 : { description: 'Carrier Pigeon Blue', hue: '240°', lightness: '60%', chromaticity: '5%', rgb: { r: 136 , g: 147 ,b: 152 } }, + H240L60C10 : { description: 'Bird Blue', hue: '240°', lightness: '60%', chromaticity: '10%', rgb: { r: 123 , g: 146 ,b: 158 } }, + H240L60C15 : { description: 'Architecture Blue', hue: '240°', lightness: '60%', chromaticity: '15%', rgb: { r: 113 , g: 149 ,b: 166 } }, + H240L60C20 : { description: 'Shirt Blue', hue: '240°', lightness: '60%', chromaticity: '20%', rgb: { r: 101 , g: 152 ,b: 175 } }, + H240L60C25 : { description: 'Steel Light Blue', hue: '240°', lightness: '60%', chromaticity: '25%', rgb: { r: 85 , g: 153 ,b: 182 } }, + H240L60C30 : { description: 'Fairytale Blue', hue: '240°', lightness: '60%', chromaticity: '30%', rgb: { r: 62 , g: 154 ,b: 189 } }, + H240L60C35 : { description: 'Princess Blue', hue: '240°', lightness: '60%', chromaticity: '35%', rgb: { r: 20 , g: 156 ,b: 196 } }, + H240L60C40 : { description: 'Clear Blue', hue: '240°', lightness: '60%', chromaticity: '40%', rgb: { r: 0 , g: 159 ,b: 200 } }, + H240L70C05 : { description: 'Laundry Blue', hue: '240°', lightness: '70%', chromaticity: '5%', rgb: { r: 162 , g: 173 ,b: 179 } }, + H240L70C10 : { description: 'Eye Blue', hue: '240°', lightness: '70%', chromaticity: '10%', rgb: { r: 152 , g: 175 ,b: 186 } }, + H240L70C15 : { description: 'Bermuda Blue', hue: '240°', lightness: '70%', chromaticity: '15%', rgb: { r: 140 , g: 177 ,b: 194 } }, + H240L70C20 : { description: 'Sea Blue', hue: '240°', lightness: '70%', chromaticity: '20%', rgb: { r: 128 , g: 178 ,b: 201 } }, + H240L70C25 : { description: 'Madonna Blue', hue: '240°', lightness: '70%', chromaticity: '25%', rgb: { r: 113 , g: 181 ,b: 209 } }, + H240L70C30 : { description: 'Caribbean Blue', hue: '240°', lightness: '70%', chromaticity: '30%', rgb: { r: 95 , g: 181 ,b: 214 } }, + H240L80C05 : { description: 'Hazy Blue', hue: '240°', lightness: '80%', chromaticity: '5%', rgb: { r: 188 , g: 200 ,b: 204 } }, + H240L80C10 : { description: 'Light Topaz Soft Blue', hue: '240°', lightness: '80%', chromaticity: '10%', rgb: { r: 181 , g: 205 ,b: 215 } }, + H240L80C15 : { description: 'Baby Blue', hue: '240°', lightness: '80%', chromaticity: '15%', rgb: { r: 169 , g: 205 ,b: 221 } }, + H240L80C20 : { description: 'Crystal Blue', hue: '240°', lightness: '80%', chromaticity: '20%', rgb: { r: 155 , g: 208 ,b: 229 } }, + H240L85C05 : { description: 'Ice Grey', hue: '240°', lightness: '85%', chromaticity: '5%', rgb: { r: 206 , g: 218 ,b: 222 } }, + H240L85C10 : { description: 'Air Blue', hue: '240°', lightness: '85%', chromaticity: '10%', rgb: { r: 195 , g: 219 ,b: 228 } }, + H240L85C15 : { description: 'Paris Blue', hue: '240°', lightness: '85%', chromaticity: '15%', rgb: { r: 183 , g: 221 ,b: 237 } }, + H240L90C05 : { description: 'Soft Blue White', hue: '240°', lightness: '90%', chromaticity: '5%', rgb: { r: 218 , g: 231 ,b: 233 } }, + H240L90C10 : { description: 'Chalky Blue White', hue: '240°', lightness: '90%', chromaticity: '10%', rgb: { r: 208 , g: 235 ,b: 241 } }, + H250L20C20 : { description: 'Cosmos Blue', hue: '250°', lightness: '20%', chromaticity: '20%', rgb: { r: 0 , g: 50 ,b: 73 } }, + H250L20C25 : { description: 'Dark Denim Blue', hue: '250°', lightness: '20%', chromaticity: '25%', rgb: { r: 0 , g: 51 ,b: 79 } }, + H250L30C15 : { description: 'Black Forest Blue', hue: '250°', lightness: '30%', chromaticity: '15%', rgb: { r: 41 , g: 72 ,b: 90 } }, + H250L30C20 : { description: 'Swallow Blue', hue: '250°', lightness: '30%', chromaticity: '20%', rgb: { r: 21 , g: 73 ,b: 98 } }, + H250L30C25 : { description: 'Navy Dark Blue', hue: '250°', lightness: '30%', chromaticity: '25%', rgb: { r: 0 , g: 76 ,b: 106 } }, + H250L30C30 : { description: 'Pompeii Blue', hue: '250°', lightness: '30%', chromaticity: '30%', rgb: { r: 0 , g: 76 ,b: 113 } }, + H250L40C10 : { description: 'Trekking Blue', hue: '250°', lightness: '40%', chromaticity: '10%', rgb: { r: 78 , g: 96 ,b: 109 } }, + H250L40C15 : { description: 'Steel Blue Grey', hue: '250°', lightness: '40%', chromaticity: '15%', rgb: { r: 67 , g: 97 ,b: 117 } }, + H250L40C20 : { description: 'Berry Blue', hue: '250°', lightness: '40%', chromaticity: '20%', rgb: { r: 50 , g: 96 ,b: 122 } }, + H250L40C25 : { description: 'Linen Blue', hue: '250°', lightness: '40%', chromaticity: '25%', rgb: { r: 29 , g: 99 ,b: 131 } }, + H250L40C30 : { description: 'Pool Blue', hue: '250°', lightness: '40%', chromaticity: '30%', rgb: { r: 0 , g: 101 ,b: 140 } }, + H250L40C35 : { description: 'Kingfisher Blue', hue: '250°', lightness: '40%', chromaticity: '35%', rgb: { r: 0 , g: 100 ,b: 145 } }, + H250L40C40 : { description: 'Europe Blue', hue: '250°', lightness: '40%', chromaticity: '40%', rgb: { r: 0 , g: 103 ,b: 150 } }, + H250L50C10 : { description: 'Metal Grey', hue: '250°', lightness: '50%', chromaticity: '10%', rgb: { r: 103 , g: 121 ,b: 134 } }, + H250L50C15 : { description: 'Titanium Blue', hue: '250°', lightness: '50%', chromaticity: '15%', rgb: { r: 91 , g: 121 ,b: 142 } }, + H250L50C20 : { description: 'Mallorca Blue', hue: '250°', lightness: '50%', chromaticity: '20%', rgb: { r: 81 , g: 123 ,b: 149 } }, + H250L50C25 : { description: 'Linoleum Blue', hue: '250°', lightness: '50%', chromaticity: '25%', rgb: { r: 66 , g: 124 ,b: 157 } }, + H250L50C30 : { description: 'Prominent Blue', hue: '250°', lightness: '50%', chromaticity: '30%', rgb: { r: 43 , g: 125 ,b: 166 } }, + H250L50C35 : { description: 'Turkish Blue', hue: '250°', lightness: '50%', chromaticity: '35%', rgb: { r: 0 , g: 127 ,b: 174 } }, + H250L50C40 : { description: 'Primal Blue', hue: '250°', lightness: '50%', chromaticity: '40%', rgb: { r: 0 , g: 129 ,b: 181 } }, + H250L60C10 : { description: 'Bird Blue Grey', hue: '250°', lightness: '60%', chromaticity: '10%', rgb: { r: 127 , g: 146 ,b: 160 } }, + H250L60C15 : { description: 'Gentle Blue', hue: '250°', lightness: '60%', chromaticity: '15%', rgb: { r: 118 , g: 148 ,b: 169 } }, + H250L60C20 : { description: 'Aragonite Blue', hue: '250°', lightness: '60%', chromaticity: '20%', rgb: { r: 106 , g: 149 ,b: 177 } }, + H250L60C25 : { description: 'Pearl Blue', hue: '250°', lightness: '60%', chromaticity: '25%', rgb: { r: 93 , g: 150 ,b: 185 } }, + H250L60C30 : { description: 'Topaz Blue', hue: '250°', lightness: '60%', chromaticity: '30%', rgb: { r: 75 , g: 152 ,b: 192 } }, + H250L60C35 : { description: 'Stratos Blue', hue: '250°', lightness: '60%', chromaticity: '35%', rgb: { r: 55 , g: 153 ,b: 200 } }, + H250L60C40 : { description: 'Structural Blue', hue: '250°', lightness: '60%', chromaticity: '40%', rgb: { r: 14 , g: 155 ,b: 209 } }, + H250L70C10 : { description: 'Foggy Blue', hue: '250°', lightness: '70%', chromaticity: '10%', rgb: { r: 153 , g: 174 ,b: 187 } }, + H250L70C15 : { description: 'Chalk Blue', hue: '250°', lightness: '70%', chromaticity: '15%', rgb: { r: 144 , g: 176 ,b: 196 } }, + H250L70C20 : { description: 'Medium Blue', hue: '250°', lightness: '70%', chromaticity: '20%', rgb: { r: 133 , g: 176 ,b: 204 } }, + H250L70C25 : { description: 'Meadow Blossom Blue', hue: '250°', lightness: '70%', chromaticity: '25%', rgb: { r: 122 , g: 178 ,b: 212 } }, + H250L70C30 : { description: 'Broom Butterfly Blue', hue: '250°', lightness: '70%', chromaticity: '30%', rgb: { r: 107 , g: 179 ,b: 219 } }, + H250L80C10 : { description: 'Light Cyan', hue: '250°', lightness: '80%', chromaticity: '10%', rgb: { r: 182 , g: 202 ,b: 215 } }, + H250L80C15 : { description: 'Himalaya Blue', hue: '250°', lightness: '80%', chromaticity: '15%', rgb: { r: 174 , g: 205 ,b: 224 } }, + H250L80C20 : { description: 'Velvet Blue', hue: '250°', lightness: '80%', chromaticity: '20%', rgb: { r: 159 , g: 202 ,b: 229 } }, + H250L85C05 : { description: 'White Blue', hue: '250°', lightness: '85%', chromaticity: '5%', rgb: { r: 205 , g: 214 ,b: 219 } }, + H250L85C10 : { description: 'Washing Powder Soft Blue', hue: '250°', lightness: '85%', chromaticity: '10%', rgb: { r: 195 , g: 216 ,b: 228 } }, + H250L85C15 : { description: 'Diamond Soft Blue', hue: '250°', lightness: '85%', chromaticity: '15%', rgb: { r: 188 , g: 218 ,b: 236 } }, + H250L90C05 : { description: 'Ice White', hue: '250°', lightness: '90%', chromaticity: '5%', rgb: { r: 218 , g: 227 ,b: 231 } }, + H260L20C05 : { description: 'Blue-Black', hue: '260°', lightness: '20%', chromaticity: '5%', rgb: { r: 36 , g: 49 ,b: 61 } }, + H260L20C10 : { description: 'Nato Blue', hue: '260°', lightness: '20%', chromaticity: '10%', rgb: { r: 21 , g: 48 ,b: 67 } }, + H260L20C15 : { description: 'Suit Blue', hue: '260°', lightness: '20%', chromaticity: '15%', rgb: { r: 43 , g: 48 ,b: 54 } }, + H260L20C20 : { description: 'Halite Blue', hue: '260°', lightness: '20%', chromaticity: '20%', rgb: { r: 9 , g: 50 ,b: 74 } }, + H260L30C05 : { description: 'Alpine Duck Grey', hue: '260°', lightness: '30%', chromaticity: '5%', rgb: { r: 64 , g: 70 ,b: 77 } }, + H260L30C10 : { description: 'Bronze Blue', hue: '260°', lightness: '30%', chromaticity: '10%', rgb: { r: 58 , g: 72 ,b: 86 } }, + H260L30C15 : { description: 'Berlin Blue', hue: '260°', lightness: '30%', chromaticity: '15%', rgb: { r: 49 , g: 72 ,b: 92 } }, + H260L30C20 : { description: 'French Blue', hue: '260°', lightness: '30%', chromaticity: '20%', rgb: { r: 38 , g: 73 ,b: 99 } }, + H260L30C25 : { description: 'Tanzanite Blue', hue: '260°', lightness: '30%', chromaticity: '25%', rgb: { r: 17 , g: 74 ,b: 107 } }, + H260L30C30 : { description: 'Opal Blue', hue: '260°', lightness: '30%', chromaticity: '30%', rgb: { r: 0 , g: 76 ,b: 115 } }, + H260L30C35 : { description: 'Royal Blue', hue: '260°', lightness: '30%', chromaticity: '35%', rgb: { r: 0 , g: 77 ,b: 124 } }, + H260L40C05 : { description: 'Swedish Blue', hue: '260°', lightness: '40%', chromaticity: '5%', rgb: { r: 87 , g: 93 ,b: 100 } }, + H260L40C10 : { description: 'Sheet Blue', hue: '260°', lightness: '40%', chromaticity: '10%', rgb: { r: 82 , g: 97 ,b: 111 } }, + H260L40C15 : { description: 'Plum Blue', hue: '260°', lightness: '40%', chromaticity: '15%', rgb: { r: 75 , g: 97 ,b: 118 } }, + H260L40C20 : { description: 'Cadet Blue', hue: '260°', lightness: '40%', chromaticity: '20%', rgb: { r: 61 , g: 95 ,b: 124 } }, + H260L40C25 : { description: 'Enamel Blue', hue: '260°', lightness: '40%', chromaticity: '25%', rgb: { r: 50 , g: 98 ,b: 133 } }, + H260L40C30 : { description: 'Copenhagen Blue', hue: '260°', lightness: '40%', chromaticity: '30%', rgb: { r: 33 , g: 99 ,b: 139 } }, + H260L40C35 : { description: 'Bauhaus Blue', hue: '260°', lightness: '40%', chromaticity: '35%', rgb: { r: 0 , g: 99 ,b: 146 } }, + H260L40C40 : { description: 'Navy Blue', hue: '260°', lightness: '40%', chromaticity: '40%', rgb: { r: 0 , g: 101 ,b: 157 } }, + H260L40C45 : { description: 'LED Blue', hue: '260°', lightness: '40%', chromaticity: '45%', rgb: { r: 0 , g: 102 ,b: 163 } }, + H260L50C05 : { description: 'Spitsbergen Blue', hue: '260°', lightness: '50%', chromaticity: '5%', rgb: { r: 111 , g: 117 ,b: 125 } }, + H260L50C10 : { description: 'Cypress Grey Blue', hue: '260°', lightness: '50%', chromaticity: '10%', rgb: { r: 106 , g: 119 ,b: 134 } }, + H260L50C15 : { description: 'Mahonia Berry Blue', hue: '260°', lightness: '50%', chromaticity: '15%', rgb: { r: 98 , g: 120 ,b: 142 } }, + H260L50C20 : { description: 'Cropper Blue', hue: '260°', lightness: '50%', chromaticity: '20%', rgb: { r: 92 , g: 123 ,b: 151 } }, + H260L50C25 : { description: 'Biedermeier Blue', hue: '260°', lightness: '50%', chromaticity: '25%', rgb: { r: 80 , g: 124 ,b: 160 } }, + H260L50C30 : { description: 'Beijing Blue', hue: '260°', lightness: '50%', chromaticity: '30%', rgb: { r: 62 , g: 125 ,b: 170 } }, + H260L50C35 : { description: 'Vermeer Blue', hue: '260°', lightness: '50%', chromaticity: '35%', rgb: { r: 43 , g: 124 ,b: 175 } }, + H260L50C40 : { description: 'Meissen Blue', hue: '260°', lightness: '50%', chromaticity: '40%', rgb: { r: 0 , g: 127 ,b: 185 } }, + H260L60C05 : { description: 'Seal Grey', hue: '260°', lightness: '60%', chromaticity: '5%', rgb: { r: 138 , g: 144 ,b: 152 } }, + H260L60C10 : { description: 'Diopside Blue', hue: '260°', lightness: '60%', chromaticity: '10%', rgb: { r: 131 , g: 145 ,b: 160 } }, + H260L60C15 : { description: 'Nordland Blue', hue: '260°', lightness: '60%', chromaticity: '15%', rgb: { r: 126 , g: 149 ,b: 171 } }, + H260L60C20 : { description: 'Cranberry Blue', hue: '260°', lightness: '60%', chromaticity: '20%', rgb: { r: 116 , g: 148 ,b: 177 } }, + H260L60C25 : { description: 'Lupine Blue', hue: '260°', lightness: '60%', chromaticity: '25%', rgb: { r: 106 , g: 150 ,b: 186 } }, + H260L60C30 : { description: 'Blueberry Soft Blue', hue: '260°', lightness: '60%', chromaticity: '30%', rgb: { r: 94 , g: 150 ,b: 195 } }, + H260L60C35 : { description: 'Brilliant Blue', hue: '260°', lightness: '60%', chromaticity: '35%', rgb: { r: 79 , g: 152 ,b: 203 } }, + H260L70C05 : { description: 'Northern Light Grey', hue: '260°', lightness: '70%', chromaticity: '5%', rgb: { r: 167 , g: 174 ,b: 180 } }, + H260L70C10 : { description: 'Petrel Blue Grey', hue: '260°', lightness: '70%', chromaticity: '10%', rgb: { r: 160 , g: 174 ,b: 188 } }, + H260L70C15 : { description: 'Nordland Light Blue', hue: '260°', lightness: '70%', chromaticity: '15%', rgb: { r: 150 , g: 174 ,b: 197 } }, + H260L70C20 : { description: 'Matte Blue', hue: '260°', lightness: '70%', chromaticity: '20%', rgb: { r: 143 , g: 176 ,b: 206 } }, + H260L70C25 : { description: 'Pacific Blue', hue: '260°', lightness: '70%', chromaticity: '25%', rgb: { r: 131 , g: 176 ,b: 214 } }, + H260L80C05 : { description: 'Light Blue Grey', hue: '260°', lightness: '80%', chromaticity: '5%', rgb: { r: 192 , g: 200 ,b: 207 } }, + H260L80C10 : { description: 'Powder Soft Blue', hue: '260°', lightness: '80%', chromaticity: '10%', rgb: { r: 185 , g: 201 ,b: 215 } }, + H260L80C15 : { description: 'Wind Blue', hue: '260°', lightness: '80%', chromaticity: '15%', rgb: { r: 177 , g: 201 ,b: 223 } }, + H260L85C05 : { description: 'Satin White', hue: '260°', lightness: '85%', chromaticity: '5%', rgb: { r: 207 , g: 213 ,b: 219 } }, + H260L85C10 : { description: 'Sea Breeze Green', hue: '260°', lightness: '85%', chromaticity: '10%', rgb: { r: 201 , g: 217 ,b: 231 } }, + H260L90C05 : { description: 'Milk Blue', hue: '260°', lightness: '90%', chromaticity: '5%', rgb: { r: 220 , g: 227 ,b: 231 } }, + H270L20C20 : { description: 'Crow Black Blue', hue: '270°', lightness: '20%', chromaticity: '20%', rgb: { r: 17 , g: 47 ,b: 75 } }, + H270L20C25 : { description: 'Indigo Black', hue: '270°', lightness: '20%', chromaticity: '25%', rgb: { r: 0 , g: 46 ,b: 81 } }, + H270L20C29 : { description: 'Effervescent Blue', hue: '270°', lightness: '20%', chromaticity: '29%', rgb: { r: 0 , g: 49 ,b: 90 } }, + H270L30C15 : { description: 'Midnight Blue', hue: '270°', lightness: '30%', chromaticity: '15%', rgb: { r: 54 , g: 71 ,b: 92 } }, + H270L30C20 : { description: 'Dark Blue', hue: '270°', lightness: '30%', chromaticity: '20%', rgb: { r: 46 , g: 71 ,b: 100 } }, + H270L30C25 : { description: 'Grape Blue', hue: '270°', lightness: '30%', chromaticity: '25%', rgb: { r: 36 , g: 72 ,b: 108 } }, + H270L30C30 : { description: 'Medici Blue', hue: '270°', lightness: '30%', chromaticity: '30%', rgb: { r: 16 , g: 71 ,b: 115 } }, + H270L30C35 : { description: 'Kolibri Blue', hue: '270°', lightness: '30%', chromaticity: '35%', rgb: { r: 0 , g: 71 ,b: 122 } }, + H270L30C40 : { description: 'Prince Blue', hue: '270°', lightness: '30%', chromaticity: '40%', rgb: { r: 0 , g: 72 ,b: 131 } }, + H270L40C15 : { description: 'Pewter Grey', hue: '270°', lightness: '40%', chromaticity: '15%', rgb: { r: 79 , g: 95 ,b: 118 } }, + H270L40C20 : { description: 'Parlour Blue', hue: '270°', lightness: '40%', chromaticity: '20%', rgb: { r: 70 , g: 95 ,b: 126 } }, + H270L40C25 : { description: 'Functional Blue', hue: '270°', lightness: '40%', chromaticity: '25%', rgb: { r: 63 , g: 96 ,b: 134 } }, + H270L40C30 : { description: 'Make-Up Blue', hue: '270°', lightness: '40%', chromaticity: '30%', rgb: { r: 51 , g: 95 ,b: 141 } }, + H270L40C35 : { description: 'Lapis Lazuli Blue', hue: '270°', lightness: '40%', chromaticity: '35%', rgb: { r: 33 , g: 95 ,b: 150 } }, + H270L40C40 : { description: 'Magic Blue', hue: '270°', lightness: '40%', chromaticity: '40%', rgb: { r: 0 , g: 95 ,b: 157 } }, + H270L50C10 : { description: 'Brocade Blue', hue: '270°', lightness: '50%', chromaticity: '10%', rgb: { r: 109 , g: 120 ,b: 136 } }, + H270L50C15 : { description: 'Noble Blue', hue: '270°', lightness: '50%', chromaticity: '15%', rgb: { r: 105 , g: 121 ,b: 145 } }, + H270L50C20 : { description: 'Delft Blue', hue: '270°', lightness: '50%', chromaticity: '20%', rgb: { r: 96 , g: 121 ,b: 153 } }, + H270L50C25 : { description: 'Cocktail Blue', hue: '270°', lightness: '50%', chromaticity: '25%', rgb: { r: 90 , g: 122 ,b: 162 } }, + H270L50C30 : { description: 'Sage Blossom Blue', hue: '270°', lightness: '50%', chromaticity: '30%', rgb: { r: 78 , g: 120 ,b: 169 } }, + H270L50C35 : { description: 'Viennese Blue', hue: '270°', lightness: '50%', chromaticity: '35%', rgb: { r: 66 , g: 120 ,b: 175 } }, + H270L50C40 : { description: 'Cornflower Blue', hue: '270°', lightness: '50%', chromaticity: '40%', rgb: { r: 50 , g: 122 ,b: 185 } }, + H270L60C10 : { description: 'Fantasy Grey', hue: '270°', lightness: '60%', chromaticity: '10%', rgb: { r: 133 , g: 145 ,b: 162 } }, + H270L60C15 : { description: 'Lilac Blue', hue: '270°', lightness: '60%', chromaticity: '15%', rgb: { r: 130 , g: 147 ,b: 172 } }, + H270L60C20 : { description: 'Lavender Blue', hue: '270°', lightness: '60%', chromaticity: '20%', rgb: { r: 123 , g: 147 ,b: 180 } }, + H270L60C25 : { description: 'Delphinium Blue', hue: '270°', lightness: '60%', chromaticity: '25%', rgb: { r: 116 , g: 148 ,b: 188 } }, + H270L60C30 : { description: 'Eyeshadow Blue', hue: '270°', lightness: '60%', chromaticity: '30%', rgb: { r: 107 , g: 148 ,b: 197 } }, + H270L60C35 : { description: 'Butterfly Blue', hue: '270°', lightness: '60%', chromaticity: '35%', rgb: { r: 95 , g: 147 ,b: 204 } }, + H270L70C10 : { description: 'Feather Soft Blue', hue: '270°', lightness: '70%', chromaticity: '10%', rgb: { r: 162 , g: 174 ,b: 191 } }, + H270L70C15 : { description: 'Satin Soft Blue', hue: '270°', lightness: '70%', chromaticity: '15%', rgb: { r: 156 , g: 173 ,b: 199 } }, + H270L70C20 : { description: 'Angel Blue', hue: '270°', lightness: '70%', chromaticity: '20%', rgb: { r: 150 , g: 174 ,b: 208 } }, + H270L70C25 : { description: 'Boy Blue', hue: '270°', lightness: '70%', chromaticity: '25%', rgb: { r: 140 , g: 172 ,b: 214 } }, + H270L80C10 : { description: 'Light Pearl Soft Blue', hue: '270°', lightness: '80%', chromaticity: '10%', rgb: { r: 190 , g: 200 ,b: 216 } }, + H270L80C15 : { description: 'Retina Soft Blue', hue: '270°', lightness: '80%', chromaticity: '15%', rgb: { r: 182 , g: 199 ,b: 224 } }, + H270L85C05 : { description: 'Angel Hair Silver', hue: '270°', lightness: '85%', chromaticity: '5%', rgb: { r: 210 , g: 214 ,b: 219 } }, + H270L85C10 : { description: 'Mother-Of-Pearl Silver', hue: '270°', lightness: '85%', chromaticity: '10%', rgb: { r: 204 , g: 214 ,b: 230 } }, + H270L85C15 : { description: 'Murano Soft Blue', hue: '270°', lightness: '85%', chromaticity: '15%', rgb: { r: 197 , g: 214 ,b: 238 } }, + H270L90C05 : { description: 'Bleached White', hue: '270°', lightness: '90%', chromaticity: '5%', rgb: { r: 223 , g: 227 ,b: 232 } }, + H280L20C05 : { description: 'Granite Black', hue: '280°', lightness: '20%', chromaticity: '5%', rgb: { r: 49 , g: 50 ,b: 56 } }, + H280L20C10 : { description: 'Diamond Black', hue: '280°', lightness: '20%', chromaticity: '10%', rgb: { r: 43 , g: 48 ,b: 62 } }, + H280L20C15 : { description: 'Crow Black', hue: '280°', lightness: '20%', chromaticity: '15%', rgb: { r: 38 , g: 49 ,b: 69 } }, + H280L20C20 : { description: 'Manganese Black', hue: '280°', lightness: '20%', chromaticity: '20%', rgb: { r: 32 , g: 47 ,b: 75 } }, + H280L20C25 : { description: 'Elite Blue', hue: '280°', lightness: '20%', chromaticity: '25%', rgb: { r: 27 , g: 48 ,b: 83 } }, + H280L20C30 : { description: 'Ambassador Blue', hue: '280°', lightness: '20%', chromaticity: '30%', rgb: { r: 13 , g: 47 ,b: 90 } }, + H280L30C05 : { description: 'Smoking Night Blue', hue: '280°', lightness: '30%', chromaticity: '5%', rgb: { r: 67 , g: 69 ,b: 76 } }, + H280L30C10 : { description: 'Meteorite Black Blue', hue: '280°', lightness: '30%', chromaticity: '10%', rgb: { r: 65 , g: 71 ,b: 86 } }, + H280L30C15 : { description: 'Anthracite Blue', hue: '280°', lightness: '30%', chromaticity: '15%', rgb: { r: 61 , g: 71 ,b: 94 } }, + H280L30C20 : { description: 'Garnet Stone Blue', hue: '280°', lightness: '30%', chromaticity: '20%', rgb: { r: 56 , g: 72 ,b: 102 } }, + H280L30C25 : { description: 'Hydrogen Blue', hue: '280°', lightness: '30%', chromaticity: '25%', rgb: { r: 51 , g: 71 ,b: 109 } }, + H280L30C30 : { description: 'Deep Blue', hue: '280°', lightness: '30%', chromaticity: '30%', rgb: { r: 38 , g: 70 ,b: 116 } }, + H280L30C35 : { description: 'Theatre Blue', hue: '280°', lightness: '30%', chromaticity: '35%', rgb: { r: 33 , g: 70 ,b: 122 } }, + H280L30C40 : { description: 'Poster Blue', hue: '280°', lightness: '30%', chromaticity: '40%', rgb: { r: 19 , g: 70 ,b: 130 } }, + H280L40C05 : { description: 'Gallery Grey', hue: '280°', lightness: '40%', chromaticity: '5%', rgb: { r: 91 , g: 93 ,b: 101 } }, + H280L40C10 : { description: 'Suede Indigo', hue: '280°', lightness: '40%', chromaticity: '10%', rgb: { r: 88 , g: 93 ,b: 109 } }, + H280L40C15 : { description: 'Dark Lavender', hue: '280°', lightness: '40%', chromaticity: '15%', rgb: { r: 84 , g: 94 ,b: 118 } }, + H280L40C20 : { description: 'Starry Sky Blue', hue: '280°', lightness: '40%', chromaticity: '20%', rgb: { r: 79 , g: 94 ,b: 126 } }, + H280L40C25 : { description: 'Indigo Navy Blue', hue: '280°', lightness: '40%', chromaticity: '25%', rgb: { r: 76 , g: 94 ,b: 135 } }, + H280L40C30 : { description: 'Evening Blue', hue: '280°', lightness: '40%', chromaticity: '30%', rgb: { r: 68 , g: 94 ,b: 141 } }, + H280L40C35 : { description: 'Portuguese Blue', hue: '280°', lightness: '40%', chromaticity: '35%', rgb: { r: 60 , g: 94 ,b: 149 } }, + H280L40C40 : { description: 'Neptune Blue', hue: '280°', lightness: '40%', chromaticity: '40%', rgb: { r: 46 , g: 93 ,b: 157 } }, + H280L40C45 : { description: 'Hyacinth Blue', hue: '280°', lightness: '40%', chromaticity: '45%', rgb: { r: 30 , g: 93 ,b: 165 } }, + H280L50C05 : { description: 'Noble Grey', hue: '280°', lightness: '50%', chromaticity: '5%', rgb: { r: 115 , g: 119 ,b: 127 } }, + H280L50C10 : { description: 'Ice Blue Grey', hue: '280°', lightness: '50%', chromaticity: '10%', rgb: { r: 113 , g: 119 ,b: 135 } }, + H280L50C15 : { description: 'Granite Blue', hue: '280°', lightness: '50%', chromaticity: '15%', rgb: { r: 109 , g: 119 ,b: 143 } }, + H280L50C20 : { description: 'Lavender Mauve', hue: '280°', lightness: '50%', chromaticity: '20%', rgb: { r: 104 , g: 118 ,b: 152 } }, + H280L50C25 : { description: 'Costume Blue', hue: '280°', lightness: '50%', chromaticity: '25%', rgb: { r: 100 , g: 119 ,b: 160 } }, + H280L50C30 : { description: 'Light Mauve', hue: '280°', lightness: '50%', chromaticity: '30%', rgb: { r: 95 , g: 118 ,b: 168 } }, + H280L50C35 : { description: 'Sapphire Shimmer Blue', hue: '280°', lightness: '50%', chromaticity: '35%', rgb: { r: 87 , g: 118 ,b: 175 } }, + H280L50C40 : { description: 'Diva Violet', hue: '280°', lightness: '50%', chromaticity: '40%', rgb: { r: 80 , g: 119 ,b: 186 } }, + H280L60C05 : { description: 'Tulle Grey', hue: '280°', lightness: '60%', chromaticity: '5%', rgb: { r: 141 , g: 144 ,b: 152 } }, + H280L60C10 : { description: 'Sweet Lavender', hue: '280°', lightness: '60%', chromaticity: '10%', rgb: { r: 137 , g: 143 ,b: 160 } }, + H280L60C15 : { description: 'Marble Blue', hue: '280°', lightness: '60%', chromaticity: '15%', rgb: { r: 134 , g: 143 ,b: 169 } }, + H280L60C20 : { description: 'Misty Violet', hue: '280°', lightness: '60%', chromaticity: '20%', rgb: { r: 131 , g: 144 ,b: 179 } }, + H280L60C25 : { description: 'Opal Violet', hue: '280°', lightness: '60%', chromaticity: '25%', rgb: { r: 126 , g: 143 ,b: 187 } }, + H280L60C30 : { description: 'Persian Violet', hue: '280°', lightness: '60%', chromaticity: '30%', rgb: { r: 121 , g: 144 ,b: 194 } }, + H280L60C35 : { description: 'Organza Violet', hue: '280°', lightness: '60%', chromaticity: '35%', rgb: { r: 115 , g: 145 ,b: 204 } }, + H280L70C05 : { description: 'Taupe Grey', hue: '280°', lightness: '70%', chromaticity: '5%', rgb: { r: 167 , g: 169 ,b: 177 } }, + H280L70C10 : { description: 'Tulle Violet', hue: '280°', lightness: '70%', chromaticity: '10%', rgb: { r: 166 , g: 172 ,b: 188 } }, + H280L70C15 : { description: 'Foxflower Viola', hue: '280°', lightness: '70%', chromaticity: '15%', rgb: { r: 162 , g: 172 ,b: 197 } }, + H280L70C20 : { description: 'Lilac Scent Soft Blue', hue: '280°', lightness: '70%', chromaticity: '20%', rgb: { r: 158 , g: 171 ,b: 208 } }, + H280L70C25 : { description: 'Aster Flower Blue', hue: '280°', lightness: '70%', chromaticity: '25%', rgb: { r: 155 , g: 172 ,b: 216 } }, + H280L80C05 : { description: 'Viola Ice Grey', hue: '280°', lightness: '80%', chromaticity: '5%', rgb: { r: 198 , g: 200 ,b: 208 } }, + H280L80C10 : { description: 'Hyacinth White Soft Blue', hue: '280°', lightness: '80%', chromaticity: '10%', rgb: { r: 193 , g: 199 ,b: 215 } }, + H280L80C15 : { description: 'Violet Scent Soft Blue', hue: '280°', lightness: '80%', chromaticity: '15%', rgb: { r: 188 , g: 198 ,b: 223 } }, + H280L85C05 : { description: 'Pebble Soft Blue White', hue: '280°', lightness: '85%', chromaticity: '5%', rgb: { r: 211 , g: 215 ,b: 220 } }, + H280L85C10 : { description: 'Jewellery White', hue: '280°', lightness: '85%', chromaticity: '10%', rgb: { r: 206 , g: 214 ,b: 230 } }, + H280L90C05 : { description: 'Mauve White', hue: '280°', lightness: '90%', chromaticity: '5%', rgb: { r: 223 , g: 227 ,b: 232 } }, + H280L93C05 : { description: 'Porcelain White', hue: '280°', lightness: '93%', chromaticity: '5%', rgb: { r: 234 , g: 237 ,b: 242 } }, + H290L20C10 : { description: 'Spinel Stone Black', hue: '290°', lightness: '20%', chromaticity: '10%', rgb: { r: 39 , g: 42 ,b: 59 } }, + H290L20C15 : { description: 'Black Violet', hue: '290°', lightness: '20%', chromaticity: '15%', rgb: { r: 43 , g: 44 ,b: 66 } }, + H290L20C20 : { description: 'Tropical Night Blue', hue: '290°', lightness: '20%', chromaticity: '20%', rgb: { r: 42 , g: 46 ,b: 76 } }, + H290L20C25 : { description: 'Indigo Violet', hue: '290°', lightness: '20%', chromaticity: '25%', rgb: { r: 36 , g: 44 ,b: 82 } }, + H290L20C30 : { description: 'Ultramarine Violet', hue: '290°', lightness: '20%', chromaticity: '30%', rgb: { r: 29 , g: 42 ,b: 88 } }, + H290L20C35 : { description: 'Schiava Blue', hue: '290°', lightness: '20%', chromaticity: '35%', rgb: { r: 25 , g: 41 ,b: 97 } }, + H290L30C10 : { description: 'Flintstone Blue', hue: '290°', lightness: '30%', chromaticity: '10%', rgb: { r: 67 , g: 66 ,b: 82 } }, + H290L30C15 : { description: 'Spinel Black', hue: '290°', lightness: '30%', chromaticity: '15%', rgb: { r: 65 , g: 67 ,b: 91 } }, + H290L30C20 : { description: 'Church Blue', hue: '290°', lightness: '30%', chromaticity: '20%', rgb: { r: 61 , g: 65 ,b: 97 } }, + H290L30C25 : { description: 'Gloomy Blue', hue: '290°', lightness: '30%', chromaticity: '25%', rgb: { r: 60 , g: 65 ,b: 106 } }, + H290L30C30 : { description: 'Lviv Blue', hue: '290°', lightness: '30%', chromaticity: '30%', rgb: { r: 56 , g: 65 ,b: 114 } }, + H290L30C35 : { description: 'British Mauve', hue: '290°', lightness: '30%', chromaticity: '35%', rgb: { r: 53 , g: 66 ,b: 123 } }, + H290L30C40 : { description: 'Official Violet', hue: '290°', lightness: '30%', chromaticity: '40%', rgb: { r: 46 , g: 65 ,b: 130 } }, + H290L40C10 : { description: 'Shearwater Black', hue: '290°', lightness: '40%', chromaticity: '10%', rgb: { r: 91 , g: 91 ,b: 108 } }, + H290L40C15 : { description: 'Agate Violet', hue: '290°', lightness: '40%', chromaticity: '15%', rgb: { r: 90 , g: 91 ,b: 116 } }, + H290L40C20 : { description: 'Deep Lavender', hue: '290°', lightness: '40%', chromaticity: '20%', rgb: { r: 86 , g: 90 ,b: 125 } }, + H290L40C25 : { description: 'Dusk Mauve', hue: '290°', lightness: '40%', chromaticity: '25%', rgb: { r: 84 , g: 88 ,b: 131 } }, + H290L40C30 : { description: 'Rich Violet', hue: '290°', lightness: '40%', chromaticity: '30%', rgb: { r: 80 , g: 87 ,b: 139 } }, + H290L40C35 : { description: 'Onion Skin Blue', hue: '290°', lightness: '40%', chromaticity: '35%', rgb: { r: 76 , g: 86 ,b: 146 } }, + H290L40C40 : { description: 'Iris Blue', hue: '290°', lightness: '40%', chromaticity: '40%', rgb: { r: 73 , g: 88 ,b: 156 } }, + H290L40C45 : { description: 'Violet Blue', hue: '290°', lightness: '40%', chromaticity: '45%', rgb: { r: 65 , g: 87 ,b: 162 } }, + H290L50C10 : { description: 'Ash Mauve', hue: '290°', lightness: '50%', chromaticity: '10%', rgb: { r: 115 , g: 116 ,b: 134 } }, + H290L50C15 : { description: 'Stormy Mauve', hue: '290°', lightness: '50%', chromaticity: '15%', rgb: { r: 113 , g: 115 ,b: 140 } }, + H290L50C20 : { description: 'Silk Crepe Mauve', hue: '290°', lightness: '50%', chromaticity: '20%', rgb: { r: 110 , g: 113 ,b: 150 } }, + H290L50C25 : { description: 'Hyacinth Mauve', hue: '290°', lightness: '50%', chromaticity: '25%', rgb: { r: 111 , g: 114 ,b: 159 } }, + H290L50C30 : { description: 'Mountain Flower Mauve', hue: '290°', lightness: '50%', chromaticity: '30%', rgb: { r: 108 , g: 113 ,b: 166 } }, + H290L50C35 : { description: 'Chalcedony Violet', hue: '290°', lightness: '50%', chromaticity: '35%', rgb: { r: 103 , g: 112 ,b: 174 } }, + H290L50C40 : { description: 'Gladiola Blue', hue: '290°', lightness: '50%', chromaticity: '40%', rgb: { r: 99 , g: 112 ,b: 182 } }, + H290L60C10 : { description: 'Lavender Blossom Grey', hue: '290°', lightness: '60%', chromaticity: '10%', rgb: { r: 140 , g: 141 ,b: 161 } }, + H290L60C15 : { description: 'Delicate Violet', hue: '290°', lightness: '60%', chromaticity: '15%', rgb: { r: 140 , g: 141 ,b: 168 } }, + H290L60C20 : { description: 'Opera Mauve', hue: '290°', lightness: '60%', chromaticity: '20%', rgb: { r: 135 , g: 139 ,b: 177 } }, + H290L60C25 : { description: 'Soft Blue Lavender', hue: '290°', lightness: '60%', chromaticity: '25%', rgb: { r: 136 , g: 140 ,b: 186 } }, + H290L60C30 : { description: 'Pleated Mauve', hue: '290°', lightness: '60%', chromaticity: '30%', rgb: { r: 133 , g: 139 ,b: 194 } }, + H290L60C35 : { description: 'True Lavender', hue: '290°', lightness: '60%', chromaticity: '35%', rgb: { r: 126 , g: 137 ,b: 200 } }, + H290L70C10 : { description: 'Cream Violet', hue: '290°', lightness: '70%', chromaticity: '10%', rgb: { r: 169 , g: 170 ,b: 189 } }, + H290L70C15 : { description: 'Wisteria Light Soft Blue', hue: '290°', lightness: '70%', chromaticity: '15%', rgb: { r: 166 , g: 168 ,b: 197 } }, + H290L70C20 : { description: 'Blossom Mauve', hue: '290°', lightness: '70%', chromaticity: '20%', rgb: { r: 163 , g: 167 ,b: 204 } }, + H290L70C25 : { description: 'Sorbet Ice Mauve', hue: '290°', lightness: '70%', chromaticity: '25%', rgb: { r: 161 , g: 166 ,b: 214 } }, + H290L80C10 : { description: 'Tulip Soft Blue', hue: '290°', lightness: '80%', chromaticity: '10%', rgb: { r: 195 , g: 196 ,b: 214 } }, + H290L80C15 : { description: 'Pale Lilac', hue: '290°', lightness: '80%', chromaticity: '15%', rgb: { r: 195 , g: 196 ,b: 221 } }, + H290L85C05 : { description: 'Limestone Mauve', hue: '290°', lightness: '85%', chromaticity: '5%', rgb: { r: 214 , g: 215 ,b: 219 } }, + H290L85C10 : { description: 'Orchid White', hue: '290°', lightness: '85%', chromaticity: '10%', rgb: { r: 209 , g: 213 ,b: 234 } }, + H290L90C05 : { description: 'Violet White', hue: '290°', lightness: '90%', chromaticity: '5%', rgb: { r: 226 , g: 227 ,b: 233 } }, + H290L93C05 : { description: 'Lilac White', hue: '290°', lightness: '93%', chromaticity: '5%', rgb: { r: 234 , g: 236 ,b: 241 } }, + H300L20C05 : { description: 'Night Black', hue: '300°', lightness: '20%', chromaticity: '5%', rgb: { r: 49 , g: 47 ,b: 54 } }, + H300L20C10 : { description: 'Heron Blue', hue: '300°', lightness: '20%', chromaticity: '10%', rgb: { r: 47 , g: 43 ,b: 58 } }, + H300L20C15 : { description: 'Viola Black', hue: '300°', lightness: '20%', chromaticity: '15%', rgb: { r: 47 , g: 42 ,b: 65 } }, + H300L20C20 : { description: 'Blackberry Black', hue: '300°', lightness: '20%', chromaticity: '20%', rgb: { r: 46 , g: 40 ,b: 72 } }, + H300L20C25 : { description: 'Cardinal Mauve', hue: '300°', lightness: '20%', chromaticity: '25%', rgb: { r: 44 , g: 40 ,b: 76 } }, + H300L20C30 : { description: 'Ceremonial Purple', hue: '300°', lightness: '20%', chromaticity: '30%', rgb: { r: 42 , g: 39 ,b: 86 } }, + H300L30C05 : { description: 'Night Grey', hue: '300°', lightness: '30%', chromaticity: '5%', rgb: { r: 70 , g: 68 ,b: 76 } }, + H300L30C10 : { description: 'Mourning Violet', hue: '300°', lightness: '30%', chromaticity: '10%', rgb: { r: 71 , g: 67 ,b: 84 } }, + H300L30C15 : { description: 'Club Grey', hue: '300°', lightness: '30%', chromaticity: '15%', rgb: { r: 70 , g: 65 ,b: 89 } }, + H300L30C20 : { description: 'Mulberry Mauve Black', hue: '300°', lightness: '30%', chromaticity: '20%', rgb: { r: 70 , g: 63 ,b: 96 } }, + H300L30C25 : { description: 'Evening Mauve', hue: '300°', lightness: '30%', chromaticity: '25%', rgb: { r: 70 , g: 63 ,b: 103 } }, + H300L30C30 : { description: 'Opera Blue', hue: '300°', lightness: '30%', chromaticity: '30%', rgb: { r: 69 , g: 62 ,b: 110 } }, + H300L30C35 : { description: 'Deep Violet', hue: '300°', lightness: '30%', chromaticity: '35%', rgb: { r: 68 , g: 62 ,b: 117 } }, + H300L30C40 : { description: 'Sage Violet', hue: '300°', lightness: '30%', chromaticity: '40%', rgb: { r: 65 , g: 60 ,b: 123 } }, + H300L40C05 : { description: 'Baroque Grey', hue: '300°', lightness: '40%', chromaticity: '5%', rgb: { r: 95 , g: 93 ,b: 100 } }, + H300L40C10 : { description: 'Gobelin Mauve', hue: '300°', lightness: '40%', chromaticity: '10%', rgb: { r: 94 , g: 90 ,b: 106 } }, + H300L40C15 : { description: 'Orchid Grey', hue: '300°', lightness: '40%', chromaticity: '15%', rgb: { r: 94 , g: 88 ,b: 113 } }, + H300L40C20 : { description: 'Old Mauve', hue: '300°', lightness: '40%', chromaticity: '20%', rgb: { r: 95 , g: 87 ,b: 121 } }, + H300L40C25 : { description: 'Parma Mauve', hue: '300°', lightness: '40%', chromaticity: '25%', rgb: { r: 95 , g: 86 ,b: 128 } }, + H300L40C30 : { description: 'Wool Violet', hue: '300°', lightness: '40%', chromaticity: '30%', rgb: { r: 94 , g: 85 ,b: 135 } }, + H300L40C35 : { description: 'Fine Purple', hue: '300°', lightness: '40%', chromaticity: '35%', rgb: { r: 94 , g: 84 ,b: 141 } }, + H300L40C40 : { description: 'Clematis Blue', hue: '300°', lightness: '40%', chromaticity: '40%', rgb: { r: 90 , g: 82 ,b: 147 } }, + H300L40C45 : { description: 'Coronation Blue', hue: '300°', lightness: '40%', chromaticity: '45%', rgb: { r: 89 , g: 82 ,b: 156 } }, + H300L50C05 : { description: 'Hawk Grey', hue: '300°', lightness: '50%', chromaticity: '5%', rgb: { r: 119 , g: 117 ,b: 125 } }, + H300L50C10 : { description: 'Violet Grey', hue: '300°', lightness: '50%', chromaticity: '10%', rgb: { r: 120 , g: 115 ,b: 132 } }, + H300L50C15 : { description: 'Capercaillie Mauve', hue: '300°', lightness: '50%', chromaticity: '15%', rgb: { r: 120 , g: 114 ,b: 140 } }, + H300L50C20 : { description: 'Parisian Violet', hue: '300°', lightness: '50%', chromaticity: '20%', rgb: { r: 120 , g: 112 ,b: 147 } }, + H300L50C25 : { description: 'Tulip Violet', hue: '300°', lightness: '50%', chromaticity: '25%', rgb: { r: 119 , g: 111 ,b: 154 } }, + H300L50C30 : { description: 'Toy Mauve', hue: '300°', lightness: '50%', chromaticity: '30%', rgb: { r: 119 , g: 110 ,b: 162 } }, + H300L50C35 : { description: 'Wintertime Mauve', hue: '300°', lightness: '50%', chromaticity: '35%', rgb: { r: 120 , g: 109 ,b: 170 } }, + H300L50C40 : { description: 'Clear Mauve', hue: '300°', lightness: '50%', chromaticity: '40%', rgb: { r: 118 , g: 108 ,b: 176 } }, + H300L60C05 : { description: 'Partridge Grey', hue: '300°', lightness: '60%', chromaticity: '5%', rgb: { r: 145 , g: 144 ,b: 152 } }, + H300L60C10 : { description: 'Rose Grey', hue: '300°', lightness: '60%', chromaticity: '10%', rgb: { r: 146 , g: 141 ,b: 159 } }, + H300L60C15 : { description: 'Antique Viola', hue: '300°', lightness: '60%', chromaticity: '15%', rgb: { r: 146 , g: 139 ,b: 166 } }, + H300L60C20 : { description: 'Larkspur Violet', hue: '300°', lightness: '60%', chromaticity: '20%', rgb: { r: 146 , g: 138 ,b: 174 } }, + H300L60C25 : { description: 'Silk Lilac', hue: '300°', lightness: '60%', chromaticity: '25%', rgb: { r: 145 , g: 136 ,b: 181 } }, + H300L60C30 : { description: 'Heliotropic Mauve', hue: '300°', lightness: '60%', chromaticity: '30%', rgb: { r: 145 , g: 135 ,b: 189 } }, + H300L60C35 : { description: 'Amethyst Grey', hue: '300°', lightness: '60%', chromaticity: '35%', rgb: { r: 144 , g: 133 ,b: 196 } }, + H300L70C05 : { description: 'Velvet Grey', hue: '300°', lightness: '70%', chromaticity: '5%', rgb: { r: 172 , g: 170 ,b: 179 } }, + H300L70C10 : { description: 'Morning Mist Grey', hue: '300°', lightness: '70%', chromaticity: '10%', rgb: { r: 173 , g: 167 ,b: 185 } }, + H300L70C15 : { description: 'Eyeshadow Viola', hue: '300°', lightness: '70%', chromaticity: '15%', rgb: { r: 173 , g: 166 ,b: 194 } }, + H300L70C20 : { description: 'Lavender Violet', hue: '300°', lightness: '70%', chromaticity: '20%', rgb: { r: 174 , g: 166 ,b: 201 } }, + H300L70C25 : { description: 'Pink Lavender', hue: '300°', lightness: '70%', chromaticity: '25%', rgb: { r: 173 , g: 163 ,b: 209 } }, + H300L80C05 : { description: 'Hazy Mauve', hue: '300°', lightness: '80%', chromaticity: '5%', rgb: { r: 200 , g: 198 ,b: 206 } }, + H300L80C10 : { description: 'Pale Violet', hue: '300°', lightness: '80%', chromaticity: '10%', rgb: { r: 198 , g: 195 ,b: 214 } }, + H300L80C15 : { description: 'Ice Mauve', hue: '300°', lightness: '80%', chromaticity: '15%', rgb: { r: 201 , g: 194 ,b: 221 } }, + H300L85C05 : { description: 'Delicate Viola', hue: '300°', lightness: '85%', chromaticity: '5%', rgb: { r: 215 , g: 214 ,b: 220 } }, + H300L85C10 : { description: 'Powder Viola White', hue: '300°', lightness: '85%', chromaticity: '10%', rgb: { r: 217 , g: 211 ,b: 229 } }, + H300L90C05 : { description: 'Translucent White', hue: '300°', lightness: '90%', chromaticity: '5%', rgb: { r: 228 , g: 227 ,b: 233 } }, + H310L20C20 : { description: 'Obsidian Lava Black', hue: '310°', lightness: '20%', chromaticity: '20%', rgb: { r: 56 , g: 43 ,b: 70 } }, + H310L20C25 : { description: 'Operetta Mauve', hue: '310°', lightness: '20%', chromaticity: '25%', rgb: { r: 58 , g: 40 ,b: 76 } }, + H310L20C30 : { description: 'Powerful Violet', hue: '310°', lightness: '20%', chromaticity: '30%', rgb: { r: 55 , g: 34 ,b: 82 } }, + H310L30C15 : { description: 'Dark Grey Mauve', hue: '310°', lightness: '30%', chromaticity: '15%', rgb: { r: 78 , g: 68 ,b: 89 } }, + H310L30C20 : { description: 'Powerful Mauve', hue: '310°', lightness: '30%', chromaticity: '20%', rgb: { r: 76 , g: 63 ,b: 93 } }, + H310L30C25 : { description: 'English Violet', hue: '310°', lightness: '30%', chromaticity: '25%', rgb: { r: 81 , g: 62 ,b: 100 } }, + H310L30C30 : { description: 'Crystal Purple', hue: '310°', lightness: '30%', chromaticity: '30%', rgb: { r: 83 , g: 61 ,b: 107 } }, + H310L30C35 : { description: 'Succinct Violet', hue: '310°', lightness: '30%', chromaticity: '35%', rgb: { r: 81 , g: 59 ,b: 110 } }, + H310L30C40 : { description: 'Loden Purple', hue: '310°', lightness: '30%', chromaticity: '40%', rgb: { r: 85 , g: 58 ,b: 118 } }, + H310L40C10 : { description: 'Dark Pink', hue: '310°', lightness: '40%', chromaticity: '10%', rgb: { r: 100 , g: 91 ,b: 107 } }, + H310L40C15 : { description: 'Violet Haze', hue: '310°', lightness: '40%', chromaticity: '15%', rgb: { r: 103 , g: 91 ,b: 114 } }, + H310L40C20 : { description: 'Indigo Red', hue: '310°', lightness: '40%', chromaticity: '20%', rgb: { r: 105 , g: 90 ,b: 120 } }, + H310L40C25 : { description: 'Charoite Violet', hue: '310°', lightness: '40%', chromaticity: '25%', rgb: { r: 106 , g: 87 ,b: 127 } }, + H310L40C30 : { description: 'Royal Purple', hue: '310°', lightness: '40%', chromaticity: '30%', rgb: { r: 106 , g: 83 ,b: 131 } }, + H310L40C35 : { description: 'Magenta Violet', hue: '310°', lightness: '40%', chromaticity: '35%', rgb: { r: 108 , g: 83 ,b: 137 } }, + H310L40C40 : { description: 'Pure Mauve', hue: '310°', lightness: '40%', chromaticity: '40%', rgb: { r: 111 , g: 83 ,b: 144 } }, + H310L50C10 : { description: 'Dull Mauve', hue: '310°', lightness: '50%', chromaticity: '10%', rgb: { r: 125 , g: 116 ,b: 133 } }, + H310L50C15 : { description: 'Batik Lilac', hue: '310°', lightness: '50%', chromaticity: '15%', rgb: { r: 126 , g: 115 ,b: 139 } }, + H310L50C20 : { description: 'Provence Violet', hue: '310°', lightness: '50%', chromaticity: '20%', rgb: { r: 130 , g: 113 ,b: 145 } }, + H310L50C25 : { description: 'Baroness Mauve', hue: '310°', lightness: '50%', chromaticity: '25%', rgb: { r: 132 , g: 112 ,b: 152 } }, + H310L50C30 : { description: 'Bitter Violet', hue: '310°', lightness: '50%', chromaticity: '30%', rgb: { r: 133 , g: 109 ,b: 158 } }, + H310L50C35 : { description: 'Violet Rose', hue: '310°', lightness: '50%', chromaticity: '35%', rgb: { r: 132 , g: 107 ,b: 163 } }, + H310L50C40 : { description: 'Orchid Mauve', hue: '310°', lightness: '50%', chromaticity: '40%', rgb: { r: 134 , g: 106 ,b: 170 } }, + H310L60C10 : { description: 'Gentle Mauve', hue: '310°', lightness: '60%', chromaticity: '10%', rgb: { r: 149 , g: 140 ,b: 158 } }, + H310L60C15 : { description: 'Smoky Mauve', hue: '310°', lightness: '60%', chromaticity: '15%', rgb: { r: 153 , g: 139 ,b: 165 } }, + H310L60C20 : { description: 'Saffron Blossom Mauve', hue: '310°', lightness: '60%', chromaticity: '20%', rgb: { r: 156 , g: 138 ,b: 171 } }, + H310L60C25 : { description: 'Flirty Pink', hue: '310°', lightness: '60%', chromaticity: '25%', rgb: { r: 158 , g: 136 ,b: 177 } }, + H310L60C30 : { description: 'Peony Mauve', hue: '310°', lightness: '60%', chromaticity: '30%', rgb: { r: 159 , g: 134 ,b: 183 } }, + H310L60C35 : { description: 'Lilac Purple', hue: '310°', lightness: '60%', chromaticity: '35%', rgb: { r: 161 , g: 131 ,b: 192 } }, + H310L70C10 : { description: 'Amorphous Rose', hue: '310°', lightness: '70%', chromaticity: '10%', rgb: { r: 177 , g: 167 ,b: 183 } }, + H310L70C15 : { description: 'Transparent Mauve', hue: '310°', lightness: '70%', chromaticity: '15%', rgb: { r: 180 , g: 166 ,b: 191 } }, + H310L70C20 : { description: 'Blue Pink', hue: '310°', lightness: '70%', chromaticity: '20%', rgb: { r: 181 , g: 163 ,b: 197 } }, + H310L70C25 : { description: 'Glass Violet', hue: '310°', lightness: '70%', chromaticity: '25%', rgb: { r: 183 , g: 162 ,b: 204 } }, + H310L80C10 : { description: 'Powder Viola', hue: '310°', lightness: '80%', chromaticity: '10%', rgb: { r: 203 , g: 194 ,b: 211 } }, + H310L80C15 : { description: 'Orchid Violet', hue: '310°', lightness: '80%', chromaticity: '15%', rgb: { r: 207 , g: 193 ,b: 218 } }, + H310L85C05 : { description: 'Fairy Pink', hue: '310°', lightness: '85%', chromaticity: '5%', rgb: { r: 215 , g: 213 ,b: 219 } }, + H310L85C10 : { description: 'Tricot Lilac White', hue: '310°', lightness: '85%', chromaticity: '10%', rgb: { r: 220 , g: 211 ,b: 227 } }, + H310L90C05 : { description: 'Wallflower White', hue: '310°', lightness: '90%', chromaticity: '5%', rgb: { r: 231 , g: 227 ,b: 231 } }, + H320L20C05 : { description: 'Lava Black', hue: '320°', lightness: '20%', chromaticity: '5%', rgb: { r: 53 , g: 47 ,b: 54 } }, + H320L20C10 : { description: 'Obsidian Red', hue: '320°', lightness: '20%', chromaticity: '10%', rgb: { r: 55 , g: 42 ,b: 56 } }, + H320L20C15 : { description: 'Spinel Violet', hue: '320°', lightness: '20%', chromaticity: '15%', rgb: { r: 56 , g: 40 ,b: 61 } }, + H320L20C20 : { description: 'Aubergine Mauve', hue: '320°', lightness: '20%', chromaticity: '20%', rgb: { r: 59 , g: 39 ,b: 65 } }, + H320L20C25 : { description: 'Dark Purple', hue: '320°', lightness: '20%', chromaticity: '25%', rgb: { r: 60 , g: 34 ,b: 70 } }, + H320L30C05 : { description: 'Violet Black', hue: '320°', lightness: '30%', chromaticity: '5%', rgb: { r: 73 , g: 67 ,b: 74 } }, + H320L30C10 : { description: 'Stone Violet', hue: '320°', lightness: '30%', chromaticity: '10%', rgb: { r: 77 , g: 64 ,b: 79 } }, + H320L30C15 : { description: 'Amethyst Dark Violet', hue: '320°', lightness: '30%', chromaticity: '15%', rgb: { r: 79 , g: 60 ,b: 82 } }, + H320L30C20 : { description: 'Dark Blackberry', hue: '320°', lightness: '30%', chromaticity: '20%', rgb: { r: 83 , g: 57 ,b: 88 } }, + H320L30C25 : { description: 'Purpurite Violet', hue: '320°', lightness: '30%', chromaticity: '25%', rgb: { r: 87 , g: 56 ,b: 94 } }, + H320L30C30 : { description: 'Damson Mauve', hue: '320°', lightness: '30%', chromaticity: '30%', rgb: { r: 88 , g: 53 ,b: 99 } }, + H320L30C35 : { description: 'Grape Purple', hue: '320°', lightness: '30%', chromaticity: '35%', rgb: { r: 90 , g: 52 ,b: 104 } }, + H320L30C37 : { description: 'Lounge Violet', hue: '320°', lightness: '30%', chromaticity: '37%', rgb: { r: 94 , g: 51 ,b: 109 } }, + H320L40C05 : { description: 'Slate Mauve', hue: '320°', lightness: '40%', chromaticity: '5%', rgb: { r: 98 , g: 92 ,b: 99 } }, + H320L40C10 : { description: 'Olivine Basalt', hue: '320°', lightness: '40%', chromaticity: '10%', rgb: { r: 101 , g: 88 ,b: 103 } }, + H320L40C15 : { description: 'Antique Grey', hue: '320°', lightness: '40%', chromaticity: '15%', rgb: { r: 105 , g: 87 ,b: 109 } }, + H320L40C20 : { description: 'Basil Mauve', hue: '320°', lightness: '40%', chromaticity: '20%', rgb: { r: 108 , g: 84 ,b: 114 } }, + H320L40C25 : { description: 'Gladiola Violet', hue: '320°', lightness: '40%', chromaticity: '25%', rgb: { r: 110 , g: 81 ,b: 120 } }, + H320L40C30 : { description: 'Cabbage Blossom Violet', hue: '320°', lightness: '40%', chromaticity: '30%', rgb: { r: 114 , g: 76 ,b: 123 } }, + H320L40C35 : { description: 'Lilac Violet', hue: '320°', lightness: '40%', chromaticity: '35%', rgb: { r: 117 , g: 74 ,b: 128 } }, + H320L40C40 : { description: 'Violet Purple', hue: '320°', lightness: '40%', chromaticity: '40%', rgb: { r: 120 , g: 72 ,b: 136 } }, + H320L50C05 : { description: 'Grey Violet', hue: '320°', lightness: '50%', chromaticity: '5%', rgb: { r: 120 , g: 115 ,b: 122 } }, + H320L50C10 : { description: 'British Grey Mauve', hue: '320°', lightness: '50%', chromaticity: '10%', rgb: { r: 125 , g: 112 ,b: 129 } }, + H320L50C15 : { description: 'Parma Grey', hue: '320°', lightness: '50%', chromaticity: '15%', rgb: { r: 128 , g: 110 ,b: 133 } }, + H320L50C20 : { description: 'Cyclamen', hue: '320°', lightness: '50%', chromaticity: '20%', rgb: { r: 135 , g: 109 ,b: 140 } }, + H320L50C25 : { description: 'Poetry Mauve', hue: '320°', lightness: '50%', chromaticity: '25%', rgb: { r: 136 , g: 104 ,b: 145 } }, + H320L50C30 : { description: 'Viola Grey', hue: '320°', lightness: '50%', chromaticity: '30%', rgb: { r: 140 , g: 104 ,b: 151 } }, + H320L50C35 : { description: 'Aster Violetta', hue: '320°', lightness: '50%', chromaticity: '35%', rgb: { r: 143 , g: 98 ,b: 154 } }, + H320L50C40 : { description: 'Empire Violet', hue: '320°', lightness: '50%', chromaticity: '40%', rgb: { r: 146 , g: 100 ,b: 162 } }, + H320L60C05 : { description: 'Aragonite Grey', hue: '320°', lightness: '60%', chromaticity: '5%', rgb: { r: 148 , g: 142 ,b: 150 } }, + H320L60C10 : { description: 'Chalk Violet', hue: '320°', lightness: '60%', chromaticity: '10%', rgb: { r: 152 , g: 140 ,b: 155 } }, + H320L60C15 : { description: 'Amethyst Grey Violet', hue: '320°', lightness: '60%', chromaticity: '15%', rgb: { r: 156 , g: 137 ,b: 161 } }, + H320L60C20 : { description: 'Wonder Violet', hue: '320°', lightness: '60%', chromaticity: '20%', rgb: { r: 160 , g: 133 ,b: 166 } }, + H320L60C25 : { description: 'Nightshade Violet', hue: '320°', lightness: '60%', chromaticity: '25%', rgb: { r: 163 , g: 131 ,b: 172 } }, + H320L60C30 : { description: 'Lobby Lilac', hue: '320°', lightness: '60%', chromaticity: '30%', rgb: { r: 167 , g: 128 ,b: 178 } }, + H320L60C35 : { description: 'Blackberry Sorbet', hue: '320°', lightness: '60%', chromaticity: '35%', rgb: { r: 169 , g: 126 ,b: 182 } }, + H320L70C05 : { description: 'Elderberry Grey', hue: '320°', lightness: '70%', chromaticity: '5%', rgb: { r: 174 , g: 168 ,b: 176 } }, + H320L70C10 : { description: 'Bellflower Violet', hue: '320°', lightness: '70%', chromaticity: '10%', rgb: { r: 178 , g: 165 ,b: 183 } }, + H320L70C15 : { description: 'Quartz Violet', hue: '320°', lightness: '70%', chromaticity: '15%', rgb: { r: 181 , g: 162 ,b: 188 } }, + H320L70C20 : { description: 'Beach Lilac', hue: '320°', lightness: '70%', chromaticity: '20%', rgb: { r: 189 , g: 162 ,b: 196 } }, + H320L70C25 : { description: 'Lilac Pink', hue: '320°', lightness: '70%', chromaticity: '25%', rgb: { r: 192 , g: 157 ,b: 200 } }, + H320L80C05 : { description: 'Light Violet', hue: '320°', lightness: '80%', chromaticity: '5%', rgb: { r: 203 , g: 196 ,b: 203 } }, + H320L80C10 : { description: 'Amethyst Light Violet', hue: '320°', lightness: '80%', chromaticity: '10%', rgb: { r: 207 , g: 194 ,b: 209 } }, + H320L80C15 : { description: 'Cosmetic Mauve', hue: '320°', lightness: '80%', chromaticity: '15%', rgb: { r: 211 , g: 190 ,b: 213 } }, + H320L85C05 : { description: 'Blackberry Cream', hue: '320°', lightness: '85%', chromaticity: '5%', rgb: { r: 217 , g: 211 ,b: 218 } }, + H320L85C10 : { description: 'Ametrine Quartz', hue: '320°', lightness: '85%', chromaticity: '10%', rgb: { r: 222 , g: 209 ,b: 224 } }, + H320L90C05 : { description: 'Apatite Pink', hue: '320°', lightness: '90%', chromaticity: '5%', rgb: { r: 232 , g: 225 ,b: 230 } }, + H330L20C20 : { description: 'Profound Mauve', hue: '330°', lightness: '20%', chromaticity: '20%', rgb: { r: 64 , g: 36 ,b: 61 } }, + H330L20C25 : { description: 'Opulent Mauve', hue: '330°', lightness: '20%', chromaticity: '25%', rgb: { r: 70 , g: 35 ,b: 67 } }, + H330L30C15 : { description: 'Currant Violet', hue: '330°', lightness: '30%', chromaticity: '15%', rgb: { r: 85 , g: 62 ,b: 81 } }, + H330L30C20 : { description: 'Mexican Purple', hue: '330°', lightness: '30%', chromaticity: '20%', rgb: { r: 90 , g: 60 ,b: 85 } }, + H330L30C25 : { description: 'Parma Plum Red', hue: '330°', lightness: '30%', chromaticity: '25%', rgb: { r: 94 , g: 57 ,b: 88 } }, + H330L30C30 : { description: 'Intense Purple', hue: '330°', lightness: '30%', chromaticity: '30%', rgb: { r: 99 , g: 54 ,b: 93 } }, + H330L30C35 : { description: 'Opulent Purple', hue: '330°', lightness: '30%', chromaticity: '35%', rgb: { r: 103 , g: 51 ,b: 98 } }, + H330L30C40 : { description: 'Intense Mauve', hue: '330°', lightness: '30%', chromaticity: '40%', rgb: { r: 104 , g: 45 ,b: 99 } }, + H330L40C10 : { description: 'Patina Violet', hue: '330°', lightness: '40%', chromaticity: '10%', rgb: { r: 105 , g: 90 ,b: 103 } }, + H330L40C15 : { description: 'Dark Purple Grey', hue: '330°', lightness: '40%', chromaticity: '15%', rgb: { r: 110 , g: 87 ,b: 107 } }, + H330L40C20 : { description: 'Amaranth Red', hue: '330°', lightness: '40%', chromaticity: '20%', rgb: { r: 114 , g: 86 ,b: 112 } }, + H330L40C25 : { description: 'Deep Magenta', hue: '330°', lightness: '40%', chromaticity: '25%', rgb: { r: 119 , g: 83 ,b: 115 } }, + H330L40C30 : { description: 'Phloxflower Violet', hue: '330°', lightness: '40%', chromaticity: '30%', rgb: { r: 127 , g: 79 ,b: 120 } }, + H330L40C35 : { description: 'Thistle Mauve', hue: '330°', lightness: '40%', chromaticity: '35%', rgb: { r: 131 , g: 77 ,b: 124 } }, + H330L40C40 : { description: 'Visiona Red', hue: '330°', lightness: '40%', chromaticity: '40%', rgb: { r: 131 , g: 71 ,b: 125 } }, + H330L40C45 : { description: 'Purpurite Red', hue: '330°', lightness: '40%', chromaticity: '45%', rgb: { r: 134 , g: 68 ,b: 128 } }, + H330L50C10 : { description: 'Burlap Grey', hue: '330°', lightness: '50%', chromaticity: '10%', rgb: { r: 129 , g: 113 ,b: 126 } }, + H330L50C15 : { description: 'Sapphire Pink', hue: '330°', lightness: '50%', chromaticity: '15%', rgb: { r: 136 , g: 112 ,b: 132 } }, + H330L50C20 : { description: 'Dianthus Mauve', hue: '330°', lightness: '50%', chromaticity: '20%', rgb: { r: 141 , g: 109 ,b: 137 } }, + H330L50C25 : { description: 'Crystal Pink', hue: '330°', lightness: '50%', chromaticity: '25%', rgb: { r: 145 , g: 107 ,b: 140 } }, + H330L50C30 : { description: 'Tulipan Violet', hue: '330°', lightness: '50%', chromaticity: '30%', rgb: { r: 150 , g: 105 ,b: 147 } }, + H330L50C35 : { description: 'Violet Red', hue: '330°', lightness: '50%', chromaticity: '35%', rgb: { r: 154 , g: 101 ,b: 150 } }, + H330L50C40 : { description: 'Orchid Purple', hue: '330°', lightness: '50%', chromaticity: '40%', rgb: { r: 159 , g: 97 ,b: 152 } }, + H330L60C10 : { description: 'Greige Violet', hue: '330°', lightness: '60%', chromaticity: '10%', rgb: { r: 156 , g: 140 ,b: 154 } }, + H330L60C15 : { description: 'Vesuvian Violet', hue: '330°', lightness: '60%', chromaticity: '15%', rgb: { r: 162 , g: 138 ,b: 159 } }, + H330L60C20 : { description: 'Gentian Violet', hue: '330°', lightness: '60%', chromaticity: '20%', rgb: { r: 168 , g: 135 ,b: 164 } }, + H330L60C25 : { description: 'Wilhelminian Pink', hue: '330°', lightness: '60%', chromaticity: '25%', rgb: { r: 170 , g: 131 ,b: 164 } }, + H330L60C30 : { description: 'Stage Mauve', hue: '330°', lightness: '60%', chromaticity: '30%', rgb: { r: 176 , g: 129 ,b: 170 } }, + H330L60C35 : { description: 'Cheddar Pink Mauve', hue: '330°', lightness: '60%', chromaticity: '35%', rgb: { r: 182 , g: 125 ,b: 175 } }, + H330L60C40 : { description: 'Colombo Red Mauve', hue: '330°', lightness: '60%', chromaticity: '40%', rgb: { r: 186 , g: 122 ,b: 179 } }, + H330L70C10 : { description: 'Mist Pink', hue: '330°', lightness: '70%', chromaticity: '10%', rgb: { r: 184 , g: 166 ,b: 181 } }, + H330L70C15 : { description: 'Leek Blossom Pink', hue: '330°', lightness: '70%', chromaticity: '15%', rgb: { r: 188 , g: 163 ,b: 184 } }, + H330L70C20 : { description: 'Strawberry Pink', hue: '330°', lightness: '70%', chromaticity: '20%', rgb: { r: 193 , g: 161 ,b: 189 } }, + H330L70C25 : { description: 'Purple Pink', hue: '330°', lightness: '70%', chromaticity: '25%', rgb: { r: 202 , g: 158 ,b: 194 } }, + H330L70C30 : { description: 'Clover Pink', hue: '330°', lightness: '70%', chromaticity: '30%', rgb: { r: 205 , g: 155 ,b: 196 } }, + H330L80C10 : { description: 'Purple White', hue: '330°', lightness: '80%', chromaticity: '10%', rgb: { r: 211 , g: 194 ,b: 207 } }, + H330L80C15 : { description: 'Lovely Pink', hue: '330°', lightness: '80%', chromaticity: '15%', rgb: { r: 216 , g: 191 ,b: 212 } }, + H330L80C20 : { description: 'Designer Pink', hue: '330°', lightness: '80%', chromaticity: '20%', rgb: { r: 225 , g: 188 ,b: 216 } }, + H330L85C05 : { description: 'Light Magnolia Rose', hue: '330°', lightness: '85%', chromaticity: '5%', rgb: { r: 219 , g: 213 ,b: 218 } }, + H330L85C10 : { description: 'Raspberry Pink', hue: '330°', lightness: '85%', chromaticity: '10%', rgb: { r: 228 , g: 211 ,b: 224 } }, + H330L85C15 : { description: 'Heavenly Pink', hue: '330°', lightness: '85%', chromaticity: '15%', rgb: { r: 234 , g: 209 ,b: 228 } }, + H330L90C05 : { description: 'Delicacy White', hue: '330°', lightness: '90%', chromaticity: '5%', rgb: { r: 235 , g: 226 ,b: 229 } }, + H340L20C05 : { description: 'Liquorice Black', hue: '340°', lightness: '20%', chromaticity: '5%', rgb: { r: 53 , g: 45 ,b: 50 } }, + H340L20C10 : { description: 'Mangosteen Violet', hue: '340°', lightness: '20%', chromaticity: '10%', rgb: { r: 58 , g: 39 ,b: 50 } }, + H340L20C15 : { description: 'Sitter Red', hue: '340°', lightness: '20%', chromaticity: '15%', rgb: { r: 60 , g: 34 ,b: 51 } }, + H340L20C20 : { description: 'Juice Violet', hue: '340°', lightness: '20%', chromaticity: '20%', rgb: { r: 68 , g: 34 ,b: 56 } }, + H340L20C25 : { description: 'Prestige Mauve', hue: '340°', lightness: '20%', chromaticity: '25%', rgb: { r: 76 , g: 33 ,b: 61 } }, + H340L30C05 : { description: 'Apple Herb Black', hue: '340°', lightness: '30%', chromaticity: '5%', rgb: { r: 75 , g: 66 ,b: 71 } }, + H340L30C10 : { description: 'Passionfruit Mauve', hue: '340°', lightness: '30%', chromaticity: '10%', rgb: { r: 81 , g: 62 ,b: 73 } }, + H340L30C15 : { description: 'Dark Fig Violet', hue: '340°', lightness: '30%', chromaticity: '15%', rgb: { r: 87 , g: 59 ,b: 76 } }, + H340L30C20 : { description: 'Ruby Violet', hue: '340°', lightness: '30%', chromaticity: '20%', rgb: { r: 92 , g: 56 ,b: 78 } }, + H340L30C25 : { description: 'Blackberry Deep Red', hue: '340°', lightness: '30%', chromaticity: '25%', rgb: { r: 99 , g: 54 ,b: 84 } }, + H340L30C30 : { description: 'Deep Red', hue: '340°', lightness: '30%', chromaticity: '30%', rgb: { r: 101 , g: 48 ,b: 84 } }, + H340L30C35 : { description: 'Velvet Mauve', hue: '340°', lightness: '30%', chromaticity: '35%', rgb: { r: 105 , g: 43 ,b: 87 } }, + H340L30C38 : { description: 'Forest Fruit Red', hue: '340°', lightness: '30%', chromaticity: '38%', rgb: { r: 110 , g: 39 ,b: 89 } }, + H340L40C05 : { description: 'Mauve Brown', hue: '340°', lightness: '40%', chromaticity: '5%', rgb: { r: 98 , g: 89 ,b: 95 } }, + H340L40C10 : { description: 'Spinel Grey', hue: '340°', lightness: '40%', chromaticity: '10%', rgb: { r: 106 , g: 86 ,b: 98 } }, + H340L40C15 : { description: 'Earth Brown Violet', hue: '340°', lightness: '40%', chromaticity: '15%', rgb: { r: 112 , g: 83 ,b: 100 } }, + H340L40C20 : { description: 'Dahlia Matte Red', hue: '340°', lightness: '40%', chromaticity: '20%', rgb: { r: 118 , g: 80 ,b: 103 } }, + H340L40C25 : { description: 'Brocade Violet', hue: '340°', lightness: '40%', chromaticity: '25%', rgb: { r: 123 , g: 77 ,b: 107 } }, + H340L40C30 : { description: 'Madder Magenta', hue: '340°', lightness: '40%', chromaticity: '30%', rgb: { r: 128 , g: 73 ,b: 110 } }, + H340L40C35 : { description: 'Club Mauve', hue: '340°', lightness: '40%', chromaticity: '35%', rgb: { r: 131 , g: 67 ,b: 112 } }, + H340L40C40 : { description: 'Cherry Red', hue: '340°', lightness: '40%', chromaticity: '40%', rgb: { r: 136 , g: 62 ,b: 114 } }, + H340L40C45 : { description: 'Magenta Red', hue: '340°', lightness: '40%', chromaticity: '45%', rgb: { r: 145 , g: 57 ,b: 119 } }, + H340L50C05 : { description: 'Jubilee Grey', hue: '340°', lightness: '50%', chromaticity: '5%', rgb: { r: 124 , g: 115 ,b: 121 } }, + H340L50C10 : { description: 'Port Wine Red', hue: '340°', lightness: '50%', chromaticity: '10%', rgb: { r: 133 , g: 112 ,b: 124 } }, + H340L50C15 : { description: 'Raw Garnet Viola', hue: '340°', lightness: '50%', chromaticity: '15%', rgb: { r: 139 , g: 108 ,b: 126 } }, + H340L50C20 : { description: 'Milkwort Red', hue: '340°', lightness: '50%', chromaticity: '20%', rgb: { r: 145 , g: 105 ,b: 129 } }, + H340L50C25 : { description: 'Rust Magenta', hue: '340°', lightness: '50%', chromaticity: '25%', rgb: { r: 150 , g: 102 ,b: 132 } }, + H340L50C30 : { description: 'Raspberry Jelly Red', hue: '340°', lightness: '50%', chromaticity: '30%', rgb: { r: 155 , g: 98 ,b: 135 } }, + H340L50C35 : { description: 'Thimble Red', hue: '340°', lightness: '50%', chromaticity: '35%', rgb: { r: 160 , g: 93 ,b: 139 } }, + H340L50C40 : { description: 'Cyclamen Red', hue: '340°', lightness: '50%', chromaticity: '40%', rgb: { r: 167 , g: 89 ,b: 141 } }, + H340L50C45 : { description: 'Brilliant Carmine', hue: '340°', lightness: '50%', chromaticity: '45%', rgb: { r: 173 , g: 84 ,b: 143 } }, + H340L60C05 : { description: 'Heather Red Grey', hue: '340°', lightness: '60%', chromaticity: '5%', rgb: { r: 152 , g: 142 ,b: 148 } }, + H340L60C10 : { description: 'Piano Mauve', hue: '340°', lightness: '60%', chromaticity: '10%', rgb: { r: 158 , g: 137 ,b: 150 } }, + H340L60C15 : { description: 'Evening Pink', hue: '340°', lightness: '60%', chromaticity: '15%', rgb: { r: 167 , g: 135 ,b: 154 } }, + H340L60C20 : { description: 'Capri Fashion Pink', hue: '340°', lightness: '60%', chromaticity: '20%', rgb: { r: 172 , g: 131 ,b: 156 } }, + H340L60C25 : { description: 'Antique Hot Pink', hue: '340°', lightness: '60%', chromaticity: '25%', rgb: { r: 176 , g: 127 ,b: 158 } }, + H340L60C30 : { description: 'Cheek Red', hue: '340°', lightness: '60%', chromaticity: '30%', rgb: { r: 182 , g: 124 ,b: 162 } }, + H340L60C35 : { description: 'Hollyhock Blossom Pink', hue: '340°', lightness: '60%', chromaticity: '35%', rgb: { r: 189 , g: 121 ,b: 165 } }, + H340L60C40 : { description: 'Bishop Red', hue: '340°', lightness: '60%', chromaticity: '40%', rgb: { r: 196 , g: 115 ,b: 169 } }, + H340L70C05 : { description: 'Mauve Grey', hue: '340°', lightness: '70%', chromaticity: '5%', rgb: { r: 177 , g: 167 ,b: 173 } }, + H340L70C10 : { description: 'Buckwheat Mauve', hue: '340°', lightness: '70%', chromaticity: '10%', rgb: { r: 185 , g: 164 ,b: 176 } }, + H340L70C15 : { description: 'Hollyhock Pink', hue: '340°', lightness: '70%', chromaticity: '15%', rgb: { r: 194 , g: 161 ,b: 181 } }, + H340L70C20 : { description: 'Idyllic Pink', hue: '340°', lightness: '70%', chromaticity: '20%', rgb: { r: 200 , g: 158 ,b: 183 } }, + H340L70C25 : { description: 'Morning Glory Pink', hue: '340°', lightness: '70%', chromaticity: '25%', rgb: { r: 202 , g: 153 ,b: 183 } }, + H340L70C30 : { description: 'Soft Fuschia', hue: '340°', lightness: '70%', chromaticity: '30%', rgb: { r: 212 , g: 150 ,b: 189 } }, + H340L70C35 : { description: 'Firm Pink', hue: '340°', lightness: '70%', chromaticity: '35%', rgb: { r: 218 , g: 147 ,b: 193 } }, + H340L80C05 : { description: 'Piano Grey Rose', hue: '340°', lightness: '80%', chromaticity: '5%', rgb: { r: 207 , g: 196 ,b: 199 } }, + H340L80C10 : { description: 'Mint Blossom Rose', hue: '340°', lightness: '80%', chromaticity: '10%', rgb: { r: 215 , g: 194 ,b: 206 } }, + H340L80C15 : { description: 'Scandalous Rose', hue: '340°', lightness: '80%', chromaticity: '15%', rgb: { r: 223 , g: 189 ,b: 208 } }, + H340L80C20 : { description: 'Bonbon Rose', hue: '340°', lightness: '80%', chromaticity: '20%', rgb: { r: 230 , g: 186 ,b: 210 } }, + H340L85C05 : { description: 'Strawberry Cream', hue: '340°', lightness: '85%', chromaticity: '5%', rgb: { r: 223 , g: 212 ,b: 217 } }, + H340L85C10 : { description: 'Light Flamingo Pink', hue: '340°', lightness: '85%', chromaticity: '10%', rgb: { r: 231 , g: 209 ,b: 221 } }, + H340L85C15 : { description: 'Lacquer Mauve', hue: '340°', lightness: '85%', chromaticity: '15%', rgb: { r: 240 , g: 207 ,b: 225 } }, + H340L90C05 : { description: 'Rose White', hue: '340°', lightness: '90%', chromaticity: '5%', rgb: { r: 235 , g: 224 ,b: 228 } }, + H340L93C05 : { description: 'Dress Pink', hue: '340°', lightness: '93%', chromaticity: '5%', rgb: { r: 244 , g: 235 ,b: 239 } }, + H350L20C10 : { description: 'Mulled Wine Red', hue: '350°', lightness: '20%', chromaticity: '10%', rgb: { r: 59 , g: 41 ,b: 50 } }, + H350L20C15 : { description: 'Soft Red', hue: '350°', lightness: '20%', chromaticity: '15%', rgb: { r: 65 , g: 37 ,b: 51 } }, + H350L20C20 : { description: 'Star Ruby', hue: '350°', lightness: '20%', chromaticity: '20%', rgb: { r: 72 , g: 32 ,b: 52 } }, + H350L20C25 : { description: 'Chilli Black Red', hue: '350°', lightness: '20%', chromaticity: '25%', rgb: { r: 75 , g: 28 ,b: 53 } }, + H350L20C30 : { description: 'Tulip Poplar Purple', hue: '350°', lightness: '20%', chromaticity: '30%', rgb: { r: 83 , g: 25 ,b: 56 } }, + H350L30C10 : { description: 'Sparrow Grey Red', hue: '350°', lightness: '30%', chromaticity: '10%', rgb: { r: 82 , g: 62 ,b: 71 } }, + H350L30C15 : { description: 'Siliceous Red', hue: '350°', lightness: '30%', chromaticity: '15%', rgb: { r: 90 , g: 61 ,b: 74 } }, + H350L30C20 : { description: 'Liqueur Red', hue: '350°', lightness: '30%', chromaticity: '20%', rgb: { r: 97 , g: 57 ,b: 75 } }, + H350L30C25 : { description: 'Wine Gummy Red', hue: '350°', lightness: '30%', chromaticity: '25%', rgb: { r: 103 , g: 51 ,b: 76 } }, + H350L30C30 : { description: 'Burlat Red', hue: '350°', lightness: '30%', chromaticity: '30%', rgb: { r: 110 , g: 49 ,b: 79 } }, + H350L30C35 : { description: 'Bordeaux Red', hue: '350°', lightness: '30%', chromaticity: '35%', rgb: { r: 111 , g: 44 ,b: 79 } }, + H350L30C40 : { description: 'Dried Flower Purple', hue: '350°', lightness: '30%', chromaticity: '40%', rgb: { r: 117 , g: 38 ,b: 83 } }, + H350L40C10 : { description: 'Aubergine Grey', hue: '350°', lightness: '40%', chromaticity: '10%', rgb: { r: 110 , g: 88 ,b: 97 } }, + H350L40C15 : { description: 'Opium Mauve', hue: '350°', lightness: '40%', chromaticity: '15%', rgb: { r: 115 , g: 83 ,b: 98 } }, + H350L40C20 : { description: 'Grey Carmine', hue: '350°', lightness: '40%', chromaticity: '20%', rgb: { r: 122 , g: 80 ,b: 99 } }, + H350L40C25 : { description: 'Nectar Red', hue: '350°', lightness: '40%', chromaticity: '25%', rgb: { r: 127 , g: 76 ,b: 100 } }, + H350L40C30 : { description: 'Dark Rose', hue: '350°', lightness: '40%', chromaticity: '30%', rgb: { r: 135 , g: 71 ,b: 102 } }, + H350L40C35 : { description: 'Bonbon Red', hue: '350°', lightness: '40%', chromaticity: '35%', rgb: { r: 140 , g: 66 ,b: 104 } }, + H350L40C40 : { description: 'Cyclamen Red', hue: '350°', lightness: '40%', chromaticity: '40%', rgb: { r: 145 , g: 63 ,b: 106 } }, + H350L40C45 : { description: 'Powder Red', hue: '350°', lightness: '40%', chromaticity: '45%', rgb: { r: 149 , g: 57 ,b: 106 } }, + H350L40C50 : { description: 'Madder Red', hue: '350°', lightness: '40%', chromaticity: '50%', rgb: { r: 156 , g: 50 ,b: 107 } }, + H350L50C10 : { description: 'Innocent Pink', hue: '350°', lightness: '50%', chromaticity: '10%', rgb: { r: 133 , g: 111 ,b: 121 } }, + H350L50C15 : { description: 'Blunt Violet', hue: '350°', lightness: '50%', chromaticity: '15%', rgb: { r: 141 , g: 108 ,b: 122 } }, + H350L50C20 : { description: 'Corundum Red', hue: '350°', lightness: '50%', chromaticity: '20%', rgb: { r: 149 , g: 104 ,b: 125 } }, + H350L50C25 : { description: 'Batik Pink', hue: '350°', lightness: '50%', chromaticity: '25%', rgb: { r: 156 , g: 101 ,b: 126 } }, + H350L50C30 : { description: 'Beryl Red', hue: '350°', lightness: '50%', chromaticity: '30%', rgb: { r: 161 , g: 99 ,b: 129 } }, + H350L50C35 : { description: 'Crimson', hue: '350°', lightness: '50%', chromaticity: '35%', rgb: { r: 170 , g: 92 ,b: 129 } }, + H350L50C40 : { description: 'Madder Rose', hue: '350°', lightness: '50%', chromaticity: '40%', rgb: { r: 177 , g: 88 ,b: 130 } }, + H350L50C45 : { description: 'Signal Pink', hue: '350°', lightness: '50%', chromaticity: '45%', rgb: { r: 177 , g: 83 ,b: 132 } }, + H350L50C50 : { description: 'Nail Polish Pink', hue: '350°', lightness: '50%', chromaticity: '50%', rgb: { r: 189 , g: 78 ,b: 132 } }, + H350L60C10 : { description: 'Art Nouveau Violet', hue: '350°', lightness: '60%', chromaticity: '10%', rgb: { r: 160 , g: 137 ,b: 148 } }, + H350L60C15 : { description: 'Mohair Pink', hue: '350°', lightness: '60%', chromaticity: '15%', rgb: { r: 167 , g: 133 ,b: 148 } }, + H350L60C20 : { description: 'Heather Violet', hue: '350°', lightness: '60%', chromaticity: '20%', rgb: { r: 177 , g: 131 ,b: 152 } }, + H350L60C25 : { description: 'Heather Rose', hue: '350°', lightness: '60%', chromaticity: '25%', rgb: { r: 184 , g: 127 ,b: 151 } }, + H350L60C30 : { description: 'Venetian Pink', hue: '350°', lightness: '60%', chromaticity: '30%', rgb: { r: 192 , g: 123 ,b: 154 } }, + H350L60C35 : { description: 'Dolomite Red', hue: '350°', lightness: '60%', chromaticity: '35%', rgb: { r: 197 , g: 118 ,b: 155 } }, + H350L60C40 : { description: 'Camellia Pink', hue: '350°', lightness: '60%', chromaticity: '40%', rgb: { r: 205 , g: 115 ,b: 157 } }, + H350L60C45 : { description: 'Persian Pink', hue: '350°', lightness: '60%', chromaticity: '45%', rgb: { r: 208 , g: 111 ,b: 160 } }, + H350L70C10 : { description: 'Cold Pink', hue: '350°', lightness: '70%', chromaticity: '10%', rgb: { r: 188 , g: 165 ,b: 173 } }, + H350L70C15 : { description: 'Shady Pink', hue: '350°', lightness: '70%', chromaticity: '15%', rgb: { r: 196 , g: 161 ,b: 175 } }, + H350L70C20 : { description: "Lady's Cushions Pink", hue: '350°', lightness: '70%', chromaticity: '20%', rgb: { r: 201 , g: 155 ,b: 176 } }, + H350L70C25 : { description: 'Coral Pink', hue: '350°', lightness: '70%', chromaticity: '25%', rgb: { r: 212 , g: 154 ,b: 179 } }, + H350L70C30 : { description: 'Techno Pink', hue: '350°', lightness: '70%', chromaticity: '30%', rgb: { r: 221 , g: 149 ,b: 180 } }, + H350L70C35 : { description: 'Chewing Gum Pink', hue: '350°', lightness: '70%', chromaticity: '35%', rgb: { r: 226 , g: 146 ,b: 182 } }, + H350L80C10 : { description: 'Magnolia White', hue: '350°', lightness: '80%', chromaticity: '10%', rgb: { r: 216 , g: 191 ,b: 200 } }, + H350L80C15 : { description: 'Spring Pink', hue: '350°', lightness: '80%', chromaticity: '15%', rgb: { r: 223 , g: 188 ,b: 201 } }, + H350L80C20 : { description: 'Light Pink', hue: '350°', lightness: '80%', chromaticity: '20%', rgb: { r: 232 , g: 185 ,b: 205 } }, + H350L85C05 : { description: 'Fairy White', hue: '350°', lightness: '85%', chromaticity: '5%', rgb: { r: 222 , g: 212 ,b: 216 } }, + H350L85C10 : { description: 'Orchid Rose', hue: '350°', lightness: '85%', chromaticity: '10%', rgb: { r: 233 , g: 209 ,b: 218 } }, + H350L85C15 : { description: 'Pale Pink', hue: '350°', lightness: '85%', chromaticity: '15%', rgb: { r: 239 , g: 205 ,b: 219 } }, + H350L90C05 : { description: 'Light Rose', hue: '350°', lightness: '90%', chromaticity: '5%', rgb: { r: 237 , g: 224 ,b: 225 } }, + H350L90C10 : { description: 'Ranuncula White', hue: '350°', lightness: '90%', chromaticity: '10%', rgb: { r: 245 , g: 221 ,b: 230 } }, + H350L93C05 : { description: 'Clichy White', hue: '350°', lightness: '93%', chromaticity: '5%', rgb: { r: 246 , g: 235 ,b: 238 } }, + H360L20C15 : { description: 'Piermont Stone Red', hue: '360°', lightness: '20%', chromaticity: '15%', rgb: { r: 67 , g: 35 ,b: 44 } }, + H360L30C05 : { description: 'Russian Red', hue: '360°', lightness: '30%', chromaticity: '5%', rgb: { r: 77 , g: 66 ,b: 68 } }, + H360L30C10 : { description: 'Peppercorn Red', hue: '360°', lightness: '30%', chromaticity: '10%', rgb: { r: 83 , g: 61 ,b: 68 } }, + H360L30C15 : { description: 'Zinfandel Red', hue: '360°', lightness: '30%', chromaticity: '15%', rgb: { r: 90 , g: 56 ,b: 68 } }, + H360L30C20 : { description: 'Art Deco Red', hue: '360°', lightness: '30%', chromaticity: '20%', rgb: { r: 98 , g: 55 ,b: 69 } }, + H360L30C25 : { description: 'Clinker Red', hue: '360°', lightness: '30%', chromaticity: '25%', rgb: { r: 102 , g: 49 ,b: 69 } }, + H360L30C30 : { description: 'Cherry Juice Red', hue: '360°', lightness: '30%', chromaticity: '30%', rgb: { r: 108 , g: 44 ,b: 69 } }, + H360L30C35 : { description: 'Palace Red', hue: '360°', lightness: '30%', chromaticity: '35%', rgb: { r: 117 , g: 39 ,b: 69 } }, + H360L30C40 : { description: 'Ember Red', hue: '360°', lightness: '30%', chromaticity: '40%', rgb: { r: 121 , g: 36 ,b: 69 } }, + H360L40C05 : { description: 'Roasted Black', hue: '360°', lightness: '40%', chromaticity: '5%', rgb: { r: 101 , g: 90 ,b: 92 } }, + H360L40C10 : { description: 'Mocha Brown', hue: '360°', lightness: '40%', chromaticity: '10%', rgb: { r: 107 , g: 86 ,b: 94 } }, + H360L40C15 : { description: 'Ruby Grey', hue: '360°', lightness: '40%', chromaticity: '15%', rgb: { r: 115 , g: 82 ,b: 92 } }, + H360L40C20 : { description: 'Baroque Red', hue: '360°', lightness: '40%', chromaticity: '20%', rgb: { r: 123 , g: 79 ,b: 93 } }, + H360L40C25 : { description: 'Frenzied Red', hue: '360°', lightness: '40%', chromaticity: '25%', rgb: { r: 129 , g: 74 ,b: 92 } }, + H360L40C30 : { description: 'Redcurrant', hue: '360°', lightness: '40%', chromaticity: '30%', rgb: { r: 136 , g: 69 ,b: 94 } }, + H360L40C35 : { description: 'Orient Pink', hue: '360°', lightness: '40%', chromaticity: '35%', rgb: { r: 143 , g: 65 ,b: 95 } }, + H360L40C40 : { description: 'Aurora Magenta', hue: '360°', lightness: '40%', chromaticity: '40%', rgb: { r: 150 , g: 59 ,b: 96 } }, + H360L40C45 : { description: 'Cardinal Red', hue: '360°', lightness: '40%', chromaticity: '45%', rgb: { r: 155 , g: 54 ,b: 94 } }, + H360L40C50 : { description: 'Parlour Red', hue: '360°', lightness: '40%', chromaticity: '50%', rgb: { r: 161 , g: 45 ,b: 93 } }, + H360L50C05 : { description: 'Pumice Grey', hue: '360°', lightness: '50%', chromaticity: '5%', rgb: { r: 128 , g: 115 ,b: 117 } }, + H360L50C10 : { description: 'Pomace Red', hue: '360°', lightness: '50%', chromaticity: '10%', rgb: { r: 133 , g: 111 ,b: 118 } }, + H360L50C15 : { description: 'Evening Crimson', hue: '360°', lightness: '50%', chromaticity: '15%', rgb: { r: 142 , g: 107 ,b: 118 } }, + H360L50C20 : { description: 'Copper Pink', hue: '360°', lightness: '50%', chromaticity: '20%', rgb: { r: 148 , g: 104 ,b: 119 } }, + H360L50C25 : { description: 'Jugendstil Pink', hue: '360°', lightness: '50%', chromaticity: '25%', rgb: { r: 157 , g: 99 ,b: 117 } }, + H360L50C30 : { description: 'Cosmetic Red', hue: '360°', lightness: '50%', chromaticity: '30%', rgb: { r: 165 , g: 96 ,b: 120 } }, + H360L50C35 : { description: 'Indian Pink', hue: '360°', lightness: '50%', chromaticity: '35%', rgb: { r: 173 , g: 91 ,b: 120 } }, + H360L50C40 : { description: 'Kir Royale Rose', hue: '360°', lightness: '50%', chromaticity: '40%', rgb: { r: 180 , g: 88 ,b: 119 } }, + H360L50C45 : { description: 'Cockscomb Red', hue: '360°', lightness: '50%', chromaticity: '45%', rgb: { r: 188 , g: 83 ,b: 120 } }, + H360L50C50 : { description: 'Persian Red', hue: '360°', lightness: '50%', chromaticity: '50%', rgb: { r: 192 , g: 76 ,b: 119 } }, + H360L60C05 : { description: 'Ash Pink', hue: '360°', lightness: '60%', chromaticity: '5%', rgb: { r: 153 , g: 142 ,b: 145 } }, + H360L60C10 : { description: 'Majolica Mauve', hue: '360°', lightness: '60%', chromaticity: '10%', rgb: { r: 160 , g: 137 ,b: 144 } }, + H360L60C15 : { description: 'Fig Fruit Mauve', hue: '360°', lightness: '60%', chromaticity: '15%', rgb: { r: 169 , g: 134 ,b: 145 } }, + H360L60C20 : { description: 'Noble Lilac', hue: '360°', lightness: '60%', chromaticity: '20%', rgb: { r: 178 , g: 131 ,b: 146 } }, + H360L60C25 : { description: 'Light Red', hue: '360°', lightness: '60%', chromaticity: '25%', rgb: { r: 184 , g: 126 ,b: 145 } }, + H360L70C05 : { description: 'Tea Blossom Pink', hue: '360°', lightness: '70%', chromaticity: '5%', rgb: { r: 181 , g: 169 ,b: 172 } }, + H360L70C10 : { description: 'Quartz Pink', hue: '360°', lightness: '70%', chromaticity: '10%', rgb: { r: 188 , g: 163 ,b: 170 } }, + H360L70C15 : { description: 'Opaline Pink', hue: '360°', lightness: '70%', chromaticity: '15%', rgb: { r: 198 , g: 160 ,b: 171 } }, + H360L80C05 : { description: 'Mother-Of-Pearl Pink', hue: '360°', lightness: '80%', chromaticity: '5%', rgb: { r: 209 , g: 196 ,b: 198 } }, + H360L80C10 : { description: 'Venetian Pink', hue: '360°', lightness: '80%', chromaticity: '10%', rgb: { r: 217 , g: 191 ,b: 197 } }, + H360L80C15 : { description: 'Soap Pink', hue: '360°', lightness: '80%', chromaticity: '15%', rgb: { r: 229 , g: 191 ,b: 202 } }, + H360L85C05 : { description: 'Theatre Powder Rose', hue: '360°', lightness: '85%', chromaticity: '5%', rgb: { r: 226 , g: 212 ,b: 212 } }, + H360L85C10 : { description: 'Lotus Pink', hue: '360°', lightness: '85%', chromaticity: '10%', rgb: { r: 234 , g: 208 ,b: 214 } }, + H360L90C05 : { description: 'Ice Pink', hue: '360°', lightness: '90%', chromaticity: '5%', rgb: { r: 241 , g: 225 ,b: 224 } }, + H360L90C10 : { description: 'Cake Frosting', hue: '360°', lightness: '90%', chromaticity: '10%', rgb: { r: 249 , g: 223 ,b: 229 } }, + H360L93C05 : { description: 'Arrowhead White', hue: '360°', lightness: '93%', chromaticity: '5%', rgb: { r: 249 , g: 234 ,b: 235 } } +}; diff --git a/tools/data/ral_palettes/ral-colors/design.json b/tools/data/ral_palettes/ral-colors/design.json new file mode 100644 index 0000000..ef7f650 --- /dev/null +++ b/tools/data/ral_palettes/ral-colors/design.json @@ -0,0 +1,20077 @@ +{ + "H000L15C00": { + "description": "Ink Black", + "hue": "0°", + "lightness": "15%", + "chromaticity": "0%", + "rgb": { + "r": 33, + "g": 33, + "b": 34 + } + }, + "H000L20C00": { + "description": "Slate Black", + "hue": "0°", + "lightness": "20%", + "chromaticity": "0%", + "rgb": { + "r": 43, + "g": 43, + "b": 43 + } + }, + "H000L25C00": { + "description": "Onyx Black", + "hue": "0°", + "lightness": "25%", + "chromaticity": "0%", + "rgb": { + "r": 58, + "g": 58, + "b": 58 + } + }, + "H000L30C00": { + "description": "Medium Black", + "hue": "0°", + "lightness": "30%", + "chromaticity": "0%", + "rgb": { + "r": 68, + "g": 68, + "b": 67 + } + }, + "H000L35C00": { + "description": "Briquette Grey", + "hue": "0°", + "lightness": "35%", + "chromaticity": "0%", + "rgb": { + "r": 80, + "g": 80, + "b": 80 + } + }, + "H000L40C00": { + "description": "Dark Grey", + "hue": "0°", + "lightness": "40%", + "chromaticity": "0%", + "rgb": { + "r": 93, + "g": 92, + "b": 91 + } + }, + "H000L45C00": { + "description": "Architecture Grey", + "hue": "0°", + "lightness": "45%", + "chromaticity": "0%", + "rgb": { + "r": 107, + "g": 106, + "b": 105 + } + }, + "H000L50C00": { + "description": "Steel Grey", + "hue": "0°", + "lightness": "50%", + "chromaticity": "0%", + "rgb": { + "r": 118, + "g": 118, + "b": 117 + } + }, + "H000L55C00": { + "description": "Medium Grey", + "hue": "0°", + "lightness": "55%", + "chromaticity": "0%", + "rgb": { + "r": 130, + "g": 130, + "b": 130 + } + }, + "H000L60C00": { + "description": "Ash Grey", + "hue": "0°", + "lightness": "60%", + "chromaticity": "0%", + "rgb": { + "r": 143, + "g": 143, + "b": 142 + } + }, + "H000L65C00": { + "description": "Mortar Grey", + "hue": "0°", + "lightness": "65%", + "chromaticity": "0%", + "rgb": { + "r": 158, + "g": 159, + "b": 158 + } + }, + "H000L70C00": { + "description": "Light Grey", + "hue": "0°", + "lightness": "70%", + "chromaticity": "0%", + "rgb": { + "r": 172, + "g": 173, + "b": 172 + } + }, + "H000L75C00": { + "description": "Marble Grey", + "hue": "0°", + "lightness": "75%", + "chromaticity": "0%", + "rgb": { + "r": 186, + "g": 186, + "b": 186 + } + }, + "H000L80C00": { + "description": "Foggy Grey", + "hue": "0°", + "lightness": "80%", + "chromaticity": "0%", + "rgb": { + "r": 201, + "g": 200, + "b": 199 + } + }, + "H000L85C00": { + "description": "Shadow White", + "hue": "0°", + "lightness": "85%", + "chromaticity": "0%", + "rgb": { + "r": 214, + "g": 214, + "b": 212 + } + }, + "H000L90C00": { + "description": "Winter White", + "hue": "0°", + "lightness": "90%", + "chromaticity": "0%", + "rgb": { + "r": 226, + "g": 227, + "b": 224 + } + }, + "H010L20C10": { + "description": "Wenge Black", + "hue": "10°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 62, + "g": 42, + "b": 44 + } + }, + "H010L20C15": { + "description": "Cherry Black", + "hue": "10°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 66, + "g": 35, + "b": 41 + } + }, + "H010L20C20": { + "description": "Dark Mahogany", + "hue": "10°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 72, + "g": 32, + "b": 41 + } + }, + "H010L20C25": { + "description": "Rusty Red", + "hue": "10°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 75, + "g": 28, + "b": 40 + } + }, + "H010L30C10": { + "description": "Wood-Black Red", + "hue": "10°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 88, + "g": 64, + "b": 67 + } + }, + "H010L30C15": { + "description": "Night Mauve", + "hue": "10°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 93, + "g": 59, + "b": 65 + } + }, + "H010L30C20": { + "description": "Pinkish Brown", + "hue": "10°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 100, + "g": 57, + "b": 65 + } + }, + "H010L30C25": { + "description": "Chestnut Red", + "hue": "10°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 108, + "g": 51, + "b": 63 + } + }, + "H010L30C30": { + "description": "Leather Red", + "hue": "10°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 113, + "g": 47, + "b": 62 + } + }, + "H010L30C35": { + "description": "Anthracite Red", + "hue": "10°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 115, + "g": 41, + "b": 59 + } + }, + "H010L30C40": { + "description": "Brown Magenta", + "hue": "10°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 123, + "g": 32, + "b": 57 + } + }, + "H010L30C44": { + "description": "Atlas Red", + "hue": "10°", + "lightness": "30%", + "chromaticity": "44%", + "rgb": { + "r": 130, + "g": 25, + "b": 58 + } + }, + "H010L40C10": { + "description": "Caput Mortuum Grey Red", + "hue": "10°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 111, + "g": 88, + "b": 91 + } + }, + "H010L40C15": { + "description": "Rust Brown", + "hue": "10°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 119, + "g": 83, + "b": 89 + } + }, + "H010L40C20": { + "description": "Sunset Red", + "hue": "10°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 127, + "g": 81, + "b": 88 + } + }, + "H010L40C25": { + "description": "Mineral Red", + "hue": "10°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 134, + "g": 77, + "b": 88 + } + }, + "H010L40C30": { + "description": "Dull Magenta", + "hue": "10°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 141, + "g": 72, + "b": 86 + } + }, + "H010L40C35": { + "description": "Velvet Red", + "hue": "10°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 144, + "g": 67, + "b": 83 + } + }, + "H010L40C40": { + "description": "Algae Red", + "hue": "10°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 152, + "g": 61, + "b": 83 + } + }, + "H010L40C45": { + "description": "Raspberry Ice Red", + "hue": "10°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 159, + "g": 55, + "b": 83 + } + }, + "H010L40C50": { + "description": "Fuchsia Red", + "hue": "10°", + "lightness": "40%", + "chromaticity": "50%", + "rgb": { + "r": 165, + "g": 49, + "b": 82 + } + }, + "H010L40C53": { + "description": "Primal Red", + "hue": "10°", + "lightness": "40%", + "chromaticity": "53%", + "rgb": { + "r": 169, + "g": 43, + "b": 79 + } + }, + "H010L50C10": { + "description": "Old Mahogany", + "hue": "10°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 136, + "g": 113, + "b": 117 + } + }, + "H010L50C15": { + "description": "Dull Dusky Pink", + "hue": "10°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 143, + "g": 109, + "b": 115 + } + }, + "H010L50C20": { + "description": "Brickwork Red", + "hue": "10°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 152, + "g": 105, + "b": 113 + } + }, + "H010L50C25": { + "description": "Matte Carmine", + "hue": "10°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 160, + "g": 101, + "b": 112 + } + }, + "H010L50C30": { + "description": "Marble Red", + "hue": "10°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 169, + "g": 96, + "b": 110 + } + }, + "H010L50C35": { + "description": "Geranium Red", + "hue": "10°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 174, + "g": 91, + "b": 108 + } + }, + "H010L50C40": { + "description": "Slate Pink", + "hue": "10°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 179, + "g": 88, + "b": 108 + } + }, + "H010L50C45": { + "description": "Tulip Red", + "hue": "10°", + "lightness": "50%", + "chromaticity": "45%", + "rgb": { + "r": 184, + "g": 81, + "b": 106 + } + }, + "H010L50C50": { + "description": "Vibrant Red", + "hue": "10°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 194, + "g": 76, + "b": 106 + } + }, + "H010L60C10": { + "description": "Lilac Grey", + "hue": "10°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 163, + "g": 138, + "b": 141 + } + }, + "H010L60C15": { + "description": "Orchid Red", + "hue": "10°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 173, + "g": 135, + "b": 141 + } + }, + "H010L60C20": { + "description": "Lime Pink", + "hue": "10°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 182, + "g": 132, + "b": 140 + } + }, + "H010L60C25": { + "description": "Lipstick Pink", + "hue": "10°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 189, + "g": 127, + "b": 138 + } + }, + "H010L60C30": { + "description": "Japanese Coral", + "hue": "10°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 196, + "g": 122, + "b": 136 + } + }, + "H010L60C35": { + "description": "Rose Red", + "hue": "10°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 205, + "g": 118, + "b": 135 + } + }, + "H010L60C40": { + "description": "Strawberry Milkshake Red", + "hue": "10°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 212, + "g": 113, + "b": 134 + } + }, + "H010L60C45": { + "description": "Luminous Pink", + "hue": "10°", + "lightness": "60%", + "chromaticity": "45%", + "rgb": { + "r": 220, + "g": 108, + "b": 132 + } + }, + "H010L70C10": { + "description": "Pale Mauve", + "hue": "10°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 192, + "g": 166, + "b": 170 + } + }, + "H010L70C15": { + "description": "Powder Rose", + "hue": "10°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 200, + "g": 162, + "b": 167 + } + }, + "H010L70C20": { + "description": "Silver Rose", + "hue": "10°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 210, + "g": 158, + "b": 166 + } + }, + "H010L70C25": { + "description": "Flamingo Pink", + "hue": "10°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 219, + "g": 154, + "b": 165 + } + }, + "H010L70C30": { + "description": "Cherry Blossom Pink", + "hue": "10°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 226, + "g": 151, + "b": 164 + } + }, + "H010L70C35": { + "description": "Baby Pink", + "hue": "10°", + "lightness": "70%", + "chromaticity": "35%", + "rgb": { + "r": 234, + "g": 145, + "b": 161 + } + }, + "H010L80C10": { + "description": "Mud Pink", + "hue": "10°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 220, + "g": 192, + "b": 195 + } + }, + "H010L80C15": { + "description": "Ice Hot Pink", + "hue": "10°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 228, + "g": 189, + "b": 194 + } + }, + "H010L80C20": { + "description": "Pastel Pink", + "hue": "10°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 239, + "g": 185, + "b": 192 + } + }, + "H010L85C05": { + "description": "Pearl Rose", + "hue": "10°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 223, + "g": 211, + "b": 212 + } + }, + "H010L85C10": { + "description": "Salmon Rose", + "hue": "10°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 230, + "g": 207, + "b": 210 + } + }, + "H010L85C15": { + "description": "Milkshake Pink", + "hue": "10°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 240, + "g": 205, + "b": 210 + } + }, + "H010L85C20": { + "description": "Flesh Pink", + "hue": "10°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 249, + "g": 203, + "b": 211 + } + }, + "H010L90C05": { + "description": "Rose Cream", + "hue": "10°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 239, + "g": 224, + "b": 222 + } + }, + "H010L90C10": { + "description": "Light Apricot", + "hue": "10°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 242, + "g": 218, + "b": 214 + } + }, + "H010L93C05": { + "description": "White-Red", + "hue": "10°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 243, + "g": 232, + "b": 234 + } + }, + "H020L20C05": { + "description": "Deep Brown", + "hue": "20°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 52, + "g": 42, + "b": 42 + } + }, + "H020L20C10": { + "description": "Night Red", + "hue": "20°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 60, + "g": 39, + "b": 39 + } + }, + "H020L20C20": { + "description": "Dark Red Brown", + "hue": "20°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 74, + "g": 33, + "b": 37 + } + }, + "H020L20C29": { + "description": "Burgundy", + "hue": "20°", + "lightness": "20%", + "chromaticity": "29%", + "rgb": { + "r": 83, + "g": 24, + "b": 31 + } + }, + "H020L30C05": { + "description": "Rhodonite Brown", + "hue": "20°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 77, + "g": 65, + "b": 65 + } + }, + "H020L30C10": { + "description": "Budapest Brown", + "hue": "20°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 85, + "g": 61, + "b": 62 + } + }, + "H020L30C20": { + "description": "Kremlin Red", + "hue": "20°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 99, + "g": 54, + "b": 57 + } + }, + "H020L30C30": { + "description": "Crystal Dark Red", + "hue": "20°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 109, + "g": 44, + "b": 50 + } + }, + "H020L30C40": { + "description": "Amaranth Blossom", + "hue": "20°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 123, + "g": 35, + "b": 49 + } + }, + "H020L30C48": { + "description": "Sweet Cherry Red", + "hue": "20°", + "lightness": "30%", + "chromaticity": "48%", + "rgb": { + "r": 132, + "g": 23, + "b": 44 + } + }, + "H020L40C05": { + "description": "Greyish Brown", + "hue": "20°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 103, + "g": 91, + "b": 91 + } + }, + "H020L40C10": { + "description": "Nut Brown", + "hue": "20°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 110, + "g": 86, + "b": 87 + } + }, + "H020L40C20": { + "description": "Antique Red", + "hue": "20°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 125, + "g": 79, + "b": 81 + } + }, + "H020L40C30": { + "description": "Hermosa Pink", + "hue": "20°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 138, + "g": 71, + "b": 76 + } + }, + "H020L40C40": { + "description": "October Red", + "hue": "20°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 148, + "g": 61, + "b": 70 + } + }, + "H020L40C50": { + "description": "Bright Red", + "hue": "20°", + "lightness": "40%", + "chromaticity": "50%", + "rgb": { + "r": 160, + "g": 46, + "b": 62 + } + }, + "H020L50C05": { + "description": "Zircon Grey", + "hue": "20°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 128, + "g": 116, + "b": 115 + } + }, + "H020L50C10": { + "description": "Sandstone Red Grey", + "hue": "20°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 136, + "g": 110, + "b": 112 + } + }, + "H020L50C20": { + "description": "Red Grey", + "hue": "20°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 153, + "g": 104, + "b": 106 + } + }, + "H020L50C30": { + "description": "Venetian Red", + "hue": "20°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 167, + "g": 96, + "b": 101 + } + }, + "H020L50C40": { + "description": "Alsike Clover Red", + "hue": "20°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 177, + "g": 87, + "b": 95 + } + }, + "H020L50C50": { + "description": "Flame Red", + "hue": "20°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 190, + "g": 76, + "b": 90 + } + }, + "H020L50C58": { + "description": "Lingonberry Red", + "hue": "20°", + "lightness": "50%", + "chromaticity": "58%", + "rgb": { + "r": 206, + "g": 68, + "b": 88 + } + }, + "H020L60C05": { + "description": "Globe Thistle Grey Rose", + "hue": "20°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 153, + "g": 141, + "b": 141 + } + }, + "H020L60C10": { + "description": "Tin Pink", + "hue": "20°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 163, + "g": 137, + "b": 138 + } + }, + "H020L60C20": { + "description": "Retro Pink", + "hue": "20°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 180, + "g": 130, + "b": 134 + } + }, + "H020L60C30": { + "description": "Begonia Rose", + "hue": "20°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 195, + "g": 121, + "b": 127 + } + }, + "H020L60C40": { + "description": "Lotus Red", + "hue": "20°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 209, + "g": 113, + "b": 123 + } + }, + "H020L70C05": { + "description": "Fashion Mauve", + "hue": "20°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 181, + "g": 168, + "b": 168 + } + }, + "H020L70C10": { + "description": "Tourmaline Mauve", + "hue": "20°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 189, + "g": 163, + "b": 165 + } + }, + "H020L70C20": { + "description": "Rosewood Apricot", + "hue": "20°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 211, + "g": 158, + "b": 162 + } + }, + "H020L70C30": { + "description": "Marker Pink", + "hue": "20°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 227, + "g": 150, + "b": 155 + } + }, + "H020L80C05": { + "description": "Aurora Grey", + "hue": "20°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 211, + "g": 197, + "b": 196 + } + }, + "H020L80C10": { + "description": "Quartz Rose", + "hue": "20°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 219, + "g": 191, + "b": 192 + } + }, + "H020L80C20": { + "description": "Marzipan Pink", + "hue": "20°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 238, + "g": 186, + "b": 188 + } + }, + "H020L85C05": { + "description": "Almond Blossom Pink", + "hue": "20°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 224, + "g": 210, + "b": 209 + } + }, + "H020L85C10": { + "description": "Salmon Cream", + "hue": "20°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 233, + "g": 207, + "b": 207 + } + }, + "H020L85C20": { + "description": "Elegant Light Rose", + "hue": "20°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 253, + "g": 202, + "b": 202 + } + }, + "H020L90C05": { + "description": "Mussel White", + "hue": "20°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 240, + "g": 226, + "b": 222 + } + }, + "H020L90C10": { + "description": "Peach Cream", + "hue": "20°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 244, + "g": 220, + "b": 216 + } + }, + "H020L93C05": { + "description": "Blossom White", + "hue": "20°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 248, + "g": 232, + "b": 228 + } + }, + "H030L30C10": { + "description": "Laurel Nut Brown", + "hue": "30°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 85, + "g": 64, + "b": 62 + } + }, + "H030L30C20": { + "description": "Autumn Leaf Red", + "hue": "30°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 98, + "g": 56, + "b": 54 + } + }, + "H030L30C30": { + "description": "Macore Veneer Red", + "hue": "30°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 110, + "g": 47, + "b": 44 + } + }, + "H030L30C40": { + "description": "Crimson Red", + "hue": "30°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 124, + "g": 41, + "b": 42 + } + }, + "H030L30C45": { + "description": "Blood Red", + "hue": "30°", + "lightness": "30%", + "chromaticity": "45%", + "rgb": { + "r": 125, + "g": 30, + "b": 32 + } + }, + "H030L40C10": { + "description": "Peat Red Brown", + "hue": "30°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 108, + "g": 87, + "b": 85 + } + }, + "H030L40C20": { + "description": "Cranberry Red", + "hue": "30°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 126, + "g": 83, + "b": 80 + } + }, + "H030L40C30": { + "description": "Brick Brown", + "hue": "30°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 139, + "g": 75, + "b": 71 + } + }, + "H030L40C40": { + "description": "Spicy Red", + "hue": "30°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 151, + "g": 65, + "b": 62 + } + }, + "H030L40C50": { + "description": "Hibiscus Red", + "hue": "30°", + "lightness": "40%", + "chromaticity": "50%", + "rgb": { + "r": 163, + "g": 55, + "b": 55 + } + }, + "H030L40C60": { + "description": "Emperor Cherry Red", + "hue": "30°", + "lightness": "40%", + "chromaticity": "60%", + "rgb": { + "r": 172, + "g": 44, + "b": 50 + } + }, + "H030L50C10": { + "description": "Earth Red", + "hue": "30°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 136, + "g": 111, + "b": 109 + } + }, + "H030L50C20": { + "description": "Terracotta Red Brown", + "hue": "30°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 151, + "g": 106, + "b": 102 + } + }, + "H030L50C30": { + "description": "Clay Red", + "hue": "30°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 166, + "g": 97, + "b": 93 + } + }, + "H030L50C40": { + "description": "Vermilion Red", + "hue": "30°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 180, + "g": 90, + "b": 86 + } + }, + "H030L50C50": { + "description": "Maple Red", + "hue": "30°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 191, + "g": 81, + "b": 78 + } + }, + "H030L50C60": { + "description": "Holland Red", + "hue": "30°", + "lightness": "50%", + "chromaticity": "60%", + "rgb": { + "r": 203, + "g": 69, + "b": 67 + } + }, + "H030L60C10": { + "description": "Storm Red", + "hue": "30°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 162, + "g": 138, + "b": 136 + } + }, + "H030L60C20": { + "description": "Desert Red", + "hue": "30°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 179, + "g": 131, + "b": 127 + } + }, + "H030L60C30": { + "description": "Antique Pink", + "hue": "30°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 194, + "g": 122, + "b": 116 + } + }, + "H030L60C40": { + "description": "Light Tomato", + "hue": "30°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 208, + "g": 117, + "b": 111 + } + }, + "H030L60C50": { + "description": "Calypso Red", + "hue": "30°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 222, + "g": 107, + "b": 102 + } + }, + "H030L70C10": { + "description": "Florida Grey", + "hue": "30°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 190, + "g": 164, + "b": 162 + } + }, + "H030L70C20": { + "description": "Dull Apricot", + "hue": "30°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 208, + "g": 156, + "b": 151 + } + }, + "H030L70C30": { + "description": "Salmon Pink Red", + "hue": "30°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 225, + "g": 149, + "b": 143 + } + }, + "H030L70C40": { + "description": "Flamingo Red", + "hue": "30°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 239, + "g": 142, + "b": 135 + } + }, + "H030L80C10": { + "description": "Salt Pink", + "hue": "30°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 218, + "g": 192, + "b": 188 + } + }, + "H030L80C20": { + "description": "Magnolia Pink", + "hue": "30°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 236, + "g": 185, + "b": 179 + } + }, + "H030L85C05": { + "description": "Almond Cream", + "hue": "30°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 224, + "g": 209, + "b": 203 + } + }, + "H030L85C10": { + "description": "Soft Ice Rose", + "hue": "30°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 231, + "g": 207, + "b": 202 + } + }, + "H030L85C20": { + "description": "Peach Red", + "hue": "30°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 249, + "g": 205, + "b": 196 + } + }, + "H030L90C05": { + "description": "Antique White", + "hue": "30°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 238, + "g": 224, + "b": 220 + } + }, + "H030L90C10": { + "description": "Wedding Pink", + "hue": "30°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 246, + "g": 223, + "b": 216 + } + }, + "H030L93C05": { + "description": "Parchment White", + "hue": "30°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 249, + "g": 234, + "b": 229 + } + }, + "H040L20C19": { + "description": "Wild Brown", + "hue": "40°", + "lightness": "20%", + "chromaticity": "19%", + "rgb": { + "r": 71, + "g": 36, + "b": 26 + } + }, + "H040L30C05": { + "description": "Basalt Black", + "hue": "40°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 77, + "g": 66, + "b": 62 + } + }, + "H040L30C10": { + "description": "Caviar Black", + "hue": "40°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 83, + "g": 62, + "b": 57 + } + }, + "H040L30C20": { + "description": "Coffee Brown", + "hue": "40°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 96, + "g": 57, + "b": 47 + } + }, + "H040L30C30": { + "description": "Root Brown", + "hue": "40°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 107, + "g": 50, + "b": 38 + } + }, + "H040L30C40": { + "description": "Corrosion Red", + "hue": "40°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 119, + "g": 47, + "b": 33 + } + }, + "H040L40C05": { + "description": "Ash Brown", + "hue": "40°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 103, + "g": 91, + "b": 88 + } + }, + "H040L40C10": { + "description": "Somali Brown", + "hue": "40°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 108, + "g": 87, + "b": 81 + } + }, + "H040L40C20": { + "description": "Vandyck Brown", + "hue": "40°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 123, + "g": 83, + "b": 73 + } + }, + "H040L40C30": { + "description": "Chestnut Brown", + "hue": "40°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 133, + "g": 75, + "b": 60 + } + }, + "H040L40C40": { + "description": "Brick Red", + "hue": "40°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 145, + "g": 65, + "b": 47 + } + }, + "H040L40C50": { + "description": "Henna Red", + "hue": "40°", + "lightness": "40%", + "chromaticity": "50%", + "rgb": { + "r": 157, + "g": 61, + "b": 39 + } + }, + "H040L40C60": { + "description": "Copper Red", + "hue": "40°", + "lightness": "40%", + "chromaticity": "60%", + "rgb": { + "r": 165, + "g": 49, + "b": 26 + } + }, + "H040L40C67": { + "description": "China Red", + "hue": "40°", + "lightness": "40%", + "chromaticity": "67%", + "rgb": { + "r": 173, + "g": 43, + "b": 16 + } + }, + "H040L50C05": { + "description": "Nomad Grey", + "hue": "40°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 126, + "g": 115, + "b": 111 + } + }, + "H040L50C10": { + "description": "Umbra Sand", + "hue": "40°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 135, + "g": 112, + "b": 107 + } + }, + "H040L50C20": { + "description": "Agate Brown", + "hue": "40°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 149, + "g": 106, + "b": 96 + } + }, + "H040L50C30": { + "description": "Rust Coloured", + "hue": "40°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 164, + "g": 100, + "b": 84 + } + }, + "H040L50C40": { + "description": "Ant Red", + "hue": "40°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 176, + "g": 93, + "b": 74 + } + }, + "H040L50C50": { + "description": "English Red", + "hue": "40°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 189, + "g": 85, + "b": 62 + } + }, + "H040L50C60": { + "description": "Fox Red", + "hue": "40°", + "lightness": "50%", + "chromaticity": "60%", + "rgb": { + "r": 202, + "g": 78, + "b": 51 + } + }, + "H040L50C70": { + "description": "Pompeii Red", + "hue": "40°", + "lightness": "50%", + "chromaticity": "70%", + "rgb": { + "r": 209, + "g": 70, + "b": 44 + } + }, + "H040L60C05": { + "description": "Warm Grey", + "hue": "40°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 153, + "g": 142, + "b": 138 + } + }, + "H040L60C10": { + "description": "Light Caramel", + "hue": "40°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 163, + "g": 138, + "b": 131 + } + }, + "H040L60C20": { + "description": "Sienna Yellow", + "hue": "40°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 176, + "g": 130, + "b": 119 + } + }, + "H040L60C30": { + "description": "Cedar Red", + "hue": "40°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 194, + "g": 126, + "b": 111 + } + }, + "H040L60C40": { + "description": "Terra Orange", + "hue": "40°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 204, + "g": 118, + "b": 97 + } + }, + "H040L60C50": { + "description": "Mandarin Orange", + "hue": "40°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 218, + "g": 113, + "b": 87 + } + }, + "H040L60C60": { + "description": "Coral Orange", + "hue": "40°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 228, + "g": 105, + "b": 76 + } + }, + "H040L70C05": { + "description": "Matte Grey", + "hue": "40°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 180, + "g": 168, + "b": 164 + } + }, + "H040L70C10": { + "description": "Mohair Mauve", + "hue": "40°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 191, + "g": 165, + "b": 158 + } + }, + "H040L70C20": { + "description": "Soft Sienna", + "hue": "40°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 208, + "g": 159, + "b": 147 + } + }, + "H040L70C30": { + "description": "Industrial Rose", + "hue": "40°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 224, + "g": 152, + "b": 135 + } + }, + "H040L70C40": { + "description": "Apricot Red", + "hue": "40°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 232, + "g": 145, + "b": 125 + } + }, + "H040L70C50": { + "description": "Fruit Red", + "hue": "40°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 250, + "g": 137, + "b": 112 + } + }, + "H040L80C05": { + "description": "Natural Silk Grey", + "hue": "40°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 211, + "g": 197, + "b": 192 + } + }, + "H040L80C10": { + "description": "Thulite Rose", + "hue": "40°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 221, + "g": 194, + "b": 186 + } + }, + "H040L80C20": { + "description": "Madder Orange", + "hue": "40°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 241, + "g": 190, + "b": 176 + } + }, + "H040L80C30": { + "description": "Nature Apricot", + "hue": "40°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 254, + "g": 183, + "b": 165 + } + }, + "H040L85C05": { + "description": "Pandora Grey", + "hue": "40°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 227, + "g": 212, + "b": 207 + } + }, + "H040L85C10": { + "description": "Fine Alabaster", + "hue": "40°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 236, + "g": 211, + "b": 203 + } + }, + "H040L85C20": { + "description": "Delicate Sweet Apricot", + "hue": "40°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 253, + "g": 205, + "b": 189 + } + }, + "H040L90C05": { + "description": "Sahara Light Red", + "hue": "40°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 240, + "g": 225, + "b": 219 + } + }, + "H040L90C10": { + "description": "Delicate Rose", + "hue": "40°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 247, + "g": 224, + "b": 214 + } + }, + "H040L93C05": { + "description": "Natural White", + "hue": "40°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 251, + "g": 237, + "b": 229 + } + }, + "H050L20C10": { + "description": "Granite Brown", + "hue": "50°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 61, + "g": 45, + "b": 36 + } + }, + "H050L20C16": { + "description": "Night Brown", + "hue": "50°", + "lightness": "20%", + "chromaticity": "16%", + "rgb": { + "r": 68, + "g": 40, + "b": 27 + } + }, + "H050L30C10": { + "description": "Obsidian Brown", + "hue": "50°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 82, + "g": 62, + "b": 53 + } + }, + "H050L30C20": { + "description": "Tropical Wood Brown", + "hue": "50°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 96, + "g": 59, + "b": 42 + } + }, + "H050L30C30": { + "description": "Tobacco Brown", + "hue": "50°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 108, + "g": 56, + "b": 33 + } + }, + "H050L30C36": { + "description": "Rosewood Brown", + "hue": "50°", + "lightness": "30%", + "chromaticity": "36%", + "rgb": { + "r": 114, + "g": 55, + "b": 28 + } + }, + "H050L40C10": { + "description": "Mocha Black", + "hue": "50°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 111, + "g": 91, + "b": 82 + } + }, + "H050L40C20": { + "description": "Florentine Brown", + "hue": "50°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 122, + "g": 85, + "b": 68 + } + }, + "H050L40C30": { + "description": "Curry Brown", + "hue": "50°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 132, + "g": 80, + "b": 56 + } + }, + "H050L40C40": { + "description": "Madeira Brown", + "hue": "50°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 143, + "g": 72, + "b": 38 + } + }, + "H050L40C50": { + "description": "Autumn Red", + "hue": "50°", + "lightness": "40%", + "chromaticity": "50%", + "rgb": { + "r": 153, + "g": 69, + "b": 31 + } + }, + "H050L50C10": { + "description": "Teakwood Brown", + "hue": "50°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 137, + "g": 117, + "b": 107 + } + }, + "H050L50C20": { + "description": "Milk Coffee Brown", + "hue": "50°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 150, + "g": 111, + "b": 93 + } + }, + "H050L50C30": { + "description": "Golden Brown", + "hue": "50°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 163, + "g": 106, + "b": 79 + } + }, + "H050L50C40": { + "description": "Copper-Metal Red", + "hue": "50°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 173, + "g": 99, + "b": 66 + } + }, + "H050L50C50": { + "description": "Gold Varnish Brown", + "hue": "50°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 185, + "g": 94, + "b": 51 + } + }, + "H050L50C60": { + "description": "Titian Red", + "hue": "50°", + "lightness": "50%", + "chromaticity": "60%", + "rgb": { + "r": 189, + "g": 86, + "b": 32 + } + }, + "H050L50C70": { + "description": "Poppy Red", + "hue": "50°", + "lightness": "50%", + "chromaticity": "70%", + "rgb": { + "r": 205, + "g": 77, + "b": 4 + } + }, + "H050L50C78": { + "description": "Persian Orange", + "hue": "50°", + "lightness": "50%", + "chromaticity": "78%", + "rgb": { + "r": 212, + "g": 88, + "b": 20 + } + }, + "H050L60C10": { + "description": "Ecru Ochre", + "hue": "50°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 164, + "g": 141, + "b": 131 + } + }, + "H050L60C20": { + "description": "Caramel Brown", + "hue": "50°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 177, + "g": 135, + "b": 117 + } + }, + "H050L60C30": { + "description": "Medium Brown", + "hue": "50°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 194, + "g": 132, + "b": 104 + } + }, + "H050L60C40": { + "description": "Apricot Brown", + "hue": "50°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 204, + "g": 126, + "b": 91 + } + }, + "H050L60C50": { + "description": "Orange Yellow", + "hue": "50°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 216, + "g": 121, + "b": 76 + } + }, + "H050L60C60": { + "description": "Camel Red", + "hue": "50°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 229, + "g": 116, + "b": 59 + } + }, + "H050L60C70": { + "description": "Carrot Orange", + "hue": "50°", + "lightness": "60%", + "chromaticity": "70%", + "rgb": { + "r": 233, + "g": 103, + "b": 45 + } + }, + "H050L60C80": { + "description": "Gerbera Red", + "hue": "50°", + "lightness": "60%", + "chromaticity": "80%", + "rgb": { + "r": 246, + "g": 97, + "b": 26 + } + }, + "H050L70C10": { + "description": "Bamboo Beige", + "hue": "50°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 193, + "g": 171, + "b": 160 + } + }, + "H050L70C20": { + "description": "Amber Grey", + "hue": "50°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 208, + "g": 165, + "b": 146 + } + }, + "H050L70C30": { + "description": "Sienna Ochre", + "hue": "50°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 222, + "g": 159, + "b": 131 + } + }, + "H050L70C40": { + "description": "Light Amber Orange", + "hue": "50°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 237, + "g": 154, + "b": 118 + } + }, + "H050L70C50": { + "description": "Melon Red", + "hue": "50°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 246, + "g": 146, + "b": 104 + } + }, + "H050L70C60": { + "description": "Mango Orange", + "hue": "50°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 255, + "g": 139, + "b": 88 + } + }, + "H050L80C10": { + "description": "Pale Sienna", + "hue": "50°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 223, + "g": 199, + "b": 188 + } + }, + "H050L80C20": { + "description": "Soft Orange", + "hue": "50°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 238, + "g": 192, + "b": 171 + } + }, + "H050L80C30": { + "description": "Pallid Orange", + "hue": "50°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 252, + "g": 185, + "b": 157 + } + }, + "H050L85C05": { + "description": "Ocean Sand", + "hue": "50°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 228, + "g": 213, + "b": 205 + } + }, + "H050L85C10": { + "description": "Pure Beige", + "hue": "50°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 233, + "g": 208, + "b": 196 + } + }, + "H050L85C20": { + "description": "Biscuit Cream", + "hue": "50°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 249, + "g": 204, + "b": 183 + } + }, + "H050L90C05": { + "description": "Eggshell White", + "hue": "50°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 243, + "g": 228, + "b": 220 + } + }, + "H050L90C10": { + "description": "Light Peach Rose", + "hue": "50°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 255, + "g": 230, + "b": 216 + } + }, + "H050L93C05": { + "description": "Tulle White", + "hue": "50°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 251, + "g": 237, + "b": 229 + } + }, + "H060L20C05": { + "description": "Industrial Black", + "hue": "60°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 50, + "g": 43, + "b": 38 + } + }, + "H060L30C05": { + "description": "Vehicle Body Grey", + "hue": "60°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 76, + "g": 67, + "b": 61 + } + }, + "H060L30C10": { + "description": "Nutria Fur Brown", + "hue": "60°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 81, + "g": 64, + "b": 53 + } + }, + "H060L30C20": { + "description": "Peat Brown", + "hue": "60°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 90, + "g": 61, + "b": 41 + } + }, + "H060L30C27": { + "description": "Cassiterite Brown", + "hue": "60°", + "lightness": "30%", + "chromaticity": "27%", + "rgb": { + "r": 98, + "g": 60, + "b": 31 + } + }, + "H060L40C05": { + "description": "Zinc Grey", + "hue": "60°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 101, + "g": 91, + "b": 85 + } + }, + "H060L40C10": { + "description": "Moor Oak Grey", + "hue": "60°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 106, + "g": 88, + "b": 77 + } + }, + "H060L40C20": { + "description": "Coffee Bean Brown", + "hue": "60°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 118, + "g": 86, + "b": 64 + } + }, + "H060L40C30": { + "description": "Brazilian Brown", + "hue": "60°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 127, + "g": 81, + "b": 49 + } + }, + "H060L40C40": { + "description": "Plane Brown", + "hue": "60°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 138, + "g": 80, + "b": 36 + } + }, + "H060L50C05": { + "description": "Chinchilla Grey", + "hue": "60°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 127, + "g": 116, + "b": 110 + } + }, + "H060L50C10": { + "description": "Sandstone Grey", + "hue": "60°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 133, + "g": 114, + "b": 102 + } + }, + "H060L50C20": { + "description": "Mushroom Brown", + "hue": "60°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 144, + "g": 110, + "b": 88 + } + }, + "H060L50C30": { + "description": "Mustard Brown", + "hue": "60°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 157, + "g": 108, + "b": 74 + } + }, + "H060L50C40": { + "description": "Camel Brown", + "hue": "60°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 165, + "g": 102, + "b": 57 + } + }, + "H060L50C50": { + "description": "Date Fruit Brown", + "hue": "60°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 175, + "g": 100, + "b": 43 + } + }, + "H060L50C60": { + "description": "Elm Brown Red", + "hue": "60°", + "lightness": "50%", + "chromaticity": "60%", + "rgb": { + "r": 178, + "g": 91, + "b": 9 + } + }, + "H060L50C70": { + "description": "Dry Clay", + "hue": "60°", + "lightness": "50%", + "chromaticity": "70%", + "rgb": { + "r": 189, + "g": 92, + "b": 0 + } + }, + "H060L60C05": { + "description": "Screed Grey", + "hue": "60°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 154, + "g": 144, + "b": 138 + } + }, + "H060L60C10": { + "description": "Oak Brown", + "hue": "60°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 161, + "g": 141, + "b": 128 + } + }, + "H060L60C20": { + "description": "Light Topaz Ochre", + "hue": "60°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 176, + "g": 137, + "b": 113 + } + }, + "H060L60C30": { + "description": "Cognac Brown", + "hue": "60°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 185, + "g": 133, + "b": 99 + } + }, + "H060L60C40": { + "description": "Maple Syrup Brown", + "hue": "60°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 200, + "g": 133, + "b": 84 + } + }, + "H060L60C50": { + "description": "Turmeric Red", + "hue": "60°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 202, + "g": 122, + "b": 64 + } + }, + "H060L60C60": { + "description": "Bitter Orange", + "hue": "60°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 213, + "g": 118, + "b": 43 + } + }, + "H060L60C70": { + "description": "Gold Orange", + "hue": "60°", + "lightness": "60%", + "chromaticity": "70%", + "rgb": { + "r": 219, + "g": 114, + "b": 16 + } + }, + "H060L60C80": { + "description": "Accent Orange", + "hue": "60°", + "lightness": "60%", + "chromaticity": "80%", + "rgb": { + "r": 229, + "g": 109, + "b": 0 + } + }, + "H060L70C05": { + "description": "Cement Greige", + "hue": "60°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 181, + "g": 171, + "b": 164 + } + }, + "H060L70C10": { + "description": "Putty Grey", + "hue": "60°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 189, + "g": 168, + "b": 156 + } + }, + "H060L70C20": { + "description": "Peanutbutter", + "hue": "60°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 200, + "g": 163, + "b": 138 + } + }, + "H060L70C30": { + "description": "Peach Yellow", + "hue": "60°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 209, + "g": 156, + "b": 121 + } + }, + "H060L70C40": { + "description": "Candle Yellow", + "hue": "60°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 224, + "g": 155, + "b": 110 + } + }, + "H060L70C50": { + "description": "Topaz Yellow", + "hue": "60°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 235, + "g": 151, + "b": 94 + } + }, + "H060L70C60": { + "description": "Melon Orange", + "hue": "60°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 240, + "g": 143, + "b": 72 + } + }, + "H060L70C70": { + "description": "Indian Yellow", + "hue": "60°", + "lightness": "70%", + "chromaticity": "70%", + "rgb": { + "r": 252, + "g": 140, + "b": 53 + } + }, + "H060L80C05": { + "description": "Light Chamois Beige", + "hue": "60°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 209, + "g": 198, + "b": 190 + } + }, + "H060L80C10": { + "description": "Soft Greige", + "hue": "60°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 215, + "g": 195, + "b": 181 + } + }, + "H060L80C20": { + "description": "Biscuit Beige", + "hue": "60°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 230, + "g": 191, + "b": 166 + } + }, + "H060L80C30": { + "description": "Mild Orange", + "hue": "60°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 244, + "g": 186, + "b": 148 + } + }, + "H060L80C40": { + "description": "Apricot Orange", + "hue": "60°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 253, + "g": 180, + "b": 130 + } + }, + "H060L85C05": { + "description": "Champagne Rose", + "hue": "60°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 227, + "g": 214, + "b": 204 + } + }, + "H060L85C10": { + "description": "Cornmeal Beige", + "hue": "60°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 235, + "g": 213, + "b": 197 + } + }, + "H060L85C20": { + "description": "Dough Yellow", + "hue": "60°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 246, + "g": 208, + "b": 182 + } + }, + "H060L85C30": { + "description": "Light Saffron Orange", + "hue": "60°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 255, + "g": 204, + "b": 165 + } + }, + "H060L90C05": { + "description": "Grain White", + "hue": "60°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 239, + "g": 227, + "b": 216 + } + }, + "H060L90C10": { + "description": "Vanilla Cream", + "hue": "60°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 247, + "g": 224, + "b": 210 + } + }, + "H060L90C15": { + "description": "Apricot Cream", + "hue": "60°", + "lightness": "90%", + "chromaticity": "15%", + "rgb": { + "r": 253, + "g": 220, + "b": 200 + } + }, + "H060L93C05": { + "description": "Wool White", + "hue": "60°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 249, + "g": 237, + "b": 228 + } + }, + "H070L30C10": { + "description": "Mineral Brown", + "hue": "70°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 77, + "g": 63, + "b": 51 + } + }, + "H070L30C20": { + "description": "Beech Brown", + "hue": "70°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 87, + "g": 65, + "b": 40 + } + }, + "H070L40C10": { + "description": "Mink Brown", + "hue": "70°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 103, + "g": 89, + "b": 76 + } + }, + "H070L40C20": { + "description": "Huckleberry Brown", + "hue": "70°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 113, + "g": 86, + "b": 59 + } + }, + "H070L40C30": { + "description": "Arable Brown", + "hue": "70°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 122, + "g": 85, + "b": 46 + } + }, + "H070L40C40": { + "description": "Autumn Gold", + "hue": "70°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 128, + "g": 82, + "b": 26 + } + }, + "H070L50C10": { + "description": "Saruk Grey", + "hue": "70°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 129, + "g": 114, + "b": 101 + } + }, + "H070L50C20": { + "description": "Ash Gold", + "hue": "70°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 140, + "g": 111, + "b": 84 + } + }, + "H070L50C30": { + "description": "Lion's Mane Blonde", + "hue": "70°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 148, + "g": 107, + "b": 65 + } + }, + "H070L50C40": { + "description": "Antique Gold", + "hue": "70°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 157, + "g": 105, + "b": 47 + } + }, + "H070L50C50": { + "description": "Stage Gold", + "hue": "70°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 158, + "g": 105, + "b": 40 + } + }, + "H070L50C55": { + "description": "Theatre Gold", + "hue": "70°", + "lightness": "50%", + "chromaticity": "55%", + "rgb": { + "r": 167, + "g": 105, + "b": 36 + } + }, + "H070L60C10": { + "description": "Light Mahogany", + "hue": "70°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 155, + "g": 139, + "b": 124 + } + }, + "H070L60C20": { + "description": "Dark Blond", + "hue": "70°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 166, + "g": 138, + "b": 110 + } + }, + "H070L60C30": { + "description": "Light Oak Brown", + "hue": "70°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 175, + "g": 133, + "b": 92 + } + }, + "H070L60C40": { + "description": "Grain Brown", + "hue": "70°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 184, + "g": 131, + "b": 73 + } + }, + "H070L60C50": { + "description": "Mud Yellow", + "hue": "70°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 193, + "g": 129, + "b": 54 + } + }, + "H070L60C60": { + "description": "Mustard Yellow", + "hue": "70°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 203, + "g": 129, + "b": 45 + } + }, + "H070L60C70": { + "description": "Seabuckthorn Yellow Brown", + "hue": "70°", + "lightness": "60%", + "chromaticity": "70%", + "rgb": { + "r": 205, + "g": 123, + "b": 0 + } + }, + "H070L60C75": { + "description": "Autumn Leaf Orange", + "hue": "70°", + "lightness": "60%", + "chromaticity": "75%", + "rgb": { + "r": 208, + "g": 122, + "b": 4 + } + }, + "H070L70C10": { + "description": "Ginger Grey Yellow", + "hue": "70°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 184, + "g": 168, + "b": 153 + } + }, + "H070L70C20": { + "description": "Light Ash Brown", + "hue": "70°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 194, + "g": 164, + "b": 135 + } + }, + "H070L70C30": { + "description": "Golden Beige", + "hue": "70°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 206, + "g": 162, + "b": 119 + } + }, + "H070L70C40": { + "description": "Dechant Pear Yellow", + "hue": "70°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 215, + "g": 158, + "b": 98 + } + }, + "H070L70C50": { + "description": "Honeycomb Yellow", + "hue": "70°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 222, + "g": 156, + "b": 82 + } + }, + "H070L70C60": { + "description": "Gorse Yellow Orange", + "hue": "70°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 233, + "g": 154, + "b": 60 + } + }, + "H070L70C70": { + "description": "Naples Yellow", + "hue": "70°", + "lightness": "70%", + "chromaticity": "70%", + "rgb": { + "r": 235, + "g": 147, + "b": 31 + } + }, + "H070L70C80": { + "description": "Saffron Gold", + "hue": "70°", + "lightness": "70%", + "chromaticity": "80%", + "rgb": { + "r": 240, + "g": 143, + "b": 0 + } + }, + "H070L80C10": { + "description": "Flax Beige", + "hue": "70°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 212, + "g": 195, + "b": 179 + } + }, + "H070L80C20": { + "description": "Buttercup Yellow", + "hue": "70°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 227, + "g": 194, + "b": 163 + } + }, + "H070L80C30": { + "description": "Golden Oat Coloured", + "hue": "70°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 236, + "g": 190, + "b": 145 + } + }, + "H070L80C40": { + "description": "Apricot Yellow", + "hue": "70°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 247, + "g": 189, + "b": 129 + } + }, + "H070L80C50": { + "description": "Warm Apricot", + "hue": "70°", + "lightness": "80%", + "chromaticity": "50%", + "rgb": { + "r": 255, + "g": 184, + "b": 107 + } + }, + "H070L80C60": { + "description": "Golden Rain Yellow", + "hue": "70°", + "lightness": "80%", + "chromaticity": "60%", + "rgb": { + "r": 255, + "g": 182, + "b": 87 + } + }, + "H070L85C05": { + "description": "Almond Beige", + "hue": "70°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 223, + "g": 213, + "b": 202 + } + }, + "H070L85C10": { + "description": "Silver Thistle Beige", + "hue": "70°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 231, + "g": 213, + "b": 197 + } + }, + "H070L85C20": { + "description": "Sandalwood Beige", + "hue": "70°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 242, + "g": 209, + "b": 177 + } + }, + "H070L85C30": { + "description": "Hair Blonde", + "hue": "70°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 253, + "g": 207, + "b": 161 + } + }, + "H070L90C05": { + "description": "Off White", + "hue": "70°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 237, + "g": 228, + "b": 217 + } + }, + "H070L90C10": { + "description": "Light Corn", + "hue": "70°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 243, + "g": 226, + "b": 209 + } + }, + "H070L90C20": { + "description": "Chalk Yellow", + "hue": "70°", + "lightness": "90%", + "chromaticity": "20%", + "rgb": { + "r": 255, + "g": 222, + "b": 190 + } + }, + "H070L93C05": { + "description": "Anemone White", + "hue": "70°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 249, + "g": 239, + "b": 228 + } + }, + "H075L40C10": { + "description": "Tree Bark Brown", + "hue": "75°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 102, + "g": 91, + "b": 78 + } + }, + "H075L40C20": { + "description": "Caraway Brown", + "hue": "75°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 109, + "g": 86, + "b": 60 + } + }, + "H075L40C30": { + "description": "Bark Brown", + "hue": "75°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 115, + "g": 83, + "b": 42 + } + }, + "H075L40C38": { + "description": "Lizard Brown", + "hue": "75°", + "lightness": "40%", + "chromaticity": "38%", + "rgb": { + "r": 121, + "g": 84, + "b": 25 + } + }, + "H075L50C10": { + "description": "Rye Dough Brown", + "hue": "75°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 128, + "g": 115, + "b": 101 + } + }, + "H075L50C20": { + "description": "China Cinnamon", + "hue": "75°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 138, + "g": 112, + "b": 84 + } + }, + "H075L50C30": { + "description": "Grog Yellow", + "hue": "75°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 147, + "g": 112, + "b": 67 + } + }, + "H075L50C40": { + "description": "Amber Brown", + "hue": "75°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 154, + "g": 108, + "b": 49 + } + }, + "H075L50C50": { + "description": "Cinnamon Brown", + "hue": "75°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 158, + "g": 106, + "b": 25 + } + }, + "H075L50C58": { + "description": "Cumin Ochre", + "hue": "75°", + "lightness": "50%", + "chromaticity": "58%", + "rgb": { + "r": 160, + "g": 102, + "b": 0 + } + }, + "H075L60C10": { + "description": "Putty Yellow", + "hue": "75°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 157, + "g": 142, + "b": 127 + } + }, + "H075L60C20": { + "description": "Walnut Shell Brown", + "hue": "75°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 166, + "g": 139, + "b": 110 + } + }, + "H075L60C30": { + "description": "Clay Ochre", + "hue": "75°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 174, + "g": 137, + "b": 93 + } + }, + "H075L60C40": { + "description": "Funchal Yellow", + "hue": "75°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 182, + "g": 136, + "b": 77 + } + }, + "H075L60C50": { + "description": "Mango Brown", + "hue": "75°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 187, + "g": 132, + "b": 52 + } + }, + "H075L60C60": { + "description": "Turmeric Brown", + "hue": "75°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 193, + "g": 129, + "b": 22 + } + }, + "H075L60C70": { + "description": "Bamboo Brown", + "hue": "75°", + "lightness": "60%", + "chromaticity": "70%", + "rgb": { + "r": 200, + "g": 127, + "b": 0 + } + }, + "H075L70C10": { + "description": "Flax Fibre Grey", + "hue": "75°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 183, + "g": 169, + "b": 154 + } + }, + "H075L70C20": { + "description": "Light Pumpkin Brown", + "hue": "75°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 194, + "g": 165, + "b": 133 + } + }, + "H075L70C30": { + "description": "Golden Thistle Yellow", + "hue": "75°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 202, + "g": 163, + "b": 117 + } + }, + "H075L70C40": { + "description": "Brick Yellow", + "hue": "75°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 210, + "g": 161, + "b": 97 + } + }, + "H075L70C50": { + "description": "Deep Bamboo Yellow", + "hue": "75°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 217, + "g": 159, + "b": 80 + } + }, + "H075L70C60": { + "description": "Intense Yellow", + "hue": "75°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 225, + "g": 156, + "b": 53 + } + }, + "H075L70C70": { + "description": "Pumpkin Yellow", + "hue": "75°", + "lightness": "70%", + "chromaticity": "70%", + "rgb": { + "r": 233, + "g": 154, + "b": 16 + } + }, + "H075L70C80": { + "description": "Autumn Yellow", + "hue": "75°", + "lightness": "70%", + "chromaticity": "80%", + "rgb": { + "r": 233, + "g": 151, + "b": 0 + } + }, + "H075L80C10": { + "description": "Chalk Beige", + "hue": "75°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 214, + "g": 197, + "b": 180 + } + }, + "H075L80C20": { + "description": "Light Corn Yellow", + "hue": "75°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 224, + "g": 195, + "b": 162 + } + }, + "H075L80C30": { + "description": "Dark Yellow", + "hue": "75°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 231, + "g": 191, + "b": 142 + } + }, + "H075L80C40": { + "description": "Ash Yellow", + "hue": "75°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 240, + "g": 189, + "b": 126 + } + }, + "H075L80C50": { + "description": "Orient Yellow", + "hue": "75°", + "lightness": "80%", + "chromaticity": "50%", + "rgb": { + "r": 247, + "g": 185, + "b": 105 + } + }, + "H075L80C60": { + "description": "Carriage Yellow", + "hue": "75°", + "lightness": "80%", + "chromaticity": "60%", + "rgb": { + "r": 255, + "g": 183, + "b": 86 + } + }, + "H075L85C10": { + "description": "Water Lily White", + "hue": "75°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 230, + "g": 214, + "b": 196 + } + }, + "H075L85C20": { + "description": "Banana Ice Cream", + "hue": "75°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 241, + "g": 211, + "b": 178 + } + }, + "H075L85C30": { + "description": "Maple Beige", + "hue": "75°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 250, + "g": 208, + "b": 161 + } + }, + "H075L85C40": { + "description": "Goldenrod Yellow", + "hue": "75°", + "lightness": "85%", + "chromaticity": "40%", + "rgb": { + "r": 255, + "g": 206, + "b": 143 + } + }, + "H075L90C10": { + "description": "Dessert Cream", + "hue": "75°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 246, + "g": 228, + "b": 208 + } + }, + "H075L90C20": { + "description": "Butter White", + "hue": "75°", + "lightness": "90%", + "chromaticity": "20%", + "rgb": { + "r": 253, + "g": 222, + "b": 189 + } + }, + "H075L93C05": { + "description": "Vanilla White", + "hue": "75°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 246, + "g": 238, + "b": 229 + } + }, + "H080L20C05": { + "description": "Night Brown Black", + "hue": "80°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 50, + "g": 45, + "b": 37 + } + }, + "H080L20C10": { + "description": "Vanilla Bean Brown", + "hue": "80°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 54, + "g": 44, + "b": 29 + } + }, + "H080L30C05": { + "description": "Earth Black", + "hue": "80°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 73, + "g": 67, + "b": 59 + } + }, + "H080L30C10": { + "description": "Olive Black", + "hue": "80°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 75, + "g": 64, + "b": 49 + } + }, + "H080L30C20": { + "description": "Clove Yellow Brown", + "hue": "80°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 82, + "g": 63, + "b": 33 + } + }, + "H080L30C26": { + "description": "Smoked Oak Brown", + "hue": "80°", + "lightness": "30%", + "chromaticity": "26%", + "rgb": { + "r": 87, + "g": 63, + "b": 22 + } + }, + "H080L40C05": { + "description": "Office Grey", + "hue": "80°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 99, + "g": 93, + "b": 84 + } + }, + "H080L40C10": { + "description": "Stone Brown", + "hue": "80°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 102, + "g": 91, + "b": 77 + } + }, + "H080L40C20": { + "description": "Pimento Grain Brown", + "hue": "80°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 108, + "g": 87, + "b": 56 + } + }, + "H080L40C30": { + "description": "Ochre Green", + "hue": "80°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 114, + "g": 87, + "b": 40 + } + }, + "H080L40C40": { + "description": "Autumn Leaf Brown", + "hue": "80°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 122, + "g": 86, + "b": 14 + } + }, + "H080L50C05": { + "description": "Dusk Grey", + "hue": "80°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 123, + "g": 117, + "b": 108 + } + }, + "H080L50C10": { + "description": "Rye Brown", + "hue": "80°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 128, + "g": 116, + "b": 101 + } + }, + "H080L50C20": { + "description": "Greyish Yellow", + "hue": "80°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 135, + "g": 114, + "b": 84 + } + }, + "H080L50C30": { + "description": "Chili Green", + "hue": "80°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 141, + "g": 112, + "b": 64 + } + }, + "H080L50C40": { + "description": "Dirt Yellow", + "hue": "80°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 146, + "g": 110, + "b": 46 + } + }, + "H080L50C50": { + "description": "Chamois Yellow", + "hue": "80°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 152, + "g": 110, + "b": 25 + } + }, + "H080L60C05": { + "description": "Flannel Grey", + "hue": "80°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 150, + "g": 144, + "b": 135 + } + }, + "H080L60C10": { + "description": "Light Khaki", + "hue": "80°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 153, + "g": 141, + "b": 124 + } + }, + "H080L60C20": { + "description": "Spelt Grain Brown", + "hue": "80°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 163, + "g": 140, + "b": 107 + } + }, + "H080L60C30": { + "description": "Golden Quartz Ochre", + "hue": "80°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 170, + "g": 138, + "b": 88 + } + }, + "H080L60C40": { + "description": "Bamboo Yellow", + "hue": "80°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 174, + "g": 136, + "b": 75 + } + }, + "H080L60C50": { + "description": "Brass Yellow", + "hue": "80°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 181, + "g": 135, + "b": 53 + } + }, + "H080L60C60": { + "description": "Fig Mustard Yellow", + "hue": "80°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 187, + "g": 134, + "b": 16 + } + }, + "H080L60C70": { + "description": "Yellow Gold", + "hue": "80°", + "lightness": "60%", + "chromaticity": "70%", + "rgb": { + "r": 190, + "g": 132, + "b": 0 + } + }, + "H080L70C05": { + "description": "Garlic Beige", + "hue": "80°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 176, + "g": 170, + "b": 161 + } + }, + "H080L70C10": { + "description": "Fine Greige", + "hue": "80°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 181, + "g": 169, + "b": 152 + } + }, + "H080L70C20": { + "description": "Yellow Brown", + "hue": "80°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 191, + "g": 167, + "b": 133 + } + }, + "H080L70C30": { + "description": "Mustard Seed Beige", + "hue": "80°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 197, + "g": 165, + "b": 116 + } + }, + "H080L70C40": { + "description": "Diamond Yellow", + "hue": "80°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 206, + "g": 164, + "b": 97 + } + }, + "H080L70C50": { + "description": "Antique Brass", + "hue": "80°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 212, + "g": 162, + "b": 78 + } + }, + "H080L70C60": { + "description": "Courgette Yellow", + "hue": "80°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 218, + "g": 161, + "b": 53 + } + }, + "H080L70C70": { + "description": "Grapefruit Yellow", + "hue": "80°", + "lightness": "70%", + "chromaticity": "70%", + "rgb": { + "r": 223, + "g": 160, + "b": 26 + } + }, + "H080L70C80": { + "description": "Sunflower Yellow", + "hue": "80°", + "lightness": "70%", + "chromaticity": "80%", + "rgb": { + "r": 225, + "g": 156, + "b": 0 + } + }, + "H080L70C88": { + "description": "Arnica Yellow", + "hue": "80°", + "lightness": "70%", + "chromaticity": "88%", + "rgb": { + "r": 229, + "g": 155, + "b": 0 + } + }, + "H080L80C05": { + "description": "Micaceous Light Grey", + "hue": "80°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 205, + "g": 199, + "b": 189 + } + }, + "H080L80C10": { + "description": "Pastel Sand", + "hue": "80°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 213, + "g": 198, + "b": 180 + } + }, + "H080L80C20": { + "description": "Natural Rice Beige", + "hue": "80°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 220, + "g": 195, + "b": 159 + } + }, + "H080L80C30": { + "description": "Yellow Beige", + "hue": "80°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 227, + "g": 192, + "b": 141 + } + }, + "H080L80C40": { + "description": "Straw Yellow", + "hue": "80°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 236, + "g": 191, + "b": 122 + } + }, + "H080L80C50": { + "description": "Mirabelle Yellow", + "hue": "80°", + "lightness": "80%", + "chromaticity": "50%", + "rgb": { + "r": 243, + "g": 190, + "b": 103 + } + }, + "H080L80C60": { + "description": "Full Yellow", + "hue": "80°", + "lightness": "80%", + "chromaticity": "60%", + "rgb": { + "r": 249, + "g": 188, + "b": 79 + } + }, + "H080L80C70": { + "description": "Pear Yellow", + "hue": "80°", + "lightness": "80%", + "chromaticity": "70%", + "rgb": { + "r": 252, + "g": 185, + "b": 55 + } + }, + "H080L80C80": { + "description": "Fire Yellow", + "hue": "80°", + "lightness": "80%", + "chromaticity": "80%", + "rgb": { + "r": 255, + "g": 183, + "b": 11 + } + }, + "H080L80C90": { + "description": "Summer Yellow", + "hue": "80°", + "lightness": "80%", + "chromaticity": "90%", + "rgb": { + "r": 255, + "g": 183, + "b": 0 + } + }, + "H080L85C05": { + "description": "Wheat Flour White", + "hue": "80°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 221, + "g": 214, + "b": 202 + } + }, + "H080L85C10": { + "description": "Onion White", + "hue": "80°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 226, + "g": 213, + "b": 194 + } + }, + "H080L85C20": { + "description": "Nashi Pear Beige", + "hue": "80°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 237, + "g": 212, + "b": 177 + } + }, + "H080L85C30": { + "description": "Vespa Yellow", + "hue": "80°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 243, + "g": 209, + "b": 159 + } + }, + "H080L85C40": { + "description": "Puff Pastry Yellow", + "hue": "80°", + "lightness": "85%", + "chromaticity": "40%", + "rgb": { + "r": 252, + "g": 207, + "b": 139 + } + }, + "H080L90C05": { + "description": "Japanese White", + "hue": "80°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 238, + "g": 230, + "b": 217 + } + }, + "H080L90C10": { + "description": "Mushroom White", + "hue": "80°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 240, + "g": 225, + "b": 205 + } + }, + "H080L90C20": { + "description": "Macadamia Beige", + "hue": "80°", + "lightness": "90%", + "chromaticity": "20%", + "rgb": { + "r": 247, + "g": 223, + "b": 186 + } + }, + "H080L90C30": { + "description": "Horseradish Yellow", + "hue": "80°", + "lightness": "90%", + "chromaticity": "30%", + "rgb": { + "r": 255, + "g": 222, + "b": 169 + } + }, + "H080L93C05": { + "description": "Milk Star White", + "hue": "80°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 245, + "g": 237, + "b": 226 + } + }, + "H085L40C10": { + "description": "Mineral Green", + "hue": "85°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 102, + "g": 93, + "b": 78 + } + }, + "H085L40C20": { + "description": "Khaki Green", + "hue": "85°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 106, + "g": 90, + "b": 57 + } + }, + "H085L40C30": { + "description": "Moss Brown", + "hue": "85°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 113, + "g": 91, + "b": 46 + } + }, + "H085L50C10": { + "description": "Coriander Ochre", + "hue": "85°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 126, + "g": 116, + "b": 99 + } + }, + "H085L50C20": { + "description": "Pyrite Slate Green", + "hue": "85°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 134, + "g": 116, + "b": 82 + } + }, + "H085L50C30": { + "description": "Sepia Yellow", + "hue": "85°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 140, + "g": 115, + "b": 64 + } + }, + "H085L50C40": { + "description": "Marshy Green", + "hue": "85°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 142, + "g": 113, + "b": 46 + } + }, + "H085L50C50": { + "description": "Honey Yellow Green", + "hue": "85°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 147, + "g": 112, + "b": 22 + } + }, + "H085L60C10": { + "description": "Matte Olive", + "hue": "85°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 153, + "g": 143, + "b": 127 + } + }, + "H085L60C20": { + "description": "Pond Green", + "hue": "85°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 161, + "g": 142, + "b": 107 + } + }, + "H085L60C30": { + "description": "Wood Green", + "hue": "85°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 167, + "g": 140, + "b": 89 + } + }, + "H085L60C40": { + "description": "Lichen Green", + "hue": "85°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 172, + "g": 139, + "b": 70 + } + }, + "H085L60C50": { + "description": "Mineral Umber", + "hue": "85°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 177, + "g": 139, + "b": 50 + } + }, + "H085L60C60": { + "description": "Loden Yellow", + "hue": "85°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 182, + "g": 139, + "b": 19 + } + }, + "H085L70C10": { + "description": "Raffia Greige", + "hue": "85°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 179, + "g": 169, + "b": 150 + } + }, + "H085L70C20": { + "description": "Feldspar Grey", + "hue": "85°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 188, + "g": 168, + "b": 133 + } + }, + "H085L70C30": { + "description": "Hay Yellow", + "hue": "85°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 194, + "g": 167, + "b": 112 + } + }, + "H085L70C40": { + "description": "Winter Pear Beige", + "hue": "85°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 199, + "g": 165, + "b": 95 + } + }, + "H085L70C50": { + "description": "Autumn Apple Yellow", + "hue": "85°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 205, + "g": 164, + "b": 73 + } + }, + "H085L70C60": { + "description": "Pitmaston Pear Yellow", + "hue": "85°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 208, + "g": 163, + "b": 46 + } + }, + "H085L70C70": { + "description": "Immortelle Yellow", + "hue": "85°", + "lightness": "70%", + "chromaticity": "70%", + "rgb": { + "r": 212, + "g": 162, + "b": 7 + } + }, + "H085L70C75": { + "description": "Golden Beryl Yellow", + "hue": "85°", + "lightness": "70%", + "chromaticity": "75%", + "rgb": { + "r": 217, + "g": 164, + "b": 0 + } + }, + "H085L80C10": { + "description": "Velvet Beige", + "hue": "85°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 208, + "g": 197, + "b": 177 + } + }, + "H085L80C20": { + "description": "Mineral Beige", + "hue": "85°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 216, + "g": 196, + "b": 159 + } + }, + "H085L80C30": { + "description": "Moonlight Yellow", + "hue": "85°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 225, + "g": 195, + "b": 139 + } + }, + "H085L80C40": { + "description": "Table Pear Yellow", + "hue": "85°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 229, + "g": 194, + "b": 121 + } + }, + "H085L80C50": { + "description": "Fruit Yellow", + "hue": "85°", + "lightness": "80%", + "chromaticity": "50%", + "rgb": { + "r": 234, + "g": 192, + "b": 100 + } + }, + "H085L80C60": { + "description": "Adonis Rose Yellow", + "hue": "85°", + "lightness": "80%", + "chromaticity": "60%", + "rgb": { + "r": 239, + "g": 191, + "b": 77 + } + }, + "H085L80C70": { + "description": "Barberry Yellow", + "hue": "85°", + "lightness": "80%", + "chromaticity": "70%", + "rgb": { + "r": 243, + "g": 189, + "b": 50 + } + }, + "H085L80C80": { + "description": "Dandelion Yellow", + "hue": "85°", + "lightness": "80%", + "chromaticity": "80%", + "rgb": { + "r": 245, + "g": 187, + "b": 0 + } + }, + "H085L80C85": { + "description": "Decor Yellow", + "hue": "85°", + "lightness": "80%", + "chromaticity": "85%", + "rgb": { + "r": 246, + "g": 187, + "b": 0 + } + }, + "H085L85C10": { + "description": "Alabaster White", + "hue": "85°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 223, + "g": 212, + "b": 191 + } + }, + "H085L85C20": { + "description": "Light Blond", + "hue": "85°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 232, + "g": 211, + "b": 175 + } + }, + "H085L85C30": { + "description": "Willow-Flower Yellow", + "hue": "85°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 240, + "g": 210, + "b": 157 + } + }, + "H085L85C40": { + "description": "Light Ginger Yellow", + "hue": "85°", + "lightness": "85%", + "chromaticity": "40%", + "rgb": { + "r": 247, + "g": 210, + "b": 140 + } + }, + "H085L90C10": { + "description": "Tulip White", + "hue": "85°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 241, + "g": 229, + "b": 209 + } + }, + "H085L90C20": { + "description": "Alpine Berry Yellow", + "hue": "85°", + "lightness": "90%", + "chromaticity": "20%", + "rgb": { + "r": 247, + "g": 224, + "b": 186 + } + }, + "H085L90C30": { + "description": "Porcelain Yellow", + "hue": "85°", + "lightness": "90%", + "chromaticity": "30%", + "rgb": { + "r": 253, + "g": 221, + "b": 167 + } + }, + "H085L93C05": { + "description": "Vintage White", + "hue": "85°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 244, + "g": 239, + "b": 228 + } + }, + "H090L30C10": { + "description": "Limonite Brown", + "hue": "90°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 75, + "g": 68, + "b": 51 + } + }, + "H090L30C20": { + "description": "Bark Green", + "hue": "90°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 81, + "g": 68, + "b": 33 + } + }, + "H090L40C10": { + "description": "Boulder Brown", + "hue": "90°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 101, + "g": 94, + "b": 78 + } + }, + "H090L40C20": { + "description": "Plum Green", + "hue": "90°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 105, + "g": 92, + "b": 57 + } + }, + "H090L40C30": { + "description": "Vine Leaf Green", + "hue": "90°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 110, + "g": 94, + "b": 44 + } + }, + "H090L50C10": { + "description": "Graphite Grey Green", + "hue": "90°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 124, + "g": 118, + "b": 102 + } + }, + "H090L50C20": { + "description": "Pesto Green", + "hue": "90°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 129, + "g": 117, + "b": 83 + } + }, + "H090L50C30": { + "description": "Giant Cactus Green", + "hue": "90°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 136, + "g": 118, + "b": 63 + } + }, + "H090L50C40": { + "description": "Aubergine Green", + "hue": "90°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 139, + "g": 118, + "b": 44 + } + }, + "H090L60C10": { + "description": "Oyster Grey", + "hue": "90°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 150, + "g": 143, + "b": 127 + } + }, + "H090L60C20": { + "description": "Manzanilla Olive", + "hue": "90°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 158, + "g": 143, + "b": 107 + } + }, + "H090L60C30": { + "description": "Camouflage Olive", + "hue": "90°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 162, + "g": 143, + "b": 92 + } + }, + "H090L60C40": { + "description": "Laurel Green", + "hue": "90°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 165, + "g": 141, + "b": 69 + } + }, + "H090L60C50": { + "description": "Faint Green", + "hue": "90°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 165, + "g": 139, + "b": 44 + } + }, + "H090L60C60": { + "description": "Titanite Yellow", + "hue": "90°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 173, + "g": 143, + "b": 15 + } + }, + "H090L70C10": { + "description": "Dusty Yellow", + "hue": "90°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 178, + "g": 170, + "b": 152 + } + }, + "H090L70C20": { + "description": "Barbados Beige", + "hue": "90°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 184, + "g": 169, + "b": 131 + } + }, + "H090L70C30": { + "description": "Rhubarb Leaf Green", + "hue": "90°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 188, + "g": 168, + "b": 114 + } + }, + "H090L70C40": { + "description": "Hedgehog Cactus Yellow Green", + "hue": "90°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 196, + "g": 170, + "b": 94 + } + }, + "H090L70C50": { + "description": "Gooseberry Yellow", + "hue": "90°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 199, + "g": 169, + "b": 74 + } + }, + "H090L70C60": { + "description": "Bud Green", + "hue": "90°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 202, + "g": 168, + "b": 47 + } + }, + "H090L70C70": { + "description": "Catkin Yellow", + "hue": "90°", + "lightness": "70%", + "chromaticity": "70%", + "rgb": { + "r": 204, + "g": 168, + "b": 0 + } + }, + "H090L70C80": { + "description": "Prehnite Yellow", + "hue": "90°", + "lightness": "70%", + "chromaticity": "80%", + "rgb": { + "r": 208, + "g": 167, + "b": 0 + } + }, + "H090L80C10": { + "description": "Light Beige", + "hue": "90°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 207, + "g": 197, + "b": 176 + } + }, + "H090L80C20": { + "description": "Champagne Beige", + "hue": "90°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 212, + "g": 196, + "b": 158 + } + }, + "H090L80C30": { + "description": "Lemon Sorbet Yellow", + "hue": "90°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 220, + "g": 198, + "b": 142 + } + }, + "H090L80C40": { + "description": "Blossom Yellow", + "hue": "90°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 225, + "g": 199, + "b": 125 + } + }, + "H090L80C50": { + "description": "Tasman Honey Yellow", + "hue": "90°", + "lightness": "80%", + "chromaticity": "50%", + "rgb": { + "r": 230, + "g": 197, + "b": 98 + } + }, + "H090L80C60": { + "description": "New Yellow", + "hue": "90°", + "lightness": "80%", + "chromaticity": "60%", + "rgb": { + "r": 232, + "g": 194, + "b": 71 + } + }, + "H090L80C70": { + "description": "Fashion Yellow", + "hue": "90°", + "lightness": "80%", + "chromaticity": "70%", + "rgb": { + "r": 237, + "g": 197, + "b": 55 + } + }, + "H090L80C80": { + "description": "Poster Yellow", + "hue": "90°", + "lightness": "80%", + "chromaticity": "80%", + "rgb": { + "r": 236, + "g": 193, + "b": 0 + } + }, + "H090L80C90": { + "description": "Contrasting Yellow", + "hue": "90°", + "lightness": "80%", + "chromaticity": "90%", + "rgb": { + "r": 242, + "g": 194, + "b": 0 + } + }, + "H090L85C05": { + "description": "Pepper White", + "hue": "90°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 219, + "g": 214, + "b": 203 + } + }, + "H090L85C10": { + "description": "Paella Natural White", + "hue": "90°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 225, + "g": 215, + "b": 194 + } + }, + "H090L85C20": { + "description": "Cider Yellow", + "hue": "90°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 231, + "g": 214, + "b": 175 + } + }, + "H090L85C30": { + "description": "Palm Sugar Yellow", + "hue": "90°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 237, + "g": 214, + "b": 157 + } + }, + "H090L85C40": { + "description": "March Yellow", + "hue": "90°", + "lightness": "85%", + "chromaticity": "40%", + "rgb": { + "r": 241, + "g": 212, + "b": 138 + } + }, + "H090L85C50": { + "description": "Oriole Yellow", + "hue": "90°", + "lightness": "85%", + "chromaticity": "50%", + "rgb": { + "r": 246, + "g": 213, + "b": 118 + } + }, + "H090L90C05": { + "description": "Marzipan White", + "hue": "90°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 234, + "g": 228, + "b": 216 + } + }, + "H090L90C10": { + "description": "Primrose White", + "hue": "90°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 236, + "g": 228, + "b": 208 + } + }, + "H090L90C20": { + "description": "Cream Yellow", + "hue": "90°", + "lightness": "90%", + "chromaticity": "20%", + "rgb": { + "r": 244, + "g": 227, + "b": 187 + } + }, + "H090L90C30": { + "description": "Wax Yellow", + "hue": "90°", + "lightness": "90%", + "chromaticity": "30%", + "rgb": { + "r": 248, + "g": 225, + "b": 168 + } + }, + "H090L90C40": { + "description": "Lemon Cream", + "hue": "90°", + "lightness": "90%", + "chromaticity": "40%", + "rgb": { + "r": 254, + "g": 225, + "b": 147 + } + }, + "H090L90C50": { + "description": "Tiger Yellow", + "hue": "90°", + "lightness": "90%", + "chromaticity": "50%", + "rgb": { + "r": 255, + "g": 222, + "b": 126 + } + }, + "H090L90C60": { + "description": "Sunrose Yellow", + "hue": "90°", + "lightness": "90%", + "chromaticity": "60%", + "rgb": { + "r": 255, + "g": 219, + "b": 103 + } + }, + "H090L93C05": { + "description": "Cream White", + "hue": "90°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 242, + "g": 238, + "b": 226 + } + }, + "H095L40C10": { + "description": "Shady Green", + "hue": "95°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 99, + "g": 93, + "b": 76 + } + }, + "H095L40C20": { + "description": "Forest Green", + "hue": "95°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 102, + "g": 91, + "b": 56 + } + }, + "H095L40C30": { + "description": "Bean Green", + "hue": "95°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 104, + "g": 92, + "b": 39 + } + }, + "H095L50C10": { + "description": "Dull Olive", + "hue": "95°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 122, + "g": 117, + "b": 100 + } + }, + "H095L50C20": { + "description": "Cabbage Green", + "hue": "95°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 128, + "g": 117, + "b": 83 + } + }, + "H095L50C30": { + "description": "Caper Green", + "hue": "95°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 132, + "g": 118, + "b": 64 + } + }, + "H095L50C40": { + "description": "Garden Lettuce Green", + "hue": "95°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 135, + "g": 118, + "b": 43 + } + }, + "H095L50C50": { + "description": "Artichoke Green", + "hue": "95°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 137, + "g": 119, + "b": 20 + } + }, + "H095L60C10": { + "description": "Pale Green Grey", + "hue": "95°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 150, + "g": 144, + "b": 126 + } + }, + "H095L60C20": { + "description": "Pale Green", + "hue": "95°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 154, + "g": 143, + "b": 108 + } + }, + "H095L60C30": { + "description": "Cypress Green", + "hue": "95°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 158, + "g": 143, + "b": 87 + } + }, + "H095L60C40": { + "description": "Grape Green", + "hue": "95°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 161, + "g": 143, + "b": 68 + } + }, + "H095L60C50": { + "description": "Gooseberry Green", + "hue": "95°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 163, + "g": 145, + "b": 47 + } + }, + "H095L60C60": { + "description": "Guava Green", + "hue": "95°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 161, + "g": 141, + "b": 13 + } + }, + "H095L60C70": { + "description": "Romaine Green", + "hue": "95°", + "lightness": "60%", + "chromaticity": "70%", + "rgb": { + "r": 163, + "g": 142, + "b": 0 + } + }, + "H095L70C10": { + "description": "Sand Grey", + "hue": "95°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 178, + "g": 171, + "b": 152 + } + }, + "H095L70C20": { + "description": "Crocodile Green", + "hue": "95°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 183, + "g": 172, + "b": 135 + } + }, + "H095L70C30": { + "description": "Chicory Green", + "hue": "95°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 187, + "g": 171, + "b": 117 + } + }, + "H095L70C40": { + "description": "Banana Green", + "hue": "95°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 189, + "g": 170, + "b": 93 + } + }, + "H095L70C50": { + "description": "Star Fruit Yellow Green", + "hue": "95°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 190, + "g": 170, + "b": 74 + } + }, + "H095L70C60": { + "description": "Papaya Yellow Green", + "hue": "95°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 190, + "g": 169, + "b": 50 + } + }, + "H095L70C70": { + "description": "Bronze Green", + "hue": "95°", + "lightness": "70%", + "chromaticity": "70%", + "rgb": { + "r": 195, + "g": 170, + "b": 0 + } + }, + "H095L80C10": { + "description": "Sapphire Light Yellow", + "hue": "95°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 205, + "g": 199, + "b": 180 + } + }, + "H095L80C20": { + "description": "Pale Olive", + "hue": "95°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 211, + "g": 199, + "b": 161 + } + }, + "H095L80C30": { + "description": "Asparagus Yellow", + "hue": "95°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 218, + "g": 201, + "b": 142 + } + }, + "H095L80C40": { + "description": "Pea Green", + "hue": "95°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 221, + "g": 200, + "b": 122 + } + }, + "H095L80C50": { + "description": "Williams Pear Yellow", + "hue": "95°", + "lightness": "80%", + "chromaticity": "50%", + "rgb": { + "r": 221, + "g": 199, + "b": 101 + } + }, + "H095L80C60": { + "description": "Greenish Yellow", + "hue": "95°", + "lightness": "80%", + "chromaticity": "60%", + "rgb": { + "r": 219, + "g": 196, + "b": 77 + } + }, + "H095L80C70": { + "description": "Mimosa Yellow", + "hue": "95°", + "lightness": "80%", + "chromaticity": "70%", + "rgb": { + "r": 223, + "g": 198, + "b": 51 + } + }, + "H095L80C80": { + "description": "Sorbet Yellow", + "hue": "95°", + "lightness": "80%", + "chromaticity": "80%", + "rgb": { + "r": 218, + "g": 193, + "b": 0 + } + }, + "H095L85C10": { + "description": "Salsify White", + "hue": "95°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 222, + "g": 216, + "b": 196 + } + }, + "H095L85C20": { + "description": "Dull Light Yellow", + "hue": "95°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 229, + "g": 217, + "b": 180 + } + }, + "H095L85C30": { + "description": "Leaf Yellow", + "hue": "95°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 233, + "g": 215, + "b": 158 + } + }, + "H095L85C40": { + "description": "Natural Yellow", + "hue": "95°", + "lightness": "85%", + "chromaticity": "40%", + "rgb": { + "r": 238, + "g": 216, + "b": 139 + } + }, + "H095L85C50": { + "description": "Sport Yellow", + "hue": "95°", + "lightness": "85%", + "chromaticity": "50%", + "rgb": { + "r": 239, + "g": 214, + "b": 120 + } + }, + "H095L90C10": { + "description": "Atlas White", + "hue": "95°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 236, + "g": 228, + "b": 206 + } + }, + "H095L90C20": { + "description": "Pearl Yellow", + "hue": "95°", + "lightness": "90%", + "chromaticity": "20%", + "rgb": { + "r": 241, + "g": 227, + "b": 188 + } + }, + "H095L90C30": { + "description": "Lemon Ice Yellow", + "hue": "95°", + "lightness": "90%", + "chromaticity": "30%", + "rgb": { + "r": 246, + "g": 226, + "b": 167 + } + }, + "H095L90C40": { + "description": "Fresh Yellow", + "hue": "95°", + "lightness": "90%", + "chromaticity": "40%", + "rgb": { + "r": 247, + "g": 225, + "b": 144 + } + }, + "H095L90C50": { + "description": "Luminous Yellow", + "hue": "95°", + "lightness": "90%", + "chromaticity": "50%", + "rgb": { + "r": 254, + "g": 227, + "b": 127 + } + }, + "H095L90C59": { + "description": "Dynamic Yellow", + "hue": "95°", + "lightness": "90%", + "chromaticity": "59%", + "rgb": { + "r": 255, + "g": 227, + "b": 109 + } + }, + "H095L93C05": { + "description": "Crepe Silk White", + "hue": "95°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 240, + "g": 238, + "b": 227 + } + }, + "H100L20C05": { + "description": "Night Green", + "hue": "100°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 48, + "g": 47, + "b": 39 + } + }, + "H100L30C05": { + "description": "Volcanic Stone Green", + "hue": "100°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 69, + "g": 67, + "b": 59 + } + }, + "H100L30C10": { + "description": "Vermilion Green", + "hue": "100°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 71, + "g": 66, + "b": 48 + } + }, + "H100L30C20": { + "description": "Uniform Green", + "hue": "100°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 76, + "g": 70, + "b": 35 + } + }, + "H100L40C05": { + "description": "Dove Grey", + "hue": "100°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 93, + "g": 91, + "b": 83 + } + }, + "H100L40C10": { + "description": "Slick Green", + "hue": "100°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 97, + "g": 93, + "b": 76 + } + }, + "H100L40C20": { + "description": "Broccoli Green", + "hue": "100°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 99, + "g": 93, + "b": 59 + } + }, + "H100L40C30": { + "description": "High Forest Green", + "hue": "100°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 102, + "g": 93, + "b": 37 + } + }, + "H100L40C40": { + "description": "Brussels Sprout Green", + "hue": "100°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 102, + "g": 94, + "b": 13 + } + }, + "H100L50C05": { + "description": "Forest Floor Khaki", + "hue": "100°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 120, + "g": 118, + "b": 109 + } + }, + "H100L50C10": { + "description": "Lapwing Grey Green", + "hue": "100°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 122, + "g": 117, + "b": 98 + } + }, + "H100L50C20": { + "description": "Green Woodpecker Olive", + "hue": "100°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 125, + "g": 120, + "b": 83 + } + }, + "H100L50C30": { + "description": "Steppe Green", + "hue": "100°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 125, + "g": 118, + "b": 64 + } + }, + "H100L50C40": { + "description": "Faience Green", + "hue": "100°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 129, + "g": 118, + "b": 43 + } + }, + "H100L50C50": { + "description": "Tool Green", + "hue": "100°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 127, + "g": 119, + "b": 17 + } + }, + "H100L60C05": { + "description": "Smoky Grey Green", + "hue": "100°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 147, + "g": 144, + "b": 135 + } + }, + "H100L60C10": { + "description": "Olivine Grey", + "hue": "100°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 146, + "g": 142, + "b": 124 + } + }, + "H100L60C20": { + "description": "Grey-Headed Woodpecker Green", + "hue": "100°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 152, + "g": 145, + "b": 108 + } + }, + "H100L60C30": { + "description": "Cardamom Green", + "hue": "100°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 152, + "g": 144, + "b": 87 + } + }, + "H100L60C40": { + "description": "Lettuce Green", + "hue": "100°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 155, + "g": 146, + "b": 70 + } + }, + "H100L60C50": { + "description": "Art Nouveau Green", + "hue": "100°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 156, + "g": 147, + "b": 47 + } + }, + "H100L60C60": { + "description": "Smoothie Green", + "hue": "100°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 152, + "g": 142, + "b": 1 + } + }, + "H100L70C05": { + "description": "Smoky White", + "hue": "100°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 174, + "g": 173, + "b": 163 + } + }, + "H100L70C10": { + "description": "Anise Grey Yellow", + "hue": "100°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 176, + "g": 172, + "b": 152 + } + }, + "H100L70C20": { + "description": "Sand Brown", + "hue": "100°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 179, + "g": 172, + "b": 133 + } + }, + "H100L70C30": { + "description": "Hippie Green", + "hue": "100°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 180, + "g": 172, + "b": 113 + } + }, + "H100L70C40": { + "description": "Linden Green", + "hue": "100°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 184, + "g": 174, + "b": 96 + } + }, + "H100L70C50": { + "description": "Dill Green", + "hue": "100°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 182, + "g": 172, + "b": 75 + } + }, + "H100L70C60": { + "description": "New Green", + "hue": "100°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 181, + "g": 172, + "b": 49 + } + }, + "H100L80C05": { + "description": "Natural Grey", + "hue": "100°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 200, + "g": 199, + "b": 188 + } + }, + "H100L80C10": { + "description": "Pale Beige", + "hue": "100°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 204, + "g": 199, + "b": 177 + } + }, + "H100L80C20": { + "description": "Soft Green", + "hue": "100°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 210, + "g": 202, + "b": 161 + } + }, + "H100L80C30": { + "description": "Silver Green", + "hue": "100°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 210, + "g": 200, + "b": 140 + } + }, + "H100L80C40": { + "description": "March Tulip Green", + "hue": "100°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 212, + "g": 201, + "b": 120 + } + }, + "H100L80C50": { + "description": "Light Olive", + "hue": "100°", + "lightness": "80%", + "chromaticity": "50%", + "rgb": { + "r": 212, + "g": 201, + "b": 100 + } + }, + "H100L80C60": { + "description": "Advertisement Green", + "hue": "100°", + "lightness": "80%", + "chromaticity": "60%", + "rgb": { + "r": 216, + "g": 203, + "b": 75 + } + }, + "H100L80C70": { + "description": "LED Green", + "hue": "100°", + "lightness": "80%", + "chromaticity": "70%", + "rgb": { + "r": 216, + "g": 203, + "b": 50 + } + }, + "H100L80C80": { + "description": "March Green", + "hue": "100°", + "lightness": "80%", + "chromaticity": "80%", + "rgb": { + "r": 212, + "g": 204, + "b": 0 + } + }, + "H100L85C05": { + "description": "Celery White", + "hue": "100°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 219, + "g": 217, + "b": 205 + } + }, + "H100L85C10": { + "description": "Palm Heart Cream", + "hue": "100°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 221, + "g": 216, + "b": 194 + } + }, + "H100L85C20": { + "description": "Beige Green", + "hue": "100°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 224, + "g": 216, + "b": 176 + } + }, + "H100L85C30": { + "description": "Crystal Yellow", + "hue": "100°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 228, + "g": 217, + "b": 159 + } + }, + "H100L90C05": { + "description": "Brilliant Yellow", + "hue": "100°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 232, + "g": 229, + "b": 216 + } + }, + "H100L90C10": { + "description": "Elderberry White", + "hue": "100°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 234, + "g": 229, + "b": 207 + } + }, + "H100L90C20": { + "description": "Designer Cream Yellow", + "hue": "100°", + "lightness": "90%", + "chromaticity": "20%", + "rgb": { + "r": 239, + "g": 229, + "b": 187 + } + }, + "H100L90C30": { + "description": "Boxwood Yellow", + "hue": "100°", + "lightness": "90%", + "chromaticity": "30%", + "rgb": { + "r": 239, + "g": 228, + "b": 165 + } + }, + "H100L90C40": { + "description": "Primrose Yellow", + "hue": "100°", + "lightness": "90%", + "chromaticity": "40%", + "rgb": { + "r": 243, + "g": 230, + "b": 146 + } + }, + "H100L90C50": { + "description": "Spring Yellow", + "hue": "100°", + "lightness": "90%", + "chromaticity": "50%", + "rgb": { + "r": 242, + "g": 228, + "b": 125 + } + }, + "H100L93C05": { + "description": "Fog White", + "hue": "100°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 241, + "g": 239, + "b": 228 + } + }, + "H110L20C10": { + "description": "Metal Construction Green", + "hue": "110°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 47, + "g": 46, + "b": 31 + } + }, + "H110L30C10": { + "description": "Dark Olive Green", + "hue": "110°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 69, + "g": 70, + "b": 54 + } + }, + "H110L30C20": { + "description": "Nori Seaweed Green", + "hue": "110°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 70, + "g": 72, + "b": 38 + } + }, + "H110L40C10": { + "description": "Stump Green", + "hue": "110°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 94, + "g": 95, + "b": 77 + } + }, + "H110L40C20": { + "description": "Antique Green", + "hue": "110°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 92, + "g": 93, + "b": 57 + } + }, + "H110L40C30": { + "description": "Gardener Green", + "hue": "110°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 94, + "g": 96, + "b": 42 + } + }, + "H110L40C40": { + "description": "Kirchner Green", + "hue": "110°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 92, + "g": 97, + "b": 22 + } + }, + "H110L50C10": { + "description": "November Green", + "hue": "110°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 118, + "g": 119, + "b": 100 + } + }, + "H110L50C20": { + "description": "Alexandrite Green", + "hue": "110°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 118, + "g": 120, + "b": 83 + } + }, + "H110L50C30": { + "description": "Plant Green", + "hue": "110°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 119, + "g": 122, + "b": 68 + } + }, + "H110L50C40": { + "description": "Ripe Green", + "hue": "110°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 116, + "g": 122, + "b": 44 + } + }, + "H110L50C50": { + "description": "Portuguese Green", + "hue": "110°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 113, + "g": 121, + "b": 16 + } + }, + "H110L50C55": { + "description": "Flag Green", + "hue": "110°", + "lightness": "50%", + "chromaticity": "55%", + "rgb": { + "r": 113, + "g": 124, + "b": 0 + } + }, + "H110L60C10": { + "description": "Grey Green", + "hue": "110°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 144, + "g": 145, + "b": 126 + } + }, + "H110L60C20": { + "description": "Peapod Green", + "hue": "110°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 142, + "g": 145, + "b": 109 + } + }, + "H110L60C30": { + "description": "Indian Green", + "hue": "110°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 145, + "g": 149, + "b": 95 + } + }, + "H110L60C40": { + "description": "Winterpea Green", + "hue": "110°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 142, + "g": 149, + "b": 73 + } + }, + "H110L60C50": { + "description": "Airline Green", + "hue": "110°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 140, + "g": 150, + "b": 50 + } + }, + "H110L60C60": { + "description": "Woodruff Green", + "hue": "110°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 139, + "g": 153, + "b": 22 + } + }, + "H110L60C65": { + "description": "Traffic Light Green", + "hue": "110°", + "lightness": "60%", + "chromaticity": "65%", + "rgb": { + "r": 140, + "g": 153, + "b": 0 + } + }, + "H110L70C10": { + "description": "Chinese Tea Green", + "hue": "110°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 172, + "g": 173, + "b": 152 + } + }, + "H110L70C20": { + "description": "Wall Green", + "hue": "110°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 171, + "g": 174, + "b": 134 + } + }, + "H110L70C30": { + "description": "Wasabi Green", + "hue": "110°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 169, + "g": 173, + "b": 116 + } + }, + "H110L70C40": { + "description": "April Green", + "hue": "110°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 169, + "g": 176, + "b": 98 + } + }, + "H110L70C50": { + "description": "Delaunay Green", + "hue": "110°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 170, + "g": 179, + "b": 80 + } + }, + "H110L70C60": { + "description": "Lime Green", + "hue": "110°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 166, + "g": 178, + "b": 55 + } + }, + "H110L70C70": { + "description": "Chlorophyll Green", + "hue": "110°", + "lightness": "70%", + "chromaticity": "70%", + "rgb": { + "r": 158, + "g": 177, + "b": 0 + } + }, + "H110L70C77": { + "description": "Marker Green", + "hue": "110°", + "lightness": "70%", + "chromaticity": "77%", + "rgb": { + "r": 157, + "g": 175, + "b": 0 + } + }, + "H110L80C10": { + "description": "Spring Grey", + "hue": "110°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 197, + "g": 198, + "b": 179 + } + }, + "H110L80C20": { + "description": "Mint Ice Green", + "hue": "110°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 201, + "g": 202, + "b": 161 + } + }, + "H110L80C30": { + "description": "Springtide Green", + "hue": "110°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 200, + "g": 203, + "b": 142 + } + }, + "H110L80C40": { + "description": "Lime Sorbet Green", + "hue": "110°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 198, + "g": 205, + "b": 125 + } + }, + "H110L80C50": { + "description": "Easter Green", + "hue": "110°", + "lightness": "80%", + "chromaticity": "50%", + "rgb": { + "r": 199, + "g": 207, + "b": 104 + } + }, + "H110L80C60": { + "description": "Clown Green", + "hue": "110°", + "lightness": "80%", + "chromaticity": "60%", + "rgb": { + "r": 196, + "g": 208, + "b": 86 + } + }, + "H110L80C70": { + "description": "Juice Green", + "hue": "110°", + "lightness": "80%", + "chromaticity": "70%", + "rgb": { + "r": 192, + "g": 208, + "b": 54 + } + }, + "H110L85C10": { + "description": "Veltliner White", + "hue": "110°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 215, + "g": 216, + "b": 195 + } + }, + "H110L85C20": { + "description": "Kohlrabi Green", + "hue": "110°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 217, + "g": 217, + "b": 177 + } + }, + "H110L85C30": { + "description": "Burgundy Grey", + "hue": "110°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 218, + "g": 219, + "b": 160 + } + }, + "H110L85C40": { + "description": "Wax Green", + "hue": "110°", + "lightness": "85%", + "chromaticity": "40%", + "rgb": { + "r": 216, + "g": 219, + "b": 139 + } + }, + "H110L85C50": { + "description": "Sprout Green", + "hue": "110°", + "lightness": "85%", + "chromaticity": "50%", + "rgb": { + "r": 214, + "g": 219, + "b": 118 + } + }, + "H110L90C05": { + "description": "Cotton White", + "hue": "110°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 228, + "g": 227, + "b": 216 + } + }, + "H110L90C10": { + "description": "Light Fern Green", + "hue": "110°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 230, + "g": 230, + "b": 208 + } + }, + "H110L90C20": { + "description": "Lily Scent Green", + "hue": "110°", + "lightness": "90%", + "chromaticity": "20%", + "rgb": { + "r": 230, + "g": 230, + "b": 188 + } + }, + "H110L90C30": { + "description": "Kiwi Ice Cream Green", + "hue": "110°", + "lightness": "90%", + "chromaticity": "30%", + "rgb": { + "r": 229, + "g": 231, + "b": 167 + } + }, + "H110L90C40": { + "description": "Lime Juice Green", + "hue": "110°", + "lightness": "90%", + "chromaticity": "40%", + "rgb": { + "r": 229, + "g": 232, + "b": 150 + } + }, + "H110L93C05": { + "description": "Raffia White", + "hue": "110°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 238, + "g": 238, + "b": 227 + } + }, + "H110L96C02": { + "description": "Laundry White", + "hue": "110°", + "lightness": "96%", + "chromaticity": "2%", + "rgb": { + "r": 246, + "g": 247, + "b": 241 + } + }, + "H120L30C05": { + "description": "Racing Green", + "hue": "120°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 65, + "g": 67, + "b": 58 + } + }, + "H120L30C10": { + "description": "Country House Green", + "hue": "120°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 65, + "g": 70, + "b": 52 + } + }, + "H120L30C20": { + "description": "Avocado Dark Green", + "hue": "120°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 62, + "g": 72, + "b": 38 + } + }, + "H120L40C05": { + "description": "English Green", + "hue": "120°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 90, + "g": 92, + "b": 83 + } + }, + "H120L40C10": { + "description": "Almond Green", + "hue": "120°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 89, + "g": 94, + "b": 76 + } + }, + "H120L40C20": { + "description": "Cactus Green", + "hue": "120°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 86, + "g": 96, + "b": 61 + } + }, + "H120L40C30": { + "description": "Basil Green", + "hue": "120°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 84, + "g": 98, + "b": 46 + } + }, + "H120L40C40": { + "description": "Pepper Green", + "hue": "120°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 78, + "g": 99, + "b": 20 + } + }, + "H120L50C05": { + "description": "Smoke Green", + "hue": "120°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 117, + "g": 118, + "b": 108 + } + }, + "H120L50C10": { + "description": "Velvet Green Grey", + "hue": "120°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 115, + "g": 120, + "b": 102 + } + }, + "H120L50C20": { + "description": "Parrot Green", + "hue": "120°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 113, + "g": 123, + "b": 86 + } + }, + "H120L50C30": { + "description": "Quartz Green", + "hue": "120°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 110, + "g": 124, + "b": 69 + } + }, + "H120L50C40": { + "description": "Hedge Green", + "hue": "120°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 105, + "g": 125, + "b": 54 + } + }, + "H120L50C50": { + "description": "Birch Leaf Green", + "hue": "120°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 99, + "g": 126, + "b": 29 + } + }, + "H120L60C05": { + "description": "Bluish Grey", + "hue": "120°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 146, + "g": 148, + "b": 137 + } + }, + "H120L60C10": { + "description": "Lavender Leaf Green", + "hue": "120°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 140, + "g": 145, + "b": 128 + } + }, + "H120L60C20": { + "description": "Cider Pear Green", + "hue": "120°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 138, + "g": 148, + "b": 111 + } + }, + "H120L60C30": { + "description": "Vesuvian Green", + "hue": "120°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 135, + "g": 152, + "b": 96 + } + }, + "H120L60C40": { + "description": "Bamboo Grass Green", + "hue": "120°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 130, + "g": 153, + "b": 76 + } + }, + "H120L60C50": { + "description": "Aloe Vera Green", + "hue": "120°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 126, + "g": 155, + "b": 57 + } + }, + "H120L60C60": { + "description": "Mamba Green", + "hue": "120°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 119, + "g": 154, + "b": 32 + } + }, + "H120L60C63": { + "description": "Luminescent Green", + "hue": "120°", + "lightness": "60%", + "chromaticity": "63%", + "rgb": { + "r": 118, + "g": 156, + "b": 24 + } + }, + "H120L70C05": { + "description": "Laurel Grey", + "hue": "120°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 170, + "g": 172, + "b": 162 + } + }, + "H120L70C10": { + "description": "Nile Green", + "hue": "120°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 169, + "g": 173, + "b": 153 + } + }, + "H120L70C20": { + "description": "Filigree Green", + "hue": "120°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 165, + "g": 175, + "b": 137 + } + }, + "H120L70C30": { + "description": "Serpentine Green", + "hue": "120°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 162, + "g": 179, + "b": 122 + } + }, + "H120L70C40": { + "description": "Light Birch Green", + "hue": "120°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 157, + "g": 181, + "b": 103 + } + }, + "H120L70C50": { + "description": "Clematis Green", + "hue": "120°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 152, + "g": 182, + "b": 82 + } + }, + "H120L70C60": { + "description": "Tourmaline Green", + "hue": "120°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 145, + "g": 179, + "b": 60 + } + }, + "H120L70C70": { + "description": "Cocktail Green", + "hue": "120°", + "lightness": "70%", + "chromaticity": "70%", + "rgb": { + "r": 142, + "g": 184, + "b": 38 + } + }, + "H120L70C75": { + "description": "Brilliant Green", + "hue": "120°", + "lightness": "70%", + "chromaticity": "75%", + "rgb": { + "r": 136, + "g": 180, + "b": 7 + } + }, + "H120L80C05": { + "description": "Dust Green", + "hue": "120°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 198, + "g": 200, + "b": 190 + } + }, + "H120L80C10": { + "description": "Jugendstil Green", + "hue": "120°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 195, + "g": 200, + "b": 179 + } + }, + "H120L80C20": { + "description": "Avocado Cream", + "hue": "120°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 194, + "g": 205, + "b": 165 + } + }, + "H120L80C30": { + "description": "Natural Green", + "hue": "120°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 188, + "g": 205, + "b": 145 + } + }, + "H120L80C40": { + "description": "Summer Green", + "hue": "120°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 185, + "g": 208, + "b": 128 + } + }, + "H120L80C50": { + "description": "Fashion Green", + "hue": "120°", + "lightness": "80%", + "chromaticity": "50%", + "rgb": { + "r": 179, + "g": 210, + "b": 109 + } + }, + "H120L80C60": { + "description": "Neon Green", + "hue": "120°", + "lightness": "80%", + "chromaticity": "60%", + "rgb": { + "r": 176, + "g": 212, + "b": 93 + } + }, + "H120L85C05": { + "description": "Chalk Green", + "hue": "120°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 214, + "g": 216, + "b": 205 + } + }, + "H120L85C10": { + "description": "Light Feather Green", + "hue": "120°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 211, + "g": 217, + "b": 197 + } + }, + "H120L85C20": { + "description": "Lake Green", + "hue": "120°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 210, + "g": 219, + "b": 180 + } + }, + "H120L85C30": { + "description": "Aqua Green", + "hue": "120°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 206, + "g": 220, + "b": 160 + } + }, + "H120L90C05": { + "description": "Lily of the Valley White", + "hue": "120°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 225, + "g": 227, + "b": 215 + } + }, + "H120L90C10": { + "description": "Pale Pistachio", + "hue": "120°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 227, + "g": 231, + "b": 209 + } + }, + "H120L90C20": { + "description": "Kiwi Sorbet Green", + "hue": "120°", + "lightness": "90%", + "chromaticity": "20%", + "rgb": { + "r": 222, + "g": 232, + "b": 190 + } + }, + "H120L90C30": { + "description": "Ice Cold Green", + "hue": "120°", + "lightness": "90%", + "chromaticity": "30%", + "rgb": { + "r": 217, + "g": 235, + "b": 172 + } + }, + "H120L93C05": { + "description": "Touch Of White Green", + "hue": "120°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 236, + "g": 239, + "b": 227 + } + }, + "H130L30C10": { + "description": "Arame Seaweed Green", + "hue": "130°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 63, + "g": 70, + "b": 53 + } + }, + "H130L30C20": { + "description": "Kelp Green", + "hue": "130°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 57, + "g": 72, + "b": 39 + } + }, + "H130L40C10": { + "description": "Soft Olive", + "hue": "130°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 89, + "g": 96, + "b": 79 + } + }, + "H130L40C20": { + "description": "Alpine Lake Green", + "hue": "130°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 79, + "g": 96, + "b": 62 + } + }, + "H130L40C30": { + "description": "Gemstone Green", + "hue": "130°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 75, + "g": 99, + "b": 49 + } + }, + "H130L50C10": { + "description": "Dubuffet Green", + "hue": "130°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 111, + "g": 119, + "b": 102 + } + }, + "H130L50C20": { + "description": "Spanish Green", + "hue": "130°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 106, + "g": 123, + "b": 89 + } + }, + "H130L50C30": { + "description": "Algae Green", + "hue": "130°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 97, + "g": 125, + "b": 72 + } + }, + "H130L50C40": { + "description": "Hot Pepper Green", + "hue": "130°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 89, + "g": 128, + "b": 57 + } + }, + "H130L50C50": { + "description": "Emerald Clear Green", + "hue": "130°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 79, + "g": 129, + "b": 41 + } + }, + "H130L60C10": { + "description": "Matte Sage Green", + "hue": "130°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 138, + "g": 147, + "b": 129 + } + }, + "H130L60C20": { + "description": "Old Green", + "hue": "130°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 131, + "g": 149, + "b": 115 + } + }, + "H130L60C30": { + "description": "Pea Aubergine Green", + "hue": "130°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 124, + "g": 152, + "b": 101 + } + }, + "H130L60C40": { + "description": "Bavarian Green", + "hue": "130°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 116, + "g": 154, + "b": 84 + } + }, + "H130L60C50": { + "description": "Parisian Green", + "hue": "130°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 107, + "g": 156, + "b": 66 + } + }, + "H130L60C60": { + "description": "Primal Green", + "hue": "130°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 96, + "g": 158, + "b": 47 + } + }, + "H130L70C10": { + "description": "Limestone Green", + "hue": "130°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 165, + "g": 175, + "b": 157 + } + }, + "H130L70C20": { + "description": "Soap Green", + "hue": "130°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 160, + "g": 178, + "b": 142 + } + }, + "H130L70C30": { + "description": "Watercolour Green", + "hue": "130°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 150, + "g": 180, + "b": 126 + } + }, + "H130L70C40": { + "description": "Van Gogh Green", + "hue": "130°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 143, + "g": 182, + "b": 109 + } + }, + "H130L70C50": { + "description": "Apple Green", + "hue": "130°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 135, + "g": 185, + "b": 96 + } + }, + "H130L70C60": { + "description": "Ultra Green", + "hue": "130°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 126, + "g": 186, + "b": 77 + } + }, + "H130L80C10": { + "description": "Jade Light Green", + "hue": "130°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 193, + "g": 202, + "b": 183 + } + }, + "H130L80C20": { + "description": "Enamel Green", + "hue": "130°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 186, + "g": 204, + "b": 168 + } + }, + "H130L80C30": { + "description": "Pastel Green", + "hue": "130°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 179, + "g": 207, + "b": 153 + } + }, + "H130L80C40": { + "description": "Jasmine Green", + "hue": "130°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 172, + "g": 211, + "b": 139 + } + }, + "H130L80C50": { + "description": "Crystal Green", + "hue": "130°", + "lightness": "80%", + "chromaticity": "50%", + "rgb": { + "r": 164, + "g": 213, + "b": 121 + } + }, + "H130L85C05": { + "description": "Grape Oil Green", + "hue": "130°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 211, + "g": 217, + "b": 206 + } + }, + "H130L85C10": { + "description": "Duchamp Light Green", + "hue": "130°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 209, + "g": 219, + "b": 199 + } + }, + "H130L85C20": { + "description": "Pallid Light Green", + "hue": "130°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 203, + "g": 220, + "b": 183 + } + }, + "H130L85C30": { + "description": "Viridine Green", + "hue": "130°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 200, + "g": 224, + "b": 171 + } + }, + "H130L90C05": { + "description": "Poplar White", + "hue": "130°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 223, + "g": 227, + "b": 216 + } + }, + "H130L90C10": { + "description": "Mediterranean Green", + "hue": "130°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 224, + "g": 233, + "b": 211 + } + }, + "H130L90C20": { + "description": "Spring Green", + "hue": "130°", + "lightness": "90%", + "chromaticity": "20%", + "rgb": { + "r": 214, + "g": 233, + "b": 195 + } + }, + "H130L93C05": { + "description": "Bean White", + "hue": "130°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 235, + "g": 240, + "b": 228 + } + }, + "H140L20C05": { + "description": "Melanite Black Green", + "hue": "140°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 40, + "g": 46, + "b": 39 + } + }, + "H140L20C10": { + "description": "Mountain Range Green", + "hue": "140°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 40, + "g": 49, + "b": 35 + } + }, + "H140L20C20": { + "description": "Bavarian Green", + "hue": "140°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 37, + "g": 54, + "b": 30 + } + }, + "H140L30C05": { + "description": "Black Forest Green", + "hue": "140°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 66, + "g": 71, + "b": 64 + } + }, + "H140L30C10": { + "description": "Copper Pyrite Green", + "hue": "140°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 62, + "g": 73, + "b": 57 + } + }, + "H140L30C20": { + "description": "Nettle Green", + "hue": "140°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 54, + "g": 76, + "b": 46 + } + }, + "H140L30C30": { + "description": "Chestnut Green", + "hue": "140°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 42, + "g": 79, + "b": 33 + } + }, + "H140L30C40": { + "description": "Ranger Green", + "hue": "140°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 27, + "g": 79, + "b": 28 + } + }, + "H140L40C05": { + "description": "Stone Green", + "hue": "140°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 89, + "g": 95, + "b": 87 + } + }, + "H140L40C10": { + "description": "Loden Green", + "hue": "140°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 85, + "g": 97, + "b": 81 + } + }, + "H140L40C20": { + "description": "Acacia Green", + "hue": "140°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 72, + "g": 98, + "b": 65 + } + }, + "H140L40C30": { + "description": "Peacock Green", + "hue": "140°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 64, + "g": 102, + "b": 53 + } + }, + "H140L40C40": { + "description": "Radical Green", + "hue": "140°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 50, + "g": 106, + "b": 43 + } + }, + "H140L40C50": { + "description": "Brazilian Green", + "hue": "140°", + "lightness": "40%", + "chromaticity": "50%", + "rgb": { + "r": 41, + "g": 109, + "b": 35 + } + }, + "H140L50C05": { + "description": "Silver Maple Green", + "hue": "140°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 113, + "g": 119, + "b": 110 + } + }, + "H140L50C10": { + "description": "Fir Spruce Green", + "hue": "140°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 109, + "g": 121, + "b": 105 + } + }, + "H140L50C20": { + "description": "Silver Willow Green", + "hue": "140°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 99, + "g": 124, + "b": 91 + } + }, + "H140L50C30": { + "description": "Rambling Green", + "hue": "140°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 90, + "g": 128, + "b": 79 + } + }, + "H140L50C40": { + "description": "Guinean Green", + "hue": "140°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 74, + "g": 129, + "b": 64 + } + }, + "H140L50C50": { + "description": "Mountain Meadow Green", + "hue": "140°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 65, + "g": 134, + "b": 56 + } + }, + "H140L50C60": { + "description": "Temperamental Green", + "hue": "140°", + "lightness": "50%", + "chromaticity": "60%", + "rgb": { + "r": 43, + "g": 135, + "b": 37 + } + }, + "H140L60C05": { + "description": "Camouflage Green", + "hue": "140°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 139, + "g": 145, + "b": 138 + } + }, + "H140L60C10": { + "description": "Silver Linden Grey", + "hue": "140°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 133, + "g": 147, + "b": 130 + } + }, + "H140L60C20": { + "description": "Spinach Green", + "hue": "140°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 126, + "g": 153, + "b": 119 + } + }, + "H140L60C30": { + "description": "Blackthorn Green", + "hue": "140°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 115, + "g": 156, + "b": 105 + } + }, + "H140L60C40": { + "description": "Fresh Green", + "hue": "140°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 106, + "g": 158, + "b": 92 + } + }, + "H140L60C50": { + "description": "Parsley Green", + "hue": "140°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 90, + "g": 159, + "b": 77 + } + }, + "H140L60C60": { + "description": "Oregano Green", + "hue": "140°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 77, + "g": 162, + "b": 65 + } + }, + "H140L60C70": { + "description": "Balloon Green", + "hue": "140°", + "lightness": "60%", + "chromaticity": "70%", + "rgb": { + "r": 59, + "g": 162, + "b": 52 + } + }, + "H140L70C05": { + "description": "Ginkgo Green", + "hue": "140°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 165, + "g": 172, + "b": 164 + } + }, + "H140L70C10": { + "description": "Wormwood Green", + "hue": "140°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 159, + "g": 174, + "b": 158 + } + }, + "H140L70C20": { + "description": "Dew Green", + "hue": "140°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 151, + "g": 179, + "b": 145 + } + }, + "H140L70C30": { + "description": "Aniseed Leaf Green", + "hue": "140°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 140, + "g": 182, + "b": 132 + } + }, + "H140L70C40": { + "description": "Sour Green", + "hue": "140°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 132, + "g": 185, + "b": 119 + } + }, + "H140L70C50": { + "description": "Acid Green", + "hue": "140°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 118, + "g": 187, + "b": 104 + } + }, + "H140L70C60": { + "description": "Drop Green", + "hue": "140°", + "lightness": "70%", + "chromaticity": "60%", + "rgb": { + "r": 105, + "g": 189, + "b": 90 + } + }, + "H140L80C05": { + "description": "Willow Green", + "hue": "140°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 195, + "g": 202, + "b": 191 + } + }, + "H140L80C10": { + "description": "Pastel Grey Green", + "hue": "140°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 188, + "g": 203, + "b": 185 + } + }, + "H140L80C20": { + "description": "Gio Ponti Green", + "hue": "140°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 179, + "g": 206, + "b": 171 + } + }, + "H140L80C30": { + "description": "Relaxation Green", + "hue": "140°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 168, + "g": 209, + "b": 158 + } + }, + "H140L80C40": { + "description": "Dentist Green", + "hue": "140°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 153, + "g": 213, + "b": 144 + } + }, + "H140L85C05": { + "description": "Deadnettle White", + "hue": "140°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 210, + "g": 218, + "b": 208 + } + }, + "H140L85C10": { + "description": "Leek White", + "hue": "140°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 206, + "g": 220, + "b": 202 + } + }, + "H140L85C20": { + "description": "Limestone Slate", + "hue": "140°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 197, + "g": 224, + "b": 189 + } + }, + "H140L85C30": { + "description": "Mint Cocktail Green", + "hue": "140°", + "lightness": "85%", + "chromaticity": "30%", + "rgb": { + "r": 184, + "g": 226, + "b": 176 + } + }, + "H140L90C05": { + "description": "Rosemary White", + "hue": "140°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 223, + "g": 230, + "b": 218 + } + }, + "H140L90C10": { + "description": "Touch Of Green", + "hue": "140°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 219, + "g": 233, + "b": 213 + } + }, + "H140L93C05": { + "description": "Chestnut White", + "hue": "140°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 234, + "g": 241, + "b": 230 + } + }, + "H150L30C10": { + "description": "Thyme Green", + "hue": "150°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 61, + "g": 75, + "b": 61 + } + }, + "H150L30C20": { + "description": "Moselle Green", + "hue": "150°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 46, + "g": 78, + "b": 54 + } + }, + "H150L30C30": { + "description": "Mountain Green", + "hue": "150°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 30, + "g": 79, + "b": 43 + } + }, + "H150L40C10": { + "description": "Felt Green", + "hue": "150°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 82, + "g": 97, + "b": 83 + } + }, + "H150L40C20": { + "description": "Firm Green", + "hue": "150°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 71, + "g": 101, + "b": 74 + } + }, + "H150L40C30": { + "description": "Genever Green", + "hue": "150°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 51, + "g": 103, + "b": 63 + } + }, + "H150L40C40": { + "description": "Ink Green", + "hue": "150°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 28, + "g": 106, + "b": 53 + } + }, + "H150L40C50": { + "description": "Ireland Green", + "hue": "150°", + "lightness": "40%", + "chromaticity": "50%", + "rgb": { + "r": 0, + "g": 108, + "b": 46 + } + }, + "H150L50C10": { + "description": "Sage Green Grey", + "hue": "150°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 105, + "g": 121, + "b": 106 + } + }, + "H150L50C20": { + "description": "Korean Mint", + "hue": "150°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 93, + "g": 125, + "b": 97 + } + }, + "H150L50C30": { + "description": "Field Green", + "hue": "150°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 83, + "g": 128, + "b": 89 + } + }, + "H150L50C40": { + "description": "Celery Green", + "hue": "150°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 63, + "g": 134, + "b": 83 + } + }, + "H150L50C50": { + "description": "Rich Green", + "hue": "150°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 33, + "g": 136, + "b": 69 + } + }, + "H150L50C60": { + "description": "Cold Green", + "hue": "150°", + "lightness": "50%", + "chromaticity": "60%", + "rgb": { + "r": 0, + "g": 139, + "b": 60 + } + }, + "H150L60C10": { + "description": "Pointed Cabbage Green", + "hue": "150°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 133, + "g": 149, + "b": 135 + } + }, + "H150L60C20": { + "description": "Orient Green", + "hue": "150°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 119, + "g": 153, + "b": 125 + } + }, + "H150L60C30": { + "description": "Rosemary Green", + "hue": "150°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 105, + "g": 155, + "b": 114 + } + }, + "H150L60C40": { + "description": "Mosaic Green", + "hue": "150°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 89, + "g": 159, + "b": 104 + } + }, + "H150L60C50": { + "description": "Bouncy Ball Green", + "hue": "150°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 73, + "g": 164, + "b": 98 + } + }, + "H150L60C60": { + "description": "Energy Green", + "hue": "150°", + "lightness": "60%", + "chromaticity": "60%", + "rgb": { + "r": 28, + "g": 163, + "b": 80 + } + }, + "H150L70C10": { + "description": "Tea Green", + "hue": "150°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 158, + "g": 175, + "b": 160 + } + }, + "H150L70C20": { + "description": "Liebermann Green", + "hue": "150°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 146, + "g": 180, + "b": 152 + } + }, + "H150L70C30": { + "description": "Oilcloth Green", + "hue": "150°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 131, + "g": 186, + "b": 142 + } + }, + "H150L70C40": { + "description": "Jade Stone Green", + "hue": "150°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 116, + "g": 187, + "b": 131 + } + }, + "H150L70C50": { + "description": "Verdigris Coloured", + "hue": "150°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 98, + "g": 190, + "b": 119 + } + }, + "H150L80C10": { + "description": "Organza Green", + "hue": "150°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 187, + "g": 204, + "b": 189 + } + }, + "H150L80C20": { + "description": "Pastel Mint Green", + "hue": "150°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 173, + "g": 208, + "b": 179 + } + }, + "H150L80C30": { + "description": "Bright Green", + "hue": "150°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 159, + "g": 212, + "b": 170 + } + }, + "H150L80C40": { + "description": "Mother-Of-Pearl Green", + "hue": "150°", + "lightness": "80%", + "chromaticity": "40%", + "rgb": { + "r": 143, + "g": 216, + "b": 159 + } + }, + "H150L85C05": { + "description": "Asparagus White", + "hue": "150°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 206, + "g": 217, + "b": 207 + } + }, + "H150L85C10": { + "description": "Transparent White", + "hue": "150°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 203, + "g": 220, + "b": 203 + } + }, + "H150L85C20": { + "description": "Pallid Green", + "hue": "150°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 193, + "g": 224, + "b": 193 + } + }, + "H150L90C05": { + "description": "Mineral White", + "hue": "150°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 220, + "g": 229, + "b": 217 + } + }, + "H150L90C10": { + "description": "Alabaster Green", + "hue": "150°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 215, + "g": 233, + "b": 215 + } + }, + "H150L93C05": { + "description": "Quark White", + "hue": "150°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 231, + "g": 241, + "b": 230 + } + }, + "H160L20C05": { + "description": "Beryl Black Green", + "hue": "160°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 43, + "g": 50, + "b": 45 + } + }, + "H160L20C10": { + "description": "Mussel Green", + "hue": "160°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 36, + "g": 52, + "b": 42 + } + }, + "H160L20C15": { + "description": "Pumpkin Green Black", + "hue": "160°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 24, + "g": 52, + "b": 37 + } + }, + "H160L20C20": { + "description": "Opulent Green", + "hue": "160°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 16, + "g": 50, + "b": 34 + } + }, + "H160L30C05": { + "description": "Rich Olive", + "hue": "160°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 62, + "g": 71, + "b": 64 + } + }, + "H160L30C10": { + "description": "Exclusive Green", + "hue": "160°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 56, + "g": 73, + "b": 62 + } + }, + "H160L30C15": { + "description": "Leaf Green", + "hue": "160°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 47, + "g": 73, + "b": 57 + } + }, + "H160L30C20": { + "description": "Mountain Mint", + "hue": "160°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 37, + "g": 75, + "b": 55 + } + }, + "H160L30C25": { + "description": "Order Green", + "hue": "160°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 26, + "g": 76, + "b": 50 + } + }, + "H160L30C30": { + "description": "Troll Green", + "hue": "160°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 1, + "g": 78, + "b": 46 + } + }, + "H160L30C35": { + "description": "Card Table Green", + "hue": "160°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 81, + "b": 44 + } + }, + "H160L30C40": { + "description": "Lemon Balm Green", + "hue": "160°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 82, + "b": 40 + } + }, + "H160L40C05": { + "description": "Jasper Green", + "hue": "160°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 87, + "g": 96, + "b": 90 + } + }, + "H160L40C10": { + "description": "Siberian Green", + "hue": "160°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 78, + "g": 97, + "b": 87 + } + }, + "H160L40C15": { + "description": "Cucumber Green", + "hue": "160°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 70, + "g": 99, + "b": 83 + } + }, + "H160L40C20": { + "description": "Serbian Green", + "hue": "160°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 62, + "g": 100, + "b": 79 + } + }, + "H160L40C25": { + "description": "Black Pine Green", + "hue": "160°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 51, + "g": 101, + "b": 74 + } + }, + "H160L40C30": { + "description": "Pumpkin Green", + "hue": "160°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 40, + "g": 104, + "b": 72 + } + }, + "H160L40C35": { + "description": "Jade Mussel Green", + "hue": "160°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 22, + "g": 106, + "b": 69 + } + }, + "H160L40C40": { + "description": "Clover Green", + "hue": "160°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 108, + "b": 68 + } + }, + "H160L40C45": { + "description": "Frog Green", + "hue": "160°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 105, + "b": 60 + } + }, + "H160L40C50": { + "description": "Universal Green", + "hue": "160°", + "lightness": "40%", + "chromaticity": "50%", + "rgb": { + "r": 0, + "g": 107, + "b": 56 + } + }, + "H160L40C55": { + "description": "Column Of Oak Green", + "hue": "160°", + "lightness": "40%", + "chromaticity": "55%", + "rgb": { + "r": 0, + "g": 111, + "b": 55 + } + }, + "H160L50C05": { + "description": "Arctic Lichen Green", + "hue": "160°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 111, + "g": 120, + "b": 114 + } + }, + "H160L50C10": { + "description": "Atlas Cedar Green", + "hue": "160°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 102, + "g": 122, + "b": 110 + } + }, + "H160L50C15": { + "description": "Stone Cypress Green", + "hue": "160°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 95, + "g": 125, + "b": 108 + } + }, + "H160L50C20": { + "description": "Juniper Green", + "hue": "160°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 86, + "g": 127, + "b": 105 + } + }, + "H160L50C25": { + "description": "Sports Field Green", + "hue": "160°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 77, + "g": 128, + "b": 100 + } + }, + "H160L50C30": { + "description": "Leisure Green", + "hue": "160°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 67, + "g": 130, + "b": 97 + } + }, + "H160L50C35": { + "description": "Adamite Green", + "hue": "160°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 59, + "g": 132, + "b": 94 + } + }, + "H160L50C40": { + "description": "Metallic Green", + "hue": "160°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 36, + "g": 133, + "b": 91 + } + }, + "H160L50C45": { + "description": "Vital Green", + "hue": "160°", + "lightness": "50%", + "chromaticity": "45%", + "rgb": { + "r": 19, + "g": 136, + "b": 89 + } + }, + "H160L50C50": { + "description": "Golf Green", + "hue": "160°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 0, + "g": 136, + "b": 84 + } + }, + "H160L50C55": { + "description": "Iceland Green", + "hue": "160°", + "lightness": "50%", + "chromaticity": "55%", + "rgb": { + "r": 0, + "g": 139, + "b": 82 + } + }, + "H160L50C60": { + "description": "Real Turquoise", + "hue": "160°", + "lightness": "50%", + "chromaticity": "60%", + "rgb": { + "r": 0, + "g": 138, + "b": 76 + } + }, + "H160L60C05": { + "description": "Sandstone Grey Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 136, + "g": 146, + "b": 140 + } + }, + "H160L60C10": { + "description": "Slate Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 127, + "g": 148, + "b": 136 + } + }, + "H160L60C15": { + "description": "Mild Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 120, + "g": 152, + "b": 133 + } + }, + "H160L60C20": { + "description": "Douglas Fir Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 111, + "g": 152, + "b": 129 + } + }, + "H160L60C25": { + "description": "Practice Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 103, + "g": 154, + "b": 124 + } + }, + "H160L60C30": { + "description": "Memphis Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 94, + "g": 157, + "b": 123 + } + }, + "H160L60C35": { + "description": "Advertising Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 83, + "g": 160, + "b": 121 + } + }, + "H160L60C40": { + "description": "Hunter Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 69, + "g": 160, + "b": 116 + } + }, + "H160L60C45": { + "description": "Linoleum Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "45%", + "rgb": { + "r": 58, + "g": 163, + "b": 114 + } + }, + "H160L60C50": { + "description": "Parakeet Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 26, + "g": 163, + "b": 109 + } + }, + "H160L60C55": { + "description": "Emerald Light Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "55%", + "rgb": { + "r": 0, + "g": 162, + "b": 103 + } + }, + "H160L60C58": { + "description": "Alhambra Green", + "hue": "160°", + "lightness": "60%", + "chromaticity": "58%", + "rgb": { + "r": 0, + "g": 164, + "b": 101 + } + }, + "H160L70C05": { + "description": "Greenish Grey", + "hue": "160°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 163, + "g": 174, + "b": 167 + } + }, + "H160L70C10": { + "description": "Weak Green", + "hue": "160°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 153, + "g": 175, + "b": 163 + } + }, + "H160L70C15": { + "description": "Andean Slate", + "hue": "160°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 144, + "g": 177, + "b": 157 + } + }, + "H160L70C20": { + "description": "Ceramic Green", + "hue": "160°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 138, + "g": 179, + "b": 155 + } + }, + "H160L70C25": { + "description": "Water Green", + "hue": "160°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 129, + "g": 184, + "b": 154 + } + }, + "H160L70C30": { + "description": "Mountain Lake Green", + "hue": "160°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 117, + "g": 185, + "b": 150 + } + }, + "H160L70C35": { + "description": "American Green", + "hue": "160°", + "lightness": "70%", + "chromaticity": "35%", + "rgb": { + "r": 106, + "g": 186, + "b": 146 + } + }, + "H160L70C40": { + "description": "Techno Turquoise", + "hue": "160°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 96, + "g": 189, + "b": 142 + } + }, + "H160L70C45": { + "description": "Garish Green", + "hue": "160°", + "lightness": "70%", + "chromaticity": "45%", + "rgb": { + "r": 81, + "g": 191, + "b": 138 + } + }, + "H160L70C50": { + "description": "Malachite Green", + "hue": "160°", + "lightness": "70%", + "chromaticity": "50%", + "rgb": { + "r": 68, + "g": 192, + "b": 137 + } + }, + "H160L80C05": { + "description": "Fog Green", + "hue": "160°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 188, + "g": 200, + "b": 193 + } + }, + "H160L80C10": { + "description": "Matte Jade Green", + "hue": "160°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 181, + "g": 203, + "b": 189 + } + }, + "H160L80C15": { + "description": "Sun Yellow", + "hue": "160°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 171, + "g": 206, + "b": 186 + } + }, + "H160L80C20": { + "description": "Feather Green", + "hue": "160°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 163, + "g": 208, + "b": 182 + } + }, + "H160L80C25": { + "description": "Menthol Green", + "hue": "160°", + "lightness": "80%", + "chromaticity": "25%", + "rgb": { + "r": 156, + "g": 210, + "b": 180 + } + }, + "H160L80C30": { + "description": "Silk Green", + "hue": "160°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 148, + "g": 214, + "b": 178 + } + }, + "H160L85C05": { + "description": "Light Green", + "hue": "160°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 204, + "g": 216, + "b": 208 + } + }, + "H160L85C10": { + "description": "Micaceous Green", + "hue": "160°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 197, + "g": 218, + "b": 204 + } + }, + "H160L85C15": { + "description": "Moonstone Green", + "hue": "160°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 189, + "g": 221, + "b": 200 + } + }, + "H160L90C05": { + "description": "Watercolour White", + "hue": "160°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 219, + "g": 229, + "b": 219 + } + }, + "H160L90C10": { + "description": "Moonlight Green", + "hue": "160°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 210, + "g": 232, + "b": 216 + } + }, + "H160L90C15": { + "description": "Glacial Water Green", + "hue": "160°", + "lightness": "90%", + "chromaticity": "15%", + "rgb": { + "r": 201, + "g": 234, + "b": 212 + } + }, + "H160L93C05": { + "description": "Mountain Crystal Silver", + "hue": "160°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 226, + "g": 239, + "b": 232 + } + }, + "H170L20C10": { + "description": "Deep Green", + "hue": "170°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 28, + "g": 49, + "b": 41 + } + }, + "H170L20C15": { + "description": "Intense Green", + "hue": "170°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 18, + "g": 51, + "b": 40 + } + }, + "H170L20C20": { + "description": "Coach Green", + "hue": "170°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 0, + "g": 53, + "b": 39 + } + }, + "H170L20C25": { + "description": "Off-Road Green", + "hue": "170°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 55, + "b": 35 + } + }, + "H170L30C10": { + "description": "Garnet Black Green", + "hue": "170°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 53, + "g": 74, + "b": 65 + } + }, + "H170L30C15": { + "description": "Dark Green", + "hue": "170°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 40, + "g": 75, + "b": 62 + } + }, + "H170L30C20": { + "description": "Thistle Green", + "hue": "170°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 30, + "g": 75, + "b": 59 + } + }, + "H170L30C25": { + "description": "Raspberry Leaf Green", + "hue": "170°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 4, + "g": 79, + "b": 59 + } + }, + "H170L30C30": { + "description": "Chrysocolla Dark Green", + "hue": "170°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 79, + "b": 57 + } + }, + "H170L30C35": { + "description": "Trapper Green", + "hue": "170°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 82, + "b": 57 + } + }, + "H170L30C40": { + "description": "Permanent Green", + "hue": "170°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 84, + "b": 55 + } + }, + "H170L40C10": { + "description": "Chalcedony Green", + "hue": "170°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 75, + "g": 96, + "b": 87 + } + }, + "H170L40C15": { + "description": "Palace Green", + "hue": "170°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 66, + "g": 98, + "b": 85 + } + }, + "H170L40C20": { + "description": "Plantain Green", + "hue": "170°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 53, + "g": 101, + "b": 84 + } + }, + "H170L40C25": { + "description": "Ore Mountains Green", + "hue": "170°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 43, + "g": 101, + "b": 81 + } + }, + "H170L40C30": { + "description": "Tractor Green", + "hue": "170°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 28, + "g": 106, + "b": 81 + } + }, + "H170L40C35": { + "description": "Victoria Green", + "hue": "170°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 106, + "b": 77 + } + }, + "H170L40C40": { + "description": "Device Green", + "hue": "170°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 107, + "b": 77 + } + }, + "H170L40C45": { + "description": "Environmental Green", + "hue": "170°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 108, + "b": 75 + } + }, + "H170L40C50": { + "description": "Vegan Green", + "hue": "170°", + "lightness": "40%", + "chromaticity": "50%", + "rgb": { + "r": 0, + "g": 108, + "b": 71 + } + }, + "H170L50C10": { + "description": "Bournonite Green", + "hue": "170°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 99, + "g": 122, + "b": 114 + } + }, + "H170L50C15": { + "description": "Fuchsite Green", + "hue": "170°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 91, + "g": 126, + "b": 112 + } + }, + "H170L50C20": { + "description": "Blackberry Leaf Green", + "hue": "170°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 80, + "g": 127, + "b": 109 + } + }, + "H170L50C25": { + "description": "Tourmaline Blue", + "hue": "170°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 70, + "g": 129, + "b": 108 + } + }, + "H170L50C30": { + "description": "Dream Green", + "hue": "170°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 53, + "g": 131, + "b": 106 + } + }, + "H170L50C35": { + "description": "Accent Green Blue", + "hue": "170°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 32, + "g": 132, + "b": 104 + } + }, + "H170L50C40": { + "description": "Spectral Green", + "hue": "170°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 134, + "b": 100 + } + }, + "H170L50C45": { + "description": "Mallard Green", + "hue": "170°", + "lightness": "50%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 135, + "b": 100 + } + }, + "H170L50C50": { + "description": "Chagall Green", + "hue": "170°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 0, + "g": 139, + "b": 98 + } + }, + "H170L50C55": { + "description": "Absinthe Turquoise", + "hue": "170°", + "lightness": "50%", + "chromaticity": "55%", + "rgb": { + "r": 0, + "g": 138, + "b": 96 + } + }, + "H170L60C10": { + "description": "Quantum Green", + "hue": "170°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 124, + "g": 148, + "b": 139 + } + }, + "H170L60C15": { + "description": "Bitter Clover Green", + "hue": "170°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 118, + "g": 151, + "b": 137 + } + }, + "H170L60C20": { + "description": "Cyprus Green", + "hue": "170°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 105, + "g": 154, + "b": 136 + } + }, + "H170L60C25": { + "description": "Succulent Green", + "hue": "170°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 94, + "g": 155, + "b": 134 + } + }, + "H170L60C30": { + "description": "Vibrant Green", + "hue": "170°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 80, + "g": 157, + "b": 131 + } + }, + "H170L60C35": { + "description": "Klimt Green", + "hue": "170°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 63, + "g": 162, + "b": 130 + } + }, + "H170L60C40": { + "description": "Persian Green", + "hue": "170°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 44, + "g": 161, + "b": 128 + } + }, + "H170L60C45": { + "description": "Sport Green", + "hue": "170°", + "lightness": "60%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 162, + "b": 125 + } + }, + "H170L60C50": { + "description": "Active Green", + "hue": "170°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 0, + "g": 166, + "b": 126 + } + }, + "H170L70C10": { + "description": "Lovage Green", + "hue": "170°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 152, + "g": 177, + "b": 166 + } + }, + "H170L70C15": { + "description": "Chrysopal Light Green", + "hue": "170°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 143, + "g": 178, + "b": 163 + } + }, + "H170L70C20": { + "description": "Source Green", + "hue": "170°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 132, + "g": 182, + "b": 162 + } + }, + "H170L70C25": { + "description": "Orient Mosaic Green", + "hue": "170°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 124, + "g": 184, + "b": 161 + } + }, + "H170L70C30": { + "description": "Mint Cold Green", + "hue": "170°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 108, + "g": 187, + "b": 160 + } + }, + "H170L70C35": { + "description": "Emerald Green", + "hue": "170°", + "lightness": "70%", + "chromaticity": "35%", + "rgb": { + "r": 95, + "g": 187, + "b": 156 + } + }, + "H170L70C40": { + "description": "Expressionism Green", + "hue": "170°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 82, + "g": 188, + "b": 154 + } + }, + "H170L80C10": { + "description": "Fluorite Blue", + "hue": "170°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 180, + "g": 204, + "b": 194 + } + }, + "H170L80C15": { + "description": "Swimming Pool Green", + "hue": "170°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 168, + "g": 207, + "b": 192 + } + }, + "H170L80C20": { + "description": "Sky Green", + "hue": "170°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 159, + "g": 211, + "b": 191 + } + }, + "H170L80C25": { + "description": "Larimar Green", + "hue": "170°", + "lightness": "80%", + "chromaticity": "25%", + "rgb": { + "r": 147, + "g": 211, + "b": 188 + } + }, + "H170L85C05": { + "description": "Silicate Light Turquoise", + "hue": "170°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 205, + "g": 218, + "b": 211 + } + }, + "H170L85C10": { + "description": "Topaz Green", + "hue": "170°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 197, + "g": 221, + "b": 208 + } + }, + "H170L85C15": { + "description": "Refrigerator Green", + "hue": "170°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 186, + "g": 223, + "b": 205 + } + }, + "H170L85C20": { + "description": "Crystal Glass Green", + "hue": "170°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 177, + "g": 226, + "b": 203 + } + }, + "H170L90C05": { + "description": "Crystal Salt White", + "hue": "170°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 217, + "g": 229, + "b": 221 + } + }, + "H170L90C10": { + "description": "Turquoise White", + "hue": "170°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 207, + "g": 233, + "b": 220 + } + }, + "H170L93C05": { + "description": "Snow Crystal Green", + "hue": "170°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 228, + "g": 240, + "b": 232 + } + }, + "H180L20C05": { + "description": "Pitch Green", + "hue": "180°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 40, + "g": 51, + "b": 48 + } + }, + "H180L20C10": { + "description": "Lacquer Green", + "hue": "180°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 27, + "g": 50, + "b": 44 + } + }, + "H180L20C15": { + "description": "Fence Green", + "hue": "180°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 9, + "g": 51, + "b": 44 + } + }, + "H180L20C20": { + "description": "Myrtle Green", + "hue": "180°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 0, + "g": 53, + "b": 44 + } + }, + "H180L30C05": { + "description": "Amazon Green", + "hue": "180°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 63, + "g": 74, + "b": 71 + } + }, + "H180L30C10": { + "description": "Rich Grey Turquoise", + "hue": "180°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 50, + "g": 73, + "b": 67 + } + }, + "H180L30C15": { + "description": "Blackboard Green", + "hue": "180°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 39, + "g": 76, + "b": 67 + } + }, + "H180L30C20": { + "description": "Swedish Green", + "hue": "180°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 24, + "g": 77, + "b": 67 + } + }, + "H180L30C25": { + "description": "Fjord Green", + "hue": "180°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 80, + "b": 67 + } + }, + "H180L30C30": { + "description": "Urban Green", + "hue": "180°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 80, + "b": 66 + } + }, + "H180L30C35": { + "description": "Jungle Green", + "hue": "180°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 83, + "b": 65 + } + }, + "H180L40C05": { + "description": "Earth Green", + "hue": "180°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 84, + "g": 95, + "b": 91 + } + }, + "H180L40C10": { + "description": "Pine Green", + "hue": "180°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 74, + "g": 99, + "b": 92 + } + }, + "H180L40C15": { + "description": "Forest Greenery", + "hue": "180°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 62, + "g": 100, + "b": 91 + } + }, + "H180L40C20": { + "description": "Sea Green", + "hue": "180°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 48, + "g": 103, + "b": 92 + } + }, + "H180L40C25": { + "description": "Eucalyptus Green", + "hue": "180°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 30, + "g": 103, + "b": 90 + } + }, + "H180L40C30": { + "description": "Fresh Ivy Green", + "hue": "180°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 106, + "b": 91 + } + }, + "H180L40C35": { + "description": "Chrysocolla Medium Green", + "hue": "180°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 107, + "b": 87 + } + }, + "H180L40C40": { + "description": "Poster Green", + "hue": "180°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 107, + "b": 86 + } + }, + "H180L40C45": { + "description": "Teal Dark Green", + "hue": "180°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 109, + "b": 87 + } + }, + "H180L50C05": { + "description": "Dusk Green", + "hue": "180°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 110, + "g": 122, + "b": 119 + } + }, + "H180L50C10": { + "description": "Refreshing Green", + "hue": "180°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 97, + "g": 122, + "b": 116 + } + }, + "H180L50C15": { + "description": "Dull Turquoise", + "hue": "180°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 85, + "g": 125, + "b": 115 + } + }, + "H180L50C20": { + "description": "Azurite Water Green", + "hue": "180°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 73, + "g": 127, + "b": 115 + } + }, + "H180L50C25": { + "description": "Copper Mineral Green", + "hue": "180°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 57, + "g": 129, + "b": 116 + } + }, + "H180L50C30": { + "description": "Glass Green", + "hue": "180°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 35, + "g": 132, + "b": 114 + } + }, + "H180L50C35": { + "description": "Summer Turquoise", + "hue": "180°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 133, + "b": 114 + } + }, + "H180L50C40": { + "description": "Christmas Green", + "hue": "180°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 133, + "b": 113 + } + }, + "H180L50C45": { + "description": "Industrial Turquoise", + "hue": "180°", + "lightness": "50%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 138, + "b": 112 + } + }, + "H180L50C50": { + "description": "Ocean Green", + "hue": "180°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 0, + "g": 138, + "b": 111 + } + }, + "H180L60C05": { + "description": "Marble Green-Grey", + "hue": "180°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 133, + "g": 146, + "b": 143 + } + }, + "H180L60C10": { + "description": "Tile Green", + "hue": "180°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 122, + "g": 149, + "b": 142 + } + }, + "H180L60C15": { + "description": "Copper Roof Green", + "hue": "180°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 111, + "g": 151, + "b": 142 + } + }, + "H180L60C20": { + "description": "Sage Green", + "hue": "180°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 99, + "g": 154, + "b": 142 + } + }, + "H180L60C25": { + "description": "Petrol Green", + "hue": "180°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 84, + "g": 155, + "b": 140 + } + }, + "H180L60C30": { + "description": "Dioptase Green", + "hue": "180°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 67, + "g": 158, + "b": 141 + } + }, + "H180L60C35": { + "description": "Stamp Pad Green", + "hue": "180°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 46, + "g": 161, + "b": 140 + } + }, + "H180L60C40": { + "description": "Light Turquoise", + "hue": "180°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 163, + "b": 140 + } + }, + "H180L60C45": { + "description": "Caribbean Green", + "hue": "180°", + "lightness": "60%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 165, + "b": 140 + } + }, + "H180L60C50": { + "description": "Brilliant Turquoise", + "hue": "180°", + "lightness": "60%", + "chromaticity": "50%", + "rgb": { + "r": 0, + "g": 166, + "b": 139 + } + }, + "H180L70C05": { + "description": "Feldspar Silver", + "hue": "180°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 160, + "g": 173, + "b": 169 + } + }, + "H180L70C10": { + "description": "Delicate Green", + "hue": "180°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 147, + "g": 176, + "b": 169 + } + }, + "H180L70C15": { + "description": "Silicate Green", + "hue": "180°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 136, + "g": 178, + "b": 169 + } + }, + "H180L70C20": { + "description": "Mint Bonbon Green", + "hue": "180°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 125, + "g": 182, + "b": 168 + } + }, + "H180L70C25": { + "description": "Glacial Green", + "hue": "180°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 111, + "g": 183, + "b": 168 + } + }, + "H180L70C30": { + "description": "Bath Turquoise", + "hue": "180°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 98, + "g": 186, + "b": 168 + } + }, + "H180L70C35": { + "description": "Mountain Lake Azure", + "hue": "180°", + "lightness": "70%", + "chromaticity": "35%", + "rgb": { + "r": 76, + "g": 188, + "b": 167 + } + }, + "H180L70C40": { + "description": "Pure Cyan", + "hue": "180°", + "lightness": "70%", + "chromaticity": "40%", + "rgb": { + "r": 54, + "g": 191, + "b": 168 + } + }, + "H180L80C05": { + "description": "Aragonite White", + "hue": "180°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 188, + "g": 201, + "b": 195 + } + }, + "H180L80C10": { + "description": "Light Teal", + "hue": "180°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 177, + "g": 204, + "b": 197 + } + }, + "H180L80C15": { + "description": "Whirlpool Green", + "hue": "180°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 167, + "g": 208, + "b": 197 + } + }, + "H180L80C20": { + "description": "Opal Turquoise", + "hue": "180°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 150, + "g": 209, + "b": 195 + } + }, + "H180L80C25": { + "description": "Light Capri Green", + "hue": "180°", + "lightness": "80%", + "chromaticity": "25%", + "rgb": { + "r": 139, + "g": 212, + "b": 195 + } + }, + "H180L80C30": { + "description": "Tender Turquoise", + "hue": "180°", + "lightness": "80%", + "chromaticity": "30%", + "rgb": { + "r": 130, + "g": 217, + "b": 197 + } + }, + "H180L85C05": { + "description": "Sea Haze Grey", + "hue": "180°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 203, + "g": 217, + "b": 212 + } + }, + "H180L85C10": { + "description": "Tierra Del Fuego Sea Green", + "hue": "180°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 194, + "g": 221, + "b": 211 + } + }, + "H180L85C15": { + "description": "Pale Mountain Lake Turquoise", + "hue": "180°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 186, + "g": 225, + "b": 211 + } + }, + "H180L85C20": { + "description": "Coral Green", + "hue": "180°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 171, + "g": 226, + "b": 207 + } + }, + "H180L90C05": { + "description": "Transparent Green", + "hue": "180°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 217, + "g": 231, + "b": 226 + } + }, + "H180L90C10": { + "description": "Ice Water Green", + "hue": "180°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 205, + "g": 235, + "b": 225 + } + }, + "H180L93C05": { + "description": "Arctic White", + "hue": "180°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 229, + "g": 241, + "b": 236 + } + }, + "H190L20C20": { + "description": "Night Turquoise", + "hue": "190°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 0, + "g": 56, + "b": 51 + } + }, + "H190L30C15": { + "description": "Carriage Green", + "hue": "190°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 37, + "g": 77, + "b": 72 + } + }, + "H190L30C20": { + "description": "Stockade Green", + "hue": "190°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 16, + "g": 79, + "b": 74 + } + }, + "H190L30C25": { + "description": "Action Green", + "hue": "190°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 80, + "b": 75 + } + }, + "H190L30C30": { + "description": "Myrtle Deep Green", + "hue": "190°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 82, + "b": 76 + } + }, + "H190L30C35": { + "description": "Plankton Green", + "hue": "190°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 83, + "b": 76 + } + }, + "H190L40C10": { + "description": "Mud Green", + "hue": "190°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 73, + "g": 98, + "b": 94 + } + }, + "H190L40C15": { + "description": "Moor Pond Green", + "hue": "190°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 60, + "g": 100, + "b": 97 + } + }, + "H190L40C20": { + "description": "Lush Green", + "hue": "190°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 41, + "g": 102, + "b": 97 + } + }, + "H190L40C25": { + "description": "Butterfly Green", + "hue": "190°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 11, + "g": 104, + "b": 99 + } + }, + "H190L40C30": { + "description": "Fashion Blue", + "hue": "190°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 107, + "b": 100 + } + }, + "H190L40C35": { + "description": "Office Blue Green", + "hue": "190°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 108, + "b": 101 + } + }, + "H190L40C40": { + "description": "Iguana Green", + "hue": "190°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 110, + "b": 102 + } + }, + "H190L40C45": { + "description": "Dark Teal", + "hue": "190°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 113, + "b": 103 + } + }, + "H190L50C10": { + "description": "Storm Green", + "hue": "190°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 97, + "g": 124, + "b": 120 + } + }, + "H190L50C15": { + "description": "Dark Turquoise", + "hue": "190°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 84, + "g": 126, + "b": 121 + } + }, + "H190L50C20": { + "description": "Fir Blue", + "hue": "190°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 70, + "g": 128, + "b": 123 + } + }, + "H190L50C25": { + "description": "Apatite Blue", + "hue": "190°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 49, + "g": 130, + "b": 123 + } + }, + "H190L50C30": { + "description": "Egyptian Green", + "hue": "190°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 8, + "g": 132, + "b": 124 + } + }, + "H190L50C35": { + "description": "Ornamental Turquoise", + "hue": "190°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 134, + "b": 125 + } + }, + "H190L50C40": { + "description": "Eyeshadow Turquoise", + "hue": "190°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 137, + "b": 128 + } + }, + "H190L50C45": { + "description": "Clear Turquoise", + "hue": "190°", + "lightness": "50%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 138, + "b": 129 + } + }, + "H190L60C10": { + "description": "Subtle Turquoise", + "hue": "190°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 122, + "g": 150, + "b": 147 + } + }, + "H190L60C15": { + "description": "Pale Verdigris", + "hue": "190°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 111, + "g": 152, + "b": 146 + } + }, + "H190L60C20": { + "description": "Goose Pond Green", + "hue": "190°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 99, + "g": 155, + "b": 149 + } + }, + "H190L60C25": { + "description": "Tourmaline Turquoise", + "hue": "190°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 79, + "g": 158, + "b": 150 + } + }, + "H190L60C30": { + "description": "Baltic Green", + "hue": "190°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 58, + "g": 160, + "b": 152 + } + }, + "H190L60C35": { + "description": "Ceramic Blue Turquoise", + "hue": "190°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 22, + "g": 162, + "b": 154 + } + }, + "H190L60C40": { + "description": "Baltic Turquoise", + "hue": "190°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 164, + "b": 154 + } + }, + "H190L60C45": { + "description": "Tyrolite Blue-Green", + "hue": "190°", + "lightness": "60%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 164, + "b": 153 + } + }, + "H190L70C10": { + "description": "Marble Green", + "hue": "190°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 149, + "g": 176, + "b": 173 + } + }, + "H190L70C15": { + "description": "Jade Green", + "hue": "190°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 137, + "g": 179, + "b": 173 + } + }, + "H190L70C20": { + "description": "Spring Water Turquoise", + "hue": "190°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 122, + "g": 181, + "b": 174 + } + }, + "H190L70C25": { + "description": "Florida Turquoise", + "hue": "190°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 107, + "g": 184, + "b": 177 + } + }, + "H190L70C30": { + "description": "Hygiene Green", + "hue": "190°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 93, + "g": 188, + "b": 180 + } + }, + "H190L70C35": { + "description": "Arctic Green", + "hue": "190°", + "lightness": "70%", + "chromaticity": "35%", + "rgb": { + "r": 69, + "g": 188, + "b": 179 + } + }, + "H190L80C10": { + "description": "Andean Opal Green", + "hue": "190°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 175, + "g": 205, + "b": 199 + } + }, + "H190L80C15": { + "description": "Cold Turquoise", + "hue": "190°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 165, + "g": 208, + "b": 203 + } + }, + "H190L80C20": { + "description": "Teal Blue", + "hue": "190°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 151, + "g": 209, + "b": 203 + } + }, + "H190L80C25": { + "description": "Pool Green", + "hue": "190°", + "lightness": "80%", + "chromaticity": "25%", + "rgb": { + "r": 136, + "g": 212, + "b": 204 + } + }, + "H190L85C05": { + "description": "Morning Dew White", + "hue": "190°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 198, + "g": 219, + "b": 214 + } + }, + "H190L85C10": { + "description": "Bath Salt Green", + "hue": "190°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 187, + "g": 222, + "b": 215 + } + }, + "H190L85C15": { + "description": "Capri Water Blue", + "hue": "190°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 171, + "g": 226, + "b": 214 + } + }, + "H190L85C20": { + "description": "Horizon Blue", + "hue": "190°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 157, + "g": 229, + "b": 216 + } + }, + "H190L90C05": { + "description": "Cool White", + "hue": "190°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 218, + "g": 230, + "b": 226 + } + }, + "H190L90C10": { + "description": "Source Blue", + "hue": "190°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 205, + "g": 234, + "b": 229 + } + }, + "H190L93C05": { + "description": "Egyptian White", + "hue": "190°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 229, + "g": 241, + "b": 236 + } + }, + "H200L20C05": { + "description": "Concealed Green", + "hue": "200°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 38, + "g": 49, + "b": 48 + } + }, + "H200L20C10": { + "description": "Dark Pine Green", + "hue": "200°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 25, + "g": 50, + "b": 50 + } + }, + "H200L20C15": { + "description": "Roof Tile Green", + "hue": "200°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 4, + "g": 49, + "b": 50 + } + }, + "H200L20C20": { + "description": "Shrub Green", + "hue": "200°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 0, + "g": 54, + "b": 54 + } + }, + "H200L20C23": { + "description": "Customs Green", + "hue": "200°", + "lightness": "20%", + "chromaticity": "23%", + "rgb": { + "r": 0, + "g": 56, + "b": 57 + } + }, + "H200L30C05": { + "description": "Darkness Green", + "hue": "200°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 58, + "g": 70, + "b": 69 + } + }, + "H200L30C10": { + "description": "Tree Bark Green", + "hue": "200°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 48, + "g": 75, + "b": 74 + } + }, + "H200L30C15": { + "description": "Hornblende Green", + "hue": "200°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 35, + "g": 78, + "b": 77 + } + }, + "H200L30C20": { + "description": "Malachite Blue Turquoise", + "hue": "200°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 14, + "g": 79, + "b": 79 + } + }, + "H200L30C25": { + "description": "Antique Turquoise", + "hue": "200°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 78, + "b": 78 + } + }, + "H200L30C30": { + "description": "Wool Turquoise", + "hue": "200°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 81, + "b": 82 + } + }, + "H200L30C33": { + "description": "Ice Dark Turquoise", + "hue": "200°", + "lightness": "30%", + "chromaticity": "33%", + "rgb": { + "r": 0, + "g": 84, + "b": 86 + } + }, + "H200L40C05": { + "description": "Calcite Grey Green", + "hue": "200°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 82, + "g": 96, + "b": 95 + } + }, + "H200L40C10": { + "description": "Brochantite Green", + "hue": "200°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 72, + "g": 98, + "b": 98 + } + }, + "H200L40C15": { + "description": "Pyrite Green", + "hue": "200°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 58, + "g": 99, + "b": 100 + } + }, + "H200L40C20": { + "description": "Dusky Alpine Blue", + "hue": "200°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 41, + "g": 103, + "b": 103 + } + }, + "H200L40C25": { + "description": "Bath Green", + "hue": "200°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 10, + "g": 105, + "b": 106 + } + }, + "H200L40C30": { + "description": "Mayan Blue", + "hue": "200°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 107, + "b": 108 + } + }, + "H200L40C35": { + "description": "Byzantine Blue", + "hue": "200°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 108, + "b": 110 + } + }, + "H200L40C40": { + "description": "Active Turquoise", + "hue": "200°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 111, + "b": 114 + } + }, + "H200L50C05": { + "description": "North Grey", + "hue": "200°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 106, + "g": 119, + "b": 119 + } + }, + "H200L50C10": { + "description": "Eye Grey", + "hue": "200°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 96, + "g": 123, + "b": 123 + } + }, + "H200L50C15": { + "description": "Nickel Ore Green", + "hue": "200°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 83, + "g": 126, + "b": 126 + } + }, + "H200L50C20": { + "description": "Seafoam Green", + "hue": "200°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 66, + "g": 127, + "b": 128 + } + }, + "H200L50C25": { + "description": "Kandinsky Turquoise", + "hue": "200°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 45, + "g": 130, + "b": 132 + } + }, + "H200L50C30": { + "description": "Caribbean Turquoise", + "hue": "200°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 132, + "b": 134 + } + }, + "H200L50C35": { + "description": "Well Blue", + "hue": "200°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 136, + "b": 139 + } + }, + "H200L50C40": { + "description": "Industrial Blue", + "hue": "200°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 137, + "b": 140 + } + }, + "H200L50C45": { + "description": "India Blue", + "hue": "200°", + "lightness": "50%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 138, + "b": 142 + } + }, + "H200L60C05": { + "description": "Shady Grey", + "hue": "200°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 132, + "g": 146, + "b": 146 + } + }, + "H200L60C10": { + "description": "North Cape Grey", + "hue": "200°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 122, + "g": 149, + "b": 149 + } + }, + "H200L60C15": { + "description": "Woad Indigo", + "hue": "200°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 108, + "g": 152, + "b": 152 + } + }, + "H200L60C20": { + "description": "Jugendstil Turquoise", + "hue": "200°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 95, + "g": 155, + "b": 156 + } + }, + "H200L60C25": { + "description": "Coolbox Ice Turquoise", + "hue": "200°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 73, + "g": 156, + "b": 157 + } + }, + "H200L60C30": { + "description": "Aquamarine Blue", + "hue": "200°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 49, + "g": 159, + "b": 159 + } + }, + "H200L60C35": { + "description": "Arctic Blue", + "hue": "200°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 161, + "b": 163 + } + }, + "H200L60C40": { + "description": "Wax Crayon Blue", + "hue": "200°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 164, + "b": 166 + } + }, + "H200L70C05": { + "description": "Prince Grey", + "hue": "200°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 160, + "g": 173, + "b": 172 + } + }, + "H200L70C10": { + "description": "Calcite Blue", + "hue": "200°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 148, + "g": 178, + "b": 178 + } + }, + "H200L70C15": { + "description": "Cold Front Green", + "hue": "200°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 133, + "g": 179, + "b": 178 + } + }, + "H200L70C20": { + "description": "Kingfisher Turquoise", + "hue": "200°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 122, + "g": 182, + "b": 182 + } + }, + "H200L70C25": { + "description": "Fresh Soft Blue", + "hue": "200°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 106, + "g": 185, + "b": 187 + } + }, + "H200L80C05": { + "description": "China Light Green", + "hue": "200°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 188, + "g": 201, + "b": 199 + } + }, + "H200L80C10": { + "description": "Baroque Chalk Soft Blue", + "hue": "200°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 174, + "g": 204, + "b": 203 + } + }, + "H200L80C15": { + "description": "Ice Boutique Turquoise", + "hue": "200°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 162, + "g": 205, + "b": 203 + } + }, + "H200L80C20": { + "description": "Summer Soft Blue", + "hue": "200°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 148, + "g": 211, + "b": 209 + } + }, + "H200L80C25": { + "description": "Mountain Lake Blue", + "hue": "200°", + "lightness": "80%", + "chromaticity": "25%", + "rgb": { + "r": 133, + "g": 212, + "b": 212 + } + }, + "H200L85C05": { + "description": "Raffia Light Grey", + "hue": "200°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 203, + "g": 217, + "b": 216 + } + }, + "H200L85C10": { + "description": "Cold Air Turquoise", + "hue": "200°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 193, + "g": 220, + "b": 219 + } + }, + "H200L85C15": { + "description": "Frosty Soft Blue", + "hue": "200°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 180, + "g": 224, + "b": 222 + } + }, + "H200L85C20": { + "description": "Ice Crystal Blue", + "hue": "200°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 166, + "g": 227, + "b": 224 + } + }, + "H200L90C05": { + "description": "Frosty Green", + "hue": "200°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 217, + "g": 231, + "b": 228 + } + }, + "H200L90C10": { + "description": "Frosty White Blue", + "hue": "200°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 204, + "g": 233, + "b": 228 + } + }, + "H200L93C05": { + "description": "Chilly White", + "hue": "200°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 229, + "g": 241, + "b": 237 + } + }, + "H210L30C10": { + "description": "Graphite Black Green", + "hue": "210°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 50, + "g": 73, + "b": 75 + } + }, + "H210L30C15": { + "description": "Mallard Blue", + "hue": "210°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 33, + "g": 76, + "b": 79 + } + }, + "H210L30C20": { + "description": "Transporter Green", + "hue": "210°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 0, + "g": 79, + "b": 84 + } + }, + "H210L30C25": { + "description": "Deep Atlantic Blue", + "hue": "210°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 79, + "b": 87 + } + }, + "H210L30C30": { + "description": "Kali Blue", + "hue": "210°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 80, + "b": 90 + } + }, + "H210L40C10": { + "description": "Linen Grey", + "hue": "210°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 70, + "g": 97, + "b": 99 + } + }, + "H210L40C15": { + "description": "China Green Blue", + "hue": "210°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 58, + "g": 100, + "b": 104 + } + }, + "H210L40C20": { + "description": "Dusk Blue", + "hue": "210°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 38, + "g": 102, + "b": 107 + } + }, + "H210L40C25": { + "description": "Trouser Blue", + "hue": "210°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 102, + "b": 109 + } + }, + "H210L40C30": { + "description": "Indigo Blue", + "hue": "210°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 105, + "b": 115 + } + }, + "H210L40C35": { + "description": "Cold Blue", + "hue": "210°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 108, + "b": 120 + } + }, + "H210L40C38": { + "description": "Mary Blue", + "hue": "210°", + "lightness": "40%", + "chromaticity": "38%", + "rgb": { + "r": 0, + "g": 106, + "b": 119 + } + }, + "H210L50C10": { + "description": "Uniform Green Grey", + "hue": "210°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 95, + "g": 123, + "b": 126 + } + }, + "H210L50C15": { + "description": "Labradorite Green", + "hue": "210°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 84, + "g": 125, + "b": 128 + } + }, + "H210L50C20": { + "description": "Enamel Antique Green", + "hue": "210°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 66, + "g": 127, + "b": 133 + } + }, + "H210L50C25": { + "description": "Cranach Blue", + "hue": "210°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 43, + "g": 130, + "b": 136 + } + }, + "H210L50C30": { + "description": "China Blue", + "hue": "210°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 131, + "b": 141 + } + }, + "H210L50C35": { + "description": "Glacier Blue", + "hue": "210°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 134, + "b": 145 + } + }, + "H210L50C40": { + "description": "Curaçao Blue", + "hue": "210°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 136, + "b": 148 + } + }, + "H210L50C45": { + "description": "Atlantic Blue", + "hue": "210°", + "lightness": "50%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 137, + "b": 151 + } + }, + "H210L60C10": { + "description": "Ash Blue", + "hue": "210°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 122, + "g": 149, + "b": 152 + } + }, + "H210L60C15": { + "description": "Baltic Blue", + "hue": "210°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 108, + "g": 150, + "b": 154 + } + }, + "H210L60C20": { + "description": "Beach Blue", + "hue": "210°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 95, + "g": 156, + "b": 162 + } + }, + "H210L60C25": { + "description": "Basilica Blue", + "hue": "210°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 74, + "g": 159, + "b": 167 + } + }, + "H210L60C30": { + "description": "Danube Blue", + "hue": "210°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 48, + "g": 160, + "b": 170 + } + }, + "H210L60C35": { + "description": "Altdorf Sky Blue", + "hue": "210°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 161, + "b": 172 + } + }, + "H210L60C40": { + "description": "Garish Blue", + "hue": "210°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 164, + "b": 177 + } + }, + "H210L70C10": { + "description": "Storm Grey", + "hue": "210°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 149, + "g": 177, + "b": 179 + } + }, + "H210L70C15": { + "description": "Persian Blue", + "hue": "210°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 137, + "g": 179, + "b": 182 + } + }, + "H210L70C20": { + "description": "Aqua Blue", + "hue": "210°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 121, + "g": 182, + "b": 188 + } + }, + "H210L70C25": { + "description": "Maritime Soft Blue", + "hue": "210°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 105, + "g": 184, + "b": 192 + } + }, + "H210L70C30": { + "description": "Mountain Blue", + "hue": "210°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 83, + "g": 188, + "b": 197 + } + }, + "H210L70C35": { + "description": "Panorama Blue", + "hue": "210°", + "lightness": "70%", + "chromaticity": "35%", + "rgb": { + "r": 53, + "g": 189, + "b": 200 + } + }, + "H210L80C10": { + "description": "Turquoise Grey", + "hue": "210°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 180, + "g": 206, + "b": 207 + } + }, + "H210L80C15": { + "description": "Dolphin Blue", + "hue": "210°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 165, + "g": 209, + "b": 211 + } + }, + "H210L80C20": { + "description": "Aroma Blue", + "hue": "210°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 150, + "g": 210, + "b": 214 + } + }, + "H210L80C25": { + "description": "Vibrant Soft Blue", + "hue": "210°", + "lightness": "80%", + "chromaticity": "25%", + "rgb": { + "r": 136, + "g": 214, + "b": 220 + } + }, + "H210L85C05": { + "description": "Siesta White", + "hue": "210°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 202, + "g": 218, + "b": 218 + } + }, + "H210L85C10": { + "description": "Mint Blue", + "hue": "210°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 188, + "g": 224, + "b": 223 + } + }, + "H210L85C15": { + "description": "Fine Blue", + "hue": "210°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 182, + "g": 225, + "b": 225 + } + }, + "H210L85C20": { + "description": "Pale Blue", + "hue": "210°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 167, + "g": 227, + "b": 226 + } + }, + "H210L90C05": { + "description": "Tulle Soft Blue", + "hue": "210°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 217, + "g": 231, + "b": 229 + } + }, + "H210L90C10": { + "description": "Antarctic Blue", + "hue": "210°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 204, + "g": 234, + "b": 231 + } + }, + "H220L20C05": { + "description": "Navy Black", + "hue": "220°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 38, + "g": 48, + "b": 50 + } + }, + "H220L20C10": { + "description": "Indigo Carmine", + "hue": "220°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 26, + "g": 51, + "b": 56 + } + }, + "H220L20C15": { + "description": "Artist Blue", + "hue": "220°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 1, + "g": 52, + "b": 58 + } + }, + "H220L20C20": { + "description": "Natural Indigo", + "hue": "220°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 0, + "g": 55, + "b": 64 + } + }, + "H220L30C05": { + "description": "Panda Black", + "hue": "220°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 60, + "g": 71, + "b": 72 + } + }, + "H220L30C10": { + "description": "Pallasite Blue", + "hue": "220°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 49, + "g": 74, + "b": 78 + } + }, + "H220L30C15": { + "description": "Hurricane Green Blue", + "hue": "220°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 37, + "g": 77, + "b": 84 + } + }, + "H220L30C20": { + "description": "Watercolour Blue", + "hue": "220°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 8, + "g": 77, + "b": 88 + } + }, + "H220L30C25": { + "description": "Coral Blue", + "hue": "220°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 81, + "b": 93 + } + }, + "H220L30C30": { + "description": "Sandalwood Grey Blue", + "hue": "220°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 81, + "b": 96 + } + }, + "H220L40C05": { + "description": "Limousine Grey Blue", + "hue": "220°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 83, + "g": 95, + "b": 98 + } + }, + "H220L40C10": { + "description": "Corundum Blue", + "hue": "220°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 74, + "g": 98, + "b": 103 + } + }, + "H220L40C15": { + "description": "Smock Blue", + "hue": "220°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 59, + "g": 100, + "b": 108 + } + }, + "H220L40C20": { + "description": "Mordant Blue", + "hue": "220°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 42, + "g": 102, + "b": 113 + } + }, + "H220L40C25": { + "description": "Cotton Indigo", + "hue": "220°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 6, + "g": 105, + "b": 118 + } + }, + "H220L40C30": { + "description": "Fjord Blue", + "hue": "220°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 107, + "b": 125 + } + }, + "H220L40C35": { + "description": "Azure Green Blue", + "hue": "220°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 108, + "b": 129 + } + }, + "H220L40C40": { + "description": "Cyan Blue", + "hue": "220°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 111, + "b": 134 + } + }, + "H220L50C05": { + "description": "Winter Could Grey", + "hue": "220°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 110, + "g": 122, + "b": 124 + } + }, + "H220L50C10": { + "description": "Cadet Grey", + "hue": "220°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 99, + "g": 123, + "b": 128 + } + }, + "H220L50C15": { + "description": "Holbein Blue Grey", + "hue": "220°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 84, + "g": 125, + "b": 134 + } + }, + "H220L50C20": { + "description": "Shady Blue", + "hue": "220°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 66, + "g": 128, + "b": 138 + } + }, + "H220L50C25": { + "description": "Fresco Blue", + "hue": "220°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 48, + "g": 129, + "b": 143 + } + }, + "H220L50C30": { + "description": "Craftsman Blue", + "hue": "220°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 129, + "b": 147 + } + }, + "H220L50C35": { + "description": "Marker Blue", + "hue": "220°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 134, + "b": 154 + } + }, + "H220L50C40": { + "description": "Toy Blue", + "hue": "220°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 136, + "b": 159 + } + }, + "H220L60C05": { + "description": "Deep Sea Grey", + "hue": "220°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 135, + "g": 146, + "b": 148 + } + }, + "H220L60C10": { + "description": "Tile Blue", + "hue": "220°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 124, + "g": 149, + "b": 155 + } + }, + "H220L60C15": { + "description": "Morning Blue", + "hue": "220°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 112, + "g": 152, + "b": 160 + } + }, + "H220L60C20": { + "description": "Frost Blue", + "hue": "220°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 93, + "g": 154, + "b": 166 + } + }, + "H220L60C25": { + "description": "Summer Turquoise Blue", + "hue": "220°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 75, + "g": 156, + "b": 171 + } + }, + "H220L60C30": { + "description": "Fischer Blue", + "hue": "220°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 50, + "g": 160, + "b": 177 + } + }, + "H220L60C35": { + "description": "Planet Blue", + "hue": "220°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 159, + "b": 179 + } + }, + "H220L60C40": { + "description": "January Blue", + "hue": "220°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 161, + "b": 185 + } + }, + "H220L70C05": { + "description": "Tempered Grey", + "hue": "220°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 161, + "g": 174, + "b": 177 + } + }, + "H220L70C10": { + "description": "Mohair Soft Blue Grey", + "hue": "220°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 151, + "g": 178, + "b": 183 + } + }, + "H220L70C15": { + "description": "Kitchen Blue", + "hue": "220°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 138, + "g": 181, + "b": 189 + } + }, + "H220L70C20": { + "description": "Culinary Blue", + "hue": "220°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 123, + "g": 182, + "b": 193 + } + }, + "H220L70C25": { + "description": "Blouson Blue", + "hue": "220°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 103, + "g": 183, + "b": 198 + } + }, + "H220L70C30": { + "description": "Mountain Range Blue", + "hue": "220°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 83, + "g": 184, + "b": 201 + } + }, + "H220L70C35": { + "description": "Holiday Blue", + "hue": "220°", + "lightness": "70%", + "chromaticity": "35%", + "rgb": { + "r": 50, + "g": 188, + "b": 209 + } + }, + "H220L80C05": { + "description": "Pastel Blue", + "hue": "220°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 188, + "g": 202, + "b": 202 + } + }, + "H220L80C10": { + "description": "Clinical Soft Blue", + "hue": "220°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 178, + "g": 207, + "b": 211 + } + }, + "H220L80C15": { + "description": "Children's Soft Blue", + "hue": "220°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 161, + "g": 206, + "b": 215 + } + }, + "H220L80C20": { + "description": "Tourmaline Water Blue", + "hue": "220°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 153, + "g": 211, + "b": 223 + } + }, + "H220L80C25": { + "description": "Fresh Blue", + "hue": "220°", + "lightness": "80%", + "chromaticity": "25%", + "rgb": { + "r": 139, + "g": 214, + "b": 226 + } + }, + "H220L85C05": { + "description": "Transparent Blue", + "hue": "220°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 205, + "g": 219, + "b": 221 + } + }, + "H220L85C10": { + "description": "Ice Shard Soft Blue", + "hue": "220°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 193, + "g": 222, + "b": 226 + } + }, + "H220L85C15": { + "description": "Polar Blue", + "hue": "220°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 179, + "g": 224, + "b": 231 + } + }, + "H220L90C05": { + "description": "Cold Soft Blue", + "hue": "220°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 217, + "g": 231, + "b": 230 + } + }, + "H220L90C10": { + "description": "Full Moon Grey", + "hue": "220°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 207, + "g": 234, + "b": 233 + } + }, + "H230L20C10": { + "description": "Ore Bluish Black", + "hue": "230°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 28, + "g": 51, + "b": 57 + } + }, + "H230L20C15": { + "description": "Firmanent Blue", + "hue": "230°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 17, + "g": 53, + "b": 63 + } + }, + "H230L20C20": { + "description": "Prussian Blue", + "hue": "230°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 0, + "g": 52, + "b": 66 + } + }, + "H230L30C10": { + "description": "Galenite Blue", + "hue": "230°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 55, + "g": 75, + "b": 82 + } + }, + "H230L30C15": { + "description": "Berry Blue Green", + "hue": "230°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 38, + "g": 75, + "b": 86 + } + }, + "H230L30C20": { + "description": "Teal Dark Blue", + "hue": "230°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 15, + "g": 77, + "b": 92 + } + }, + "H230L30C25": { + "description": "Thunderstorm Blue", + "hue": "230°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 79, + "b": 99 + } + }, + "H230L40C10": { + "description": "Cone Green Blue", + "hue": "230°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 74, + "g": 97, + "b": 105 + } + }, + "H230L40C15": { + "description": "Juniper Berry Blue", + "hue": "230°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 63, + "g": 98, + "b": 110 + } + }, + "H230L40C20": { + "description": "Loon Turquoise", + "hue": "230°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 46, + "g": 102, + "b": 118 + } + }, + "H230L40C25": { + "description": "Workshop Blue", + "hue": "230°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 2, + "g": 102, + "b": 123 + } + }, + "H230L40C30": { + "description": "Pilot Blue", + "hue": "230°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 105, + "b": 129 + } + }, + "H230L40C35": { + "description": "Ink Blue", + "hue": "230°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 107, + "b": 136 + } + }, + "H230L40C40": { + "description": "Techno Blue", + "hue": "230°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 107, + "b": 139 + } + }, + "H230L50C10": { + "description": "Gravel Grey Blue", + "hue": "230°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 99, + "g": 122, + "b": 130 + } + }, + "H230L50C15": { + "description": "Spruce Blue", + "hue": "230°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 87, + "g": 126, + "b": 137 + } + }, + "H230L50C20": { + "description": "Casual Blue", + "hue": "230°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 73, + "g": 128, + "b": 144 + } + }, + "H230L50C25": { + "description": "Forget-Me-Not Blue", + "hue": "230°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 53, + "g": 128, + "b": 148 + } + }, + "H230L50C30": { + "description": "Zircon Blue", + "hue": "230°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 132, + "b": 157 + } + }, + "H230L50C35": { + "description": "Lagoon Blue", + "hue": "230°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 132, + "b": 160 + } + }, + "H230L50C40": { + "description": "Azores Blue", + "hue": "230°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 133, + "b": 167 + } + }, + "H230L60C10": { + "description": "Kingfisher Grey", + "hue": "230°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 126, + "g": 150, + "b": 159 + } + }, + "H230L60C15": { + "description": "Silver Fir Blue", + "hue": "230°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 113, + "g": 150, + "b": 162 + } + }, + "H230L60C20": { + "description": "Pyjama Blue", + "hue": "230°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 98, + "g": 153, + "b": 170 + } + }, + "H230L60C25": { + "description": "Starflower Blue", + "hue": "230°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 78, + "g": 154, + "b": 176 + } + }, + "H230L60C30": { + "description": "Sports Blue", + "hue": "230°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 57, + "g": 155, + "b": 180 + } + }, + "H230L60C35": { + "description": "Greek Blue", + "hue": "230°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 159, + "b": 189 + } + }, + "H230L60C40": { + "description": "Alpine Blue", + "hue": "230°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 160, + "b": 195 + } + }, + "H230L70C10": { + "description": "Ice Gull Grey Blue", + "hue": "230°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 155, + "g": 178, + "b": 186 + } + }, + "H230L70C15": { + "description": "Thistleblossom Soft Blue", + "hue": "230°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 138, + "g": 179, + "b": 191 + } + }, + "H230L70C20": { + "description": "Tennis Blue", + "hue": "230°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 124, + "g": 181, + "b": 198 + } + }, + "H230L70C25": { + "description": "Vintage Blue", + "hue": "230°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 111, + "g": 183, + "b": 204 + } + }, + "H230L70C30": { + "description": "Fitness Blue", + "hue": "230°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 91, + "g": 185, + "b": 210 + } + }, + "H230L80C10": { + "description": "Pallid Blue", + "hue": "230°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 179, + "g": 205, + "b": 212 + } + }, + "H230L80C15": { + "description": "Alpine Morning Blue", + "hue": "230°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 166, + "g": 204, + "b": 216 + } + }, + "H230L80C20": { + "description": "Light Blue", + "hue": "230°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 155, + "g": 208, + "b": 225 + } + }, + "H230L85C05": { + "description": "Polar Soft Blue", + "hue": "230°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 208, + "g": 220, + "b": 222 + } + }, + "H230L85C10": { + "description": "Washing Powder White", + "hue": "230°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 194, + "g": 220, + "b": 227 + } + }, + "H230L85C15": { + "description": "Himalaya White Blue", + "hue": "230°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 185, + "g": 222, + "b": 233 + } + }, + "H230L85C20": { + "description": "Atmospheric Soft Blue", + "hue": "230°", + "lightness": "85%", + "chromaticity": "20%", + "rgb": { + "r": 172, + "g": 225, + "b": 240 + } + }, + "H230L90C05": { + "description": "Brilliant White", + "hue": "230°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 218, + "g": 230, + "b": 229 + } + }, + "H240L20C05": { + "description": "Nightshade Blue", + "hue": "240°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 41, + "g": 49, + "b": 53 + } + }, + "H240L20C10": { + "description": "Elderberry Black", + "hue": "240°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 30, + "g": 50, + "b": 59 + } + }, + "H240L20C15": { + "description": "Metal Blue", + "hue": "240°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 15, + "g": 51, + "b": 65 + } + }, + "H240L20C20": { + "description": "Crowberry Blue", + "hue": "240°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 0, + "g": 52, + "b": 71 + } + }, + "H240L20C22": { + "description": "Rich Blue", + "hue": "240°", + "lightness": "20%", + "chromaticity": "22%", + "rgb": { + "r": 0, + "g": 52, + "b": 74 + } + }, + "H240L30C05": { + "description": "Diamond Grey", + "hue": "240°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 62, + "g": 71, + "b": 75 + } + }, + "H240L30C10": { + "description": "Dirty Blue", + "hue": "240°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 52, + "g": 73, + "b": 83 + } + }, + "H240L30C15": { + "description": "Deep Sea Blue", + "hue": "240°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 42, + "g": 75, + "b": 90 + } + }, + "H240L30C20": { + "description": "Lasurite Blue", + "hue": "240°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 23, + "g": 76, + "b": 96 + } + }, + "H240L30C25": { + "description": "Work Blue", + "hue": "240°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 77, + "b": 103 + } + }, + "H240L30C30": { + "description": "Gemstone Blue", + "hue": "240°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 79, + "b": 109 + } + }, + "H240L30C35": { + "description": "Captain Blue", + "hue": "240°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 81, + "b": 113 + } + }, + "H240L40C05": { + "description": "Blue Anthracite", + "hue": "240°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 85, + "g": 94, + "b": 100 + } + }, + "H240L40C10": { + "description": "Blackthorn Blue", + "hue": "240°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 76, + "g": 96, + "b": 107 + } + }, + "H240L40C15": { + "description": "Celeste Blue", + "hue": "240°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 64, + "g": 99, + "b": 116 + } + }, + "H240L40C20": { + "description": "Denim Blue", + "hue": "240°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 47, + "g": 100, + "b": 121 + } + }, + "H240L40C25": { + "description": "Orient Blue", + "hue": "240°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 21, + "g": 102, + "b": 129 + } + }, + "H240L40C30": { + "description": "Sailor Blue", + "hue": "240°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 102, + "b": 135 + } + }, + "H240L40C35": { + "description": "Stone Blue", + "hue": "240°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 104, + "b": 141 + } + }, + "H240L40C40": { + "description": "Pure Light Blue", + "hue": "240°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 106, + "b": 147 + } + }, + "H240L50C05": { + "description": "Smoky Blue", + "hue": "240°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 111, + "g": 120, + "b": 125 + } + }, + "H240L50C10": { + "description": "Tool Blue", + "hue": "240°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 99, + "g": 121, + "b": 133 + } + }, + "H240L50C15": { + "description": "Technical Blue", + "hue": "240°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 88, + "g": 124, + "b": 141 + } + }, + "H240L50C20": { + "description": "Coelin Blue", + "hue": "240°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 73, + "g": 125, + "b": 147 + } + }, + "H240L50C25": { + "description": "Greenland Blue", + "hue": "240°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 54, + "g": 127, + "b": 154 + } + }, + "H240L50C30": { + "description": "Summer Blue", + "hue": "240°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 24, + "g": 128, + "b": 161 + } + }, + "H240L50C35": { + "description": "Advertising Blue", + "hue": "240°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 129, + "b": 168 + } + }, + "H240L50C40": { + "description": "Tusche Blue", + "hue": "240°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 130, + "b": 173 + } + }, + "H240L60C05": { + "description": "Carrier Pigeon Blue", + "hue": "240°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 136, + "g": 147, + "b": 152 + } + }, + "H240L60C10": { + "description": "Bird Blue", + "hue": "240°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 123, + "g": 146, + "b": 158 + } + }, + "H240L60C15": { + "description": "Architecture Blue", + "hue": "240°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 113, + "g": 149, + "b": 166 + } + }, + "H240L60C20": { + "description": "Shirt Blue", + "hue": "240°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 101, + "g": 152, + "b": 175 + } + }, + "H240L60C25": { + "description": "Steel Light Blue", + "hue": "240°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 85, + "g": 153, + "b": 182 + } + }, + "H240L60C30": { + "description": "Fairytale Blue", + "hue": "240°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 62, + "g": 154, + "b": 189 + } + }, + "H240L60C35": { + "description": "Princess Blue", + "hue": "240°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 20, + "g": 156, + "b": 196 + } + }, + "H240L60C40": { + "description": "Clear Blue", + "hue": "240°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 159, + "b": 200 + } + }, + "H240L70C05": { + "description": "Laundry Blue", + "hue": "240°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 162, + "g": 173, + "b": 179 + } + }, + "H240L70C10": { + "description": "Eye Blue", + "hue": "240°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 152, + "g": 175, + "b": 186 + } + }, + "H240L70C15": { + "description": "Bermuda Blue", + "hue": "240°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 140, + "g": 177, + "b": 194 + } + }, + "H240L70C20": { + "description": "Sea Blue", + "hue": "240°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 128, + "g": 178, + "b": 201 + } + }, + "H240L70C25": { + "description": "Madonna Blue", + "hue": "240°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 113, + "g": 181, + "b": 209 + } + }, + "H240L70C30": { + "description": "Caribbean Blue", + "hue": "240°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 95, + "g": 181, + "b": 214 + } + }, + "H240L80C05": { + "description": "Hazy Blue", + "hue": "240°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 188, + "g": 200, + "b": 204 + } + }, + "H240L80C10": { + "description": "Light Topaz Soft Blue", + "hue": "240°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 181, + "g": 205, + "b": 215 + } + }, + "H240L80C15": { + "description": "Baby Blue", + "hue": "240°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 169, + "g": 205, + "b": 221 + } + }, + "H240L80C20": { + "description": "Crystal Blue", + "hue": "240°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 155, + "g": 208, + "b": 229 + } + }, + "H240L85C05": { + "description": "Ice Grey", + "hue": "240°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 206, + "g": 218, + "b": 222 + } + }, + "H240L85C10": { + "description": "Air Blue", + "hue": "240°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 195, + "g": 219, + "b": 228 + } + }, + "H240L85C15": { + "description": "Paris Blue", + "hue": "240°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 183, + "g": 221, + "b": 237 + } + }, + "H240L90C05": { + "description": "Soft Blue White", + "hue": "240°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 218, + "g": 231, + "b": 233 + } + }, + "H240L90C10": { + "description": "Chalky Blue White", + "hue": "240°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 208, + "g": 235, + "b": 241 + } + }, + "H250L20C20": { + "description": "Cosmos Blue", + "hue": "250°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 0, + "g": 50, + "b": 73 + } + }, + "H250L20C25": { + "description": "Dark Denim Blue", + "hue": "250°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 51, + "b": 79 + } + }, + "H250L30C15": { + "description": "Black Forest Blue", + "hue": "250°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 41, + "g": 72, + "b": 90 + } + }, + "H250L30C20": { + "description": "Swallow Blue", + "hue": "250°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 21, + "g": 73, + "b": 98 + } + }, + "H250L30C25": { + "description": "Navy Dark Blue", + "hue": "250°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 76, + "b": 106 + } + }, + "H250L30C30": { + "description": "Pompeii Blue", + "hue": "250°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 76, + "b": 113 + } + }, + "H250L40C10": { + "description": "Trekking Blue", + "hue": "250°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 78, + "g": 96, + "b": 109 + } + }, + "H250L40C15": { + "description": "Steel Blue Grey", + "hue": "250°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 67, + "g": 97, + "b": 117 + } + }, + "H250L40C20": { + "description": "Berry Blue", + "hue": "250°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 50, + "g": 96, + "b": 122 + } + }, + "H250L40C25": { + "description": "Linen Blue", + "hue": "250°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 29, + "g": 99, + "b": 131 + } + }, + "H250L40C30": { + "description": "Pool Blue", + "hue": "250°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 101, + "b": 140 + } + }, + "H250L40C35": { + "description": "Kingfisher Blue", + "hue": "250°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 100, + "b": 145 + } + }, + "H250L40C40": { + "description": "Europe Blue", + "hue": "250°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 103, + "b": 150 + } + }, + "H250L50C10": { + "description": "Metal Grey", + "hue": "250°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 103, + "g": 121, + "b": 134 + } + }, + "H250L50C15": { + "description": "Titanium Blue", + "hue": "250°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 91, + "g": 121, + "b": 142 + } + }, + "H250L50C20": { + "description": "Mallorca Blue", + "hue": "250°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 81, + "g": 123, + "b": 149 + } + }, + "H250L50C25": { + "description": "Linoleum Blue", + "hue": "250°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 66, + "g": 124, + "b": 157 + } + }, + "H250L50C30": { + "description": "Prominent Blue", + "hue": "250°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 43, + "g": 125, + "b": 166 + } + }, + "H250L50C35": { + "description": "Turkish Blue", + "hue": "250°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 127, + "b": 174 + } + }, + "H250L50C40": { + "description": "Primal Blue", + "hue": "250°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 129, + "b": 181 + } + }, + "H250L60C10": { + "description": "Bird Blue Grey", + "hue": "250°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 127, + "g": 146, + "b": 160 + } + }, + "H250L60C15": { + "description": "Gentle Blue", + "hue": "250°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 118, + "g": 148, + "b": 169 + } + }, + "H250L60C20": { + "description": "Aragonite Blue", + "hue": "250°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 106, + "g": 149, + "b": 177 + } + }, + "H250L60C25": { + "description": "Pearl Blue", + "hue": "250°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 93, + "g": 150, + "b": 185 + } + }, + "H250L60C30": { + "description": "Topaz Blue", + "hue": "250°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 75, + "g": 152, + "b": 192 + } + }, + "H250L60C35": { + "description": "Stratos Blue", + "hue": "250°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 55, + "g": 153, + "b": 200 + } + }, + "H250L60C40": { + "description": "Structural Blue", + "hue": "250°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 14, + "g": 155, + "b": 209 + } + }, + "H250L70C10": { + "description": "Foggy Blue", + "hue": "250°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 153, + "g": 174, + "b": 187 + } + }, + "H250L70C15": { + "description": "Chalk Blue", + "hue": "250°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 144, + "g": 176, + "b": 196 + } + }, + "H250L70C20": { + "description": "Medium Blue", + "hue": "250°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 133, + "g": 176, + "b": 204 + } + }, + "H250L70C25": { + "description": "Meadow Blossom Blue", + "hue": "250°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 122, + "g": 178, + "b": 212 + } + }, + "H250L70C30": { + "description": "Broom Butterfly Blue", + "hue": "250°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 107, + "g": 179, + "b": 219 + } + }, + "H250L80C10": { + "description": "Light Cyan", + "hue": "250°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 182, + "g": 202, + "b": 215 + } + }, + "H250L80C15": { + "description": "Himalaya Blue", + "hue": "250°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 174, + "g": 205, + "b": 224 + } + }, + "H250L80C20": { + "description": "Velvet Blue", + "hue": "250°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 159, + "g": 202, + "b": 229 + } + }, + "H250L85C05": { + "description": "White Blue", + "hue": "250°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 205, + "g": 214, + "b": 219 + } + }, + "H250L85C10": { + "description": "Washing Powder Soft Blue", + "hue": "250°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 195, + "g": 216, + "b": 228 + } + }, + "H250L85C15": { + "description": "Diamond Soft Blue", + "hue": "250°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 188, + "g": 218, + "b": 236 + } + }, + "H250L90C05": { + "description": "Ice White", + "hue": "250°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 218, + "g": 227, + "b": 231 + } + }, + "H260L20C05": { + "description": "Blue-Black", + "hue": "260°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 36, + "g": 49, + "b": 61 + } + }, + "H260L20C10": { + "description": "Nato Blue", + "hue": "260°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 21, + "g": 48, + "b": 67 + } + }, + "H260L20C15": { + "description": "Suit Blue", + "hue": "260°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 43, + "g": 48, + "b": 54 + } + }, + "H260L20C20": { + "description": "Halite Blue", + "hue": "260°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 9, + "g": 50, + "b": 74 + } + }, + "H260L30C05": { + "description": "Alpine Duck Grey", + "hue": "260°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 64, + "g": 70, + "b": 77 + } + }, + "H260L30C10": { + "description": "Bronze Blue", + "hue": "260°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 58, + "g": 72, + "b": 86 + } + }, + "H260L30C15": { + "description": "Berlin Blue", + "hue": "260°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 49, + "g": 72, + "b": 92 + } + }, + "H260L30C20": { + "description": "French Blue", + "hue": "260°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 38, + "g": 73, + "b": 99 + } + }, + "H260L30C25": { + "description": "Tanzanite Blue", + "hue": "260°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 17, + "g": 74, + "b": 107 + } + }, + "H260L30C30": { + "description": "Opal Blue", + "hue": "260°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 0, + "g": 76, + "b": 115 + } + }, + "H260L30C35": { + "description": "Royal Blue", + "hue": "260°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 77, + "b": 124 + } + }, + "H260L40C05": { + "description": "Swedish Blue", + "hue": "260°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 87, + "g": 93, + "b": 100 + } + }, + "H260L40C10": { + "description": "Sheet Blue", + "hue": "260°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 82, + "g": 97, + "b": 111 + } + }, + "H260L40C15": { + "description": "Plum Blue", + "hue": "260°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 75, + "g": 97, + "b": 118 + } + }, + "H260L40C20": { + "description": "Cadet Blue", + "hue": "260°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 61, + "g": 95, + "b": 124 + } + }, + "H260L40C25": { + "description": "Enamel Blue", + "hue": "260°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 50, + "g": 98, + "b": 133 + } + }, + "H260L40C30": { + "description": "Copenhagen Blue", + "hue": "260°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 33, + "g": 99, + "b": 139 + } + }, + "H260L40C35": { + "description": "Bauhaus Blue", + "hue": "260°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 99, + "b": 146 + } + }, + "H260L40C40": { + "description": "Navy Blue", + "hue": "260°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 101, + "b": 157 + } + }, + "H260L40C45": { + "description": "LED Blue", + "hue": "260°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 0, + "g": 102, + "b": 163 + } + }, + "H260L50C05": { + "description": "Spitsbergen Blue", + "hue": "260°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 111, + "g": 117, + "b": 125 + } + }, + "H260L50C10": { + "description": "Cypress Grey Blue", + "hue": "260°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 106, + "g": 119, + "b": 134 + } + }, + "H260L50C15": { + "description": "Mahonia Berry Blue", + "hue": "260°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 98, + "g": 120, + "b": 142 + } + }, + "H260L50C20": { + "description": "Cropper Blue", + "hue": "260°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 92, + "g": 123, + "b": 151 + } + }, + "H260L50C25": { + "description": "Biedermeier Blue", + "hue": "260°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 80, + "g": 124, + "b": 160 + } + }, + "H260L50C30": { + "description": "Beijing Blue", + "hue": "260°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 62, + "g": 125, + "b": 170 + } + }, + "H260L50C35": { + "description": "Vermeer Blue", + "hue": "260°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 43, + "g": 124, + "b": 175 + } + }, + "H260L50C40": { + "description": "Meissen Blue", + "hue": "260°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 127, + "b": 185 + } + }, + "H260L60C05": { + "description": "Seal Grey", + "hue": "260°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 138, + "g": 144, + "b": 152 + } + }, + "H260L60C10": { + "description": "Diopside Blue", + "hue": "260°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 131, + "g": 145, + "b": 160 + } + }, + "H260L60C15": { + "description": "Nordland Blue", + "hue": "260°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 126, + "g": 149, + "b": 171 + } + }, + "H260L60C20": { + "description": "Cranberry Blue", + "hue": "260°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 116, + "g": 148, + "b": 177 + } + }, + "H260L60C25": { + "description": "Lupine Blue", + "hue": "260°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 106, + "g": 150, + "b": 186 + } + }, + "H260L60C30": { + "description": "Blueberry Soft Blue", + "hue": "260°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 94, + "g": 150, + "b": 195 + } + }, + "H260L60C35": { + "description": "Brilliant Blue", + "hue": "260°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 79, + "g": 152, + "b": 203 + } + }, + "H260L70C05": { + "description": "Northern Light Grey", + "hue": "260°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 167, + "g": 174, + "b": 180 + } + }, + "H260L70C10": { + "description": "Petrel Blue Grey", + "hue": "260°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 160, + "g": 174, + "b": 188 + } + }, + "H260L70C15": { + "description": "Nordland Light Blue", + "hue": "260°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 150, + "g": 174, + "b": 197 + } + }, + "H260L70C20": { + "description": "Matte Blue", + "hue": "260°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 143, + "g": 176, + "b": 206 + } + }, + "H260L70C25": { + "description": "Pacific Blue", + "hue": "260°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 131, + "g": 176, + "b": 214 + } + }, + "H260L80C05": { + "description": "Light Blue Grey", + "hue": "260°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 192, + "g": 200, + "b": 207 + } + }, + "H260L80C10": { + "description": "Powder Soft Blue", + "hue": "260°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 185, + "g": 201, + "b": 215 + } + }, + "H260L80C15": { + "description": "Wind Blue", + "hue": "260°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 177, + "g": 201, + "b": 223 + } + }, + "H260L85C05": { + "description": "Satin White", + "hue": "260°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 207, + "g": 213, + "b": 219 + } + }, + "H260L85C10": { + "description": "Sea Breeze Green", + "hue": "260°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 201, + "g": 217, + "b": 231 + } + }, + "H260L90C05": { + "description": "Milk Blue", + "hue": "260°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 220, + "g": 227, + "b": 231 + } + }, + "H270L20C20": { + "description": "Crow Black Blue", + "hue": "270°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 17, + "g": 47, + "b": 75 + } + }, + "H270L20C25": { + "description": "Indigo Black", + "hue": "270°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 0, + "g": 46, + "b": 81 + } + }, + "H270L20C29": { + "description": "Effervescent Blue", + "hue": "270°", + "lightness": "20%", + "chromaticity": "29%", + "rgb": { + "r": 0, + "g": 49, + "b": 90 + } + }, + "H270L30C15": { + "description": "Midnight Blue", + "hue": "270°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 54, + "g": 71, + "b": 92 + } + }, + "H270L30C20": { + "description": "Dark Blue", + "hue": "270°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 46, + "g": 71, + "b": 100 + } + }, + "H270L30C25": { + "description": "Grape Blue", + "hue": "270°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 36, + "g": 72, + "b": 108 + } + }, + "H270L30C30": { + "description": "Medici Blue", + "hue": "270°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 16, + "g": 71, + "b": 115 + } + }, + "H270L30C35": { + "description": "Kolibri Blue", + "hue": "270°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 0, + "g": 71, + "b": 122 + } + }, + "H270L30C40": { + "description": "Prince Blue", + "hue": "270°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 72, + "b": 131 + } + }, + "H270L40C15": { + "description": "Pewter Grey", + "hue": "270°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 79, + "g": 95, + "b": 118 + } + }, + "H270L40C20": { + "description": "Parlour Blue", + "hue": "270°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 70, + "g": 95, + "b": 126 + } + }, + "H270L40C25": { + "description": "Functional Blue", + "hue": "270°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 63, + "g": 96, + "b": 134 + } + }, + "H270L40C30": { + "description": "Make-Up Blue", + "hue": "270°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 51, + "g": 95, + "b": 141 + } + }, + "H270L40C35": { + "description": "Lapis Lazuli Blue", + "hue": "270°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 33, + "g": 95, + "b": 150 + } + }, + "H270L40C40": { + "description": "Magic Blue", + "hue": "270°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 0, + "g": 95, + "b": 157 + } + }, + "H270L50C10": { + "description": "Brocade Blue", + "hue": "270°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 109, + "g": 120, + "b": 136 + } + }, + "H270L50C15": { + "description": "Noble Blue", + "hue": "270°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 105, + "g": 121, + "b": 145 + } + }, + "H270L50C20": { + "description": "Delft Blue", + "hue": "270°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 96, + "g": 121, + "b": 153 + } + }, + "H270L50C25": { + "description": "Cocktail Blue", + "hue": "270°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 90, + "g": 122, + "b": 162 + } + }, + "H270L50C30": { + "description": "Sage Blossom Blue", + "hue": "270°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 78, + "g": 120, + "b": 169 + } + }, + "H270L50C35": { + "description": "Viennese Blue", + "hue": "270°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 66, + "g": 120, + "b": 175 + } + }, + "H270L50C40": { + "description": "Cornflower Blue", + "hue": "270°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 50, + "g": 122, + "b": 185 + } + }, + "H270L60C10": { + "description": "Fantasy Grey", + "hue": "270°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 133, + "g": 145, + "b": 162 + } + }, + "H270L60C15": { + "description": "Lilac Blue", + "hue": "270°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 130, + "g": 147, + "b": 172 + } + }, + "H270L60C20": { + "description": "Lavender Blue", + "hue": "270°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 123, + "g": 147, + "b": 180 + } + }, + "H270L60C25": { + "description": "Delphinium Blue", + "hue": "270°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 116, + "g": 148, + "b": 188 + } + }, + "H270L60C30": { + "description": "Eyeshadow Blue", + "hue": "270°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 107, + "g": 148, + "b": 197 + } + }, + "H270L60C35": { + "description": "Butterfly Blue", + "hue": "270°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 95, + "g": 147, + "b": 204 + } + }, + "H270L70C10": { + "description": "Feather Soft Blue", + "hue": "270°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 162, + "g": 174, + "b": 191 + } + }, + "H270L70C15": { + "description": "Satin Soft Blue", + "hue": "270°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 156, + "g": 173, + "b": 199 + } + }, + "H270L70C20": { + "description": "Angel Blue", + "hue": "270°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 150, + "g": 174, + "b": 208 + } + }, + "H270L70C25": { + "description": "Boy Blue", + "hue": "270°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 140, + "g": 172, + "b": 214 + } + }, + "H270L80C10": { + "description": "Light Pearl Soft Blue", + "hue": "270°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 190, + "g": 200, + "b": 216 + } + }, + "H270L80C15": { + "description": "Retina Soft Blue", + "hue": "270°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 182, + "g": 199, + "b": 224 + } + }, + "H270L85C05": { + "description": "Angel Hair Silver", + "hue": "270°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 210, + "g": 214, + "b": 219 + } + }, + "H270L85C10": { + "description": "Mother-Of-Pearl Silver", + "hue": "270°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 204, + "g": 214, + "b": 230 + } + }, + "H270L85C15": { + "description": "Murano Soft Blue", + "hue": "270°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 197, + "g": 214, + "b": 238 + } + }, + "H270L90C05": { + "description": "Bleached White", + "hue": "270°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 223, + "g": 227, + "b": 232 + } + }, + "H280L20C05": { + "description": "Granite Black", + "hue": "280°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 49, + "g": 50, + "b": 56 + } + }, + "H280L20C10": { + "description": "Diamond Black", + "hue": "280°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 43, + "g": 48, + "b": 62 + } + }, + "H280L20C15": { + "description": "Crow Black", + "hue": "280°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 38, + "g": 49, + "b": 69 + } + }, + "H280L20C20": { + "description": "Manganese Black", + "hue": "280°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 32, + "g": 47, + "b": 75 + } + }, + "H280L20C25": { + "description": "Elite Blue", + "hue": "280°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 27, + "g": 48, + "b": 83 + } + }, + "H280L20C30": { + "description": "Ambassador Blue", + "hue": "280°", + "lightness": "20%", + "chromaticity": "30%", + "rgb": { + "r": 13, + "g": 47, + "b": 90 + } + }, + "H280L30C05": { + "description": "Smoking Night Blue", + "hue": "280°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 67, + "g": 69, + "b": 76 + } + }, + "H280L30C10": { + "description": "Meteorite Black Blue", + "hue": "280°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 65, + "g": 71, + "b": 86 + } + }, + "H280L30C15": { + "description": "Anthracite Blue", + "hue": "280°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 61, + "g": 71, + "b": 94 + } + }, + "H280L30C20": { + "description": "Garnet Stone Blue", + "hue": "280°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 56, + "g": 72, + "b": 102 + } + }, + "H280L30C25": { + "description": "Hydrogen Blue", + "hue": "280°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 51, + "g": 71, + "b": 109 + } + }, + "H280L30C30": { + "description": "Deep Blue", + "hue": "280°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 38, + "g": 70, + "b": 116 + } + }, + "H280L30C35": { + "description": "Theatre Blue", + "hue": "280°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 33, + "g": 70, + "b": 122 + } + }, + "H280L30C40": { + "description": "Poster Blue", + "hue": "280°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 19, + "g": 70, + "b": 130 + } + }, + "H280L40C05": { + "description": "Gallery Grey", + "hue": "280°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 91, + "g": 93, + "b": 101 + } + }, + "H280L40C10": { + "description": "Suede Indigo", + "hue": "280°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 88, + "g": 93, + "b": 109 + } + }, + "H280L40C15": { + "description": "Dark Lavender", + "hue": "280°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 84, + "g": 94, + "b": 118 + } + }, + "H280L40C20": { + "description": "Starry Sky Blue", + "hue": "280°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 79, + "g": 94, + "b": 126 + } + }, + "H280L40C25": { + "description": "Indigo Navy Blue", + "hue": "280°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 76, + "g": 94, + "b": 135 + } + }, + "H280L40C30": { + "description": "Evening Blue", + "hue": "280°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 68, + "g": 94, + "b": 141 + } + }, + "H280L40C35": { + "description": "Portuguese Blue", + "hue": "280°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 60, + "g": 94, + "b": 149 + } + }, + "H280L40C40": { + "description": "Neptune Blue", + "hue": "280°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 46, + "g": 93, + "b": 157 + } + }, + "H280L40C45": { + "description": "Hyacinth Blue", + "hue": "280°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 30, + "g": 93, + "b": 165 + } + }, + "H280L50C05": { + "description": "Noble Grey", + "hue": "280°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 115, + "g": 119, + "b": 127 + } + }, + "H280L50C10": { + "description": "Ice Blue Grey", + "hue": "280°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 113, + "g": 119, + "b": 135 + } + }, + "H280L50C15": { + "description": "Granite Blue", + "hue": "280°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 109, + "g": 119, + "b": 143 + } + }, + "H280L50C20": { + "description": "Lavender Mauve", + "hue": "280°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 104, + "g": 118, + "b": 152 + } + }, + "H280L50C25": { + "description": "Costume Blue", + "hue": "280°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 100, + "g": 119, + "b": 160 + } + }, + "H280L50C30": { + "description": "Light Mauve", + "hue": "280°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 95, + "g": 118, + "b": 168 + } + }, + "H280L50C35": { + "description": "Sapphire Shimmer Blue", + "hue": "280°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 87, + "g": 118, + "b": 175 + } + }, + "H280L50C40": { + "description": "Diva Violet", + "hue": "280°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 80, + "g": 119, + "b": 186 + } + }, + "H280L60C05": { + "description": "Tulle Grey", + "hue": "280°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 141, + "g": 144, + "b": 152 + } + }, + "H280L60C10": { + "description": "Sweet Lavender", + "hue": "280°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 137, + "g": 143, + "b": 160 + } + }, + "H280L60C15": { + "description": "Marble Blue", + "hue": "280°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 134, + "g": 143, + "b": 169 + } + }, + "H280L60C20": { + "description": "Misty Violet", + "hue": "280°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 131, + "g": 144, + "b": 179 + } + }, + "H280L60C25": { + "description": "Opal Violet", + "hue": "280°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 126, + "g": 143, + "b": 187 + } + }, + "H280L60C30": { + "description": "Persian Violet", + "hue": "280°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 121, + "g": 144, + "b": 194 + } + }, + "H280L60C35": { + "description": "Organza Violet", + "hue": "280°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 115, + "g": 145, + "b": 204 + } + }, + "H280L70C05": { + "description": "Taupe Grey", + "hue": "280°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 167, + "g": 169, + "b": 177 + } + }, + "H280L70C10": { + "description": "Tulle Violet", + "hue": "280°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 166, + "g": 172, + "b": 188 + } + }, + "H280L70C15": { + "description": "Foxflower Viola", + "hue": "280°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 162, + "g": 172, + "b": 197 + } + }, + "H280L70C20": { + "description": "Lilac Scent Soft Blue", + "hue": "280°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 158, + "g": 171, + "b": 208 + } + }, + "H280L70C25": { + "description": "Aster Flower Blue", + "hue": "280°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 155, + "g": 172, + "b": 216 + } + }, + "H280L80C05": { + "description": "Viola Ice Grey", + "hue": "280°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 198, + "g": 200, + "b": 208 + } + }, + "H280L80C10": { + "description": "Hyacinth White Soft Blue", + "hue": "280°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 193, + "g": 199, + "b": 215 + } + }, + "H280L80C15": { + "description": "Violet Scent Soft Blue", + "hue": "280°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 188, + "g": 198, + "b": 223 + } + }, + "H280L85C05": { + "description": "Pebble Soft Blue White", + "hue": "280°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 211, + "g": 215, + "b": 220 + } + }, + "H280L85C10": { + "description": "Jewellery White", + "hue": "280°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 206, + "g": 214, + "b": 230 + } + }, + "H280L90C05": { + "description": "Mauve White", + "hue": "280°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 223, + "g": 227, + "b": 232 + } + }, + "H280L93C05": { + "description": "Porcelain White", + "hue": "280°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 234, + "g": 237, + "b": 242 + } + }, + "H290L20C10": { + "description": "Spinel Stone Black", + "hue": "290°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 39, + "g": 42, + "b": 59 + } + }, + "H290L20C15": { + "description": "Black Violet", + "hue": "290°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 43, + "g": 44, + "b": 66 + } + }, + "H290L20C20": { + "description": "Tropical Night Blue", + "hue": "290°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 42, + "g": 46, + "b": 76 + } + }, + "H290L20C25": { + "description": "Indigo Violet", + "hue": "290°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 36, + "g": 44, + "b": 82 + } + }, + "H290L20C30": { + "description": "Ultramarine Violet", + "hue": "290°", + "lightness": "20%", + "chromaticity": "30%", + "rgb": { + "r": 29, + "g": 42, + "b": 88 + } + }, + "H290L20C35": { + "description": "Schiava Blue", + "hue": "290°", + "lightness": "20%", + "chromaticity": "35%", + "rgb": { + "r": 25, + "g": 41, + "b": 97 + } + }, + "H290L30C10": { + "description": "Flintstone Blue", + "hue": "290°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 67, + "g": 66, + "b": 82 + } + }, + "H290L30C15": { + "description": "Spinel Black", + "hue": "290°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 65, + "g": 67, + "b": 91 + } + }, + "H290L30C20": { + "description": "Church Blue", + "hue": "290°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 61, + "g": 65, + "b": 97 + } + }, + "H290L30C25": { + "description": "Gloomy Blue", + "hue": "290°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 60, + "g": 65, + "b": 106 + } + }, + "H290L30C30": { + "description": "Lviv Blue", + "hue": "290°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 56, + "g": 65, + "b": 114 + } + }, + "H290L30C35": { + "description": "British Mauve", + "hue": "290°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 53, + "g": 66, + "b": 123 + } + }, + "H290L30C40": { + "description": "Official Violet", + "hue": "290°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 46, + "g": 65, + "b": 130 + } + }, + "H290L40C10": { + "description": "Shearwater Black", + "hue": "290°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 91, + "g": 91, + "b": 108 + } + }, + "H290L40C15": { + "description": "Agate Violet", + "hue": "290°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 90, + "g": 91, + "b": 116 + } + }, + "H290L40C20": { + "description": "Deep Lavender", + "hue": "290°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 86, + "g": 90, + "b": 125 + } + }, + "H290L40C25": { + "description": "Dusk Mauve", + "hue": "290°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 84, + "g": 88, + "b": 131 + } + }, + "H290L40C30": { + "description": "Rich Violet", + "hue": "290°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 80, + "g": 87, + "b": 139 + } + }, + "H290L40C35": { + "description": "Onion Skin Blue", + "hue": "290°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 76, + "g": 86, + "b": 146 + } + }, + "H290L40C40": { + "description": "Iris Blue", + "hue": "290°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 73, + "g": 88, + "b": 156 + } + }, + "H290L40C45": { + "description": "Violet Blue", + "hue": "290°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 65, + "g": 87, + "b": 162 + } + }, + "H290L50C10": { + "description": "Ash Mauve", + "hue": "290°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 115, + "g": 116, + "b": 134 + } + }, + "H290L50C15": { + "description": "Stormy Mauve", + "hue": "290°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 113, + "g": 115, + "b": 140 + } + }, + "H290L50C20": { + "description": "Silk Crepe Mauve", + "hue": "290°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 110, + "g": 113, + "b": 150 + } + }, + "H290L50C25": { + "description": "Hyacinth Mauve", + "hue": "290°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 111, + "g": 114, + "b": 159 + } + }, + "H290L50C30": { + "description": "Mountain Flower Mauve", + "hue": "290°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 108, + "g": 113, + "b": 166 + } + }, + "H290L50C35": { + "description": "Chalcedony Violet", + "hue": "290°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 103, + "g": 112, + "b": 174 + } + }, + "H290L50C40": { + "description": "Gladiola Blue", + "hue": "290°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 99, + "g": 112, + "b": 182 + } + }, + "H290L60C10": { + "description": "Lavender Blossom Grey", + "hue": "290°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 140, + "g": 141, + "b": 161 + } + }, + "H290L60C15": { + "description": "Delicate Violet", + "hue": "290°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 140, + "g": 141, + "b": 168 + } + }, + "H290L60C20": { + "description": "Opera Mauve", + "hue": "290°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 135, + "g": 139, + "b": 177 + } + }, + "H290L60C25": { + "description": "Soft Blue Lavender", + "hue": "290°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 136, + "g": 140, + "b": 186 + } + }, + "H290L60C30": { + "description": "Pleated Mauve", + "hue": "290°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 133, + "g": 139, + "b": 194 + } + }, + "H290L60C35": { + "description": "True Lavender", + "hue": "290°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 126, + "g": 137, + "b": 200 + } + }, + "H290L70C10": { + "description": "Cream Violet", + "hue": "290°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 169, + "g": 170, + "b": 189 + } + }, + "H290L70C15": { + "description": "Wisteria Light Soft Blue", + "hue": "290°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 166, + "g": 168, + "b": 197 + } + }, + "H290L70C20": { + "description": "Blossom Mauve", + "hue": "290°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 163, + "g": 167, + "b": 204 + } + }, + "H290L70C25": { + "description": "Sorbet Ice Mauve", + "hue": "290°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 161, + "g": 166, + "b": 214 + } + }, + "H290L80C10": { + "description": "Tulip Soft Blue", + "hue": "290°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 195, + "g": 196, + "b": 214 + } + }, + "H290L80C15": { + "description": "Pale Lilac", + "hue": "290°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 195, + "g": 196, + "b": 221 + } + }, + "H290L85C05": { + "description": "Limestone Mauve", + "hue": "290°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 214, + "g": 215, + "b": 219 + } + }, + "H290L85C10": { + "description": "Orchid White", + "hue": "290°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 209, + "g": 213, + "b": 234 + } + }, + "H290L90C05": { + "description": "Violet White", + "hue": "290°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 226, + "g": 227, + "b": 233 + } + }, + "H290L93C05": { + "description": "Lilac White", + "hue": "290°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 234, + "g": 236, + "b": 241 + } + }, + "H300L20C05": { + "description": "Night Black", + "hue": "300°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 49, + "g": 47, + "b": 54 + } + }, + "H300L20C10": { + "description": "Heron Blue", + "hue": "300°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 47, + "g": 43, + "b": 58 + } + }, + "H300L20C15": { + "description": "Viola Black", + "hue": "300°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 47, + "g": 42, + "b": 65 + } + }, + "H300L20C20": { + "description": "Blackberry Black", + "hue": "300°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 46, + "g": 40, + "b": 72 + } + }, + "H300L20C25": { + "description": "Cardinal Mauve", + "hue": "300°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 44, + "g": 40, + "b": 76 + } + }, + "H300L20C30": { + "description": "Ceremonial Purple", + "hue": "300°", + "lightness": "20%", + "chromaticity": "30%", + "rgb": { + "r": 42, + "g": 39, + "b": 86 + } + }, + "H300L30C05": { + "description": "Night Grey", + "hue": "300°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 70, + "g": 68, + "b": 76 + } + }, + "H300L30C10": { + "description": "Mourning Violet", + "hue": "300°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 71, + "g": 67, + "b": 84 + } + }, + "H300L30C15": { + "description": "Club Grey", + "hue": "300°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 70, + "g": 65, + "b": 89 + } + }, + "H300L30C20": { + "description": "Mulberry Mauve Black", + "hue": "300°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 70, + "g": 63, + "b": 96 + } + }, + "H300L30C25": { + "description": "Evening Mauve", + "hue": "300°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 70, + "g": 63, + "b": 103 + } + }, + "H300L30C30": { + "description": "Opera Blue", + "hue": "300°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 69, + "g": 62, + "b": 110 + } + }, + "H300L30C35": { + "description": "Deep Violet", + "hue": "300°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 68, + "g": 62, + "b": 117 + } + }, + "H300L30C40": { + "description": "Sage Violet", + "hue": "300°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 65, + "g": 60, + "b": 123 + } + }, + "H300L40C05": { + "description": "Baroque Grey", + "hue": "300°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 95, + "g": 93, + "b": 100 + } + }, + "H300L40C10": { + "description": "Gobelin Mauve", + "hue": "300°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 94, + "g": 90, + "b": 106 + } + }, + "H300L40C15": { + "description": "Orchid Grey", + "hue": "300°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 94, + "g": 88, + "b": 113 + } + }, + "H300L40C20": { + "description": "Old Mauve", + "hue": "300°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 95, + "g": 87, + "b": 121 + } + }, + "H300L40C25": { + "description": "Parma Mauve", + "hue": "300°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 95, + "g": 86, + "b": 128 + } + }, + "H300L40C30": { + "description": "Wool Violet", + "hue": "300°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 94, + "g": 85, + "b": 135 + } + }, + "H300L40C35": { + "description": "Fine Purple", + "hue": "300°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 94, + "g": 84, + "b": 141 + } + }, + "H300L40C40": { + "description": "Clematis Blue", + "hue": "300°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 90, + "g": 82, + "b": 147 + } + }, + "H300L40C45": { + "description": "Coronation Blue", + "hue": "300°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 89, + "g": 82, + "b": 156 + } + }, + "H300L50C05": { + "description": "Hawk Grey", + "hue": "300°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 119, + "g": 117, + "b": 125 + } + }, + "H300L50C10": { + "description": "Violet Grey", + "hue": "300°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 120, + "g": 115, + "b": 132 + } + }, + "H300L50C15": { + "description": "Capercaillie Mauve", + "hue": "300°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 120, + "g": 114, + "b": 140 + } + }, + "H300L50C20": { + "description": "Parisian Violet", + "hue": "300°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 120, + "g": 112, + "b": 147 + } + }, + "H300L50C25": { + "description": "Tulip Violet", + "hue": "300°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 119, + "g": 111, + "b": 154 + } + }, + "H300L50C30": { + "description": "Toy Mauve", + "hue": "300°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 119, + "g": 110, + "b": 162 + } + }, + "H300L50C35": { + "description": "Wintertime Mauve", + "hue": "300°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 120, + "g": 109, + "b": 170 + } + }, + "H300L50C40": { + "description": "Clear Mauve", + "hue": "300°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 118, + "g": 108, + "b": 176 + } + }, + "H300L60C05": { + "description": "Partridge Grey", + "hue": "300°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 145, + "g": 144, + "b": 152 + } + }, + "H300L60C10": { + "description": "Rose Grey", + "hue": "300°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 146, + "g": 141, + "b": 159 + } + }, + "H300L60C15": { + "description": "Antique Viola", + "hue": "300°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 146, + "g": 139, + "b": 166 + } + }, + "H300L60C20": { + "description": "Larkspur Violet", + "hue": "300°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 146, + "g": 138, + "b": 174 + } + }, + "H300L60C25": { + "description": "Silk Lilac", + "hue": "300°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 145, + "g": 136, + "b": 181 + } + }, + "H300L60C30": { + "description": "Heliotropic Mauve", + "hue": "300°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 145, + "g": 135, + "b": 189 + } + }, + "H300L60C35": { + "description": "Amethyst Grey", + "hue": "300°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 144, + "g": 133, + "b": 196 + } + }, + "H300L70C05": { + "description": "Velvet Grey", + "hue": "300°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 172, + "g": 170, + "b": 179 + } + }, + "H300L70C10": { + "description": "Morning Mist Grey", + "hue": "300°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 173, + "g": 167, + "b": 185 + } + }, + "H300L70C15": { + "description": "Eyeshadow Viola", + "hue": "300°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 173, + "g": 166, + "b": 194 + } + }, + "H300L70C20": { + "description": "Lavender Violet", + "hue": "300°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 174, + "g": 166, + "b": 201 + } + }, + "H300L70C25": { + "description": "Pink Lavender", + "hue": "300°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 173, + "g": 163, + "b": 209 + } + }, + "H300L80C05": { + "description": "Hazy Mauve", + "hue": "300°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 200, + "g": 198, + "b": 206 + } + }, + "H300L80C10": { + "description": "Pale Violet", + "hue": "300°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 198, + "g": 195, + "b": 214 + } + }, + "H300L80C15": { + "description": "Ice Mauve", + "hue": "300°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 201, + "g": 194, + "b": 221 + } + }, + "H300L85C05": { + "description": "Delicate Viola", + "hue": "300°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 215, + "g": 214, + "b": 220 + } + }, + "H300L85C10": { + "description": "Powder Viola White", + "hue": "300°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 217, + "g": 211, + "b": 229 + } + }, + "H300L90C05": { + "description": "Translucent White", + "hue": "300°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 228, + "g": 227, + "b": 233 + } + }, + "H310L20C20": { + "description": "Obsidian Lava Black", + "hue": "310°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 56, + "g": 43, + "b": 70 + } + }, + "H310L20C25": { + "description": "Operetta Mauve", + "hue": "310°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 58, + "g": 40, + "b": 76 + } + }, + "H310L20C30": { + "description": "Powerful Violet", + "hue": "310°", + "lightness": "20%", + "chromaticity": "30%", + "rgb": { + "r": 55, + "g": 34, + "b": 82 + } + }, + "H310L30C15": { + "description": "Dark Grey Mauve", + "hue": "310°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 78, + "g": 68, + "b": 89 + } + }, + "H310L30C20": { + "description": "Powerful Mauve", + "hue": "310°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 76, + "g": 63, + "b": 93 + } + }, + "H310L30C25": { + "description": "English Violet", + "hue": "310°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 81, + "g": 62, + "b": 100 + } + }, + "H310L30C30": { + "description": "Crystal Purple", + "hue": "310°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 83, + "g": 61, + "b": 107 + } + }, + "H310L30C35": { + "description": "Succinct Violet", + "hue": "310°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 81, + "g": 59, + "b": 110 + } + }, + "H310L30C40": { + "description": "Loden Purple", + "hue": "310°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 85, + "g": 58, + "b": 118 + } + }, + "H310L40C10": { + "description": "Dark Pink", + "hue": "310°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 100, + "g": 91, + "b": 107 + } + }, + "H310L40C15": { + "description": "Violet Haze", + "hue": "310°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 103, + "g": 91, + "b": 114 + } + }, + "H310L40C20": { + "description": "Indigo Red", + "hue": "310°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 105, + "g": 90, + "b": 120 + } + }, + "H310L40C25": { + "description": "Charoite Violet", + "hue": "310°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 106, + "g": 87, + "b": 127 + } + }, + "H310L40C30": { + "description": "Royal Purple", + "hue": "310°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 106, + "g": 83, + "b": 131 + } + }, + "H310L40C35": { + "description": "Magenta Violet", + "hue": "310°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 108, + "g": 83, + "b": 137 + } + }, + "H310L40C40": { + "description": "Pure Mauve", + "hue": "310°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 111, + "g": 83, + "b": 144 + } + }, + "H310L50C10": { + "description": "Dull Mauve", + "hue": "310°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 125, + "g": 116, + "b": 133 + } + }, + "H310L50C15": { + "description": "Batik Lilac", + "hue": "310°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 126, + "g": 115, + "b": 139 + } + }, + "H310L50C20": { + "description": "Provence Violet", + "hue": "310°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 130, + "g": 113, + "b": 145 + } + }, + "H310L50C25": { + "description": "Baroness Mauve", + "hue": "310°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 132, + "g": 112, + "b": 152 + } + }, + "H310L50C30": { + "description": "Bitter Violet", + "hue": "310°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 133, + "g": 109, + "b": 158 + } + }, + "H310L50C35": { + "description": "Violet Rose", + "hue": "310°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 132, + "g": 107, + "b": 163 + } + }, + "H310L50C40": { + "description": "Orchid Mauve", + "hue": "310°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 134, + "g": 106, + "b": 170 + } + }, + "H310L60C10": { + "description": "Gentle Mauve", + "hue": "310°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 149, + "g": 140, + "b": 158 + } + }, + "H310L60C15": { + "description": "Smoky Mauve", + "hue": "310°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 153, + "g": 139, + "b": 165 + } + }, + "H310L60C20": { + "description": "Saffron Blossom Mauve", + "hue": "310°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 156, + "g": 138, + "b": 171 + } + }, + "H310L60C25": { + "description": "Flirty Pink", + "hue": "310°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 158, + "g": 136, + "b": 177 + } + }, + "H310L60C30": { + "description": "Peony Mauve", + "hue": "310°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 159, + "g": 134, + "b": 183 + } + }, + "H310L60C35": { + "description": "Lilac Purple", + "hue": "310°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 161, + "g": 131, + "b": 192 + } + }, + "H310L70C10": { + "description": "Amorphous Rose", + "hue": "310°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 177, + "g": 167, + "b": 183 + } + }, + "H310L70C15": { + "description": "Transparent Mauve", + "hue": "310°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 180, + "g": 166, + "b": 191 + } + }, + "H310L70C20": { + "description": "Blue Pink", + "hue": "310°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 181, + "g": 163, + "b": 197 + } + }, + "H310L70C25": { + "description": "Glass Violet", + "hue": "310°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 183, + "g": 162, + "b": 204 + } + }, + "H310L80C10": { + "description": "Powder Viola", + "hue": "310°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 203, + "g": 194, + "b": 211 + } + }, + "H310L80C15": { + "description": "Orchid Violet", + "hue": "310°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 207, + "g": 193, + "b": 218 + } + }, + "H310L85C05": { + "description": "Fairy Pink", + "hue": "310°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 215, + "g": 213, + "b": 219 + } + }, + "H310L85C10": { + "description": "Tricot Lilac White", + "hue": "310°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 220, + "g": 211, + "b": 227 + } + }, + "H310L90C05": { + "description": "Wallflower White", + "hue": "310°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 231, + "g": 227, + "b": 231 + } + }, + "H320L20C05": { + "description": "Lava Black", + "hue": "320°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 53, + "g": 47, + "b": 54 + } + }, + "H320L20C10": { + "description": "Obsidian Red", + "hue": "320°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 55, + "g": 42, + "b": 56 + } + }, + "H320L20C15": { + "description": "Spinel Violet", + "hue": "320°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 56, + "g": 40, + "b": 61 + } + }, + "H320L20C20": { + "description": "Aubergine Mauve", + "hue": "320°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 59, + "g": 39, + "b": 65 + } + }, + "H320L20C25": { + "description": "Dark Purple", + "hue": "320°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 60, + "g": 34, + "b": 70 + } + }, + "H320L30C05": { + "description": "Violet Black", + "hue": "320°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 73, + "g": 67, + "b": 74 + } + }, + "H320L30C10": { + "description": "Stone Violet", + "hue": "320°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 77, + "g": 64, + "b": 79 + } + }, + "H320L30C15": { + "description": "Amethyst Dark Violet", + "hue": "320°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 79, + "g": 60, + "b": 82 + } + }, + "H320L30C20": { + "description": "Dark Blackberry", + "hue": "320°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 83, + "g": 57, + "b": 88 + } + }, + "H320L30C25": { + "description": "Purpurite Violet", + "hue": "320°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 87, + "g": 56, + "b": 94 + } + }, + "H320L30C30": { + "description": "Damson Mauve", + "hue": "320°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 88, + "g": 53, + "b": 99 + } + }, + "H320L30C35": { + "description": "Grape Purple", + "hue": "320°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 90, + "g": 52, + "b": 104 + } + }, + "H320L30C37": { + "description": "Lounge Violet", + "hue": "320°", + "lightness": "30%", + "chromaticity": "37%", + "rgb": { + "r": 94, + "g": 51, + "b": 109 + } + }, + "H320L40C05": { + "description": "Slate Mauve", + "hue": "320°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 98, + "g": 92, + "b": 99 + } + }, + "H320L40C10": { + "description": "Olivine Basalt", + "hue": "320°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 101, + "g": 88, + "b": 103 + } + }, + "H320L40C15": { + "description": "Antique Grey", + "hue": "320°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 105, + "g": 87, + "b": 109 + } + }, + "H320L40C20": { + "description": "Basil Mauve", + "hue": "320°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 108, + "g": 84, + "b": 114 + } + }, + "H320L40C25": { + "description": "Gladiola Violet", + "hue": "320°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 110, + "g": 81, + "b": 120 + } + }, + "H320L40C30": { + "description": "Cabbage Blossom Violet", + "hue": "320°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 114, + "g": 76, + "b": 123 + } + }, + "H320L40C35": { + "description": "Lilac Violet", + "hue": "320°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 117, + "g": 74, + "b": 128 + } + }, + "H320L40C40": { + "description": "Violet Purple", + "hue": "320°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 120, + "g": 72, + "b": 136 + } + }, + "H320L50C05": { + "description": "Grey Violet", + "hue": "320°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 120, + "g": 115, + "b": 122 + } + }, + "H320L50C10": { + "description": "British Grey Mauve", + "hue": "320°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 125, + "g": 112, + "b": 129 + } + }, + "H320L50C15": { + "description": "Parma Grey", + "hue": "320°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 128, + "g": 110, + "b": 133 + } + }, + "H320L50C20": { + "description": "Cyclamen", + "hue": "320°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 135, + "g": 109, + "b": 140 + } + }, + "H320L50C25": { + "description": "Poetry Mauve", + "hue": "320°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 136, + "g": 104, + "b": 145 + } + }, + "H320L50C30": { + "description": "Viola Grey", + "hue": "320°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 140, + "g": 104, + "b": 151 + } + }, + "H320L50C35": { + "description": "Aster Violetta", + "hue": "320°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 143, + "g": 98, + "b": 154 + } + }, + "H320L50C40": { + "description": "Empire Violet", + "hue": "320°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 146, + "g": 100, + "b": 162 + } + }, + "H320L60C05": { + "description": "Aragonite Grey", + "hue": "320°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 148, + "g": 142, + "b": 150 + } + }, + "H320L60C10": { + "description": "Chalk Violet", + "hue": "320°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 152, + "g": 140, + "b": 155 + } + }, + "H320L60C15": { + "description": "Amethyst Grey Violet", + "hue": "320°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 156, + "g": 137, + "b": 161 + } + }, + "H320L60C20": { + "description": "Wonder Violet", + "hue": "320°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 160, + "g": 133, + "b": 166 + } + }, + "H320L60C25": { + "description": "Nightshade Violet", + "hue": "320°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 163, + "g": 131, + "b": 172 + } + }, + "H320L60C30": { + "description": "Lobby Lilac", + "hue": "320°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 167, + "g": 128, + "b": 178 + } + }, + "H320L60C35": { + "description": "Blackberry Sorbet", + "hue": "320°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 169, + "g": 126, + "b": 182 + } + }, + "H320L70C05": { + "description": "Elderberry Grey", + "hue": "320°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 174, + "g": 168, + "b": 176 + } + }, + "H320L70C10": { + "description": "Bellflower Violet", + "hue": "320°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 178, + "g": 165, + "b": 183 + } + }, + "H320L70C15": { + "description": "Quartz Violet", + "hue": "320°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 181, + "g": 162, + "b": 188 + } + }, + "H320L70C20": { + "description": "Beach Lilac", + "hue": "320°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 189, + "g": 162, + "b": 196 + } + }, + "H320L70C25": { + "description": "Lilac Pink", + "hue": "320°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 192, + "g": 157, + "b": 200 + } + }, + "H320L80C05": { + "description": "Light Violet", + "hue": "320°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 203, + "g": 196, + "b": 203 + } + }, + "H320L80C10": { + "description": "Amethyst Light Violet", + "hue": "320°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 207, + "g": 194, + "b": 209 + } + }, + "H320L80C15": { + "description": "Cosmetic Mauve", + "hue": "320°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 211, + "g": 190, + "b": 213 + } + }, + "H320L85C05": { + "description": "Blackberry Cream", + "hue": "320°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 217, + "g": 211, + "b": 218 + } + }, + "H320L85C10": { + "description": "Ametrine Quartz", + "hue": "320°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 222, + "g": 209, + "b": 224 + } + }, + "H320L90C05": { + "description": "Apatite Pink", + "hue": "320°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 232, + "g": 225, + "b": 230 + } + }, + "H330L20C20": { + "description": "Profound Mauve", + "hue": "330°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 64, + "g": 36, + "b": 61 + } + }, + "H330L20C25": { + "description": "Opulent Mauve", + "hue": "330°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 70, + "g": 35, + "b": 67 + } + }, + "H330L30C15": { + "description": "Currant Violet", + "hue": "330°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 85, + "g": 62, + "b": 81 + } + }, + "H330L30C20": { + "description": "Mexican Purple", + "hue": "330°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 90, + "g": 60, + "b": 85 + } + }, + "H330L30C25": { + "description": "Parma Plum Red", + "hue": "330°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 94, + "g": 57, + "b": 88 + } + }, + "H330L30C30": { + "description": "Intense Purple", + "hue": "330°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 99, + "g": 54, + "b": 93 + } + }, + "H330L30C35": { + "description": "Opulent Purple", + "hue": "330°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 103, + "g": 51, + "b": 98 + } + }, + "H330L30C40": { + "description": "Intense Mauve", + "hue": "330°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 104, + "g": 45, + "b": 99 + } + }, + "H330L40C10": { + "description": "Patina Violet", + "hue": "330°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 105, + "g": 90, + "b": 103 + } + }, + "H330L40C15": { + "description": "Dark Purple Grey", + "hue": "330°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 110, + "g": 87, + "b": 107 + } + }, + "H330L40C20": { + "description": "Amaranth Red", + "hue": "330°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 114, + "g": 86, + "b": 112 + } + }, + "H330L40C25": { + "description": "Deep Magenta", + "hue": "330°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 119, + "g": 83, + "b": 115 + } + }, + "H330L40C30": { + "description": "Phloxflower Violet", + "hue": "330°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 127, + "g": 79, + "b": 120 + } + }, + "H330L40C35": { + "description": "Thistle Mauve", + "hue": "330°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 131, + "g": 77, + "b": 124 + } + }, + "H330L40C40": { + "description": "Visiona Red", + "hue": "330°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 131, + "g": 71, + "b": 125 + } + }, + "H330L40C45": { + "description": "Purpurite Red", + "hue": "330°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 134, + "g": 68, + "b": 128 + } + }, + "H330L50C10": { + "description": "Burlap Grey", + "hue": "330°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 129, + "g": 113, + "b": 126 + } + }, + "H330L50C15": { + "description": "Sapphire Pink", + "hue": "330°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 136, + "g": 112, + "b": 132 + } + }, + "H330L50C20": { + "description": "Dianthus Mauve", + "hue": "330°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 141, + "g": 109, + "b": 137 + } + }, + "H330L50C25": { + "description": "Crystal Pink", + "hue": "330°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 145, + "g": 107, + "b": 140 + } + }, + "H330L50C30": { + "description": "Tulipan Violet", + "hue": "330°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 150, + "g": 105, + "b": 147 + } + }, + "H330L50C35": { + "description": "Violet Red", + "hue": "330°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 154, + "g": 101, + "b": 150 + } + }, + "H330L50C40": { + "description": "Orchid Purple", + "hue": "330°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 159, + "g": 97, + "b": 152 + } + }, + "H330L60C10": { + "description": "Greige Violet", + "hue": "330°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 156, + "g": 140, + "b": 154 + } + }, + "H330L60C15": { + "description": "Vesuvian Violet", + "hue": "330°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 162, + "g": 138, + "b": 159 + } + }, + "H330L60C20": { + "description": "Gentian Violet", + "hue": "330°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 168, + "g": 135, + "b": 164 + } + }, + "H330L60C25": { + "description": "Wilhelminian Pink", + "hue": "330°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 170, + "g": 131, + "b": 164 + } + }, + "H330L60C30": { + "description": "Stage Mauve", + "hue": "330°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 176, + "g": 129, + "b": 170 + } + }, + "H330L60C35": { + "description": "Cheddar Pink Mauve", + "hue": "330°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 182, + "g": 125, + "b": 175 + } + }, + "H330L60C40": { + "description": "Colombo Red Mauve", + "hue": "330°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 186, + "g": 122, + "b": 179 + } + }, + "H330L70C10": { + "description": "Mist Pink", + "hue": "330°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 184, + "g": 166, + "b": 181 + } + }, + "H330L70C15": { + "description": "Leek Blossom Pink", + "hue": "330°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 188, + "g": 163, + "b": 184 + } + }, + "H330L70C20": { + "description": "Strawberry Pink", + "hue": "330°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 193, + "g": 161, + "b": 189 + } + }, + "H330L70C25": { + "description": "Purple Pink", + "hue": "330°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 202, + "g": 158, + "b": 194 + } + }, + "H330L70C30": { + "description": "Clover Pink", + "hue": "330°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 205, + "g": 155, + "b": 196 + } + }, + "H330L80C10": { + "description": "Purple White", + "hue": "330°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 211, + "g": 194, + "b": 207 + } + }, + "H330L80C15": { + "description": "Lovely Pink", + "hue": "330°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 216, + "g": 191, + "b": 212 + } + }, + "H330L80C20": { + "description": "Designer Pink", + "hue": "330°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 225, + "g": 188, + "b": 216 + } + }, + "H330L85C05": { + "description": "Light Magnolia Rose", + "hue": "330°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 219, + "g": 213, + "b": 218 + } + }, + "H330L85C10": { + "description": "Raspberry Pink", + "hue": "330°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 228, + "g": 211, + "b": 224 + } + }, + "H330L85C15": { + "description": "Heavenly Pink", + "hue": "330°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 234, + "g": 209, + "b": 228 + } + }, + "H330L90C05": { + "description": "Delicacy White", + "hue": "330°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 235, + "g": 226, + "b": 229 + } + }, + "H340L20C05": { + "description": "Liquorice Black", + "hue": "340°", + "lightness": "20%", + "chromaticity": "5%", + "rgb": { + "r": 53, + "g": 45, + "b": 50 + } + }, + "H340L20C10": { + "description": "Mangosteen Violet", + "hue": "340°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 58, + "g": 39, + "b": 50 + } + }, + "H340L20C15": { + "description": "Sitter Red", + "hue": "340°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 60, + "g": 34, + "b": 51 + } + }, + "H340L20C20": { + "description": "Juice Violet", + "hue": "340°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 68, + "g": 34, + "b": 56 + } + }, + "H340L20C25": { + "description": "Prestige Mauve", + "hue": "340°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 76, + "g": 33, + "b": 61 + } + }, + "H340L30C05": { + "description": "Apple Herb Black", + "hue": "340°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 75, + "g": 66, + "b": 71 + } + }, + "H340L30C10": { + "description": "Passionfruit Mauve", + "hue": "340°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 81, + "g": 62, + "b": 73 + } + }, + "H340L30C15": { + "description": "Dark Fig Violet", + "hue": "340°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 87, + "g": 59, + "b": 76 + } + }, + "H340L30C20": { + "description": "Ruby Violet", + "hue": "340°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 92, + "g": 56, + "b": 78 + } + }, + "H340L30C25": { + "description": "Blackberry Deep Red", + "hue": "340°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 99, + "g": 54, + "b": 84 + } + }, + "H340L30C30": { + "description": "Deep Red", + "hue": "340°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 101, + "g": 48, + "b": 84 + } + }, + "H340L30C35": { + "description": "Velvet Mauve", + "hue": "340°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 105, + "g": 43, + "b": 87 + } + }, + "H340L30C38": { + "description": "Forest Fruit Red", + "hue": "340°", + "lightness": "30%", + "chromaticity": "38%", + "rgb": { + "r": 110, + "g": 39, + "b": 89 + } + }, + "H340L40C05": { + "description": "Mauve Brown", + "hue": "340°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 98, + "g": 89, + "b": 95 + } + }, + "H340L40C10": { + "description": "Spinel Grey", + "hue": "340°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 106, + "g": 86, + "b": 98 + } + }, + "H340L40C15": { + "description": "Earth Brown Violet", + "hue": "340°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 112, + "g": 83, + "b": 100 + } + }, + "H340L40C20": { + "description": "Dahlia Matte Red", + "hue": "340°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 118, + "g": 80, + "b": 103 + } + }, + "H340L40C25": { + "description": "Brocade Violet", + "hue": "340°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 123, + "g": 77, + "b": 107 + } + }, + "H340L40C30": { + "description": "Madder Magenta", + "hue": "340°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 128, + "g": 73, + "b": 110 + } + }, + "H340L40C35": { + "description": "Club Mauve", + "hue": "340°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 131, + "g": 67, + "b": 112 + } + }, + "H340L40C40": { + "description": "Cherry Red", + "hue": "340°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 136, + "g": 62, + "b": 114 + } + }, + "H340L40C45": { + "description": "Magenta Red", + "hue": "340°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 145, + "g": 57, + "b": 119 + } + }, + "H340L50C05": { + "description": "Jubilee Grey", + "hue": "340°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 124, + "g": 115, + "b": 121 + } + }, + "H340L50C10": { + "description": "Port Wine Red", + "hue": "340°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 133, + "g": 112, + "b": 124 + } + }, + "H340L50C15": { + "description": "Raw Garnet Viola", + "hue": "340°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 139, + "g": 108, + "b": 126 + } + }, + "H340L50C20": { + "description": "Milkwort Red", + "hue": "340°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 145, + "g": 105, + "b": 129 + } + }, + "H340L50C25": { + "description": "Rust Magenta", + "hue": "340°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 150, + "g": 102, + "b": 132 + } + }, + "H340L50C30": { + "description": "Raspberry Jelly Red", + "hue": "340°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 155, + "g": 98, + "b": 135 + } + }, + "H340L50C35": { + "description": "Thimble Red", + "hue": "340°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 160, + "g": 93, + "b": 139 + } + }, + "H340L50C40": { + "description": "Cyclamen Red", + "hue": "340°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 167, + "g": 89, + "b": 141 + } + }, + "H340L50C45": { + "description": "Brilliant Carmine", + "hue": "340°", + "lightness": "50%", + "chromaticity": "45%", + "rgb": { + "r": 173, + "g": 84, + "b": 143 + } + }, + "H340L60C05": { + "description": "Heather Red Grey", + "hue": "340°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 152, + "g": 142, + "b": 148 + } + }, + "H340L60C10": { + "description": "Piano Mauve", + "hue": "340°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 158, + "g": 137, + "b": 150 + } + }, + "H340L60C15": { + "description": "Evening Pink", + "hue": "340°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 167, + "g": 135, + "b": 154 + } + }, + "H340L60C20": { + "description": "Capri Fashion Pink", + "hue": "340°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 172, + "g": 131, + "b": 156 + } + }, + "H340L60C25": { + "description": "Antique Hot Pink", + "hue": "340°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 176, + "g": 127, + "b": 158 + } + }, + "H340L60C30": { + "description": "Cheek Red", + "hue": "340°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 182, + "g": 124, + "b": 162 + } + }, + "H340L60C35": { + "description": "Hollyhock Blossom Pink", + "hue": "340°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 189, + "g": 121, + "b": 165 + } + }, + "H340L60C40": { + "description": "Bishop Red", + "hue": "340°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 196, + "g": 115, + "b": 169 + } + }, + "H340L70C05": { + "description": "Mauve Grey", + "hue": "340°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 177, + "g": 167, + "b": 173 + } + }, + "H340L70C10": { + "description": "Buckwheat Mauve", + "hue": "340°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 185, + "g": 164, + "b": 176 + } + }, + "H340L70C15": { + "description": "Hollyhock Pink", + "hue": "340°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 194, + "g": 161, + "b": 181 + } + }, + "H340L70C20": { + "description": "Idyllic Pink", + "hue": "340°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 200, + "g": 158, + "b": 183 + } + }, + "H340L70C25": { + "description": "Morning Glory Pink", + "hue": "340°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 202, + "g": 153, + "b": 183 + } + }, + "H340L70C30": { + "description": "Soft Fuschia", + "hue": "340°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 212, + "g": 150, + "b": 189 + } + }, + "H340L70C35": { + "description": "Firm Pink", + "hue": "340°", + "lightness": "70%", + "chromaticity": "35%", + "rgb": { + "r": 218, + "g": 147, + "b": 193 + } + }, + "H340L80C05": { + "description": "Piano Grey Rose", + "hue": "340°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 207, + "g": 196, + "b": 199 + } + }, + "H340L80C10": { + "description": "Mint Blossom Rose", + "hue": "340°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 215, + "g": 194, + "b": 206 + } + }, + "H340L80C15": { + "description": "Scandalous Rose", + "hue": "340°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 223, + "g": 189, + "b": 208 + } + }, + "H340L80C20": { + "description": "Bonbon Rose", + "hue": "340°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 230, + "g": 186, + "b": 210 + } + }, + "H340L85C05": { + "description": "Strawberry Cream", + "hue": "340°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 223, + "g": 212, + "b": 217 + } + }, + "H340L85C10": { + "description": "Light Flamingo Pink", + "hue": "340°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 231, + "g": 209, + "b": 221 + } + }, + "H340L85C15": { + "description": "Lacquer Mauve", + "hue": "340°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 240, + "g": 207, + "b": 225 + } + }, + "H340L90C05": { + "description": "Rose White", + "hue": "340°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 235, + "g": 224, + "b": 228 + } + }, + "H340L93C05": { + "description": "Dress Pink", + "hue": "340°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 244, + "g": 235, + "b": 239 + } + }, + "H350L20C10": { + "description": "Mulled Wine Red", + "hue": "350°", + "lightness": "20%", + "chromaticity": "10%", + "rgb": { + "r": 59, + "g": 41, + "b": 50 + } + }, + "H350L20C15": { + "description": "Soft Red", + "hue": "350°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 65, + "g": 37, + "b": 51 + } + }, + "H350L20C20": { + "description": "Star Ruby", + "hue": "350°", + "lightness": "20%", + "chromaticity": "20%", + "rgb": { + "r": 72, + "g": 32, + "b": 52 + } + }, + "H350L20C25": { + "description": "Chilli Black Red", + "hue": "350°", + "lightness": "20%", + "chromaticity": "25%", + "rgb": { + "r": 75, + "g": 28, + "b": 53 + } + }, + "H350L20C30": { + "description": "Tulip Poplar Purple", + "hue": "350°", + "lightness": "20%", + "chromaticity": "30%", + "rgb": { + "r": 83, + "g": 25, + "b": 56 + } + }, + "H350L30C10": { + "description": "Sparrow Grey Red", + "hue": "350°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 82, + "g": 62, + "b": 71 + } + }, + "H350L30C15": { + "description": "Siliceous Red", + "hue": "350°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 90, + "g": 61, + "b": 74 + } + }, + "H350L30C20": { + "description": "Liqueur Red", + "hue": "350°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 97, + "g": 57, + "b": 75 + } + }, + "H350L30C25": { + "description": "Wine Gummy Red", + "hue": "350°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 103, + "g": 51, + "b": 76 + } + }, + "H350L30C30": { + "description": "Burlat Red", + "hue": "350°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 110, + "g": 49, + "b": 79 + } + }, + "H350L30C35": { + "description": "Bordeaux Red", + "hue": "350°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 111, + "g": 44, + "b": 79 + } + }, + "H350L30C40": { + "description": "Dried Flower Purple", + "hue": "350°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 117, + "g": 38, + "b": 83 + } + }, + "H350L40C10": { + "description": "Aubergine Grey", + "hue": "350°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 110, + "g": 88, + "b": 97 + } + }, + "H350L40C15": { + "description": "Opium Mauve", + "hue": "350°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 115, + "g": 83, + "b": 98 + } + }, + "H350L40C20": { + "description": "Grey Carmine", + "hue": "350°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 122, + "g": 80, + "b": 99 + } + }, + "H350L40C25": { + "description": "Nectar Red", + "hue": "350°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 127, + "g": 76, + "b": 100 + } + }, + "H350L40C30": { + "description": "Dark Rose", + "hue": "350°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 135, + "g": 71, + "b": 102 + } + }, + "H350L40C35": { + "description": "Bonbon Red", + "hue": "350°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 140, + "g": 66, + "b": 104 + } + }, + "H350L40C40": { + "description": "Cyclamen Red", + "hue": "350°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 145, + "g": 63, + "b": 106 + } + }, + "H350L40C45": { + "description": "Powder Red", + "hue": "350°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 149, + "g": 57, + "b": 106 + } + }, + "H350L40C50": { + "description": "Madder Red", + "hue": "350°", + "lightness": "40%", + "chromaticity": "50%", + "rgb": { + "r": 156, + "g": 50, + "b": 107 + } + }, + "H350L50C10": { + "description": "Innocent Pink", + "hue": "350°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 133, + "g": 111, + "b": 121 + } + }, + "H350L50C15": { + "description": "Blunt Violet", + "hue": "350°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 141, + "g": 108, + "b": 122 + } + }, + "H350L50C20": { + "description": "Corundum Red", + "hue": "350°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 149, + "g": 104, + "b": 125 + } + }, + "H350L50C25": { + "description": "Batik Pink", + "hue": "350°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 156, + "g": 101, + "b": 126 + } + }, + "H350L50C30": { + "description": "Beryl Red", + "hue": "350°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 161, + "g": 99, + "b": 129 + } + }, + "H350L50C35": { + "description": "Crimson", + "hue": "350°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 170, + "g": 92, + "b": 129 + } + }, + "H350L50C40": { + "description": "Madder Rose", + "hue": "350°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 177, + "g": 88, + "b": 130 + } + }, + "H350L50C45": { + "description": "Signal Pink", + "hue": "350°", + "lightness": "50%", + "chromaticity": "45%", + "rgb": { + "r": 177, + "g": 83, + "b": 132 + } + }, + "H350L50C50": { + "description": "Nail Polish Pink", + "hue": "350°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 189, + "g": 78, + "b": 132 + } + }, + "H350L60C10": { + "description": "Art Nouveau Violet", + "hue": "350°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 160, + "g": 137, + "b": 148 + } + }, + "H350L60C15": { + "description": "Mohair Pink", + "hue": "350°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 167, + "g": 133, + "b": 148 + } + }, + "H350L60C20": { + "description": "Heather Violet", + "hue": "350°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 177, + "g": 131, + "b": 152 + } + }, + "H350L60C25": { + "description": "Heather Rose", + "hue": "350°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 184, + "g": 127, + "b": 151 + } + }, + "H350L60C30": { + "description": "Venetian Pink", + "hue": "350°", + "lightness": "60%", + "chromaticity": "30%", + "rgb": { + "r": 192, + "g": 123, + "b": 154 + } + }, + "H350L60C35": { + "description": "Dolomite Red", + "hue": "350°", + "lightness": "60%", + "chromaticity": "35%", + "rgb": { + "r": 197, + "g": 118, + "b": 155 + } + }, + "H350L60C40": { + "description": "Camellia Pink", + "hue": "350°", + "lightness": "60%", + "chromaticity": "40%", + "rgb": { + "r": 205, + "g": 115, + "b": 157 + } + }, + "H350L60C45": { + "description": "Persian Pink", + "hue": "350°", + "lightness": "60%", + "chromaticity": "45%", + "rgb": { + "r": 208, + "g": 111, + "b": 160 + } + }, + "H350L70C10": { + "description": "Cold Pink", + "hue": "350°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 188, + "g": 165, + "b": 173 + } + }, + "H350L70C15": { + "description": "Shady Pink", + "hue": "350°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 196, + "g": 161, + "b": 175 + } + }, + "H350L70C20": { + "description": "Lady's Cushions Pink", + "hue": "350°", + "lightness": "70%", + "chromaticity": "20%", + "rgb": { + "r": 201, + "g": 155, + "b": 176 + } + }, + "H350L70C25": { + "description": "Coral Pink", + "hue": "350°", + "lightness": "70%", + "chromaticity": "25%", + "rgb": { + "r": 212, + "g": 154, + "b": 179 + } + }, + "H350L70C30": { + "description": "Techno Pink", + "hue": "350°", + "lightness": "70%", + "chromaticity": "30%", + "rgb": { + "r": 221, + "g": 149, + "b": 180 + } + }, + "H350L70C35": { + "description": "Chewing Gum Pink", + "hue": "350°", + "lightness": "70%", + "chromaticity": "35%", + "rgb": { + "r": 226, + "g": 146, + "b": 182 + } + }, + "H350L80C10": { + "description": "Magnolia White", + "hue": "350°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 216, + "g": 191, + "b": 200 + } + }, + "H350L80C15": { + "description": "Spring Pink", + "hue": "350°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 223, + "g": 188, + "b": 201 + } + }, + "H350L80C20": { + "description": "Light Pink", + "hue": "350°", + "lightness": "80%", + "chromaticity": "20%", + "rgb": { + "r": 232, + "g": 185, + "b": 205 + } + }, + "H350L85C05": { + "description": "Fairy White", + "hue": "350°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 222, + "g": 212, + "b": 216 + } + }, + "H350L85C10": { + "description": "Orchid Rose", + "hue": "350°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 233, + "g": 209, + "b": 218 + } + }, + "H350L85C15": { + "description": "Pale Pink", + "hue": "350°", + "lightness": "85%", + "chromaticity": "15%", + "rgb": { + "r": 239, + "g": 205, + "b": 219 + } + }, + "H350L90C05": { + "description": "Light Rose", + "hue": "350°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 237, + "g": 224, + "b": 225 + } + }, + "H350L90C10": { + "description": "Ranuncula White", + "hue": "350°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 245, + "g": 221, + "b": 230 + } + }, + "H350L93C05": { + "description": "Clichy White", + "hue": "350°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 246, + "g": 235, + "b": 238 + } + }, + "H360L20C15": { + "description": "Piermont Stone Red", + "hue": "360°", + "lightness": "20%", + "chromaticity": "15%", + "rgb": { + "r": 67, + "g": 35, + "b": 44 + } + }, + "H360L30C05": { + "description": "Russian Red", + "hue": "360°", + "lightness": "30%", + "chromaticity": "5%", + "rgb": { + "r": 77, + "g": 66, + "b": 68 + } + }, + "H360L30C10": { + "description": "Peppercorn Red", + "hue": "360°", + "lightness": "30%", + "chromaticity": "10%", + "rgb": { + "r": 83, + "g": 61, + "b": 68 + } + }, + "H360L30C15": { + "description": "Zinfandel Red", + "hue": "360°", + "lightness": "30%", + "chromaticity": "15%", + "rgb": { + "r": 90, + "g": 56, + "b": 68 + } + }, + "H360L30C20": { + "description": "Art Deco Red", + "hue": "360°", + "lightness": "30%", + "chromaticity": "20%", + "rgb": { + "r": 98, + "g": 55, + "b": 69 + } + }, + "H360L30C25": { + "description": "Clinker Red", + "hue": "360°", + "lightness": "30%", + "chromaticity": "25%", + "rgb": { + "r": 102, + "g": 49, + "b": 69 + } + }, + "H360L30C30": { + "description": "Cherry Juice Red", + "hue": "360°", + "lightness": "30%", + "chromaticity": "30%", + "rgb": { + "r": 108, + "g": 44, + "b": 69 + } + }, + "H360L30C35": { + "description": "Palace Red", + "hue": "360°", + "lightness": "30%", + "chromaticity": "35%", + "rgb": { + "r": 117, + "g": 39, + "b": 69 + } + }, + "H360L30C40": { + "description": "Ember Red", + "hue": "360°", + "lightness": "30%", + "chromaticity": "40%", + "rgb": { + "r": 121, + "g": 36, + "b": 69 + } + }, + "H360L40C05": { + "description": "Roasted Black", + "hue": "360°", + "lightness": "40%", + "chromaticity": "5%", + "rgb": { + "r": 101, + "g": 90, + "b": 92 + } + }, + "H360L40C10": { + "description": "Mocha Brown", + "hue": "360°", + "lightness": "40%", + "chromaticity": "10%", + "rgb": { + "r": 107, + "g": 86, + "b": 94 + } + }, + "H360L40C15": { + "description": "Ruby Grey", + "hue": "360°", + "lightness": "40%", + "chromaticity": "15%", + "rgb": { + "r": 115, + "g": 82, + "b": 92 + } + }, + "H360L40C20": { + "description": "Baroque Red", + "hue": "360°", + "lightness": "40%", + "chromaticity": "20%", + "rgb": { + "r": 123, + "g": 79, + "b": 93 + } + }, + "H360L40C25": { + "description": "Frenzied Red", + "hue": "360°", + "lightness": "40%", + "chromaticity": "25%", + "rgb": { + "r": 129, + "g": 74, + "b": 92 + } + }, + "H360L40C30": { + "description": "Redcurrant", + "hue": "360°", + "lightness": "40%", + "chromaticity": "30%", + "rgb": { + "r": 136, + "g": 69, + "b": 94 + } + }, + "H360L40C35": { + "description": "Orient Pink", + "hue": "360°", + "lightness": "40%", + "chromaticity": "35%", + "rgb": { + "r": 143, + "g": 65, + "b": 95 + } + }, + "H360L40C40": { + "description": "Aurora Magenta", + "hue": "360°", + "lightness": "40%", + "chromaticity": "40%", + "rgb": { + "r": 150, + "g": 59, + "b": 96 + } + }, + "H360L40C45": { + "description": "Cardinal Red", + "hue": "360°", + "lightness": "40%", + "chromaticity": "45%", + "rgb": { + "r": 155, + "g": 54, + "b": 94 + } + }, + "H360L40C50": { + "description": "Parlour Red", + "hue": "360°", + "lightness": "40%", + "chromaticity": "50%", + "rgb": { + "r": 161, + "g": 45, + "b": 93 + } + }, + "H360L50C05": { + "description": "Pumice Grey", + "hue": "360°", + "lightness": "50%", + "chromaticity": "5%", + "rgb": { + "r": 128, + "g": 115, + "b": 117 + } + }, + "H360L50C10": { + "description": "Pomace Red", + "hue": "360°", + "lightness": "50%", + "chromaticity": "10%", + "rgb": { + "r": 133, + "g": 111, + "b": 118 + } + }, + "H360L50C15": { + "description": "Evening Crimson", + "hue": "360°", + "lightness": "50%", + "chromaticity": "15%", + "rgb": { + "r": 142, + "g": 107, + "b": 118 + } + }, + "H360L50C20": { + "description": "Copper Pink", + "hue": "360°", + "lightness": "50%", + "chromaticity": "20%", + "rgb": { + "r": 148, + "g": 104, + "b": 119 + } + }, + "H360L50C25": { + "description": "Jugendstil Pink", + "hue": "360°", + "lightness": "50%", + "chromaticity": "25%", + "rgb": { + "r": 157, + "g": 99, + "b": 117 + } + }, + "H360L50C30": { + "description": "Cosmetic Red", + "hue": "360°", + "lightness": "50%", + "chromaticity": "30%", + "rgb": { + "r": 165, + "g": 96, + "b": 120 + } + }, + "H360L50C35": { + "description": "Indian Pink", + "hue": "360°", + "lightness": "50%", + "chromaticity": "35%", + "rgb": { + "r": 173, + "g": 91, + "b": 120 + } + }, + "H360L50C40": { + "description": "Kir Royale Rose", + "hue": "360°", + "lightness": "50%", + "chromaticity": "40%", + "rgb": { + "r": 180, + "g": 88, + "b": 119 + } + }, + "H360L50C45": { + "description": "Cockscomb Red", + "hue": "360°", + "lightness": "50%", + "chromaticity": "45%", + "rgb": { + "r": 188, + "g": 83, + "b": 120 + } + }, + "H360L50C50": { + "description": "Persian Red", + "hue": "360°", + "lightness": "50%", + "chromaticity": "50%", + "rgb": { + "r": 192, + "g": 76, + "b": 119 + } + }, + "H360L60C05": { + "description": "Ash Pink", + "hue": "360°", + "lightness": "60%", + "chromaticity": "5%", + "rgb": { + "r": 153, + "g": 142, + "b": 145 + } + }, + "H360L60C10": { + "description": "Majolica Mauve", + "hue": "360°", + "lightness": "60%", + "chromaticity": "10%", + "rgb": { + "r": 160, + "g": 137, + "b": 144 + } + }, + "H360L60C15": { + "description": "Fig Fruit Mauve", + "hue": "360°", + "lightness": "60%", + "chromaticity": "15%", + "rgb": { + "r": 169, + "g": 134, + "b": 145 + } + }, + "H360L60C20": { + "description": "Noble Lilac", + "hue": "360°", + "lightness": "60%", + "chromaticity": "20%", + "rgb": { + "r": 178, + "g": 131, + "b": 146 + } + }, + "H360L60C25": { + "description": "Light Red", + "hue": "360°", + "lightness": "60%", + "chromaticity": "25%", + "rgb": { + "r": 184, + "g": 126, + "b": 145 + } + }, + "H360L70C05": { + "description": "Tea Blossom Pink", + "hue": "360°", + "lightness": "70%", + "chromaticity": "5%", + "rgb": { + "r": 181, + "g": 169, + "b": 172 + } + }, + "H360L70C10": { + "description": "Quartz Pink", + "hue": "360°", + "lightness": "70%", + "chromaticity": "10%", + "rgb": { + "r": 188, + "g": 163, + "b": 170 + } + }, + "H360L70C15": { + "description": "Opaline Pink", + "hue": "360°", + "lightness": "70%", + "chromaticity": "15%", + "rgb": { + "r": 198, + "g": 160, + "b": 171 + } + }, + "H360L80C05": { + "description": "Mother-Of-Pearl Pink", + "hue": "360°", + "lightness": "80%", + "chromaticity": "5%", + "rgb": { + "r": 209, + "g": 196, + "b": 198 + } + }, + "H360L80C10": { + "description": "Venetian Pink", + "hue": "360°", + "lightness": "80%", + "chromaticity": "10%", + "rgb": { + "r": 217, + "g": 191, + "b": 197 + } + }, + "H360L80C15": { + "description": "Soap Pink", + "hue": "360°", + "lightness": "80%", + "chromaticity": "15%", + "rgb": { + "r": 229, + "g": 191, + "b": 202 + } + }, + "H360L85C05": { + "description": "Theatre Powder Rose", + "hue": "360°", + "lightness": "85%", + "chromaticity": "5%", + "rgb": { + "r": 226, + "g": 212, + "b": 212 + } + }, + "H360L85C10": { + "description": "Lotus Pink", + "hue": "360°", + "lightness": "85%", + "chromaticity": "10%", + "rgb": { + "r": 234, + "g": 208, + "b": 214 + } + }, + "H360L90C05": { + "description": "Ice Pink", + "hue": "360°", + "lightness": "90%", + "chromaticity": "5%", + "rgb": { + "r": 241, + "g": 225, + "b": 224 + } + }, + "H360L90C10": { + "description": "Cake Frosting", + "hue": "360°", + "lightness": "90%", + "chromaticity": "10%", + "rgb": { + "r": 249, + "g": 223, + "b": 229 + } + }, + "H360L93C05": { + "description": "Arrowhead White", + "hue": "360°", + "lightness": "93%", + "chromaticity": "5%", + "rgb": { + "r": 249, + "g": 234, + "b": 235 + } + } +} diff --git a/tools/data/ral_palettes/ral-colors/effect.js b/tools/data/ral_palettes/ral-colors/effect.js new file mode 100644 index 0000000..edfbb48 --- /dev/null +++ b/tools/data/ral_palettes/ral-colors/effect.js @@ -0,0 +1,72 @@ +export const effect = { + RAL110: { description: '', groups: [ { id: '1', rgb: { r: 230, g: 231, b: 230 } }, { id: '2', rgb: { r: 222, g: 221, b:213 } }, { id: '3', rgb: { r: 200, g: 198, b: 190 } }, { id: '4', rgb: { r:198, g: 199, b: 196 } }, { id: '5', rgb: { r: 201, g: 204, b: 198 } }, { id: '6', rgb: { r: 200, g: 200, b: 199 } }, { id: 'M', rgb: { r: 160, g: 162, b: 164 } } ] }, + RAL120: { description: '', groups: [ { id: '1', rgb: { r: 237, g: 237, b: 234 } }, { id: '2', rgb: { r: 242, g: 241, b:236 } }, { id: '3', rgb: { r: 240, g: 238, b: 229 } }, { id: '4', rgb: { r:233, g: 225, b: 212 } }, { id: '5', rgb: { r: 226, g: 217, b: 198 } }, { id: '6', rgb: { r: 234, g: 225, b: 206 } }, { id: 'M', rgb: { r: 143, g: 141, b: 135 } } ] }, + RAL130: { description: '', groups: [ { id: '1', rgb: { r: 242, g: 237, b: 187 } }, { id: '2', rgb: { r: 241, g: 238, b:195 } }, { id: '3', rgb: { r: 240, g: 238, b: 205 } }, { id: '4', rgb: { r:248, g: 240, b: 207 } }, { id: '5', rgb: { r: 237, g: 228, b: 188 } }, { id: '6', rgb: { r: 251, g: 229, b: 176 } }, { id: 'M', rgb: { r: 171, g: 171, b: 144 } } ] }, + RAL140: { description: '', groups: [ { id: '1', rgb: { r: 250, g: 211, b: 169 } }, { id: '2', rgb: { r: 254, g: 218, b:166 } }, { id: '3', rgb: { r: 254, g: 227, b: 193 } }, { id: '4', rgb: { r:253, g: 223, b: 190 } }, { id: '5', rgb: { r: 248, g: 228, b: 200 } }, { id: '6', rgb: { r: 229, g: 210, b: 182 } }, { id: 'M', rgb: { r: 176, g: 158, b: 126 } } ] }, + RAL150: { description: '', groups: [ { id: '1', rgb: { r: 247, g: 239, b: 233 } }, { id: '2', rgb: { r: 249, g: 235, b:227 } }, { id: '3', rgb: { r: 238, g: 225, b: 215 } }, { id: '4', rgb: { r:251, g: 227, b: 212 } }, { id: '5', rgb: { r: 250, g: 232, b: 220 } }, { id: '6', rgb: { r: 248, g: 223, b: 215 } }, { id: 'M', rgb: { r: 171, g: 151, b: 138 } } ] }, + RAL160: { description: '', groups: [ { id: '1', rgb: { r: 227, g: 225, b: 236 } }, { id: '2', rgb: { r: 231, g: 226, b:232 } }, { id: '3', rgb: { r: 237, g: 232, b: 232 } }, { id: '4', rgb: { r:238, g: 225, b: 226 } }, { id: '5', rgb: { r: 239, g: 228, b: 224 } }, { id: '6', rgb: { r: 236, g: 228, b: 233 } }, { id: 'M', rgb: { r: 173, g: 166, b: 181 } } ] }, + RAL170: { description: '', groups: [ { id: '1', rgb: { r: 199, g: 201, b: 208 } }, { id: '2', rgb: { r: 166, g: 173, b:189 } }, { id: '3', rgb: { r: 186, g: 200, b: 218 } }, { id: '4', rgb: { r:206, g: 219, b: 236 } }, { id: '5', rgb: { r: 195, g: 198, b: 214 } }, { id: '6', rgb: { r: 198, g: 197, b: 214 } }, { id: 'M', rgb: { r: 167, g: 168, b: 185 } } ] }, + RAL180: { description: '', groups: [ { id: '1', rgb: { r: 174, g: 188, b: 198 } }, { id: '2', rgb: { r: 185, g: 205, b:221 } }, { id: '3', rgb: { r: 199, g: 219, b: 235 } }, { id: '4', rgb: { r:201, g: 225, b: 236 } }, { id: '5', rgb: { r: 199, g: 221, b: 225 } }, { id: '6', rgb: { r: 219, g: 233, b: 235 } }, { id: 'M', rgb: { r: 150, g: 164, b: 169 } } ] }, + RAL190: { description: '', groups: [ { id: '1', rgb: { r: 165, g: 218, b: 223 } }, { id: '2', rgb: { r: 185, g: 230, b:242 } }, { id: '3', rgb: { r: 192, g: 222, b: 225 } }, { id: '4', rgb: { r:189, g: 218, b: 215 } }, { id: '5', rgb: { r: 212, g: 229, b: 231 } }, { id: '6', rgb: { r: 163, g: 193, b: 191 } }, { id: 'M', rgb: { r: 146, g: 180, b: 178 } } ] }, + RAL210: { description: '', groups: [ { id: '1', rgb: { r: 207, g: 198, b: 178 } }, { id: '2', rgb: { r: 236, g: 231, b:210 } }, { id: '3', rgb: { r: 227, g: 228, b: 217 } }, { id: '4', rgb: { r:214, g: 230, b: 227 } }, { id: '5', rgb: { r: 216, g: 232, b: 224 } }, { id: '6', rgb: { r: 216, g: 233, b: 214 } }, { id: 'M', rgb: { r: 165, g: 169, b: 155 } } ] }, + RAL220: { description: '', groups: [ { id: '1', rgb: { r: 102, g: 184, b: 114 } }, { id: '2', rgb: { r: 51, g: 154, b:81 } }, { id: '3', rgb: { r: 0, g: 111, b: 60 } }, { id: '4', rgb: { r:127, g: 255, b: 127 } }, { id: '5', rgb: { r: 0, g: 255, b: 0 } }, { id: '6', rgb: { r: 0, g: 128, b: 0 } }, { id: 'M', rgb: { r: 0, g: 127, b: 62 } } ] }, + RAL230: { description: '', groups: [ { id: '1', rgb: { r: 187, g: 219, b: 154 } }, { id: '2', rgb: { r: 150, g: 200, b:108 } }, { id: '3', rgb: { r: 125, g: 179, b: 68 } }, { id: '4', rgb: { r:95, g: 151, b: 58 } }, { id: '5', rgb: { r: 57, g: 105, b: 56 } }, { id: '6', rgb: { r: 54, g: 92, b: 48 } }, { id: 'M', rgb: { r: 98, g: 167, b: 78 } } ] }, + RAL240: { description: '', groups: [ { id: '1', rgb: { r: 220, g: 214, b: 145 } }, { id: '2', rgb: { r: 170, g: 175, b:102 } }, { id: '3', rgb: { r: 147, g: 151, b: 85 } }, { id: '4', rgb: { r:126, g: 126, b: 66 } }, { id: '5', rgb: { r: 93, g: 109, b: 60 } }, { id: '6', rgb: { r: 79, g: 109, b: 53 } }, { id: 'M', rgb: { r: 98, g: 116, b: 57 } } ] }, + RAL250: { description: '', groups: [ { id: '1', rgb: { r: 238, g: 230, b: 165 } }, { id: '2', rgb: { r: 232, g: 222, b:111 } }, { id: '3', rgb: { r: 191, g: 183, b: 0 } }, { id: '4', rgb: { r:164, g: 165, b: 65 } }, { id: '5', rgb: { r: 145, g: 145, b: 56 } }, { id: '6', rgb: { r: 105, g: 101, b: 44 } }, { id: 'M', rgb: { r: 174, g: 167, b: 59 } } ] }, + RAL260: { description: '', groups: [ { id: '1', rgb: { r: 243, g: 233, b: 180 } }, { id: '2', rgb: { r: 241, g: 228, b:131 } }, { id: '3', rgb: { r: 243, g: 212, b: 70 } }, { id: '4', rgb: { r:232, g: 192, b: 31 } }, { id: '5', rgb: { r: 222, g: 176, b: 45 } }, { id: '6', rgb: { r: 239, g: 180, b: 22 } }, { id: 'M', rgb: { r: 184, g: 148, b: 79 } } ] }, + RAL270: { description: '', groups: [ { id: '1', rgb: { r: 255, g: 222, b: 131 } }, { id: '2', rgb: { r: 250, g: 204, b:57 } }, { id: '3', rgb: { r: 244, g: 189, b: 22 } }, { id: '4', rgb: { r:235, g: 177, b: 0 } }, { id: '5', rgb: { r: 246, g: 182, b: 0 } }, { id: '6', rgb: { r: 254, g: 196, b: 63 } }, { id: 'M', rgb: { r: 203, g: 148, b: 55 } } ] }, + RAL280: { description: '', groups: [ { id: '1', rgb: { r: 253, g: 225, b: 147 } }, { id: '2', rgb: { r: 240, g: 211, b:145 } }, { id: '3', rgb: { r: 225, g: 190, b: 120 } }, { id: '4', rgb: { r:214, g: 174, b: 95 } }, { id: '5', rgb: { r: 220, g: 161, b: 64 } }, { id: '6', rgb: { r: 208, g: 151, b: 60 } }, { id: 'M', rgb: { r: 178, g: 135, b: 64 } } ] }, + RAL290: { description: '', groups: [ { id: '1', rgb: { r: 216, g: 155, b: 80 } }, { id: '2', rgb: { r: 191, g: 133, b:59 } }, { id: '3', rgb: { r: 216, g: 169, b: 96 } }, { id: '4', rgb: { r:204, g: 146, b: 27 } }, { id: '5', rgb: { r: 230, g: 176, b: 62 } }, { id: '6', rgb: { r: 252, g: 171, b: 4 } }, { id: 'M', rgb: { r: 184, g: 126, b: 50 } } ] }, + RAL310: { description: '', groups: [ { id: '1', rgb: { r: 245, g: 214, b: 180 } }, { id: '2', rgb: { r: 235, g: 194, b:151 } }, { id: '3', rgb: { r: 223, g: 171, b: 115 } }, { id: '4', rgb: { r:208, g: 147, b: 85 } }, { id: '5', rgb: { r: 186, g: 124, b: 67 } }, { id: '6', rgb: { r: 142, g: 91, b: 45 } }, { id: 'M', rgb: { r: 184, g: 125, b: 79 } } ] }, + RAL320: { description: '', groups: [ { id: '1', rgb: { r: 210, g: 169, b: 108 } }, { id: '2', rgb: { r: 174, g: 129, b:81 } }, { id: '3', rgb: { r: 185, g: 134, b: 76 } }, { id: '4', rgb: { r:160, g: 103, b: 53 } }, { id: '5', rgb: { r: 127, g: 78, b: 46 } }, { id: '6', rgb: { r: 110, g: 68, b: 40 } }, { id: 'M', rgb: { r: 185, g: 115, b: 30 } } ] }, + RAL330: { description: '', groups: [ { id: '1', rgb: { r: 168, g: 104, b: 89 } }, { id: '2', rgb: { r: 142, g: 75, b:53 } }, { id: '3', rgb: { r: 121, g: 78, b: 62 } }, { id: '4', rgb: { r:92, g: 59, b: 45 } }, { id: '5', rgb: { r: 80, g: 49, b: 42 } }, { id: '6', rgb: { r: 70, g: 50, b: 46 } }, { id: 'M', rgb: { r: 139, g: 89, b: 67 } } ] }, + RAL340: { description: '', groups: [ { id: '1', rgb: { r: 190, g: 164, b: 169 } }, { id: '2', rgb: { r: 164, g: 140, b:146 } }, { id: '3', rgb: { r: 127, g: 84, b: 82 } }, { id: '4', rgb: { r:104, g: 61, b: 64 } }, { id: '5', rgb: { r: 79, g: 42, b: 45 } }, { id: '6', rgb: { r: 79, g: 43, b: 49 } }, { id: 'M', rgb: { r: 83, g: 53, b: 59 } } ] }, + RAL350: { description: '', groups: [ { id: '1', rgb: { r: 157, g: 49, b: 31 } }, { id: '2', rgb: { r: 167, g: 63, b:50 } }, { id: '3', rgb: { r: 162, g: 71, b: 51 } }, { id: '4', rgb: { r:129, g: 48, b: 33 } }, { id: '5', rgb: { r: 120, g: 49, b: 34 } }, { id: '6', rgb: { r: 102, g: 50, b: 43 } }, { id: 'M', rgb: { r: 88, g: 47, b: 42 } } ] }, + RAL360: { description: '', groups: [ { id: '1', rgb: { r: 224, g: 125, b: 41 } }, { id: '2', rgb: { r: 217, g: 117, b:30 } }, { id: '3', rgb: { r: 198, g: 98, b: 23 } }, { id: '4', rgb: { r:183, g: 86, b: 41 } }, { id: '5', rgb: { r: 154, g: 79, b: 44 } }, { id: '6', rgb: { r: 145, g: 80, b: 51 } }, { id: 'M', rgb: { r: 164, g: 86, b: 51 } } ] }, + RAL370: { description: '', groups: [ { id: '1', rgb: { r: 255, g: 174, b: 71 } }, { id: '2', rgb: { r: 255, g: 155, b:56 } }, { id: '3', rgb: { r: 255, g: 144, b: 29 } }, { id: '4', rgb: { r:230, g: 131, b: 22 } }, { id: '5', rgb: { r: 212, g: 120, b: 31 } }, { id: '6', rgb: { r: 205, g: 108, b: 16 } }, { id: 'M', rgb: { r: 180, g: 122, b: 60 } } ] }, + RAL380: { description: '', groups: [ { id: '1', rgb: { r: 255, g: 155, b: 41 } }, { id: '2', rgb: { r: 255, g: 146, b:4 } }, { id: '3', rgb: { r: 250, g: 132, b: 26 } }, { id: '4', rgb: { r:226, g: 113, b: 33 } }, { id: '5', rgb: { r: 242, g: 120, b: 47 } }, { id: '6', rgb: { r: 234, g: 106, b: 36 } }, { id: 'M', rgb: { r: 167, g: 85, b: 42 } } ] }, + RAL390: { description: '', groups: [ { id: '1', rgb: { r: 235, g: 119, b: 63 } }, { id: '2', rgb: { r: 227, g: 97, b:37 } }, { id: '3', rgb: { r: 222, g: 84, b: 17 } }, { id: '4', rgb: { r:216, g: 81, b: 28 } }, { id: '5', rgb: { r: 216, g: 72, b: 15 } }, { id: '6', rgb: { r: 205, g: 94, b: 42 } }, { id: 'M', rgb: { r: 191, g: 99, b: 59 } } ] }, + RAL410: { description: '', groups: [ { id: '1', rgb: { r: 237, g: 129, b: 101 } }, { id: '2', rgb: { r: 234, g: 115, b:79 } }, { id: '3', rgb: { r: 228, g: 100, b: 64 } }, { id: '4', rgb: { r:220, g: 93, b: 56 } }, { id: '5', rgb: { r: 210, g: 85, b: 53 } }, { id: '6', rgb: { r: 208, g: 93, b: 66 } }, { id: 'M', rgb: { r: 171, g: 73, b: 36 } } ] }, + RAL420: { description: '', groups: [ { id: '1', rgb: { r: 237, g: 174, b: 154 } }, { id: '2', rgb: { r: 242, g: 157, b:134 } }, { id: '3', rgb: { r: 233, g: 138, b: 108 } }, { id: '4', rgb: { r:228, g: 100, b: 67 } }, { id: '5', rgb: { r: 204, g: 87, b: 56 } }, { id: '6', rgb: { r: 191, g: 80, b: 46 } }, { id: 'M', rgb: { r: 157, g: 75, b: 50 } } ] }, + RAL430: { description: '', groups: [ { id: '1', rgb: { r: 242, g: 194, b: 182 } }, { id: '2', rgb: { r: 236, g: 153, b:139 } }, { id: '3', rgb: { r: 228, g: 128, b: 116 } }, { id: '4', rgb: { r:221, g: 90, b: 76 } }, { id: '5', rgb: { r: 213, g: 67, b: 60 } }, { id: '6', rgb: { r: 190, g: 58, b: 36 } }, { id: 'M', rgb: { r: 168, g: 76, b: 69 } } ] }, + RAL440: { description: '', groups: [ { id: '1', rgb: { r: 202, g: 56, b: 60 } }, { id: '2', rgb: { r: 211, g: 76, b:73 } }, { id: '3', rgb: { r: 186, g: 60, b: 62 } }, { id: '4', rgb: { r:155, g: 41, b: 41 } }, { id: '5', rgb: { r: 166, g: 49, b: 41 } }, { id: '6', rgb: { r: 185, g: 53, b: 37 } }, { id: 'M', rgb: { r: 155, g: 37, b: 44 } } ] }, + RAL450: { description: '', groups: [ { id: '1', rgb: { r: 244, g: 199, b: 202 } }, { id: '2', rgb: { r: 237, g: 165, b:170 } }, { id: '3', rgb: { r: 224, g: 122, b: 129 } }, { id: '4', rgb: { r:200, g: 88, b: 98 } }, { id: '5', rgb: { r: 178, g: 49, b: 47 } }, { id: '6', rgb: { r: 187, g: 32, b: 29 } }, { id: 'M', rgb: { r: 167, g: 22, b: 22 } } ] }, + RAL460: { description: '', groups: [ { id: '1', rgb: { r: 239, g: 163, b: 167 } }, { id: '2', rgb: { r: 227, g: 127, b:137 } }, { id: '3', rgb: { r: 223, g: 99, b: 104 } }, { id: '4', rgb: { r:211, g: 82, b: 84 } }, { id: '5', rgb: { r: 168, g: 55, b: 59 } }, { id: '6', rgb: { r: 139, g: 27, b: 40 } }, { id: 'M', rgb: { r: 174, g: 54, b: 59 } } ] }, + RAL470: { description: '', groups: [ { id: '1', rgb: { r: 240, g: 179, b: 193 } }, { id: '2', rgb: { r: 230, g: 139, b:157 } }, { id: '3', rgb: { r: 222, g: 115, b: 131 } }, { id: '4', rgb: { r:202, g: 77, b: 103 } }, { id: '5', rgb: { r: 172, g: 45, b: 76 } }, { id: '6', rgb: { r: 156, g: 34, b: 63 } }, { id: 'M', rgb: { r: 177, g: 79, b: 93 } } ] }, + RAL480: { description: '', groups: [ { id: '1', rgb: { r: 245, g: 202, b: 201 } }, { id: '2', rgb: { r: 245, g: 192, b:190 } }, { id: '3', rgb: { r: 238, g: 186, b: 188 } }, { id: '4', rgb: { r:238, g: 165, b: 177 } }, { id: '5', rgb: { r: 233, g: 144, b: 158 } }, { id: '6', rgb: { r: 218, g: 108, b: 130 } }, { id: 'M', rgb: { r: 168, g: 117, b: 121 } } ] }, + RAL490: { description: '', groups: [ { id: '1', rgb: { r: 243, g: 207, b: 208 } }, { id: '2', rgb: { r: 247, g: 202, b:195 } }, { id: '3', rgb: { r: 232, g: 154, b: 146 } }, { id: '4', rgb: { r:195, g: 123, b: 119 } }, { id: '5', rgb: { r: 190, g: 127, b: 140 } }, { id: '6', rgb: { r: 210, g: 158, b: 168 } }, { id: 'M', rgb: { r: 167, g: 125, b: 136 } } ] }, + RAL510: { description: '', groups: [ { id: '1', rgb: { r: 236, g: 200, b: 220 } }, { id: '2', rgb: { r: 224, g: 165, b:203 } }, { id: '3', rgb: { r: 213, g: 132, b: 177 } }, { id: '4', rgb: { r:196, g: 99, b: 141 } }, { id: '5', rgb: { r: 186, g: 72, b: 119 } }, { id: '6', rgb: { r: 154, g: 59, b: 106 } }, { id: 'M', rgb: { r: 140, g: 61, b: 113 } } ] }, + RAL520: { description: '', groups: [ { id: '1', rgb: { r: 239, g: 210, b: 223 } }, { id: '2', rgb: { r: 232, g: 186, b:210 } }, { id: '3', rgb: { r: 220, g: 165, b: 192 } }, { id: '4', rgb: { r:186, g: 114, b: 147 } }, { id: '5', rgb: { r: 160, g: 78, b: 111 } }, { id: '6', rgb: { r: 146, g: 82, b: 110 } }, { id: 'M', rgb: { r: 158, g: 88, b: 139 } } ] }, + RAL530: { description: '', groups: [ { id: '1', rgb: { r: 152, g: 68, b: 77 } }, { id: '2', rgb: { r: 143, g: 63, b:78 } }, { id: '3', rgb: { r: 121, g: 54, b: 68 } }, { id: '4', rgb: { r:124, g: 47, b: 75 } }, { id: '5', rgb: { r: 102, g: 37, b: 61 } }, { id: '6', rgb: { r: 97, g: 41, b: 74 } }, { id: 'M', rgb: { r: 92, g: 45, b: 58 } } ] }, + RAL540: { description: '', groups: [ { id: '1', rgb: { r: 212, g: 193, b: 215 } }, { id: '2', rgb: { r: 190, g: 161, b:193 } }, { id: '3', rgb: { r: 128, g: 95, b: 131 } }, { id: '4', rgb: { r:150, g: 107, b: 152 } }, { id: '5', rgb: { r: 129, g: 83, b: 122 } }, { id: '6', rgb: { r: 86, g: 44, b: 81 } }, { id: 'M', rgb: { r: 86, g: 47, b: 78 } } ] }, + RAL550: { description: '', groups: [ { id: '1', rgb: { r: 224, g: 209, b: 217 } }, { id: '2', rgb: { r: 208, g: 187, b:201 } }, { id: '3', rgb: { r: 178, g: 146, b: 168 } }, { id: '4', rgb: { r:156, g: 116, b: 136 } }, { id: '5', rgb: { r: 141, g: 97, b: 119 } }, { id: '6', rgb: { r: 120, g: 76, b: 94 } }, { id: 'M', rgb: { r: 167, g: 136, b: 144 } } ] }, + RAL560: { description: '', groups: [ { id: '1', rgb: { r: 204, g: 188, b: 199 } }, { id: '2', rgb: { r: 176, g: 156, b:173 } }, { id: '3', rgb: { r: 140, g: 111, b: 128 } }, { id: '4', rgb: { r:119, g: 84, b: 96 } }, { id: '5', rgb: { r: 133, g: 114, b: 127 } }, { id: '6', rgb: { r: 125, g: 110, b: 127 } }, { id: 'M', rgb: { r: 165, g: 146, b: 164 } } ] }, + RAL570: { description: '', groups: [ { id: '1', rgb: { r: 209, g: 206, b: 232 } }, { id: '2', rgb: { r: 195, g: 191, b:225 } }, { id: '3', rgb: { r: 173, g: 173, b: 221 } }, { id: '4', rgb: { r:155, g: 154, b: 207 } }, { id: '5', rgb: { r: 128, g: 120, b: 179 } }, { id: '6', rgb: { r: 121, g: 104, b: 155 } }, { id: 'M', rgb: { r: 107, g: 88, b: 154 } } ] }, + RAL580: { description: '', groups: [ { id: '1', rgb: { r: 194, g: 207, b: 230 } }, { id: '2', rgb: { r: 188, g: 199, b:224 } }, { id: '3', rgb: { r: 167, g: 178, b: 209 } }, { id: '4', rgb: { r:105, g: 116, b: 154 } }, { id: '5', rgb: { r: 65, g: 80, b: 110 } }, { id: '6', rgb: { r: 36, g: 49, b: 84 } }, { id: 'M', rgb: { r: 99, g: 108, b: 134 } } ] }, + RAL590: { description: '', groups: [ { id: '1', rgb: { r: 102, g: 109, b: 155 } }, { id: '2', rgb: { r: 66, g: 66, b:118 } }, { id: '3', rgb: { r: 42, g: 54, b: 107 } }, { id: '4', rgb: { r:39, g: 47, b: 91 } }, { id: '5', rgb: { r: 20, g: 45, b: 88 } }, { id: '6', rgb: { r: 9, g: 59, b: 122 } }, { id: 'M', rgb: { r: 41, g: 56, b: 98 } } ] }, + RAL610: { description: '', groups: [ { id: '1', rgb: { r: 110, g: 143, b: 171 } }, { id: '2', rgb: { r: 97, g: 122, b:148 } }, { id: '3', rgb: { r: 109, g: 149, b: 185 } }, { id: '4', rgb: { r:137, g: 178, b: 216 } }, { id: '5', rgb: { r: 71, g: 119, b: 174 } }, { id: '6', rgb: { r: 67, g: 105, b: 153 } }, { id: 'M', rgb: { r: 120, g: 151, b: 181 } } ] }, + RAL620: { description: '', groups: [ { id: '1', rgb: { r: 52, g: 104, b: 138 } }, { id: '2', rgb: { r: 96, g: 146, b:172 } }, { id: '3', rgb: { r: 100, g: 129, b: 143 } }, { id: '4', rgb: { r:58, g: 90, b: 106 } }, { id: '5', rgb: { r: 20, g: 53, b: 75 } }, { id: '6', rgb: { r: 30, g: 45, b: 63 } }, { id: 'M', rgb: { r: 9, g: 50, b: 70 } } ] }, + RAL630: { description: '', groups: [ { id: '1', rgb: { r: 81, g: 163, b: 211 } }, { id: '2', rgb: { r: 68, g: 107, b:142 } }, { id: '3', rgb: { r: 46, g: 78, b: 111 } }, { id: '4', rgb: { r:45, g: 74, b: 110 } }, { id: '5', rgb: { r: 31, g: 52, b: 84 } }, { id: '6', rgb: { r: 25, g: 54, b: 84 } }, { id: 'M', rgb: { r: 22, g: 48, b: 76 } } ] }, + RAL640: { description: '', groups: [ { id: '1', rgb: { r: 73, g: 160, b: 197 } }, { id: '2', rgb: { r: 0, g: 135, b:181 } }, { id: '3', rgb: { r: 0, g: 123, b: 174 } }, { id: '4', rgb: { r:0, g: 92, b: 140 } }, { id: '5', rgb: { r: 0, g: 84, b: 138 } }, { id: '6', rgb: { r: 0, g: 79, b: 125 } }, { id: 'M', rgb: { r: 0, g: 78, b: 135 } } ] }, + RAL650: { description: '', groups: [ { id: '1', rgb: { r: 100, g: 181, b: 214 } }, { id: '2', rgb: { r: 0, g: 119, b:160 } }, { id: '3', rgb: { r: 0, g: 108, b: 151 } }, { id: '4', rgb: { r:0, g: 85, b: 119 } }, { id: '5', rgb: { r: 29, g: 91, b: 120 } }, { id: '6', rgb: { r: 10, g: 73, b: 98 } }, { id: 'M', rgb: { r: 0, g: 113, b: 157 } } ] }, + RAL660: { description: '', groups: [ { id: '1', rgb: { r: 0, g: 148, b: 176 } }, { id: '2', rgb: { r: 11, g: 141, b:168 } }, { id: '3', rgb: { r: 81, g: 165, b: 184 } }, { id: '4', rgb: { r:63, g: 184, b: 207 } }, { id: '5', rgb: { r: 108, g: 195, b: 212 } }, { id: '6', rgb: { r: 138, g: 200, b: 213 } }, { id: 'M', rgb: { r: 85, g: 151, b: 169 } } ] }, + RAL670: { description: '', groups: [ { id: '1', rgb: { r: 138, g: 211, b: 234 } }, { id: '2', rgb: { r: 151, g: 218, b:239 } }, { id: '3', rgb: { r: 143, g: 197, b: 214 } }, { id: '4', rgb: { r:105, g: 187, b: 211 } }, { id: '5', rgb: { r: 91, g: 185, b: 213 } }, { id: '6', rgb: { r: 78, g: 194, b: 230 } }, { id: 'M', rgb: { r: 116, g: 167, b: 184 } } ] }, + RAL680: { description: '', groups: [ { id: '1', rgb: { r: 114, g: 170, b: 186 } }, { id: '2', rgb: { r: 51, g: 143, b:164 } }, { id: '3', rgb: { r: 23, g: 113, b: 133 } }, { id: '4', rgb: { r:38, g: 118, b: 141 } }, { id: '5', rgb: { r: 0, g: 106, b: 133 } }, { id: '6', rgb: { r: 0, g: 91, b: 116 } }, { id: 'M', rgb: { r: 14, g: 69, b: 92 } } ] }, + RAL690: { description: '', groups: [ { id: '1', rgb: { r: 63, g: 191, b: 203 } }, { id: '2', rgb: { r: 0, g: 162, b:173 } }, { id: '3', rgb: { r: 0, g: 131, b: 142 } }, { id: '4', rgb: { r:0, g: 108, b: 123 } }, { id: '5', rgb: { r: 0, g: 83, b: 95 } }, { id: '6', rgb: { r: 0, g: 81, b: 96 } }, { id: 'M', rgb: { r: 0, g: 103, b: 115 } } ] }, + RAL710: { description: '', groups: [ { id: '1', rgb: { r: 120, g: 209, b: 205 } }, { id: '2', rgb: { r: 0, g: 170, b:167 } }, { id: '3', rgb: { r: 5, g: 138, b: 139 } }, { id: '4', rgb: { r:0, g: 116, b: 118 } }, { id: '5', rgb: { r: 0, g: 92, b: 96 } }, { id: '6', rgb: { r: 12, g: 71, b: 70 } }, { id: 'M', rgb: { r: 0, g: 104, b: 107 } } ] }, + RAL720: { description: '', groups: [ { id: '1', rgb: { r: 194, g: 227, b: 222 } }, { id: '2', rgb: { r: 164, g: 226, b:219 } }, { id: '3', rgb: { r: 134, g: 211, b: 212 } }, { id: '4', rgb: { r:88, g: 190, b: 193 } }, { id: '5', rgb: { r: 51, g: 147, b: 160 } }, { id: '6', rgb: { r: 25, g: 124, b: 134 } }, { id: 'M', rgb: { r: 26, g: 148, b: 154 } } ] }, + RAL730: { description: '', groups: [ { id: '1', rgb: { r: 203, g: 231, b: 226 } }, { id: '2', rgb: { r: 152, g: 211, b:211 } }, { id: '3', rgb: { r: 125, g: 184, b: 186 } }, { id: '4', rgb: { r:123, g: 185, b: 180 } }, { id: '5', rgb: { r: 121, g: 172, b: 172 } }, { id: '6', rgb: { r: 70, g: 135, b: 127 } }, { id: 'M', rgb: { r: 98, g: 162, b: 147 } } ] }, + RAL740: { description: '', groups: [ { id: '1', rgb: { r: 197, g: 220, b: 206 } }, { id: '2', rgb: { r: 179, g: 214, b:201 } }, { id: '3', rgb: { r: 149, g: 195, b: 178 } }, { id: '4', rgb: { r:73, g: 133, b: 116 } }, { id: '5', rgb: { r: 0, g: 111, b: 91 } }, { id: '6', rgb: { r: 0, g: 93, b: 78 } }, { id: 'M', rgb: { r: 58, g: 111, b: 95 } } ] }, + RAL750: { description: '', groups: [ { id: '1', rgb: { r: 191, g: 215, b: 201 } }, { id: '2', rgb: { r: 143, g: 180, b:160 } }, { id: '3', rgb: { r: 61, g: 116, b: 97 } }, { id: '4', rgb: { r:22, g: 66, b: 52 } }, { id: '5', rgb: { r: 51, g: 84, b: 73 } }, { id: '6', rgb: { r: 46, g: 60, b: 59 } }, { id: 'M', rgb: { r: 23, g: 55, b: 45 } } ] }, + RAL760: { description: '', groups: [ { id: '1', rgb: { r: 213, g: 227, b: 202 } }, { id: '2', rgb: { r: 184, g: 205, b:170 } }, { id: '3', rgb: { r: 176, g: 190, b: 155 } }, { id: '4', rgb: { r:139, g: 155, b: 122 } }, { id: '5', rgb: { r: 109, g: 126, b: 92 } }, { id: '6', rgb: { r: 74, g: 100, b: 72 } }, { id: 'M', rgb: { r: 51, g: 75, b: 46 } } ] }, + RAL770: { description: '', groups: [ { id: '1', rgb: { r: 152, g: 157, b: 132 } }, { id: '2', rgb: { r: 169, g: 168, b:143 } }, { id: '3', rgb: { r: 122, g: 117, b: 90 } }, { id: '4', rgb: { r:129, g: 122, b: 102 } }, { id: '5', rgb: { r: 180, g: 175, b: 159 } }, { id: '6', rgb: { r: 126, g: 130, b: 115 } }, { id: 'M', rgb: { r: 141, g: 136, b: 100 } } ] }, + RAL780: { description: '', groups: [ { id: '1', rgb: { r: 233, g: 222, b: 204 } }, { id: '2', rgb: { r: 231, g: 214, b:185 } }, { id: '3', rgb: { r: 221, g: 196, b: 154 } }, { id: '4', rgb: { r:209, g: 177, b: 134 } }, { id: '5', rgb: { r: 163, g: 142, b: 121 } }, { id: '6', rgb: { r: 116, g: 105, b: 92 } }, { id: 'M', rgb: { r: 178, g: 160, b: 116 } } ] }, + RAL790: { description: '', groups: [ { id: '1', rgb: { r: 62, g: 72, b: 73 } }, { id: '2', rgb: { r: 59, g: 65, b:71 } }, { id: '3', rgb: { r: 49, g: 53, b: 56 } }, { id: '4', rgb: { r:48, g: 47, b: 50 } }, { id: '5', rgb: { r: 33, g: 34, b: 36 } }, { id: '6', rgb: { r: 33, g: 35, b: 45 } }, { id: 'M', rgb: { r: 34, g: 31, b: 29 } } ] }, + RAL810: { description: '', groups: [ { id: '1', rgb: { r: 151, g: 157, b: 162 } }, { id: '2', rgb: { r: 138, g: 148, b:153 } }, { id: '3', rgb: { r: 121, g: 136, b: 142 } }, { id: '4', rgb: { r:94, g: 107, b: 115 } }, { id: '5', rgb: { r: 81, g: 89, b: 93 } }, { id: '6', rgb: { r: 57, g: 65, b: 70 } }, { id: 'M', rgb: { r: 64, g: 70, b: 73 } } ] }, + RAL820: { description: '', groups: [ { id: '1', rgb: { r: 197, g: 200, b: 202 } }, { id: '2', rgb: { r: 169, g: 174, b:178 } }, { id: '3', rgb: { r: 141, g: 147, b: 149 } }, { id: '4', rgb: { r:125, g: 133, b: 137 } }, { id: '5', rgb: { r: 80, g: 85, b: 92 } }, { id: '6', rgb: { r: 68, g: 73, b: 81 } }, { id: 'M', rgb: { r: 146, g: 145, b: 145 } } ] }, + RAL830: { description: '', groups: [ { id: '1', rgb: { r: 186, g: 188, b: 186 } }, { id: '2', rgb: { r: 164, g: 167, b:165 } }, { id: '3', rgb: { r: 141, g: 146, b: 145 } }, { id: '4', rgb: { r:108, g: 112, b: 109 } }, { id: '5', rgb: { r: 81, g: 85, b: 84 } }, { id: '6', rgb: { r: 87, g: 94, b: 96 } }, { id: 'M', rgb: { r: 130, g: 129, b: 127 } } ] }, + RAL840: { description: '', groups: [ { id: '1', rgb: { r: 231, g: 227, b: 216 } }, { id: '2', rgb: { r: 215, g: 213, b:204 } }, { id: '3', rgb: { r: 184, g: 180, b: 168 } }, { id: '4', rgb: { r:128, g: 128, b: 119 } }, { id: '5', rgb: { r: 90, g: 93, b: 84 } }, { id: '6', rgb: { r: 71, g: 65, b: 53 } }, { id: 'M', rgb: { r: 73, g: 68, b: 64 } } ] }, + RAL850: { description: '', groups: [ { id: '1', rgb: { r: 195, g: 194, b: 185 } }, { id: '2', rgb: { r: 177, g: 177, b:170 } }, { id: '3', rgb: { r: 166, g: 166, b: 160 } }, { id: '4', rgb: { r:145, g: 141, b: 133 } }, { id: '5', rgb: { r: 107, g: 103, b: 96 } }, { id: '6', rgb: { r: 76, g: 75, b: 70 } }, { id: 'M', rgb: { r: 98, g: 94, b: 89 } } ] }, + RAL860: { description: '', groups: [ { id: '1', rgb: { r: 216, g: 218, b: 219 } }, { id: '2', rgb: { r: 207, g: 210, b:213 } }, { id: '3', rgb: { r: 193, g: 194, b: 196 } }, { id: '4', rgb: { r:154, g: 154, b: 155 } }, { id: '5', rgb: { r: 122, g: 122, b: 121 } }, { id: '6', rgb: { r: 91, g: 95, b: 95 } }, { id: 'M', rgb: { r: 164, g: 160, b: 159 } } ] }, + RAL870: { description: '', groups: [ { id: '1', rgb: { r: 211, g: 208, b: 208 } }, { id: '2', rgb: { r: 150, g: 147, b:146 } }, { id: '3', rgb: { r: 99, g: 97, b: 100 } }, { id: '4', rgb: { r:81, g: 77, b: 78 } }, { id: '5', rgb: { r: 74, g: 71, b: 71 } }, { id: '6', rgb: { r: 61, g: 55, b: 55 } }, { id: 'M', rgb: { r: 77, g: 71, b: 71 } } ] } +}; diff --git a/tools/data/ral_palettes/ral-colors/effect.json b/tools/data/ral_palettes/ral-colors/effect.json new file mode 100644 index 0000000..278d819 --- /dev/null +++ b/tools/data/ral_palettes/ral-colors/effect.json @@ -0,0 +1,4272 @@ +{ + "RAL110": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 230, + "g": 231, + "b": 230 + } + }, + { + "id": "2", + "rgb": { + "r": 222, + "g": 221, + "b": 213 + } + }, + { + "id": "3", + "rgb": { + "r": 200, + "g": 198, + "b": 190 + } + }, + { + "id": "4", + "rgb": { + "r": 198, + "g": 199, + "b": 196 + } + }, + { + "id": "5", + "rgb": { + "r": 201, + "g": 204, + "b": 198 + } + }, + { + "id": "6", + "rgb": { + "r": 200, + "g": 200, + "b": 199 + } + }, + { + "id": "M", + "rgb": { + "r": 160, + "g": 162, + "b": 164 + } + } + ] + }, + "RAL120": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 237, + "g": 237, + "b": 234 + } + }, + { + "id": "2", + "rgb": { + "r": 242, + "g": 241, + "b": 236 + } + }, + { + "id": "3", + "rgb": { + "r": 240, + "g": 238, + "b": 229 + } + }, + { + "id": "4", + "rgb": { + "r": 233, + "g": 225, + "b": 212 + } + }, + { + "id": "5", + "rgb": { + "r": 226, + "g": 217, + "b": 198 + } + }, + { + "id": "6", + "rgb": { + "r": 234, + "g": 225, + "b": 206 + } + }, + { + "id": "M", + "rgb": { + "r": 143, + "g": 141, + "b": 135 + } + } + ] + }, + "RAL130": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 242, + "g": 237, + "b": 187 + } + }, + { + "id": "2", + "rgb": { + "r": 241, + "g": 238, + "b": 195 + } + }, + { + "id": "3", + "rgb": { + "r": 240, + "g": 238, + "b": 205 + } + }, + { + "id": "4", + "rgb": { + "r": 248, + "g": 240, + "b": 207 + } + }, + { + "id": "5", + "rgb": { + "r": 237, + "g": 228, + "b": 188 + } + }, + { + "id": "6", + "rgb": { + "r": 251, + "g": 229, + "b": 176 + } + }, + { + "id": "M", + "rgb": { + "r": 171, + "g": 171, + "b": 144 + } + } + ] + }, + "RAL140": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 250, + "g": 211, + "b": 169 + } + }, + { + "id": "2", + "rgb": { + "r": 254, + "g": 218, + "b": 166 + } + }, + { + "id": "3", + "rgb": { + "r": 254, + "g": 227, + "b": 193 + } + }, + { + "id": "4", + "rgb": { + "r": 253, + "g": 223, + "b": 190 + } + }, + { + "id": "5", + "rgb": { + "r": 248, + "g": 228, + "b": 200 + } + }, + { + "id": "6", + "rgb": { + "r": 229, + "g": 210, + "b": 182 + } + }, + { + "id": "M", + "rgb": { + "r": 176, + "g": 158, + "b": 126 + } + } + ] + }, + "RAL150": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 247, + "g": 239, + "b": 233 + } + }, + { + "id": "2", + "rgb": { + "r": 249, + "g": 235, + "b": 227 + } + }, + { + "id": "3", + "rgb": { + "r": 238, + "g": 225, + "b": 215 + } + }, + { + "id": "4", + "rgb": { + "r": 251, + "g": 227, + "b": 212 + } + }, + { + "id": "5", + "rgb": { + "r": 250, + "g": 232, + "b": 220 + } + }, + { + "id": "6", + "rgb": { + "r": 248, + "g": 223, + "b": 215 + } + }, + { + "id": "M", + "rgb": { + "r": 171, + "g": 151, + "b": 138 + } + } + ] + }, + "RAL160": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 227, + "g": 225, + "b": 236 + } + }, + { + "id": "2", + "rgb": { + "r": 231, + "g": 226, + "b": 232 + } + }, + { + "id": "3", + "rgb": { + "r": 237, + "g": 232, + "b": 232 + } + }, + { + "id": "4", + "rgb": { + "r": 238, + "g": 225, + "b": 226 + } + }, + { + "id": "5", + "rgb": { + "r": 239, + "g": 228, + "b": 224 + } + }, + { + "id": "6", + "rgb": { + "r": 236, + "g": 228, + "b": 233 + } + }, + { + "id": "M", + "rgb": { + "r": 173, + "g": 166, + "b": 181 + } + } + ] + }, + "RAL170": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 199, + "g": 201, + "b": 208 + } + }, + { + "id": "2", + "rgb": { + "r": 166, + "g": 173, + "b": 189 + } + }, + { + "id": "3", + "rgb": { + "r": 186, + "g": 200, + "b": 218 + } + }, + { + "id": "4", + "rgb": { + "r": 206, + "g": 219, + "b": 236 + } + }, + { + "id": "5", + "rgb": { + "r": 195, + "g": 198, + "b": 214 + } + }, + { + "id": "6", + "rgb": { + "r": 198, + "g": 197, + "b": 214 + } + }, + { + "id": "M", + "rgb": { + "r": 167, + "g": 168, + "b": 185 + } + } + ] + }, + "RAL180": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 174, + "g": 188, + "b": 198 + } + }, + { + "id": "2", + "rgb": { + "r": 185, + "g": 205, + "b": 221 + } + }, + { + "id": "3", + "rgb": { + "r": 199, + "g": 219, + "b": 235 + } + }, + { + "id": "4", + "rgb": { + "r": 201, + "g": 225, + "b": 236 + } + }, + { + "id": "5", + "rgb": { + "r": 199, + "g": 221, + "b": 225 + } + }, + { + "id": "6", + "rgb": { + "r": 219, + "g": 233, + "b": 235 + } + }, + { + "id": "M", + "rgb": { + "r": 150, + "g": 164, + "b": 169 + } + } + ] + }, + "RAL190": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 165, + "g": 218, + "b": 223 + } + }, + { + "id": "2", + "rgb": { + "r": 185, + "g": 230, + "b": 242 + } + }, + { + "id": "3", + "rgb": { + "r": 192, + "g": 222, + "b": 225 + } + }, + { + "id": "4", + "rgb": { + "r": 189, + "g": 218, + "b": 215 + } + }, + { + "id": "5", + "rgb": { + "r": 212, + "g": 229, + "b": 231 + } + }, + { + "id": "6", + "rgb": { + "r": 163, + "g": 193, + "b": 191 + } + }, + { + "id": "M", + "rgb": { + "r": 146, + "g": 180, + "b": 178 + } + } + ] + }, + "RAL210": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 207, + "g": 198, + "b": 178 + } + }, + { + "id": "2", + "rgb": { + "r": 236, + "g": 231, + "b": 210 + } + }, + { + "id": "3", + "rgb": { + "r": 227, + "g": 228, + "b": 217 + } + }, + { + "id": "4", + "rgb": { + "r": 214, + "g": 230, + "b": 227 + } + }, + { + "id": "5", + "rgb": { + "r": 216, + "g": 232, + "b": 224 + } + }, + { + "id": "6", + "rgb": { + "r": 216, + "g": 233, + "b": 214 + } + }, + { + "id": "M", + "rgb": { + "r": 165, + "g": 169, + "b": 155 + } + } + ] + }, + "RAL220": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 102, + "g": 184, + "b": 114 + } + }, + { + "id": "2", + "rgb": { + "r": 51, + "g": 154, + "b": 81 + } + }, + { + "id": "3", + "rgb": { + "r": 0, + "g": 111, + "b": 60 + } + }, + { + "id": "4", + "rgb": { + "r": 127, + "g": 255, + "b": 127 + } + }, + { + "id": "5", + "rgb": { + "r": 0, + "g": 255, + "b": 0 + } + }, + { + "id": "6", + "rgb": { + "r": 0, + "g": 128, + "b": 0 + } + }, + { + "id": "M", + "rgb": { + "r": 0, + "g": 127, + "b": 62 + } + } + ] + }, + "RAL230": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 187, + "g": 219, + "b": 154 + } + }, + { + "id": "2", + "rgb": { + "r": 150, + "g": 200, + "b": 108 + } + }, + { + "id": "3", + "rgb": { + "r": 125, + "g": 179, + "b": 68 + } + }, + { + "id": "4", + "rgb": { + "r": 95, + "g": 151, + "b": 58 + } + }, + { + "id": "5", + "rgb": { + "r": 57, + "g": 105, + "b": 56 + } + }, + { + "id": "6", + "rgb": { + "r": 54, + "g": 92, + "b": 48 + } + }, + { + "id": "M", + "rgb": { + "r": 98, + "g": 167, + "b": 78 + } + } + ] + }, + "RAL240": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 220, + "g": 214, + "b": 145 + } + }, + { + "id": "2", + "rgb": { + "r": 170, + "g": 175, + "b": 102 + } + }, + { + "id": "3", + "rgb": { + "r": 147, + "g": 151, + "b": 85 + } + }, + { + "id": "4", + "rgb": { + "r": 126, + "g": 126, + "b": 66 + } + }, + { + "id": "5", + "rgb": { + "r": 93, + "g": 109, + "b": 60 + } + }, + { + "id": "6", + "rgb": { + "r": 79, + "g": 109, + "b": 53 + } + }, + { + "id": "M", + "rgb": { + "r": 98, + "g": 116, + "b": 57 + } + } + ] + }, + "RAL250": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 238, + "g": 230, + "b": 165 + } + }, + { + "id": "2", + "rgb": { + "r": 232, + "g": 222, + "b": 111 + } + }, + { + "id": "3", + "rgb": { + "r": 191, + "g": 183, + "b": 0 + } + }, + { + "id": "4", + "rgb": { + "r": 164, + "g": 165, + "b": 65 + } + }, + { + "id": "5", + "rgb": { + "r": 145, + "g": 145, + "b": 56 + } + }, + { + "id": "6", + "rgb": { + "r": 105, + "g": 101, + "b": 44 + } + }, + { + "id": "M", + "rgb": { + "r": 174, + "g": 167, + "b": 59 + } + } + ] + }, + "RAL260": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 243, + "g": 233, + "b": 180 + } + }, + { + "id": "2", + "rgb": { + "r": 241, + "g": 228, + "b": 131 + } + }, + { + "id": "3", + "rgb": { + "r": 243, + "g": 212, + "b": 70 + } + }, + { + "id": "4", + "rgb": { + "r": 232, + "g": 192, + "b": 31 + } + }, + { + "id": "5", + "rgb": { + "r": 222, + "g": 176, + "b": 45 + } + }, + { + "id": "6", + "rgb": { + "r": 239, + "g": 180, + "b": 22 + } + }, + { + "id": "M", + "rgb": { + "r": 184, + "g": 148, + "b": 79 + } + } + ] + }, + "RAL270": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 255, + "g": 222, + "b": 131 + } + }, + { + "id": "2", + "rgb": { + "r": 250, + "g": 204, + "b": 57 + } + }, + { + "id": "3", + "rgb": { + "r": 244, + "g": 189, + "b": 22 + } + }, + { + "id": "4", + "rgb": { + "r": 235, + "g": 177, + "b": 0 + } + }, + { + "id": "5", + "rgb": { + "r": 246, + "g": 182, + "b": 0 + } + }, + { + "id": "6", + "rgb": { + "r": 254, + "g": 196, + "b": 63 + } + }, + { + "id": "M", + "rgb": { + "r": 203, + "g": 148, + "b": 55 + } + } + ] + }, + "RAL280": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 253, + "g": 225, + "b": 147 + } + }, + { + "id": "2", + "rgb": { + "r": 240, + "g": 211, + "b": 145 + } + }, + { + "id": "3", + "rgb": { + "r": 225, + "g": 190, + "b": 120 + } + }, + { + "id": "4", + "rgb": { + "r": 214, + "g": 174, + "b": 95 + } + }, + { + "id": "5", + "rgb": { + "r": 220, + "g": 161, + "b": 64 + } + }, + { + "id": "6", + "rgb": { + "r": 208, + "g": 151, + "b": 60 + } + }, + { + "id": "M", + "rgb": { + "r": 178, + "g": 135, + "b": 64 + } + } + ] + }, + "RAL290": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 216, + "g": 155, + "b": 80 + } + }, + { + "id": "2", + "rgb": { + "r": 191, + "g": 133, + "b": 59 + } + }, + { + "id": "3", + "rgb": { + "r": 216, + "g": 169, + "b": 96 + } + }, + { + "id": "4", + "rgb": { + "r": 204, + "g": 146, + "b": 27 + } + }, + { + "id": "5", + "rgb": { + "r": 230, + "g": 176, + "b": 62 + } + }, + { + "id": "6", + "rgb": { + "r": 252, + "g": 171, + "b": 4 + } + }, + { + "id": "M", + "rgb": { + "r": 184, + "g": 126, + "b": 50 + } + } + ] + }, + "RAL310": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 245, + "g": 214, + "b": 180 + } + }, + { + "id": "2", + "rgb": { + "r": 235, + "g": 194, + "b": 151 + } + }, + { + "id": "3", + "rgb": { + "r": 223, + "g": 171, + "b": 115 + } + }, + { + "id": "4", + "rgb": { + "r": 208, + "g": 147, + "b": 85 + } + }, + { + "id": "5", + "rgb": { + "r": 186, + "g": 124, + "b": 67 + } + }, + { + "id": "6", + "rgb": { + "r": 142, + "g": 91, + "b": 45 + } + }, + { + "id": "M", + "rgb": { + "r": 184, + "g": 125, + "b": 79 + } + } + ] + }, + "RAL320": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 210, + "g": 169, + "b": 108 + } + }, + { + "id": "2", + "rgb": { + "r": 174, + "g": 129, + "b": 81 + } + }, + { + "id": "3", + "rgb": { + "r": 185, + "g": 134, + "b": 76 + } + }, + { + "id": "4", + "rgb": { + "r": 160, + "g": 103, + "b": 53 + } + }, + { + "id": "5", + "rgb": { + "r": 127, + "g": 78, + "b": 46 + } + }, + { + "id": "6", + "rgb": { + "r": 110, + "g": 68, + "b": 40 + } + }, + { + "id": "M", + "rgb": { + "r": 185, + "g": 115, + "b": 30 + } + } + ] + }, + "RAL330": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 168, + "g": 104, + "b": 89 + } + }, + { + "id": "2", + "rgb": { + "r": 142, + "g": 75, + "b": 53 + } + }, + { + "id": "3", + "rgb": { + "r": 121, + "g": 78, + "b": 62 + } + }, + { + "id": "4", + "rgb": { + "r": 92, + "g": 59, + "b": 45 + } + }, + { + "id": "5", + "rgb": { + "r": 80, + "g": 49, + "b": 42 + } + }, + { + "id": "6", + "rgb": { + "r": 70, + "g": 50, + "b": 46 + } + }, + { + "id": "M", + "rgb": { + "r": 139, + "g": 89, + "b": 67 + } + } + ] + }, + "RAL340": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 190, + "g": 164, + "b": 169 + } + }, + { + "id": "2", + "rgb": { + "r": 164, + "g": 140, + "b": 146 + } + }, + { + "id": "3", + "rgb": { + "r": 127, + "g": 84, + "b": 82 + } + }, + { + "id": "4", + "rgb": { + "r": 104, + "g": 61, + "b": 64 + } + }, + { + "id": "5", + "rgb": { + "r": 79, + "g": 42, + "b": 45 + } + }, + { + "id": "6", + "rgb": { + "r": 79, + "g": 43, + "b": 49 + } + }, + { + "id": "M", + "rgb": { + "r": 83, + "g": 53, + "b": 59 + } + } + ] + }, + "RAL350": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 157, + "g": 49, + "b": 31 + } + }, + { + "id": "2", + "rgb": { + "r": 167, + "g": 63, + "b": 50 + } + }, + { + "id": "3", + "rgb": { + "r": 162, + "g": 71, + "b": 51 + } + }, + { + "id": "4", + "rgb": { + "r": 129, + "g": 48, + "b": 33 + } + }, + { + "id": "5", + "rgb": { + "r": 120, + "g": 49, + "b": 34 + } + }, + { + "id": "6", + "rgb": { + "r": 102, + "g": 50, + "b": 43 + } + }, + { + "id": "M", + "rgb": { + "r": 88, + "g": 47, + "b": 42 + } + } + ] + }, + "RAL360": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 224, + "g": 125, + "b": 41 + } + }, + { + "id": "2", + "rgb": { + "r": 217, + "g": 117, + "b": 30 + } + }, + { + "id": "3", + "rgb": { + "r": 198, + "g": 98, + "b": 23 + } + }, + { + "id": "4", + "rgb": { + "r": 183, + "g": 86, + "b": 41 + } + }, + { + "id": "5", + "rgb": { + "r": 154, + "g": 79, + "b": 44 + } + }, + { + "id": "6", + "rgb": { + "r": 145, + "g": 80, + "b": 51 + } + }, + { + "id": "M", + "rgb": { + "r": 164, + "g": 86, + "b": 51 + } + } + ] + }, + "RAL370": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 255, + "g": 174, + "b": 71 + } + }, + { + "id": "2", + "rgb": { + "r": 255, + "g": 155, + "b": 56 + } + }, + { + "id": "3", + "rgb": { + "r": 255, + "g": 144, + "b": 29 + } + }, + { + "id": "4", + "rgb": { + "r": 230, + "g": 131, + "b": 22 + } + }, + { + "id": "5", + "rgb": { + "r": 212, + "g": 120, + "b": 31 + } + }, + { + "id": "6", + "rgb": { + "r": 205, + "g": 108, + "b": 16 + } + }, + { + "id": "M", + "rgb": { + "r": 180, + "g": 122, + "b": 60 + } + } + ] + }, + "RAL380": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 255, + "g": 155, + "b": 41 + } + }, + { + "id": "2", + "rgb": { + "r": 255, + "g": 146, + "b": 4 + } + }, + { + "id": "3", + "rgb": { + "r": 250, + "g": 132, + "b": 26 + } + }, + { + "id": "4", + "rgb": { + "r": 226, + "g": 113, + "b": 33 + } + }, + { + "id": "5", + "rgb": { + "r": 242, + "g": 120, + "b": 47 + } + }, + { + "id": "6", + "rgb": { + "r": 234, + "g": 106, + "b": 36 + } + }, + { + "id": "M", + "rgb": { + "r": 167, + "g": 85, + "b": 42 + } + } + ] + }, + "RAL390": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 235, + "g": 119, + "b": 63 + } + }, + { + "id": "2", + "rgb": { + "r": 227, + "g": 97, + "b": 37 + } + }, + { + "id": "3", + "rgb": { + "r": 222, + "g": 84, + "b": 17 + } + }, + { + "id": "4", + "rgb": { + "r": 216, + "g": 81, + "b": 28 + } + }, + { + "id": "5", + "rgb": { + "r": 216, + "g": 72, + "b": 15 + } + }, + { + "id": "6", + "rgb": { + "r": 205, + "g": 94, + "b": 42 + } + }, + { + "id": "M", + "rgb": { + "r": 191, + "g": 99, + "b": 59 + } + } + ] + }, + "RAL410": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 237, + "g": 129, + "b": 101 + } + }, + { + "id": "2", + "rgb": { + "r": 234, + "g": 115, + "b": 79 + } + }, + { + "id": "3", + "rgb": { + "r": 228, + "g": 100, + "b": 64 + } + }, + { + "id": "4", + "rgb": { + "r": 220, + "g": 93, + "b": 56 + } + }, + { + "id": "5", + "rgb": { + "r": 210, + "g": 85, + "b": 53 + } + }, + { + "id": "6", + "rgb": { + "r": 208, + "g": 93, + "b": 66 + } + }, + { + "id": "M", + "rgb": { + "r": 171, + "g": 73, + "b": 36 + } + } + ] + }, + "RAL420": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 237, + "g": 174, + "b": 154 + } + }, + { + "id": "2", + "rgb": { + "r": 242, + "g": 157, + "b": 134 + } + }, + { + "id": "3", + "rgb": { + "r": 233, + "g": 138, + "b": 108 + } + }, + { + "id": "4", + "rgb": { + "r": 228, + "g": 100, + "b": 67 + } + }, + { + "id": "5", + "rgb": { + "r": 204, + "g": 87, + "b": 56 + } + }, + { + "id": "6", + "rgb": { + "r": 191, + "g": 80, + "b": 46 + } + }, + { + "id": "M", + "rgb": { + "r": 157, + "g": 75, + "b": 50 + } + } + ] + }, + "RAL430": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 242, + "g": 194, + "b": 182 + } + }, + { + "id": "2", + "rgb": { + "r": 236, + "g": 153, + "b": 139 + } + }, + { + "id": "3", + "rgb": { + "r": 228, + "g": 128, + "b": 116 + } + }, + { + "id": "4", + "rgb": { + "r": 221, + "g": 90, + "b": 76 + } + }, + { + "id": "5", + "rgb": { + "r": 213, + "g": 67, + "b": 60 + } + }, + { + "id": "6", + "rgb": { + "r": 190, + "g": 58, + "b": 36 + } + }, + { + "id": "M", + "rgb": { + "r": 168, + "g": 76, + "b": 69 + } + } + ] + }, + "RAL440": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 202, + "g": 56, + "b": 60 + } + }, + { + "id": "2", + "rgb": { + "r": 211, + "g": 76, + "b": 73 + } + }, + { + "id": "3", + "rgb": { + "r": 186, + "g": 60, + "b": 62 + } + }, + { + "id": "4", + "rgb": { + "r": 155, + "g": 41, + "b": 41 + } + }, + { + "id": "5", + "rgb": { + "r": 166, + "g": 49, + "b": 41 + } + }, + { + "id": "6", + "rgb": { + "r": 185, + "g": 53, + "b": 37 + } + }, + { + "id": "M", + "rgb": { + "r": 155, + "g": 37, + "b": 44 + } + } + ] + }, + "RAL450": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 244, + "g": 199, + "b": 202 + } + }, + { + "id": "2", + "rgb": { + "r": 237, + "g": 165, + "b": 170 + } + }, + { + "id": "3", + "rgb": { + "r": 224, + "g": 122, + "b": 129 + } + }, + { + "id": "4", + "rgb": { + "r": 200, + "g": 88, + "b": 98 + } + }, + { + "id": "5", + "rgb": { + "r": 178, + "g": 49, + "b": 47 + } + }, + { + "id": "6", + "rgb": { + "r": 187, + "g": 32, + "b": 29 + } + }, + { + "id": "M", + "rgb": { + "r": 167, + "g": 22, + "b": 22 + } + } + ] + }, + "RAL460": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 239, + "g": 163, + "b": 167 + } + }, + { + "id": "2", + "rgb": { + "r": 227, + "g": 127, + "b": 137 + } + }, + { + "id": "3", + "rgb": { + "r": 223, + "g": 99, + "b": 104 + } + }, + { + "id": "4", + "rgb": { + "r": 211, + "g": 82, + "b": 84 + } + }, + { + "id": "5", + "rgb": { + "r": 168, + "g": 55, + "b": 59 + } + }, + { + "id": "6", + "rgb": { + "r": 139, + "g": 27, + "b": 40 + } + }, + { + "id": "M", + "rgb": { + "r": 174, + "g": 54, + "b": 59 + } + } + ] + }, + "RAL470": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 240, + "g": 179, + "b": 193 + } + }, + { + "id": "2", + "rgb": { + "r": 230, + "g": 139, + "b": 157 + } + }, + { + "id": "3", + "rgb": { + "r": 222, + "g": 115, + "b": 131 + } + }, + { + "id": "4", + "rgb": { + "r": 202, + "g": 77, + "b": 103 + } + }, + { + "id": "5", + "rgb": { + "r": 172, + "g": 45, + "b": 76 + } + }, + { + "id": "6", + "rgb": { + "r": 156, + "g": 34, + "b": 63 + } + }, + { + "id": "M", + "rgb": { + "r": 177, + "g": 79, + "b": 93 + } + } + ] + }, + "RAL480": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 245, + "g": 202, + "b": 201 + } + }, + { + "id": "2", + "rgb": { + "r": 245, + "g": 192, + "b": 190 + } + }, + { + "id": "3", + "rgb": { + "r": 238, + "g": 186, + "b": 188 + } + }, + { + "id": "4", + "rgb": { + "r": 238, + "g": 165, + "b": 177 + } + }, + { + "id": "5", + "rgb": { + "r": 233, + "g": 144, + "b": 158 + } + }, + { + "id": "6", + "rgb": { + "r": 218, + "g": 108, + "b": 130 + } + }, + { + "id": "M", + "rgb": { + "r": 168, + "g": 117, + "b": 121 + } + } + ] + }, + "RAL490": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 243, + "g": 207, + "b": 208 + } + }, + { + "id": "2", + "rgb": { + "r": 247, + "g": 202, + "b": 195 + } + }, + { + "id": "3", + "rgb": { + "r": 232, + "g": 154, + "b": 146 + } + }, + { + "id": "4", + "rgb": { + "r": 195, + "g": 123, + "b": 119 + } + }, + { + "id": "5", + "rgb": { + "r": 190, + "g": 127, + "b": 140 + } + }, + { + "id": "6", + "rgb": { + "r": 210, + "g": 158, + "b": 168 + } + }, + { + "id": "M", + "rgb": { + "r": 167, + "g": 125, + "b": 136 + } + } + ] + }, + "RAL510": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 236, + "g": 200, + "b": 220 + } + }, + { + "id": "2", + "rgb": { + "r": 224, + "g": 165, + "b": 203 + } + }, + { + "id": "3", + "rgb": { + "r": 213, + "g": 132, + "b": 177 + } + }, + { + "id": "4", + "rgb": { + "r": 196, + "g": 99, + "b": 141 + } + }, + { + "id": "5", + "rgb": { + "r": 186, + "g": 72, + "b": 119 + } + }, + { + "id": "6", + "rgb": { + "r": 154, + "g": 59, + "b": 106 + } + }, + { + "id": "M", + "rgb": { + "r": 140, + "g": 61, + "b": 113 + } + } + ] + }, + "RAL520": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 239, + "g": 210, + "b": 223 + } + }, + { + "id": "2", + "rgb": { + "r": 232, + "g": 186, + "b": 210 + } + }, + { + "id": "3", + "rgb": { + "r": 220, + "g": 165, + "b": 192 + } + }, + { + "id": "4", + "rgb": { + "r": 186, + "g": 114, + "b": 147 + } + }, + { + "id": "5", + "rgb": { + "r": 160, + "g": 78, + "b": 111 + } + }, + { + "id": "6", + "rgb": { + "r": 146, + "g": 82, + "b": 110 + } + }, + { + "id": "M", + "rgb": { + "r": 158, + "g": 88, + "b": 139 + } + } + ] + }, + "RAL530": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 152, + "g": 68, + "b": 77 + } + }, + { + "id": "2", + "rgb": { + "r": 143, + "g": 63, + "b": 78 + } + }, + { + "id": "3", + "rgb": { + "r": 121, + "g": 54, + "b": 68 + } + }, + { + "id": "4", + "rgb": { + "r": 124, + "g": 47, + "b": 75 + } + }, + { + "id": "5", + "rgb": { + "r": 102, + "g": 37, + "b": 61 + } + }, + { + "id": "6", + "rgb": { + "r": 97, + "g": 41, + "b": 74 + } + }, + { + "id": "M", + "rgb": { + "r": 92, + "g": 45, + "b": 58 + } + } + ] + }, + "RAL540": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 212, + "g": 193, + "b": 215 + } + }, + { + "id": "2", + "rgb": { + "r": 190, + "g": 161, + "b": 193 + } + }, + { + "id": "3", + "rgb": { + "r": 128, + "g": 95, + "b": 131 + } + }, + { + "id": "4", + "rgb": { + "r": 150, + "g": 107, + "b": 152 + } + }, + { + "id": "5", + "rgb": { + "r": 129, + "g": 83, + "b": 122 + } + }, + { + "id": "6", + "rgb": { + "r": 86, + "g": 44, + "b": 81 + } + }, + { + "id": "M", + "rgb": { + "r": 86, + "g": 47, + "b": 78 + } + } + ] + }, + "RAL550": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 224, + "g": 209, + "b": 217 + } + }, + { + "id": "2", + "rgb": { + "r": 208, + "g": 187, + "b": 201 + } + }, + { + "id": "3", + "rgb": { + "r": 178, + "g": 146, + "b": 168 + } + }, + { + "id": "4", + "rgb": { + "r": 156, + "g": 116, + "b": 136 + } + }, + { + "id": "5", + "rgb": { + "r": 141, + "g": 97, + "b": 119 + } + }, + { + "id": "6", + "rgb": { + "r": 120, + "g": 76, + "b": 94 + } + }, + { + "id": "M", + "rgb": { + "r": 167, + "g": 136, + "b": 144 + } + } + ] + }, + "RAL560": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 204, + "g": 188, + "b": 199 + } + }, + { + "id": "2", + "rgb": { + "r": 176, + "g": 156, + "b": 173 + } + }, + { + "id": "3", + "rgb": { + "r": 140, + "g": 111, + "b": 128 + } + }, + { + "id": "4", + "rgb": { + "r": 119, + "g": 84, + "b": 96 + } + }, + { + "id": "5", + "rgb": { + "r": 133, + "g": 114, + "b": 127 + } + }, + { + "id": "6", + "rgb": { + "r": 125, + "g": 110, + "b": 127 + } + }, + { + "id": "M", + "rgb": { + "r": 165, + "g": 146, + "b": 164 + } + } + ] + }, + "RAL570": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 209, + "g": 206, + "b": 232 + } + }, + { + "id": "2", + "rgb": { + "r": 195, + "g": 191, + "b": 225 + } + }, + { + "id": "3", + "rgb": { + "r": 173, + "g": 173, + "b": 221 + } + }, + { + "id": "4", + "rgb": { + "r": 155, + "g": 154, + "b": 207 + } + }, + { + "id": "5", + "rgb": { + "r": 128, + "g": 120, + "b": 179 + } + }, + { + "id": "6", + "rgb": { + "r": 121, + "g": 104, + "b": 155 + } + }, + { + "id": "M", + "rgb": { + "r": 107, + "g": 88, + "b": 154 + } + } + ] + }, + "RAL580": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 194, + "g": 207, + "b": 230 + } + }, + { + "id": "2", + "rgb": { + "r": 188, + "g": 199, + "b": 224 + } + }, + { + "id": "3", + "rgb": { + "r": 167, + "g": 178, + "b": 209 + } + }, + { + "id": "4", + "rgb": { + "r": 105, + "g": 116, + "b": 154 + } + }, + { + "id": "5", + "rgb": { + "r": 65, + "g": 80, + "b": 110 + } + }, + { + "id": "6", + "rgb": { + "r": 36, + "g": 49, + "b": 84 + } + }, + { + "id": "M", + "rgb": { + "r": 99, + "g": 108, + "b": 134 + } + } + ] + }, + "RAL590": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 102, + "g": 109, + "b": 155 + } + }, + { + "id": "2", + "rgb": { + "r": 66, + "g": 66, + "b": 118 + } + }, + { + "id": "3", + "rgb": { + "r": 42, + "g": 54, + "b": 107 + } + }, + { + "id": "4", + "rgb": { + "r": 39, + "g": 47, + "b": 91 + } + }, + { + "id": "5", + "rgb": { + "r": 20, + "g": 45, + "b": 88 + } + }, + { + "id": "6", + "rgb": { + "r": 9, + "g": 59, + "b": 122 + } + }, + { + "id": "M", + "rgb": { + "r": 41, + "g": 56, + "b": 98 + } + } + ] + }, + "RAL610": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 110, + "g": 143, + "b": 171 + } + }, + { + "id": "2", + "rgb": { + "r": 97, + "g": 122, + "b": 148 + } + }, + { + "id": "3", + "rgb": { + "r": 109, + "g": 149, + "b": 185 + } + }, + { + "id": "4", + "rgb": { + "r": 137, + "g": 178, + "b": 216 + } + }, + { + "id": "5", + "rgb": { + "r": 71, + "g": 119, + "b": 174 + } + }, + { + "id": "6", + "rgb": { + "r": 67, + "g": 105, + "b": 153 + } + }, + { + "id": "M", + "rgb": { + "r": 120, + "g": 151, + "b": 181 + } + } + ] + }, + "RAL620": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 52, + "g": 104, + "b": 138 + } + }, + { + "id": "2", + "rgb": { + "r": 96, + "g": 146, + "b": 172 + } + }, + { + "id": "3", + "rgb": { + "r": 100, + "g": 129, + "b": 143 + } + }, + { + "id": "4", + "rgb": { + "r": 58, + "g": 90, + "b": 106 + } + }, + { + "id": "5", + "rgb": { + "r": 20, + "g": 53, + "b": 75 + } + }, + { + "id": "6", + "rgb": { + "r": 30, + "g": 45, + "b": 63 + } + }, + { + "id": "M", + "rgb": { + "r": 9, + "g": 50, + "b": 70 + } + } + ] + }, + "RAL630": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 81, + "g": 163, + "b": 211 + } + }, + { + "id": "2", + "rgb": { + "r": 68, + "g": 107, + "b": 142 + } + }, + { + "id": "3", + "rgb": { + "r": 46, + "g": 78, + "b": 111 + } + }, + { + "id": "4", + "rgb": { + "r": 45, + "g": 74, + "b": 110 + } + }, + { + "id": "5", + "rgb": { + "r": 31, + "g": 52, + "b": 84 + } + }, + { + "id": "6", + "rgb": { + "r": 25, + "g": 54, + "b": 84 + } + }, + { + "id": "M", + "rgb": { + "r": 22, + "g": 48, + "b": 76 + } + } + ] + }, + "RAL640": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 73, + "g": 160, + "b": 197 + } + }, + { + "id": "2", + "rgb": { + "r": 0, + "g": 135, + "b": 181 + } + }, + { + "id": "3", + "rgb": { + "r": 0, + "g": 123, + "b": 174 + } + }, + { + "id": "4", + "rgb": { + "r": 0, + "g": 92, + "b": 140 + } + }, + { + "id": "5", + "rgb": { + "r": 0, + "g": 84, + "b": 138 + } + }, + { + "id": "6", + "rgb": { + "r": 0, + "g": 79, + "b": 125 + } + }, + { + "id": "M", + "rgb": { + "r": 0, + "g": 78, + "b": 135 + } + } + ] + }, + "RAL650": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 100, + "g": 181, + "b": 214 + } + }, + { + "id": "2", + "rgb": { + "r": 0, + "g": 119, + "b": 160 + } + }, + { + "id": "3", + "rgb": { + "r": 0, + "g": 108, + "b": 151 + } + }, + { + "id": "4", + "rgb": { + "r": 0, + "g": 85, + "b": 119 + } + }, + { + "id": "5", + "rgb": { + "r": 29, + "g": 91, + "b": 120 + } + }, + { + "id": "6", + "rgb": { + "r": 10, + "g": 73, + "b": 98 + } + }, + { + "id": "M", + "rgb": { + "r": 0, + "g": 113, + "b": 157 + } + } + ] + }, + "RAL660": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 0, + "g": 148, + "b": 176 + } + }, + { + "id": "2", + "rgb": { + "r": 11, + "g": 141, + "b": 168 + } + }, + { + "id": "3", + "rgb": { + "r": 81, + "g": 165, + "b": 184 + } + }, + { + "id": "4", + "rgb": { + "r": 63, + "g": 184, + "b": 207 + } + }, + { + "id": "5", + "rgb": { + "r": 108, + "g": 195, + "b": 212 + } + }, + { + "id": "6", + "rgb": { + "r": 138, + "g": 200, + "b": 213 + } + }, + { + "id": "M", + "rgb": { + "r": 85, + "g": 151, + "b": 169 + } + } + ] + }, + "RAL670": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 138, + "g": 211, + "b": 234 + } + }, + { + "id": "2", + "rgb": { + "r": 151, + "g": 218, + "b": 239 + } + }, + { + "id": "3", + "rgb": { + "r": 143, + "g": 197, + "b": 214 + } + }, + { + "id": "4", + "rgb": { + "r": 105, + "g": 187, + "b": 211 + } + }, + { + "id": "5", + "rgb": { + "r": 91, + "g": 185, + "b": 213 + } + }, + { + "id": "6", + "rgb": { + "r": 78, + "g": 194, + "b": 230 + } + }, + { + "id": "M", + "rgb": { + "r": 116, + "g": 167, + "b": 184 + } + } + ] + }, + "RAL680": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 114, + "g": 170, + "b": 186 + } + }, + { + "id": "2", + "rgb": { + "r": 51, + "g": 143, + "b": 164 + } + }, + { + "id": "3", + "rgb": { + "r": 23, + "g": 113, + "b": 133 + } + }, + { + "id": "4", + "rgb": { + "r": 38, + "g": 118, + "b": 141 + } + }, + { + "id": "5", + "rgb": { + "r": 0, + "g": 106, + "b": 133 + } + }, + { + "id": "6", + "rgb": { + "r": 0, + "g": 91, + "b": 116 + } + }, + { + "id": "M", + "rgb": { + "r": 14, + "g": 69, + "b": 92 + } + } + ] + }, + "RAL690": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 63, + "g": 191, + "b": 203 + } + }, + { + "id": "2", + "rgb": { + "r": 0, + "g": 162, + "b": 173 + } + }, + { + "id": "3", + "rgb": { + "r": 0, + "g": 131, + "b": 142 + } + }, + { + "id": "4", + "rgb": { + "r": 0, + "g": 108, + "b": 123 + } + }, + { + "id": "5", + "rgb": { + "r": 0, + "g": 83, + "b": 95 + } + }, + { + "id": "6", + "rgb": { + "r": 0, + "g": 81, + "b": 96 + } + }, + { + "id": "M", + "rgb": { + "r": 0, + "g": 103, + "b": 115 + } + } + ] + }, + "RAL710": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 120, + "g": 209, + "b": 205 + } + }, + { + "id": "2", + "rgb": { + "r": 0, + "g": 170, + "b": 167 + } + }, + { + "id": "3", + "rgb": { + "r": 5, + "g": 138, + "b": 139 + } + }, + { + "id": "4", + "rgb": { + "r": 0, + "g": 116, + "b": 118 + } + }, + { + "id": "5", + "rgb": { + "r": 0, + "g": 92, + "b": 96 + } + }, + { + "id": "6", + "rgb": { + "r": 12, + "g": 71, + "b": 70 + } + }, + { + "id": "M", + "rgb": { + "r": 0, + "g": 104, + "b": 107 + } + } + ] + }, + "RAL720": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 194, + "g": 227, + "b": 222 + } + }, + { + "id": "2", + "rgb": { + "r": 164, + "g": 226, + "b": 219 + } + }, + { + "id": "3", + "rgb": { + "r": 134, + "g": 211, + "b": 212 + } + }, + { + "id": "4", + "rgb": { + "r": 88, + "g": 190, + "b": 193 + } + }, + { + "id": "5", + "rgb": { + "r": 51, + "g": 147, + "b": 160 + } + }, + { + "id": "6", + "rgb": { + "r": 25, + "g": 124, + "b": 134 + } + }, + { + "id": "M", + "rgb": { + "r": 26, + "g": 148, + "b": 154 + } + } + ] + }, + "RAL730": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 203, + "g": 231, + "b": 226 + } + }, + { + "id": "2", + "rgb": { + "r": 152, + "g": 211, + "b": 211 + } + }, + { + "id": "3", + "rgb": { + "r": 125, + "g": 184, + "b": 186 + } + }, + { + "id": "4", + "rgb": { + "r": 123, + "g": 185, + "b": 180 + } + }, + { + "id": "5", + "rgb": { + "r": 121, + "g": 172, + "b": 172 + } + }, + { + "id": "6", + "rgb": { + "r": 70, + "g": 135, + "b": 127 + } + }, + { + "id": "M", + "rgb": { + "r": 98, + "g": 162, + "b": 147 + } + } + ] + }, + "RAL740": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 197, + "g": 220, + "b": 206 + } + }, + { + "id": "2", + "rgb": { + "r": 179, + "g": 214, + "b": 201 + } + }, + { + "id": "3", + "rgb": { + "r": 149, + "g": 195, + "b": 178 + } + }, + { + "id": "4", + "rgb": { + "r": 73, + "g": 133, + "b": 116 + } + }, + { + "id": "5", + "rgb": { + "r": 0, + "g": 111, + "b": 91 + } + }, + { + "id": "6", + "rgb": { + "r": 0, + "g": 93, + "b": 78 + } + }, + { + "id": "M", + "rgb": { + "r": 58, + "g": 111, + "b": 95 + } + } + ] + }, + "RAL750": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 191, + "g": 215, + "b": 201 + } + }, + { + "id": "2", + "rgb": { + "r": 143, + "g": 180, + "b": 160 + } + }, + { + "id": "3", + "rgb": { + "r": 61, + "g": 116, + "b": 97 + } + }, + { + "id": "4", + "rgb": { + "r": 22, + "g": 66, + "b": 52 + } + }, + { + "id": "5", + "rgb": { + "r": 51, + "g": 84, + "b": 73 + } + }, + { + "id": "6", + "rgb": { + "r": 46, + "g": 60, + "b": 59 + } + }, + { + "id": "M", + "rgb": { + "r": 23, + "g": 55, + "b": 45 + } + } + ] + }, + "RAL760": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 213, + "g": 227, + "b": 202 + } + }, + { + "id": "2", + "rgb": { + "r": 184, + "g": 205, + "b": 170 + } + }, + { + "id": "3", + "rgb": { + "r": 176, + "g": 190, + "b": 155 + } + }, + { + "id": "4", + "rgb": { + "r": 139, + "g": 155, + "b": 122 + } + }, + { + "id": "5", + "rgb": { + "r": 109, + "g": 126, + "b": 92 + } + }, + { + "id": "6", + "rgb": { + "r": 74, + "g": 100, + "b": 72 + } + }, + { + "id": "M", + "rgb": { + "r": 51, + "g": 75, + "b": 46 + } + } + ] + }, + "RAL770": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 152, + "g": 157, + "b": 132 + } + }, + { + "id": "2", + "rgb": { + "r": 169, + "g": 168, + "b": 143 + } + }, + { + "id": "3", + "rgb": { + "r": 122, + "g": 117, + "b": 90 + } + }, + { + "id": "4", + "rgb": { + "r": 129, + "g": 122, + "b": 102 + } + }, + { + "id": "5", + "rgb": { + "r": 180, + "g": 175, + "b": 159 + } + }, + { + "id": "6", + "rgb": { + "r": 126, + "g": 130, + "b": 115 + } + }, + { + "id": "M", + "rgb": { + "r": 141, + "g": 136, + "b": 100 + } + } + ] + }, + "RAL780": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 233, + "g": 222, + "b": 204 + } + }, + { + "id": "2", + "rgb": { + "r": 231, + "g": 214, + "b": 185 + } + }, + { + "id": "3", + "rgb": { + "r": 221, + "g": 196, + "b": 154 + } + }, + { + "id": "4", + "rgb": { + "r": 209, + "g": 177, + "b": 134 + } + }, + { + "id": "5", + "rgb": { + "r": 163, + "g": 142, + "b": 121 + } + }, + { + "id": "6", + "rgb": { + "r": 116, + "g": 105, + "b": 92 + } + }, + { + "id": "M", + "rgb": { + "r": 178, + "g": 160, + "b": 116 + } + } + ] + }, + "RAL790": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 62, + "g": 72, + "b": 73 + } + }, + { + "id": "2", + "rgb": { + "r": 59, + "g": 65, + "b": 71 + } + }, + { + "id": "3", + "rgb": { + "r": 49, + "g": 53, + "b": 56 + } + }, + { + "id": "4", + "rgb": { + "r": 48, + "g": 47, + "b": 50 + } + }, + { + "id": "5", + "rgb": { + "r": 33, + "g": 34, + "b": 36 + } + }, + { + "id": "6", + "rgb": { + "r": 33, + "g": 35, + "b": 45 + } + }, + { + "id": "M", + "rgb": { + "r": 34, + "g": 31, + "b": 29 + } + } + ] + }, + "RAL810": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 151, + "g": 157, + "b": 162 + } + }, + { + "id": "2", + "rgb": { + "r": 138, + "g": 148, + "b": 153 + } + }, + { + "id": "3", + "rgb": { + "r": 121, + "g": 136, + "b": 142 + } + }, + { + "id": "4", + "rgb": { + "r": 94, + "g": 107, + "b": 115 + } + }, + { + "id": "5", + "rgb": { + "r": 81, + "g": 89, + "b": 93 + } + }, + { + "id": "6", + "rgb": { + "r": 57, + "g": 65, + "b": 70 + } + }, + { + "id": "M", + "rgb": { + "r": 64, + "g": 70, + "b": 73 + } + } + ] + }, + "RAL820": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 197, + "g": 200, + "b": 202 + } + }, + { + "id": "2", + "rgb": { + "r": 169, + "g": 174, + "b": 178 + } + }, + { + "id": "3", + "rgb": { + "r": 141, + "g": 147, + "b": 149 + } + }, + { + "id": "4", + "rgb": { + "r": 125, + "g": 133, + "b": 137 + } + }, + { + "id": "5", + "rgb": { + "r": 80, + "g": 85, + "b": 92 + } + }, + { + "id": "6", + "rgb": { + "r": 68, + "g": 73, + "b": 81 + } + }, + { + "id": "M", + "rgb": { + "r": 146, + "g": 145, + "b": 145 + } + } + ] + }, + "RAL830": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 186, + "g": 188, + "b": 186 + } + }, + { + "id": "2", + "rgb": { + "r": 164, + "g": 167, + "b": 165 + } + }, + { + "id": "3", + "rgb": { + "r": 141, + "g": 146, + "b": 145 + } + }, + { + "id": "4", + "rgb": { + "r": 108, + "g": 112, + "b": 109 + } + }, + { + "id": "5", + "rgb": { + "r": 81, + "g": 85, + "b": 84 + } + }, + { + "id": "6", + "rgb": { + "r": 87, + "g": 94, + "b": 96 + } + }, + { + "id": "M", + "rgb": { + "r": 130, + "g": 129, + "b": 127 + } + } + ] + }, + "RAL840": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 231, + "g": 227, + "b": 216 + } + }, + { + "id": "2", + "rgb": { + "r": 215, + "g": 213, + "b": 204 + } + }, + { + "id": "3", + "rgb": { + "r": 184, + "g": 180, + "b": 168 + } + }, + { + "id": "4", + "rgb": { + "r": 128, + "g": 128, + "b": 119 + } + }, + { + "id": "5", + "rgb": { + "r": 90, + "g": 93, + "b": 84 + } + }, + { + "id": "6", + "rgb": { + "r": 71, + "g": 65, + "b": 53 + } + }, + { + "id": "M", + "rgb": { + "r": 73, + "g": 68, + "b": 64 + } + } + ] + }, + "RAL850": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 195, + "g": 194, + "b": 185 + } + }, + { + "id": "2", + "rgb": { + "r": 177, + "g": 177, + "b": 170 + } + }, + { + "id": "3", + "rgb": { + "r": 166, + "g": 166, + "b": 160 + } + }, + { + "id": "4", + "rgb": { + "r": 145, + "g": 141, + "b": 133 + } + }, + { + "id": "5", + "rgb": { + "r": 107, + "g": 103, + "b": 96 + } + }, + { + "id": "6", + "rgb": { + "r": 76, + "g": 75, + "b": 70 + } + }, + { + "id": "M", + "rgb": { + "r": 98, + "g": 94, + "b": 89 + } + } + ] + }, + "RAL860": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 216, + "g": 218, + "b": 219 + } + }, + { + "id": "2", + "rgb": { + "r": 207, + "g": 210, + "b": 213 + } + }, + { + "id": "3", + "rgb": { + "r": 193, + "g": 194, + "b": 196 + } + }, + { + "id": "4", + "rgb": { + "r": 154, + "g": 154, + "b": 155 + } + }, + { + "id": "5", + "rgb": { + "r": 122, + "g": 122, + "b": 121 + } + }, + { + "id": "6", + "rgb": { + "r": 91, + "g": 95, + "b": 95 + } + }, + { + "id": "M", + "rgb": { + "r": 164, + "g": 160, + "b": 159 + } + } + ] + }, + "RAL870": { + "description": "", + "groups": [ + { + "id": "1", + "rgb": { + "r": 211, + "g": 208, + "b": 208 + } + }, + { + "id": "2", + "rgb": { + "r": 150, + "g": 147, + "b": 146 + } + }, + { + "id": "3", + "rgb": { + "r": 99, + "g": 97, + "b": 100 + } + }, + { + "id": "4", + "rgb": { + "r": 81, + "g": 77, + "b": 78 + } + }, + { + "id": "5", + "rgb": { + "r": 74, + "g": 71, + "b": 71 + } + }, + { + "id": "6", + "rgb": { + "r": 61, + "g": 55, + "b": 55 + } + }, + { + "id": "M", + "rgb": { + "r": 77, + "g": 71, + "b": 71 + } + } + ] + } +} diff --git a/tools/data/ral_palettes/ral-colors/outline.json b/tools/data/ral_palettes/ral-colors/outline.json new file mode 100644 index 0000000..0255e35 --- /dev/null +++ b/tools/data/ral_palettes/ral-colors/outline.json @@ -0,0 +1,127 @@ +{ + "dropRootKeys": true, + "special-values-mapping": { + "null": "null", + "empty": "", + "true": "true", + "false": "false" + }, + "map": [ + [ + "description", + "description" + ], + [ + "groups_0_id", + "groups.0.id" + ], + [ + "groups_0_rgb_r", + "groups.0.rgb.r" + ], + [ + "groups_0_rgb_g", + "groups.0.rgb.g" + ], + [ + "groups_0_rgb_b", + "groups.0.rgb.b" + ], + [ + "groups_1_id", + "groups.1.id" + ], + [ + "groups_1_rgb_r", + "groups.1.rgb.r" + ], + [ + "groups_1_rgb_g", + "groups.1.rgb.g" + ], + [ + "groups_1_rgb_b", + "groups.1.rgb.b" + ], + [ + "groups_2_id", + "groups.2.id" + ], + [ + "groups_2_rgb_r", + "groups.2.rgb.r" + ], + [ + "groups_2_rgb_g", + "groups.2.rgb.g" + ], + [ + "groups_2_rgb_b", + "groups.2.rgb.b" + ], + [ + "groups_3_id", + "groups.3.id" + ], + [ + "groups_3_rgb_r", + "groups.3.rgb.r" + ], + [ + "groups_3_rgb_g", + "groups.3.rgb.g" + ], + [ + "groups_3_rgb_b", + "groups.3.rgb.b" + ], + [ + "groups_4_id", + "groups.4.id" + ], + [ + "groups_4_rgb_r", + "groups.4.rgb.r" + ], + [ + "groups_4_rgb_g", + "groups.4.rgb.g" + ], + [ + "groups_4_rgb_b", + "groups.4.rgb.b" + ], + [ + "groups_5_id", + "groups.5.id" + ], + [ + "groups_5_rgb_r", + "groups.5.rgb.r" + ], + [ + "groups_5_rgb_g", + "groups.5.rgb.g" + ], + [ + "groups_5_rgb_b", + "groups.5.rgb.b" + ], + [ + "groups_6_id", + "groups.6.id" + ], + [ + "groups_6_rgb_r", + "groups.6.rgb.r" + ], + [ + "groups_6_rgb_g", + "groups.6.rgb.g" + ], + [ + "groups_6_rgb_b", + "groups.6.rgb.b" + ] + ] +} \ No newline at end of file diff --git a/tools/data/ral_palettes/ral-json/1.csv b/tools/data/ral_palettes/ral-json/1.csv new file mode 100644 index 0000000..9357f7c --- /dev/null +++ b/tools/data/ral_palettes/ral-json/1.csv @@ -0,0 +1,214 @@ +code,scope,color_hex,color_websafe,color_rgb_r,color_rgb_g,color_rgb_b,color_hsl_h,color_hsl_s,color_hsl_l,color_hsb_h,color_hsb_s,color_hsb_b,color_cmyk_c,color_cmyk_m,color_cmyk_y,color_cmyk_k,names_de,names_en,names_fr,names_es,names_it,names_nl +1000,classic,#CDBA88,#cccc99,205,186,136,43,41,67,43,34,80,5,10,40,10,Grünbeige,Green beige,Beige vert,Beige verdoso,Beige verdastro,Groenbeige +1001,classic,#D0B084,#cc9999,208,176,132,35,45,67,35,37,82,5,20,40,10,Beige,Beige,Beige,Beige,Beige,Beige +1002,classic,#D2AA6D,#cc9966,210,170,109,36,53,63,36,48,82,5,20,50,10,Sandgelb,Sand yellow,Jaune sable,Amarillo arena,Giallo sabbia,Zandgeel +1003,classic,#F9A800,#ff9900,249,168,0,40,100,49,40,100,98,0,35,100,0,Signalgelb,Signal yellow,Jaune de sécurité,Amarillo señales,Giallo segnale,Signaalgeel +1004,classic,#E49E00,#cc9900,228,158,0,42,100,45,42,100,89,10,35,100,0,Goldgelb,Golden yellow,Jaune or,Amarillo oro,Giallo oro,Goudgeel +1005,classic,#CB8E00,#cc9900,203,142,0,42,100,40,42,100,80,0,30,100,0,Honiggelb,Honey yellow,Jaune miel,Amarillo miel,Giallo miele,Honinggeel +1006,classic,#E29000,#cc9900,226,144,0,38,100,44,38,100,89,0,40,100,0,Maisgelb,Maize yellow,Jaune maïs,Amarillo maiz,Giallo polenta,Maisgeel +1007,classic,#E88C00,#ff9900,232,140,0,36,100,45,36,100,91,0,50,100,0,Narzissengelb,Daffodil yellow,Jaune narcisse,Amarillo narciso,Giallo narciso,Narcissengeel +1011,classic,#AF804F,#999966,175,128,79,31,38,50,31,55,69,20,40,60,0,Braunbeige,Brown beige,Beige brun,Beige pardo,Beige marrone,Bruinbeige +1012,classic,#DDAF27,#cc9933,221,175,39,45,73,51,45,82,87,5,20,100,0,Zitronengelb,Lemon yellow,Jaune citron,Amarillo limón,Giallo limone,Citroengeel +1013,classic,#E3D9C6,#cccccc,227,217,198,39,34,83,39,13,89,5,10,20,0,Perlweiß,Oyster white,Blanc perlé,Blanco perla,Bianco perla,Parelwit +1014,classic,#DDC49A,#cccc99,221,196,154,38,50,74,38,30,87,5,20,50,0,Elfenbein,Ivory,Ivoire,Marfil,Avorio,Ivoorkleurig +1015,classic,#E6D2B5,#ffcccc,230,210,181,36,49,81,36,21,90,5,10,30,0,Hellelfenbein,Light ivory,Ivoire clair,Marfil claro,Avorio chiaro,Licht ivoorkleurig +1016,classic,#F1DD38,#ffcc33,241,221,56,54,87,58,54,77,95,5,0,90,0,Schwefelgelb,Sulfur yellow,Jaune soufre,Amarillo azufre,Giallo zolfo,Zwavelgeel +1017,classic,#F6A950,#ff9966,246,169,80,32,90,64,32,67,96,0,40,100,0,Safrangelb,Saffron yellow,Jaune safran,Amarillo azafrán,Giallo zafferano,Saffraangeel +1018,classic,#FACA30,#ffcc33,250,202,48,46,95,58,46,81,98,0,15,100,0,Zinkgelb,Zinc yellow,Jaune zinc,Amarillo de zinc,Giallo zinco,Zinkgeel +1019,classic,#A48F7A,#999966,164,143,122,30,19,56,30,26,64,0,15,40,45,Graubeige,Grey beige,Beige gris,Beige agrisado,Beige grigiastro,Grijsbeige +1020,classic,#A08F65,#999966,160,143,101,43,24,51,43,37,63,30,25,60,20,Olivgelb,Olive yellow,Jaune olive,Amarillo oliva,Giallo olivastro,Olijfgeel +1021,classic,#F6B600,#ffcc00,246,182,0,44,100,48,44,100,96,0,5,100,0,Rapsgelb,Colza yellow,Jaune colza,Amarillo colza,Giallo navone,Koolzaadgeel +1023,classic,#F7B500,#ffcc00,247,181,0,44,100,48,44,100,97,0,25,100,0,Verkehrsgelb,Traffic yellow,Jaune signalisation,Amarillo tráfico,Giallo traffico,Verkeersgeel +1024,classic,#BA8F4C,#cc9933,186,143,76,37,44,51,37,59,73,5,30,80,30,Ockergelb,Ochre yellow,Jaune ocre,Amarillo ocre,Giallo ocra,Okergeel +1026,classic,#FFFF00,#ffff00,255,255,0,60,100,50,60,100,100,5,0,100,0,Leuchtgelb,Luminous yellow,Jaune brillant,Amarillo brillante,Giallo brillante,Briljantgeel +1027,classic,#A77F0E,#996600,167,127,14,44,85,35,44,92,65,5,10,100,40,Currygelb,Curry,Jaune curry,Amarillo curry,Giallo curry,Kerriegeel +1028,classic,#FF9B00,#ff9900,255,155,0,36,100,50,36,100,100,0,40,100,0,Melonengelb,Melon yellow,Jaune melon,Amarillo melón,Giallo melone,Meloengeel +1032,classic,#E2A300,#cc9900,226,163,0,43,100,44,43,100,89,15,40,100,0,Ginstergelb,Broom yellow,Jaune genêt,Amarillo retama,Giallo scopa,Bremgeel +1033,classic,#F99A1C,#ff9933,249,154,28,34,95,54,34,89,98,0,50,100,0,Dahliengelb,Dahlia yellow,Jaune dahlia,Amarillo dalia,Giallo dahlien,Dahliageel +1034,classic,#EB9C52,#ff9966,235,156,82,29,79,62,29,65,92,0,45,70,0,Pastellgelb,Pastel yellow,Jaune pastel,Amarillo pastel,Giallo pastello,Pastelgeel +1035,classic,#908370,#999966,144,131,112,36,13,50,36,22,56,10,25,40,40,Perlbeige,Pearl beige,Beige nacré,Beige perlado,Beige perlato,Parelmoer grijs +1036,classic,#80643F,#996633,128,100,63,34,34,37,34,51,50,30,30,50,70,Perlgold,Pearl gold,Or nacré,Oro perlado,Oro perlato,Parelmoer goud +1037,classic,#F09200,#ff9900,240,146,0,37,100,47,37,100,94,0,45,100,0,Sonnengelb,Sun yellow,Jaune soleil,Amarillo sol,Giallo sole,Zonnegeel +2000,classic,#DA6E00,#cc6600,218,110,0,30,100,43,30,100,85,0,65,100,0,Gelborange,Yellow orange,Orangé jaune,Amarillo naranja,Arancio giallastro,Geeloranje +2001,classic,#BA481B,#cc3333,186,72,27,17,75,42,17,85,73,10,85,100,10,Rotorange,Red orange,Orangé rouge,Rojo anaranjado,Arancio rossastro,Roodoranje +2002,classic,#BF3922,#cc3333,191,57,34,9,70,44,9,82,75,0,90,100,10,Blutorange,Vermilion,Orangé sang,Naranja sanguineo,Arancio sanguigno,Vermiljoen +2003,classic,#F67828,#ff6633,246,120,40,23,92,56,23,84,96,0,70,90,0,Pastellorange,Pastel orange,Orangé pastel,Naranja pálido,Arancio pastello,Pasteloranje +2004,classic,#E25303,#cc6600,226,83,3,22,97,45,22,99,89,0,75,100,0,Reinorange,Pure orange,Orangé pur,Naranja puro,Arancio puro,Zuiver oranje +2005,classic,#FF4D06,#ff6600,255,77,6,17,100,51,17,98,100,0,70,100,0,Leuchtorange,Luminous orange,Orangé brillant,Naranja brillante,Arancio brillante,Briljantoranje +2007,classic,#FFB200,#ff9900,255,178,0,42,100,50,42,100,100,0,45,100,0,Leuchthell orange,Luminous bright orange,Orangé clair brillant,Naranja claro brillante,Arancio chiaro brillante,Briljant lichtoranje +2008,classic,#ED6B21,#ff6633,237,107,33,22,85,53,22,86,93,0,65,100,0,Hellrotorange,Bright red orange,Orangé rouge clair,Rojo claro anaranjado,Rosso arancio chiaro,Licht roodoranje +2009,classic,#DE5307,#cc6600,222,83,7,21,94,45,21,97,87,0,80,100,0,Verkehrsorange,Traffic orange,Orangé signalisation,Naranja tráfico,Arancio traffico,Verkeersoranje +2010,classic,#D05D28,#cc6633,208,93,40,19,68,49,19,81,82,0,80,100,10,Signalorange,Signal orange,Orangé de sécurité,Naranja señales,Arancio segnale,Signaaloranje +2011,classic,#E26E0E,#cc6600,226,110,14,27,88,47,27,94,89,0,65,100,0,Tieforange,Deep orange,Orangé foncé,Naranja intenso,Arancio profondo,Dieporanje +2012,classic,#D5654D,#cc6666,213,101,77,11,62,57,11,64,84,10,80,70,0,Lachsorange,Salmon orange,Orangé saumon,Naranja salmón,Arancio salmone,Zalmoranje +2013,classic,#923E25,#993333,146,62,37,14,60,36,14,75,57,20,90,100,30,Perlorange,Pearl orange,Orangé nacré,Naranja perlado,Arancio perlato,Parelmoer oranje +3000,classic,#A72920,#993333,167,41,32,4,68,39,4,81,65,10,100,100,20,Feuerrot,Flame red,Rouge feu,Rojo vivo,Rosso fuoco,Vuurrood +3001,classic,#9B2423,#993333,155,36,35,0,63,37,0,77,61,20,100,100,10,Signalrot,Signal red,Rouge de sécurité,Rojo señales,Rosso segnale,Signaalrood +3002,classic,#9B2321,#993333,155,35,33,1,65,37,1,79,61,10,100,100,25,Karminrot,Carmine red,Rouge carmin,Rojo carmin,Rosso carminio,Karmijnrood +3003,classic,#861A22,#993333,134,26,34,356,68,31,356,81,53,30,100,80,20,Rubinrot,Ruby red,Rouge rubis,Rojo rubí,Rosso rubino,Robijnrood +3004,classic,#6B1C23,#663333,107,28,35,355,59,26,355,74,42,30,100,70,40,Purpurrot,Purple red,Rouge pourpre,Rojo púrpura,Rosso porpora,Purperrood +3005,classic,#59191F,#660033,89,25,31,354,56,22,354,72,35,40,100,60,40,Weinrot,Wine red,Rouge vin,Rojo vino,Rosso vino,Wijnrood +3007,classic,#3E2022,#333333,62,32,34,356,32,18,356,48,24,50,100,40,50,Schwarzrot,Black red,Rouge noir,Rojo negruzco,Rosso nerastro,Zwartrood +3009,classic,#6D342D,#663333,109,52,45,7,42,30,7,59,43,40,100,100,30,Oxidrot,Oxide red,Rouge oxyde,Rojo óxido,Rosso ossido,Oxyderood +3011,classic,#792423,#663333,121,36,35,1,55,31,1,71,47,20,100,80,40,Braunrot,Brown red,Rouge brun,Rojo pardo,Rosso marrone,Bruinrood +3012,classic,#C6846D,#cc9966,198,132,109,16,44,60,16,45,78,0,50,50,20,Beigerot,Beige red,Rouge beige,Rojo beige,Rosso beige,Beigerood +3013,classic,#972E25,#993333,151,46,37,5,61,37,5,75,59,0,100,90,30,Tomatenrot,Tomato red,Rouge tomate,Rojo tomate,Rosso pomodoro,Tomaatrood +3014,classic,#CB7375,#cc6666,203,115,117,359,46,62,359,43,80,0,65,40,10,Altrosa,Antique pink,Vieux rose,Rojo viejo,Rosa antico,Oudroze +3015,classic,#D8A0A6,#cc9999,216,160,166,354,42,74,354,26,85,5,40,20,0,Hellrosa,Light pink,Rose clair,Rosa claro,Rosa chiaro,Lichtroze +3016,classic,#A63D2F,#993333,166,61,47,7,56,42,7,72,65,0,90,90,30,Korallenrot,Coral red,Rouge corail,Rojo coral,Rosso corallo,Koraalrood +3017,classic,#CB555D,#cc6666,203,85,93,356,53,56,356,58,80,0,80,50,10,Rosé,Rose,Rosé,Rosa,Rosato,Bleekrood +3018,classic,#C73F4A,#cc3333,199,63,74,355,55,51,355,68,78,5,100,60,0,Erdbeerrot,Strawberry red,Rouge fraise,Rojo fresa,Rosso fragola,Aardbeirood +3020,classic,#BB1E10,#cc3300,187,30,16,5,84,40,5,91,73,0,100,100,10,Verkehrsrot,Traffic red,Rouge signalisation,Rojo tráfico,Rosso traffico,Verkeersrood +3022,classic,#CF6955,#cc6666,207,105,85,10,56,57,10,59,81,0,70,60,5,Lachsrot,Salmon pink,Rouge saumon,Rojo salmón,Rosso salmone,Zalmrood +3024,classic,#FF2D21,#ff3333,255,45,33,3,100,56,3,87,100,0,90,100,0,Leuchtrot,Luminous red,Rouge brillant,Rojo brillante,Rosso brillante,Briljantrood +3026,classic,#FF2A1B,#ff3333,255,42,27,4,100,55,4,89,100,0,80,100,0,Leuchthellrot,Luminous bright red,Rouge clair brillant,Rojo claro brillante,Rosso chiaro brillante,Briljant lichtrood +3027,classic,#AB273C,#993333,171,39,60,350,63,41,350,77,67,0,100,50,20,Himbeerrot,Raspberry red,Rouge framboise,Rojo frambuesa,Rosso lampone,Framboosrood +3028,classic,#CC2C24,#cc3333,204,44,36,3,70,47,3,82,80,0,100,90,0,Reinrot,Pure red,Rouge pu,Rojo puro ,Rosso puro,Zuiver rood +3031,classic,#A63437,#993333,166,52,55,358,52,43,358,69,65,20,100,70,10,Orientrot,Orient red,Rouge oriental,Rojo oriente,Rosso oriente,Oriëntrood +3032,classic,#701D23,#663333,112,29,35,356,59,28,356,74,44,10,100,60,40,Perlrubinrot,Pearl ruby red,Rouge rubis nacré,Rojo rubí perlado,Rosso rubino perlato,Parelmoer donkerrood +3033,classic,#A53A2D,#993333,165,58,45,7,57,41,7,73,65,10,90,90,20,Perlrosa,Pearl pink,Rose nacré,Rosa perlado,Rosa perlato,Parelmoer lichtrood +4001,classic,#816183,#996699,129,97,131,296,15,45,296,26,51,30,60,10,20,Rotlila,Red lilac,Lilas rouge,Rojo lila,Lilla rossastro,Roodlila +4002,classic,#8D3C4B,#993333,141,60,75,349,40,39,349,57,55,25,90,50,30,Rotviolett,Red violet,Violet rouge,Rojo violeta,Viola rossastro,Roodpaars +4003,classic,#C4618C,#cc6699,196,97,140,334,46,57,334,51,77,10,80,5,5,Erikaviolett,Heather violet,Violet bruyère,Violeta érica,Viola erica,Heidepaars +4004,classic,#651E38,#663333,101,30,56,338,54,26,338,70,40,30,100,30,60,Bordeauxviolett,Claret violet,Violet bordeaux,Burdeos,Viola bordeaux,Bordeuaxpaars +4005,classic,#76689A,#666699,118,104,154,257,20,51,257,32,60,50,60,0,0,Blaulila,Blue lilac,Lilas bleu,Lila azulado,Lilla bluastro,Blauwlila +4006,classic,#903373,#993366,144,51,115,319,48,38,319,65,56,40,100,0,15,Verkehrspurpur,Traffic purple,Pourpre signalisation,Púrpurá tráfico,Porpora traffico,Verkeerspurper +4007,classic,#47243C,#333333,71,36,60,319,33,21,319,49,28,70,100,10,70,Purpurviolett,Purple violet,Violet pourpre,Violeta púrpura,Porpora violetto,Purperviolet +4008,classic,#844C82,#993399,132,76,130,302,27,41,302,42,52,50,90,0,5,Signalviolett,Signal violet,Violet de sécurité,Violeta señales,Violetto segnale,Signaalviolet +4009,classic,#9D8692,#999999,157,134,146,329,11,57,329,15,62,35,50,30,10,Pastellviolett,Pastel violet,Violet pastel,Violeta pastel,Violetto pastello,Pastelviolet +4010,classic,#BC4077,#cc3366,188,64,119,333,49,49,333,66,74,15,100,15,10,Telemagenta,Telemagenta,Telemagenta,Magenta tele,Tele Magenta,Telemagenta +4011,classic,#6E6387,#666699,110,99,135,258,15,46,258,27,53,50,60,0,20,Perlviolett,Pearl violet,Violet nacré,Violeta perlado,Violetto perlato,Parelmoer donkerviolet +4012,classic,#6B6B7F,#666666,107,107,127,240,9,46,240,16,50,40,35,0,40,Perlbrombeer,Pearl blackberry,Mûre nacré,Morado perlado,Mora perlato,Parelmoer lichtviolet +5000,classic,#314F6F,#336666,49,79,111,211,39,31,211,56,44,100,80,40,5,Violettblau,Violet blue,Bleu violet,Azul violeta,Blu violaceo,Paarsblauw +5001,classic,#0F4C64,#003366,15,76,100,197,74,23,197,85,39,100,60,30,40,Grünblau,Green blue,Bleu vert,Azul verdoso,Blu verdastro,Groenblauw +5002,classic,#00387B,#003366,0,56,123,213,100,24,213,100,48,100,90,0,10,Ultramarinblau,Ultramarine blue,Bleu outremer,Azul ultramar,Blu oltremare,Ultramarijn blauw +5003,classic,#1F3855,#333366,31,56,85,212,47,23,212,64,33,70,30,10,80,Saphirblau,Sapphire blue,Bleu saphir,Azul zafiro,Blu zaffiro,Saffierblauw +5004,classic,#191E28,#003333,25,30,40,220,23,13,220,38,16,70,30,10,80,Schwarzblau,Black blue,Bleu noir,Azul negruzco,Blu nerastro,Zwartblauw +5005,classic,#005387,#006699,0,83,135,203,100,26,203,100,53,95,60,0,20,Signalblau,Signal blue,Bleu de sécurité,Azul señales,Blu segnale,Signaalblauw +5007,classic,#376B8C,#336699,55,107,140,203,44,38,203,61,55,80,50,20,20,Brillantblau,Brilliant blue,Bleu brillant,Azul brillante,Blu brillante,Briljantblauw +5008,classic,#2B3A44,#333333,43,58,68,204,23,22,204,37,27,100,90,60,30,Graublau,Grey blue,Bleu gris,Azul grisáceo,Blu grigiastro,Grijsblauw +5009,classic,#225F78,#336666,34,95,120,197,56,30,197,72,47,90,40,0,30,Azurblau,Azure blue,Bleu azur,Azul azur,Blu azzurro,Azuurblauw +5010,classic,#004F7C,#006666,0,79,124,202,100,24,202,100,49,100,70,5,15,Enzianblau,Gentian blue,Bleu gentiane,Azul genciana,Blu genziana,Gentiaanblauw +5011,classic,#1A2B3C,#333333,26,43,60,210,40,17,210,57,24,100,100,60,30,Stahlblau,Steel blue,Bleu acier,Azul acero,Blu acciaio,Staalblauw +5012,classic,#0089B6,#0099cc,0,137,182,195,100,36,195,100,71,75,30,0,10,Lichtblau,Light blue,Bleu clair,Azul luminoso,Blu luce,Lichtblauw +5013,classic,#193153,#003366,25,49,83,215,54,21,215,70,33,100,80,10,50,Kobaltblau,Cobalt blue,Bleu cobalt,Azul cobalto,Blu cobalto,Kobaltblauw +5014,classic,#637D96,#666699,99,125,150,209,20,49,209,34,59,50,30,10,30,Taubenblau,Pigeon blue,Bleu pigeon,Azul colombino,Blu colomba,Duifblauw +5015,classic,#007CB0,#006699,0,124,176,198,100,35,198,100,69,90,40,0,0,Himmelblau,Sky blue,Bleu ciel,Azul celeste,Blu cielo,Hemelsblauw +5017,classic,#005B8C,#006699,0,91,140,201,100,27,201,100,55,100,60,0,10,Verkehrsblau,Traffic blue,Bleu signalisation,Azul tráfico,Blu traffico,Verkeersblauw +5018,classic,#058B8C,#009999,5,139,140,180,93,28,180,96,55,80,10,35,20,Türkisblau,Turquoise blue,Bleu turquoise,Azul turquesa,Blu turchese,Turkooisblauw +5019,classic,#005E83,#006699,0,94,131,197,100,26,197,100,51,100,50,15,25,Capriblau,Capri blue,Bleu capri,Azul capri,Blu Capri,Capriblauw +5020,classic,#00414B,#003333,0,65,75,188,100,15,188,100,29,100,10,20,80,Ozeanblau,Ocean blue,Bleu océan,Azul oceano,Blu oceano,Oceaanblauw +5021,classic,#007577,#006666,0,117,119,181,100,23,181,100,47,100,0,40,35,Wasserblau,Water blue,Bleu d’eau,Azul agua,Blu acqua,Waterblauw +5022,classic,#222D5A,#333366,34,45,90,228,45,24,228,62,35,100,90,0,50,Nachtblau,Night blue,Bleu nocturne,Azul noche,Blu notte,Nachtblauw +5023,classic,#42698C,#336699,66,105,140,208,36,40,208,53,55,70,40,10,30,Fernblau,Distant blue,Bleu distant,Azul lejanía,Blu distante,Verblauw +5024,classic,#6093AC,#669999,96,147,172,200,31,53,200,44,67,60,20,5,20,Pastellblau,Pastel blue,Bleu pastel,Azul pastel,Blu pastello,Pastelblauw +5025,classic,#21697C,#336666,33,105,124,193,58,31,193,73,49,80,25,5,60,Perlenzian,Pearl gentian blue,Gentiane nacré,Gencian perlado,Blu genziana perlato,Parelmoer blauw +5026,classic,#0F3052,#003366,15,48,82,210,69,19,210,82,32,100,60,0,45,Perlnachtblau,Pearl night blue,Bleu nuit nacré,Azul noche perlado,Blu notte perlato,Parelmoer nachtblauw +6000,classic,#3C7460,#336666,60,116,96,159,32,35,159,48,45,80,25,60,15,Patinagrün,Patina green,Vert patine,Verde patina,Verde patina,Patinagroen +6001,classic,#366735,#336633,54,103,53,119,32,31,119,49,40,80,30,100,10,Smaragdgrün,Emerald green,Vert émeraude,Verde esmeralda,Verde smeraldo,Smaragdgroen +6002,classic,#325928,#336633,50,89,40,108,38,25,108,55,35,85,30,100,30,Laubgrün,Leaf green,Vert feuillage,Verde hoja,Verde foglia,Loofgroen +6003,classic,#50533C,#666633,80,83,60,68,16,28,68,28,33,45,15,60,70,Olivgrün,Olive green,Vert olive,Verde oliva,Verde oliva,Olijfgroen +6004,classic,#024442,#003333,2,68,66,178,94,14,178,97,27,90,10,45,70,Blaugrün,Blue green,Vert bleu,Verde azulado,Verde bluastro,Blauwgroen +6005,classic,#114232,#003333,17,66,50,160,59,16,160,74,26,80,5,60,70,Moosgrün,Moss green,Vert mousse,Verde musgo,Verde muschio,Mosgroen +6006,classic,#3C392E,#333333,60,57,46,47,13,21,47,23,24,20,0,30,90,Grauoliv,Grey olive,Olive gris,Oliva grisáceo,Oliva grigiastro,Grijs olijfgroen +6007,classic,#2C3222,#333333,44,50,34,83,19,16,83,32,20,80,45,70,80,Flaschengrün,Bottle green,Vert bouteille,Verde botella,Verde bottiglia,Flessengroen +6008,classic,#37342A,#333333,55,52,42,46,13,19,46,24,22,60,50,60,80,Braungrün,Brown green,Vert brun,Verde parduzco,Verde brunastro,Bruingroen +6009,classic,#27352A,#333333,39,53,42,133,15,18,133,26,21,100,30,80,80,Tannengrün,Fir green,Vert sapin,Verde abeto,Verde abete,Dennengroen +6010,classic,#4D6F39,#666633,77,111,57,98,32,33,98,49,44,80,20,100,25,Grasgrün,Grass green,Vert herbe,Verde hierba,Verde erba,Grasgroen +6011,classic,#6C7C59,#666666,108,124,89,87,16,42,87,28,49,50,10,60,45,Resedagrün,Reseda green,Vert réséda,Verde reseda,Verde reseda,Resedagroen +6012,classic,#303D3A,#333333,48,61,58,166,12,21,166,21,24,80,45,50,70,Schwarzgrün,Black green,Vert noir,Verde negruzco,Verde nerastro,Zwartgroen +6013,classic,#7D765A,#666666,125,118,90,48,16,42,48,28,49,45,25,60,50,Schilfgrün,Reed green,Vert jonc,Verde caña,Verde canna,Rietgroen +6014,classic,#474135,#333333,71,65,53,40,15,24,40,25,28,20,20,50,90,Gelboliv,Yellow olive,Olive jaune,Amarillo oliva,Oliva giallastro,Geel olijfgroen +6015,classic,#3D3D36,#333333,61,61,54,60,6,23,60,11,24,25,5,30,90,Schwarzoliv,Black olive,Olive noir,Oliva negruzco,Oliva nerastro,Zwart olijfgroen +6016,classic,#00694C,#006633,0,105,76,163,100,21,163,100,41,100,20,80,25,Türkisgrün,Turquoise green,Vert turquoise,Verde turquesa,Verde turchese,Turkooisgroen +6017,classic,#587F40,#666633,88,127,64,97,33,37,97,50,50,70,5,90,20,Maigrün,May green,Vert mai,Verde mayo,Verde maggio,Meigroen +6018,classic,#61993B,#669933,97,153,59,96,44,42,96,61,60,70,0,90,0,Gelbgrün,Yellow green,Vert jaune,Verde amarillento,Verde giallastro,Geelgroen +6019,classic,#B9CEAC,#cccc99,185,206,172,97,26,74,97,17,81,35,0,40,0,Weißgrün,Pastel green,Vert blanc,Verde blanquecino,Verde biancastro,Witgroen +6020,classic,#37422F,#333333,55,66,47,95,17,22,95,29,26,80,50,90,50,Chromoxidgrün,Chrome green,Vert oxyde chromique,Verde cromo,Verde cromo,Chroomoxyde groen +6021,classic,#8A9977,#999966,138,153,119,86,14,53,86,22,60,45,5,50,25,Blassgrün,Pale green,Vert pâle,Verde pálido,Verde pallido,Bleekgroen +6022,classic,#3A3327,#333333,58,51,39,38,20,19,38,33,23,70,70,100,70,Braunoliv,Olive drab,Olive brun,Oliva parduzco,Oliva brunastro,Bruin olijfgroen +6024,classic,#008351,#009966,0,131,81,157,100,26,157,100,51,90,10,80,10,Verkehrsgrün,Traffic green,Vert signalisation,Verde tráfico,Verde traffico,Verkeersgroen +6025,classic,#5E6E3B,#666633,94,110,59,79,30,33,79,46,43,70,25,100,20,Farngrün,Fern green,Vert fougère,Verde helecho,Verde felce,Varengroen +6026,classic,#005F4E,#006666,0,95,78,169,100,19,169,100,37,100,10,60,50,Opalgrün,Opal green,Vert opale,Verde opalo,Verde opale,Opaalgroen +6027,classic,#7EBAB5,#66cccc,126,186,181,175,30,61,175,32,73,50,0,25,5,Lichtgrün,Light green,Vert clair,Verde luminoso,Verde chiaro,Lichtgroen +6028,classic,#315442,#336633,49,84,66,149,26,26,149,42,33,80,35,70,50,Kieferngrün,Pine green,Vert pin,Verde pino,Verde pino,Pijnboomgroen +6029,classic,#006F3D,#006633,0,111,61,153,100,22,153,100,44,100,5,90,30,Minzgrün,Mint green,Vert menthe,Verde menta,Verde menta,Mintgroen +6032,classic,#237F52,#336666,35,127,82,151,57,32,151,72,50,90,10,80,10,Signalgrün,Signal green,Vert de sécurité,Verde señales,Verde segnale,Signaalgroen +6033,classic,#46877F,#339966,70,135,127,173,32,40,173,48,53,70,15,50,20,Minttürkis,Mint turquoise,Turquoise menthe,Turquesa menta,Turchese menta,Mintturquoise +6034,classic,#7AACAC,#669999,122,172,172,180,23,58,180,29,67,45,0,20,20,Pastelltürkis,Pastel turquoise,Turquoise pastel,Turquesa pastel,Turchese pastello,Pastelturquoise +6035,classic,#194D25,#006633,25,77,37,134,51,20,134,68,30,90,15,100,60,Perlgrün,Pearl green,Vert nacré,Verde perlado,Verde perlato,Parelmoer donkergroen +6036,classic,#04574B,#006633,4,87,75,171,91,18,171,95,34,85,10,60,40,Perlopalgrün,Pearl opal green,Vert opal nacré,Verde ópalo perlado,Verde opalo perlato,Parelmoer lichtgroen +6037,classic,#008B29,#009933,0,139,41,138,100,27,138,100,55,85,0,100,0,Reingrün,Pure green,Vert pur,Verde puro ,Verde puro,Zuiver groen +6038,classic,#00B51A,#00cc33,0,181,26,129,100,35,129,100,71,70,0,90,0,Leuchtgrün,Luminous green,Vert brillant,Verde brillante ,Verde brillante,Briljantgroen +7000,classic,#7A888E,#669999,122,136,142,198,8,52,198,14,56,35,5,10,40,Fehgrau,Squirrel grey,Gris petit-gris,Gris ardilla,Grigio vaio,Pelsgrijs +7001,classic,#8C969D,#999999,140,150,157,205,8,58,205,11,62,25,10,5,45,Silbergrau,Silver grey,Gris argent,Gris plata,Grigio argento,Zilvergrijs +7002,classic,#817863,#996666,129,120,99,42,13,45,42,23,51,0,5,40,60,Olivgrau,Olive grey,Gris olive,Gris oliva,Grigio olivastro,Olijfgrijs +7003,classic,#7A7669,#666666,122,118,105,46,7,45,46,14,48,45,35,45,45,Moosgrau,Moss grey,Gris mousse,Gris musgo,Grigio muschio,Mosgrijs +7004,classic,#9B9B9B,#999999,155,155,155,0,0,61,0,0,61,15,10,5,45,Signalgrau,Signal grey,Gris de sécurité,Gris señales,Grigio segnale,Signaalgrijs +7005,classic,#6C6E6B,#666666,108,110,107,100,1,43,100,3,43,35,20,30,40,Mausgrau,Mouse grey,Gris souris,Gris ratón,Grigio topo,Muisgrijs +7006,classic,#766A5E,#666666,118,106,94,30,11,42,30,20,46,40,40,50,40,Beigegrau,Beige grey,Gris beige,Gris beige,Grigio beige,Beigegrijs +7008,classic,#745E3D,#666633,116,94,61,36,31,35,36,47,45,40,50,90,40,Khakigrau,Khaki grey,Gris kaki,Gris caqui,Grigio kaki,Kakigrijs +7009,classic,#5D6058,#666666,93,96,88,83,4,36,83,8,38,50,35,50,50,Grüngrau,Green grey,Gris vert,Gris verdoso,Grigio verdastro,Groengrijs +7010,classic,#585C56,#666666,88,92,86,100,3,35,100,7,36,50,30,45,60,Zeltgrau,Tarpaulin grey,Gris tente,Gris lona,Grigio tenda,Zeildoekgrijs +7011,classic,#52595D,#666666,82,89,93,202,6,34,202,12,36,40,15,15,70,Eisengrau,Iron grey,Gris fer,Gris hierro,Grigio ferro,IJzergrijs +7012,classic,#575D5E,#666666,87,93,94,189,4,35,189,7,37,30,10,10,70,Basaltgrau,Basalt grey,Gris basalte,Gris basalto,Grigio basalto,Bazaltgrijs +7013,classic,#575044,#666633,87,80,68,38,12,30,38,22,34,30,35,50,70,Braungrau,Brown grey,Gris brun,Gris parduzco,Grigio brunastro,Bruingrijs +7015,classic,#4F5358,#666666,79,83,88,213,5,33,213,10,35,45,30,15,70,Schiefergrau,Slate grey,Gris ardoise,Gris pizarra,Grigio ardesia,Leigrijs +7016,classic,#383E42,#333333,56,62,66,204,8,24,204,15,26,60,30,20,80,Anthrazitgrau,Anthracite grey,Gris anthracite,Gris antracita,Grigio antracite,Antracietgrijs +7021,classic,#2F3234,#333333,47,50,52,204,5,19,204,10,20,60,35,30,90,Schwarzgrau,Black grey,Gris noir,Gris negruzco,Grigio nerastro,Zwartgrijs +7022,classic,#4C4A44,#333333,76,74,68,45,6,28,45,11,30,40,30,40,80,Umbragrau,Umbra grey,Gris terre d’ombre,Gris sombra,Grigio ombra,Ombergrijs +7023,classic,#808076,#999966,128,128,118,60,4,48,60,8,50,5,0,20,50,Betongrau,Concrete grey,Gris béton,Gris hormigón,Grigio calcestruzzo,Betongrijs +7024,classic,#45494E,#333366,69,73,78,213,6,29,213,12,31,30,20,0,80,Graphitgrau,Graphite grey,Gris graphite,Gris grafita,Grigio grafite,Grafietgrijs +7026,classic,#374345,#333333,55,67,69,189,11,24,189,20,27,50,15,15,80,Granitgrau,Granite grey,Gris granit,Gris granito,Grigio granito,Granietgrijs +7030,classic,#928E85,#999999,146,142,133,42,6,55,42,9,57,5,5,15,50,Steingrau,Stone grey,Gris pierre,Gris piedra,Grigio pietra,Steengrijs +7031,classic,#5B686D,#666666,91,104,109,197,9,39,197,17,43,50,20,15,60,Blaugrau,Blue grey,Gris bleu,Gris azulado,Grigio bluastro,Blauwgrijs +7032,classic,#B5B0A1,#cc9999,181,176,161,45,12,67,45,11,71,15,10,25,20,Kieselgrau,Pebble grey,Gris silex,Gris guijarro,Grigio ghiaia,Kiezelgrijs +7033,classic,#7F8274,#669966,127,130,116,73,6,48,73,11,51,25,10,30,40,Zementgrau,Cement grey,Gris ciment,Gris cemento,Grigio cemento,Cementgrijs +7034,classic,#92886F,#999966,146,136,111,43,14,50,43,24,57,15,20,40,40,Gelbgrau,Yellow grey,Gris jaune,Gris amarillento,Grigio giallastro,Geelgrijs +7035,classic,#C5C7C4,#cccccc,197,199,196,100,3,77,100,2,78,20,10,15,5,Lichtgrau,Light grey,Gris clair,Gris luminoso,Grigio luce,Lichtgrijs +7036,classic,#979392,#999999,151,147,146,12,2,58,12,3,59,35,30,30,10,Platingrau,Platinum grey,Gris platine,Gris platino,Grigio platino,Platinagrijs +7037,classic,#7A7B7A,#666666,122,123,122,120,0,48,120,1,48,30,20,20,40,Staubgrau,Dusty grey,Gris poussière,Gris polvo,Grigio polvere,Stofgrijs +7038,classic,#B0B0A9,#999999,176,176,169,60,4,68,60,4,69,5,0,10,30,Achatgrau,Agate grey,Gris agate,Gris ágata,Grigio agata,Agaatgrijs +7039,classic,#6B665E,#666666,107,102,94,37,6,39,37,12,42,25,20,30,60,Quarzgrau,Quartz grey,Gris quartz,Gris cuarzo,Grigio quarzo,Kwartsgrijs +7040,classic,#989EA1,#999999,152,158,161,200,5,61,200,6,63,20,10,5,35,Fenstergrau,Window grey,Gris fenêtre,Gris ventana,Grigio finestra,Venstergrijs +7042,classic,#8E9291,#999999,142,146,145,165,2,56,165,3,57,30,20,30,30,Verkehrsgrau A,Traffic grey A,Gris signalisation A,Gris tráfico A,Grigio traffico A,Verkeersgrijs A +7043,classic,#4F5250,#666666,79,82,80,140,2,32,140,4,32,20,5,0,80,Verkehrsgrau B,Traffic grey B,Gris signalisation B,Gris tráfico B,Grigio traffico B,Verkeersgrijs B +7044,classic,#B7B3A8,#cccc99,183,179,168,44,9,69,44,8,72,20,15,25,15,Seidengrau,Silk grey,Gris soie,Gris seda,Grigio seta,Zijdegrijs +7045,classic,#8D9295,#999999,141,146,149,203,4,57,203,5,58,5,0,0,45,Telegrau 1,Telegrey 1,Telegris 1,Gris tele 1,Grigio tele 1,Telegrijs 1 +7046,classic,#7F868A,#669999,127,134,138,202,4,52,202,8,54,30,20,20,40,Telegrau 2,Telegrey 2,Telegris 2,Gris tele 2,Grigio tele 2,Telegrijs 2 +7047,classic,#C8C8C7,#cccccc,200,200,199,60,1,78,60,0,78,5,5,5,20,Telegrau 4,Telegrey 4,Telegris 4,Gris tele 4,Grigio tele 4,Telegrijs 4 +7048,classic,#817B73,#996666,129,123,115,34,6,48,34,11,51,15,15,25,60,Perlmausgrau,Pearl mouse grey,Gris souris nacré,Gris musgo perlado,Grigio topo perlato,Parelmoer muisgrijs +8000,classic,#89693E,#996633,137,105,62,34,38,39,34,55,54,50,60,90,0,Grünbraun,Green brown,Brun vert,Pardo verdoso,Marrone verdastro,Groenbruin +8001,classic,#9D622B,#996633,157,98,43,29,57,39,29,73,62,30,60,90,10,Ockerbraun,Ochre brown,Brun terre de Sienne,Pardo ocre,Marrone ocra,Okerbruin +8002,classic,#794D3E,#666633,121,77,62,15,32,36,15,49,47,30,70,70,50,Signalbraun,Signal brown,Brun de sécurité,Marrón señales,Marrone segnale,Signaalbruin +8003,classic,#7E4B26,#663333,126,75,38,25,54,32,25,70,49,0,60,80,60,Lehmbraun,Clay brown,Brun argile,Pardo arcilla,Marrone fango,Leembruin +8004,classic,#8D4931,#993333,141,73,49,16,48,37,16,65,55,45,80,100,10,Kupferbraun,Copper brown,Brun cuivré,Pardo cobre,Marrone rame,Koperbruin +8007,classic,#70452A,#663333,112,69,42,23,45,30,23,63,44,40,70,100,50,Rehbraun,Fawn brown,Brun fauve,Pardo corzo,Marrone capriolo,Reebruin +8008,classic,#724A25,#663333,114,74,37,29,51,30,29,68,45,15,50,90,60,Olivbraun,Olive brown,Brun olive,Pardo oliva,Marrone oliva,Olijfbruin +8011,classic,#5A3826,#663333,90,56,38,21,41,25,21,58,35,30,70,90,70,Nussbraun,Nut brown,Brun noisette,Pardo nuez,Marrone noce,Notenbruin +8012,classic,#66332B,#663333,102,51,43,8,41,28,8,58,40,40,90,100,50,Rotbraun,Red brown,Brun rouge,Pardo rojo,Marrone rossiccio,Roodbruin +8014,classic,#4A3526,#333333,74,53,38,25,32,22,25,49,29,30,60,70,80,Sepiabraun,Sepia brown,Brun sépia,Sepia,Marrone seppia,Sepiabruin +8015,classic,#5E2F26,#663333,94,47,38,10,42,26,10,60,37,50,100,100,50,Kastanienbraun,Chestnut brown,Marron,Castaño,Marrone castagna,Kastanjebruin +8016,classic,#4C2B20,#333333,76,43,32,15,41,21,15,58,30,40,80,70,70,Mahagonibraun,Mahogany brown,Brun acajou,Caoba,Marrone mogano,Mahoniebruin +8017,classic,#442F29,#333333,68,47,41,13,25,21,13,40,27,30,70,60,80,Schokoladenbraun,Chocolate brown,Brun chocolat,Chocolate,Marrone cioccolata,Chocoladebruin +8019,classic,#3D3635,#333333,61,54,53,7,7,22,7,13,24,50,50,40,80,Graubraun,Grey brown,Brun gris,Pardo grisáceo,Marrone grigiastro,Grijsbruin +8022,classic,#1A1718,#330000,26,23,24,340,6,10,340,12,10,100,50,30,100,Schwarzbraun,Black brown,Brun noir,Pardo negruzco,Marrone nerastro,Zwartbruin +8023,classic,#A45729,#996633,164,87,41,22,60,40,22,75,64,25,75,100,10,Orangebraun,Orange brown,Brun orangé,Pardo anaranjado,Marrone arancio,Oranjebruin +8024,classic,#795038,#666633,121,80,56,22,37,35,22,54,47,25,60,70,50,Beigebraun,Beige brown,Brun beige,Pardo beige,Marrone beige,Beigebruin +8025,classic,#755847,#666633,117,88,71,22,24,37,22,39,46,40,60,60,45,Blassbraun,Pale brown,Brun pâle,Pardo pálido,Marrone pallido,Bleekbruin +8028,classic,#513A2A,#663333,81,58,42,25,32,24,25,48,32,60,70,90,60,Terrabraun,Terra brown,Brun terre,Marrón tierra,Marrone terra,Terrabruin +8029,classic,#7F4031,#663333,127,64,49,12,44,35,12,61,50,30,80,80,45,Perlkupfer,Pearl copper,Cuivre nacré,Cobre perlado,Rame perlato,Parelmoer koper +9001,classic,#E9E0D2,#ffcccc,233,224,210,37,34,87,37,10,91,5,5,15,0,Cremeweiß,Cream,Blanc crème,Blanco crema,Bianco crema,Crèmewit +9002,classic,#D7D5CB,#cccccc,215,213,203,50,13,82,50,6,84,0,0,10,10,Grauweiß,Grey white,Blanc gris,Blanco grisáceo,Bianco grigiastro,Grijswit +9003,classic,#ECECE7,#ffffff,236,236,231,60,12,92,60,2,93,0,0,0,0,Signalweiß,Signal white,Blanc de sécurité,Blanco señales,Bianco segnale,Signaalwit +9004,classic,#2B2B2C,#333333,43,43,44,240,1,17,240,2,17,35,50,40,90,Signalschwarz,Signal black,Noir de sécurité,Negro señales,Nero segnale,Signaalzwart +9005,classic,#0E0E10,#000000,14,14,16,240,7,6,240,13,6,100,40,50,90,Tiefschwarz,Jet black,Noir foncé,Negro intenso,Nero intenso,Gitzwart +9006,classic,#A1A1A0,#999999,161,161,160,60,1,63,60,1,63,35,30,30,10,Weißaluminium,White aluminium,Aluminium blanc,Aluminio blanco,Alluminio brillante,Blank aluminiumkleurig +9007,classic,#878581,#999999,135,133,129,40,2,52,40,4,53,35,30,30,15,Graualuminium,Grey aluminium,Aluminium gris,Aluminio gris,Alluminio grigiastro,Grijs aluminiumkleurig +9010,classic,#F1ECE1,#ffffcc,241,236,225,41,36,91,41,7,95,0,0,5,0,Reinweiß,Pure white,Blanc pur,Blanco puro,Bianco puro,Zuiver wit +9011,classic,#27292B,#333333,39,41,43,210,5,16,210,9,17,60,45,30,90,Graphitschwarz,Graphite black,Noir graphite,Negro grafito,Nero grafite,Grafietzwart +9016,classic,#F1F0EA,#ffffff,241,240,234,51,20,93,51,3,95,0,0,5,0,Verkehrsweiß,Traffic white,Blanc signalisation,Blanco tráfico,Bianco traffico,Verkeerswit +9017,classic,#2A292A,#333333,42,41,42,300,1,16,300,2,16,50,30,50,100,Verkehrsschwarz,Traffic black,Noir signalisation,Negro tráfico,Nero traffico,Verkeerszwart +9018,classic,#C8CBC4,#cccccc,200,203,196,86,6,78,86,3,80,10,5,15,10,Papyrusweiß,Papyrus white,Blanc papyrus,Blanco papiro,Bianco papiro,Papyruswit +9022,classic,#858583,#999999,133,133,131,60,1,52,60,2,52,35,30,30,20,Perlhellgrau,Pearl light grey,Gris clair nacré,Gris claro perlado,Grigio chiaro perlato,Parelmoer lichtgrijs +9023,classic,#797B7A,#666666,121,123,122,150,1,48,150,2,48,15,10,10,50,Perldunkelgrau,Pearl dark grey,Gris fonçé nacré,Gris oscuro perlado,Grigio scuro perlato,Parelmoer donkergrijs diff --git a/tools/data/ral_palettes/ral-json/README.md b/tools/data/ral_palettes/ral-json/README.md new file mode 100644 index 0000000..cacf68b --- /dev/null +++ b/tools/data/ral_palettes/ral-json/README.md @@ -0,0 +1,11 @@ +# Thanks + + + +## Used Tools + +1. + +## Actions + +See `ral-colors` folder. diff --git a/tools/data/ral_palettes/ral-json/outline.json b/tools/data/ral_palettes/ral-json/outline.json new file mode 100644 index 0000000..fd98f94 --- /dev/null +++ b/tools/data/ral_palettes/ral-json/outline.json @@ -0,0 +1,103 @@ +{ + "dropRootKeys": true, + "special-values-mapping": { + "null": "null", + "empty": "", + "true": "true", + "false": "false" + }, + "map": [ + [ + "code", + "code" + ], + [ + "scope", + "scope" + ], + [ + "color_hex", + "color.hex" + ], + [ + "color_websafe", + "color.websafe" + ], + [ + "color_rgb_r", + "color.rgb.r" + ], + [ + "color_rgb_g", + "color.rgb.g" + ], + [ + "color_rgb_b", + "color.rgb.b" + ], + [ + "color_hsl_h", + "color.hsl.h" + ], + [ + "color_hsl_s", + "color.hsl.s" + ], + [ + "color_hsl_l", + "color.hsl.l" + ], + [ + "color_hsb_h", + "color.hsb.h" + ], + [ + "color_hsb_s", + "color.hsb.s" + ], + [ + "color_hsb_b", + "color.hsb.b" + ], + [ + "color_cmyk_c", + "color.cmyk.c" + ], + [ + "color_cmyk_m", + "color.cmyk.m" + ], + [ + "color_cmyk_y", + "color.cmyk.y" + ], + [ + "color_cmyk_k", + "color.cmyk.k" + ], + [ + "names_de", + "names.de" + ], + [ + "names_en", + "names.en" + ], + [ + "names_fr", + "names.fr" + ], + [ + "names_es", + "names.es" + ], + [ + "names_it", + "names.it" + ], + [ + "names_nl", + "names.nl" + ] + ] +} \ No newline at end of file diff --git a/tools/data/ral_palettes/ral-json/ral_pretty.json b/tools/data/ral_palettes/ral-json/ral_pretty.json new file mode 100644 index 0000000..33720b5 --- /dev/null +++ b/tools/data/ral_palettes/ral-json/ral_pretty.json @@ -0,0 +1,7883 @@ +{ + "1000": { + "code": "1000", + "scope": "classic", + "color": { + "hex": "#CDBA88", + "websafe": "#cccc99", + "rgb": { + "r": 205, + "g": 186, + "b": 136 + }, + "hsl": { + "h": 43, + "s": 41, + "l": 67 + }, + "hsb": { + "h": 43, + "s": 34, + "b": 80 + }, + "cmyk": { + "c": "5", + "m": "10", + "y": "40", + "k": "10" + } + }, + "names": { + "de": "Grünbeige", + "en": "Green beige", + "fr": "Beige vert", + "es": "Beige verdoso", + "it": "Beige verdastro", + "nl": "Groenbeige" + } + }, + "1001": { + "code": "1001", + "scope": "classic", + "color": { + "hex": "#D0B084", + "websafe": "#cc9999", + "rgb": { + "r": 208, + "g": 176, + "b": 132 + }, + "hsl": { + "h": 35, + "s": 45, + "l": 67 + }, + "hsb": { + "h": 35, + "s": 37, + "b": 82 + }, + "cmyk": { + "c": "5", + "m": "20", + "y": "40", + "k": "10" + } + }, + "names": { + "de": "Beige", + "en": "Beige", + "fr": "Beige", + "es": "Beige", + "it": "Beige", + "nl": "Beige" + } + }, + "1002": { + "code": "1002", + "scope": "classic", + "color": { + "hex": "#D2AA6D", + "websafe": "#cc9966", + "rgb": { + "r": 210, + "g": 170, + "b": 109 + }, + "hsl": { + "h": 36, + "s": 53, + "l": 63 + }, + "hsb": { + "h": 36, + "s": 48, + "b": 82 + }, + "cmyk": { + "c": "5", + "m": "20", + "y": "50", + "k": "10" + } + }, + "names": { + "de": "Sandgelb", + "en": "Sand yellow", + "fr": "Jaune sable", + "es": "Amarillo arena", + "it": "Giallo sabbia", + "nl": "Zandgeel" + } + }, + "1003": { + "code": "1003", + "scope": "classic", + "color": { + "hex": "#F9A800", + "websafe": "#ff9900", + "rgb": { + "r": 249, + "g": 168, + "b": 0 + }, + "hsl": { + "h": 40, + "s": 100, + "l": 49 + }, + "hsb": { + "h": 40, + "s": 100, + "b": 98 + }, + "cmyk": { + "c": "0", + "m": "35", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Signalgelb", + "en": "Signal yellow", + "fr": "Jaune de sécurité", + "es": "Amarillo señales", + "it": "Giallo segnale", + "nl": "Signaalgeel" + } + }, + "1004": { + "code": "1004", + "scope": "classic", + "color": { + "hex": "#E49E00", + "websafe": "#cc9900", + "rgb": { + "r": 228, + "g": 158, + "b": 0 + }, + "hsl": { + "h": 42, + "s": 100, + "l": 45 + }, + "hsb": { + "h": 42, + "s": 100, + "b": 89 + }, + "cmyk": { + "c": "10", + "m": "35", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Goldgelb", + "en": "Golden yellow", + "fr": "Jaune or", + "es": "Amarillo oro", + "it": "Giallo oro", + "nl": "Goudgeel" + } + }, + "1005": { + "code": "1005", + "scope": "classic", + "color": { + "hex": "#CB8E00", + "websafe": "#cc9900", + "rgb": { + "r": 203, + "g": 142, + "b": 0 + }, + "hsl": { + "h": 42, + "s": 100, + "l": 40 + }, + "hsb": { + "h": 42, + "s": 100, + "b": 80 + }, + "cmyk": { + "c": "0", + "m": "30", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Honiggelb", + "en": "Honey yellow", + "fr": "Jaune miel", + "es": "Amarillo miel", + "it": "Giallo miele", + "nl": "Honinggeel" + } + }, + "1006": { + "code": "1006", + "scope": "classic", + "color": { + "hex": "#E29000", + "websafe": "#cc9900", + "rgb": { + "r": 226, + "g": 144, + "b": 0 + }, + "hsl": { + "h": 38, + "s": 100, + "l": 44 + }, + "hsb": { + "h": 38, + "s": 100, + "b": 89 + }, + "cmyk": { + "c": "0", + "m": "40", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Maisgelb", + "en": "Maize yellow", + "fr": "Jaune maïs", + "es": "Amarillo maiz", + "it": "Giallo polenta", + "nl": "Maisgeel" + } + }, + "1007": { + "code": "1007", + "scope": "classic", + "color": { + "hex": "#E88C00", + "websafe": "#ff9900", + "rgb": { + "r": 232, + "g": 140, + "b": 0 + }, + "hsl": { + "h": 36, + "s": 100, + "l": 45 + }, + "hsb": { + "h": 36, + "s": 100, + "b": 91 + }, + "cmyk": { + "c": "0", + "m": "50", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Narzissengelb", + "en": "Daffodil yellow", + "fr": "Jaune narcisse", + "es": "Amarillo narciso", + "it": "Giallo narciso", + "nl": "Narcissengeel" + } + }, + "1011": { + "code": "1011", + "scope": "classic", + "color": { + "hex": "#AF804F", + "websafe": "#999966", + "rgb": { + "r": 175, + "g": 128, + "b": 79 + }, + "hsl": { + "h": 31, + "s": 38, + "l": 50 + }, + "hsb": { + "h": 31, + "s": 55, + "b": 69 + }, + "cmyk": { + "c": "20", + "m": "40", + "y": "60", + "k": "0" + } + }, + "names": { + "de": "Braunbeige", + "en": "Brown beige", + "fr": "Beige brun", + "es": "Beige pardo", + "it": "Beige marrone", + "nl": "Bruinbeige" + } + }, + "1012": { + "code": "1012", + "scope": "classic", + "color": { + "hex": "#DDAF27", + "websafe": "#cc9933", + "rgb": { + "r": 221, + "g": 175, + "b": 39 + }, + "hsl": { + "h": 45, + "s": 73, + "l": 51 + }, + "hsb": { + "h": 45, + "s": 82, + "b": 87 + }, + "cmyk": { + "c": "5", + "m": "20", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Zitronengelb", + "en": "Lemon yellow", + "fr": "Jaune citron", + "es": "Amarillo limón", + "it": "Giallo limone", + "nl": "Citroengeel" + } + }, + "1013": { + "code": "1013", + "scope": "classic", + "color": { + "hex": "#E3D9C6", + "websafe": "#cccccc", + "rgb": { + "r": 227, + "g": 217, + "b": 198 + }, + "hsl": { + "h": 39, + "s": 34, + "l": 83 + }, + "hsb": { + "h": 39, + "s": 13, + "b": 89 + }, + "cmyk": { + "c": "5", + "m": "10", + "y": "20", + "k": "0" + } + }, + "names": { + "de": "Perlweiß", + "en": "Oyster white", + "fr": "Blanc perlé", + "es": "Blanco perla", + "it": "Bianco perla", + "nl": "Parelwit" + } + }, + "1014": { + "code": "1014", + "scope": "classic", + "color": { + "hex": "#DDC49A", + "websafe": "#cccc99", + "rgb": { + "r": 221, + "g": 196, + "b": 154 + }, + "hsl": { + "h": 38, + "s": 50, + "l": 74 + }, + "hsb": { + "h": 38, + "s": 30, + "b": 87 + }, + "cmyk": { + "c": "5", + "m": "20", + "y": "50", + "k": "0" + } + }, + "names": { + "de": "Elfenbein", + "en": "Ivory", + "fr": "Ivoire", + "es": "Marfil", + "it": "Avorio", + "nl": "Ivoorkleurig" + } + }, + "1015": { + "code": "1015", + "scope": "classic", + "color": { + "hex": "#E6D2B5", + "websafe": "#ffcccc", + "rgb": { + "r": 230, + "g": 210, + "b": 181 + }, + "hsl": { + "h": 36, + "s": 49, + "l": 81 + }, + "hsb": { + "h": 36, + "s": 21, + "b": 90 + }, + "cmyk": { + "c": "5", + "m": "10", + "y": "30", + "k": "0" + } + }, + "names": { + "de": "Hellelfenbein", + "en": "Light ivory", + "fr": "Ivoire clair", + "es": "Marfil claro", + "it": "Avorio chiaro", + "nl": "Licht ivoorkleurig" + } + }, + "1016": { + "code": "1016", + "scope": "classic", + "color": { + "hex": "#F1DD38", + "websafe": "#ffcc33", + "rgb": { + "r": 241, + "g": 221, + "b": 56 + }, + "hsl": { + "h": 54, + "s": 87, + "l": 58 + }, + "hsb": { + "h": 54, + "s": 77, + "b": 95 + }, + "cmyk": { + "c": "5", + "m": "0", + "y": "90", + "k": "0" + } + }, + "names": { + "de": "Schwefelgelb", + "en": "Sulfur yellow", + "fr": "Jaune soufre", + "es": "Amarillo azufre", + "it": "Giallo zolfo", + "nl": "Zwavelgeel" + } + }, + "1017": { + "code": "1017", + "scope": "classic", + "color": { + "hex": "#F6A950", + "websafe": "#ff9966", + "rgb": { + "r": 246, + "g": 169, + "b": 80 + }, + "hsl": { + "h": 32, + "s": 90, + "l": 64 + }, + "hsb": { + "h": 32, + "s": 67, + "b": 96 + }, + "cmyk": { + "c": "0", + "m": "40", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Safrangelb", + "en": "Saffron yellow", + "fr": "Jaune safran", + "es": "Amarillo azafrán", + "it": "Giallo zafferano", + "nl": "Saffraangeel" + } + }, + "1018": { + "code": "1018", + "scope": "classic", + "color": { + "hex": "#FACA30", + "websafe": "#ffcc33", + "rgb": { + "r": 250, + "g": 202, + "b": 48 + }, + "hsl": { + "h": 46, + "s": 95, + "l": 58 + }, + "hsb": { + "h": 46, + "s": 81, + "b": 98 + }, + "cmyk": { + "c": "0", + "m": "15", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Zinkgelb", + "en": "Zinc yellow", + "fr": "Jaune zinc", + "es": "Amarillo de zinc", + "it": "Giallo zinco", + "nl": "Zinkgeel" + } + }, + "1019": { + "code": "1019", + "scope": "classic", + "color": { + "hex": "#A48F7A", + "websafe": "#999966", + "rgb": { + "r": 164, + "g": 143, + "b": 122 + }, + "hsl": { + "h": 30, + "s": 19, + "l": 56 + }, + "hsb": { + "h": 30, + "s": 26, + "b": 64 + }, + "cmyk": { + "c": "0", + "m": "15", + "y": "40", + "k": "45" + } + }, + "names": { + "de": "Graubeige", + "en": "Grey beige", + "fr": "Beige gris", + "es": "Beige agrisado", + "it": "Beige grigiastro", + "nl": "Grijsbeige" + } + }, + "1020": { + "code": "1020", + "scope": "classic", + "color": { + "hex": "#A08F65", + "websafe": "#999966", + "rgb": { + "r": 160, + "g": 143, + "b": 101 + }, + "hsl": { + "h": 43, + "s": 24, + "l": 51 + }, + "hsb": { + "h": 43, + "s": 37, + "b": 63 + }, + "cmyk": { + "c": "30", + "m": "25", + "y": "60", + "k": "20" + } + }, + "names": { + "de": "Olivgelb", + "en": "Olive yellow", + "fr": "Jaune olive", + "es": "Amarillo oliva", + "it": "Giallo olivastro", + "nl": "Olijfgeel" + } + }, + "1021": { + "code": "1021", + "scope": "classic", + "color": { + "hex": "#F6B600", + "websafe": "#ffcc00", + "rgb": { + "r": 246, + "g": 182, + "b": 0 + }, + "hsl": { + "h": 44, + "s": 100, + "l": 48 + }, + "hsb": { + "h": 44, + "s": 100, + "b": 96 + }, + "cmyk": { + "c": "0", + "m": "5", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Rapsgelb", + "en": "Colza yellow", + "fr": "Jaune colza", + "es": "Amarillo colza", + "it": "Giallo navone", + "nl": "Koolzaadgeel" + } + }, + "1023": { + "code": "1023", + "scope": "classic", + "color": { + "hex": "#F7B500", + "websafe": "#ffcc00", + "rgb": { + "r": 247, + "g": 181, + "b": 0 + }, + "hsl": { + "h": 44, + "s": 100, + "l": 48 + }, + "hsb": { + "h": 44, + "s": 100, + "b": 97 + }, + "cmyk": { + "c": "0", + "m": "25", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Verkehrsgelb", + "en": "Traffic yellow", + "fr": "Jaune signalisation", + "es": "Amarillo tráfico", + "it": "Giallo traffico", + "nl": "Verkeersgeel" + } + }, + "1024": { + "code": "1024", + "scope": "classic", + "color": { + "hex": "#BA8F4C", + "websafe": "#cc9933", + "rgb": { + "r": 186, + "g": 143, + "b": 76 + }, + "hsl": { + "h": 37, + "s": 44, + "l": 51 + }, + "hsb": { + "h": 37, + "s": 59, + "b": 73 + }, + "cmyk": { + "c": "5", + "m": "30", + "y": "80", + "k": "30" + } + }, + "names": { + "de": "Ockergelb", + "en": "Ochre yellow", + "fr": "Jaune ocre", + "es": "Amarillo ocre", + "it": "Giallo ocra", + "nl": "Okergeel" + } + }, + "1026": { + "code": "1026", + "scope": "classic", + "color": { + "hex": "#FFFF00", + "websafe": "#ffff00", + "rgb": { + "r": 255, + "g": 255, + "b": 0 + }, + "hsl": { + "h": 60, + "s": 100, + "l": 50 + }, + "hsb": { + "h": 60, + "s": 100, + "b": 100 + }, + "cmyk": { + "c": "5", + "m": "0", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Leuchtgelb", + "en": "Luminous yellow", + "fr": "Jaune brillant", + "es": "Amarillo brillante", + "it": "Giallo brillante", + "nl": "Briljantgeel" + } + }, + "1027": { + "code": "1027", + "scope": "classic", + "color": { + "hex": "#A77F0E", + "websafe": "#996600", + "rgb": { + "r": 167, + "g": 127, + "b": 14 + }, + "hsl": { + "h": 44, + "s": 85, + "l": 35 + }, + "hsb": { + "h": 44, + "s": 92, + "b": 65 + }, + "cmyk": { + "c": "5", + "m": "10", + "y": "100", + "k": "40" + } + }, + "names": { + "de": "Currygelb", + "en": "Curry", + "fr": "Jaune curry", + "es": "Amarillo curry", + "it": "Giallo curry", + "nl": "Kerriegeel" + } + }, + "1028": { + "code": "1028", + "scope": "classic", + "color": { + "hex": "#FF9B00", + "websafe": "#ff9900", + "rgb": { + "r": 255, + "g": 155, + "b": 0 + }, + "hsl": { + "h": 36, + "s": 100, + "l": 50 + }, + "hsb": { + "h": 36, + "s": 100, + "b": 100 + }, + "cmyk": { + "c": "0", + "m": "40", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Melonengelb", + "en": "Melon yellow", + "fr": "Jaune melon", + "es": "Amarillo melón", + "it": "Giallo melone", + "nl": "Meloengeel" + } + }, + "1032": { + "code": "1032", + "scope": "classic", + "color": { + "hex": "#E2A300", + "websafe": "#cc9900", + "rgb": { + "r": 226, + "g": 163, + "b": 0 + }, + "hsl": { + "h": 43, + "s": 100, + "l": 44 + }, + "hsb": { + "h": 43, + "s": 100, + "b": 89 + }, + "cmyk": { + "c": "15", + "m": "40", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Ginstergelb", + "en": "Broom yellow", + "fr": "Jaune genêt", + "es": "Amarillo retama", + "it": "Giallo scopa", + "nl": "Bremgeel" + } + }, + "1033": { + "code": "1033", + "scope": "classic", + "color": { + "hex": "#F99A1C", + "websafe": "#ff9933", + "rgb": { + "r": 249, + "g": 154, + "b": 28 + }, + "hsl": { + "h": 34, + "s": 95, + "l": 54 + }, + "hsb": { + "h": 34, + "s": 89, + "b": 98 + }, + "cmyk": { + "c": "0", + "m": "50", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Dahliengelb", + "en": "Dahlia yellow", + "fr": "Jaune dahlia", + "es": "Amarillo dalia", + "it": "Giallo dahlien", + "nl": "Dahliageel" + } + }, + "1034": { + "code": "1034", + "scope": "classic", + "color": { + "hex": "#EB9C52", + "websafe": "#ff9966", + "rgb": { + "r": 235, + "g": 156, + "b": 82 + }, + "hsl": { + "h": 29, + "s": 79, + "l": 62 + }, + "hsb": { + "h": 29, + "s": 65, + "b": 92 + }, + "cmyk": { + "c": "0", + "m": "45", + "y": "70", + "k": "0" + } + }, + "names": { + "de": "Pastellgelb", + "en": "Pastel yellow", + "fr": "Jaune pastel", + "es": "Amarillo pastel", + "it": "Giallo pastello", + "nl": "Pastelgeel" + } + }, + "1035": { + "code": "1035", + "scope": "classic", + "color": { + "hex": "#908370", + "websafe": "#999966", + "rgb": { + "r": 144, + "g": 131, + "b": 112 + }, + "hsl": { + "h": 36, + "s": 13, + "l": 50 + }, + "hsb": { + "h": 36, + "s": 22, + "b": 56 + }, + "cmyk": { + "c": "10", + "m": "25", + "y": "40", + "k": "40" + } + }, + "names": { + "de": "Perlbeige", + "en": "Pearl beige", + "fr": "Beige nacré", + "es": "Beige perlado", + "it": "Beige perlato", + "nl": "Parelmoer grijs" + } + }, + "1036": { + "code": "1036", + "scope": "classic", + "color": { + "hex": "#80643F", + "websafe": "#996633", + "rgb": { + "r": 128, + "g": 100, + "b": 63 + }, + "hsl": { + "h": 34, + "s": 34, + "l": 37 + }, + "hsb": { + "h": 34, + "s": 51, + "b": 50 + }, + "cmyk": { + "c": "30", + "m": "30", + "y": "50", + "k": "70" + } + }, + "names": { + "de": "Perlgold", + "en": "Pearl gold", + "fr": "Or nacré", + "es": "Oro perlado", + "it": "Oro perlato", + "nl": "Parelmoer goud" + } + }, + "1037": { + "code": "1037", + "scope": "classic", + "color": { + "hex": "#F09200", + "websafe": "#ff9900", + "rgb": { + "r": 240, + "g": 146, + "b": 0 + }, + "hsl": { + "h": 37, + "s": 100, + "l": 47 + }, + "hsb": { + "h": 37, + "s": 100, + "b": 94 + }, + "cmyk": { + "c": "0", + "m": "45", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Sonnengelb", + "en": "Sun yellow", + "fr": "Jaune soleil", + "es": "Amarillo sol", + "it": "Giallo sole", + "nl": "Zonnegeel" + } + }, + "2000": { + "code": "2000", + "scope": "classic", + "color": { + "hex": "#DA6E00", + "websafe": "#cc6600", + "rgb": { + "r": 218, + "g": 110, + "b": 0 + }, + "hsl": { + "h": 30, + "s": 100, + "l": 43 + }, + "hsb": { + "h": 30, + "s": 100, + "b": 85 + }, + "cmyk": { + "c": "0", + "m": "65", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Gelborange", + "en": "Yellow orange", + "fr": "Orangé jaune", + "es": "Amarillo naranja", + "it": "Arancio giallastro", + "nl": "Geeloranje" + } + }, + "2001": { + "code": "2001", + "scope": "classic", + "color": { + "hex": "#BA481B", + "websafe": "#cc3333", + "rgb": { + "r": 186, + "g": 72, + "b": 27 + }, + "hsl": { + "h": 17, + "s": 75, + "l": 42 + }, + "hsb": { + "h": 17, + "s": 85, + "b": 73 + }, + "cmyk": { + "c": "10", + "m": "85", + "y": "100", + "k": "10" + } + }, + "names": { + "de": "Rotorange", + "en": "Red orange", + "fr": "Orangé rouge", + "es": "Rojo anaranjado", + "it": "Arancio rossastro", + "nl": "Roodoranje" + } + }, + "2002": { + "code": "2002", + "scope": "classic", + "color": { + "hex": "#BF3922", + "websafe": "#cc3333", + "rgb": { + "r": 191, + "g": 57, + "b": 34 + }, + "hsl": { + "h": 9, + "s": 70, + "l": 44 + }, + "hsb": { + "h": 9, + "s": 82, + "b": 75 + }, + "cmyk": { + "c": "0", + "m": "90", + "y": "100", + "k": "10" + } + }, + "names": { + "de": "Blutorange", + "en": "Vermilion", + "fr": "Orangé sang", + "es": "Naranja sanguineo", + "it": "Arancio sanguigno", + "nl": "Vermiljoen" + } + }, + "2003": { + "code": "2003", + "scope": "classic", + "color": { + "hex": "#F67828", + "websafe": "#ff6633", + "rgb": { + "r": 246, + "g": 120, + "b": 40 + }, + "hsl": { + "h": 23, + "s": 92, + "l": 56 + }, + "hsb": { + "h": 23, + "s": 84, + "b": 96 + }, + "cmyk": { + "c": "0", + "m": "70", + "y": "90", + "k": "0" + } + }, + "names": { + "de": "Pastellorange", + "en": "Pastel orange", + "fr": "Orangé pastel", + "es": "Naranja pálido", + "it": "Arancio pastello", + "nl": "Pasteloranje" + } + }, + "2004": { + "code": "2004", + "scope": "classic", + "color": { + "hex": "#E25303", + "websafe": "#cc6600", + "rgb": { + "r": 226, + "g": 83, + "b": 3 + }, + "hsl": { + "h": 22, + "s": 97, + "l": 45 + }, + "hsb": { + "h": 22, + "s": 99, + "b": 89 + }, + "cmyk": { + "c": "0", + "m": "75", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Reinorange", + "en": "Pure orange", + "fr": "Orangé pur", + "es": "Naranja puro", + "it": "Arancio puro", + "nl": "Zuiver oranje" + } + }, + "2005": { + "code": "2005", + "scope": "classic", + "color": { + "hex": "#FF4D06", + "websafe": "#ff6600", + "rgb": { + "r": 255, + "g": 77, + "b": 6 + }, + "hsl": { + "h": 17, + "s": 100, + "l": 51 + }, + "hsb": { + "h": 17, + "s": 98, + "b": 100 + }, + "cmyk": { + "c": "0", + "m": "70", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Leuchtorange", + "en": "Luminous orange", + "fr": "Orangé brillant", + "es": "Naranja brillante", + "it": "Arancio brillante", + "nl": "Briljantoranje" + } + }, + "2007": { + "code": "2007", + "scope": "classic", + "color": { + "hex": "#FFB200", + "websafe": "#ff9900", + "rgb": { + "r": 255, + "g": 178, + "b": 0 + }, + "hsl": { + "h": 42, + "s": 100, + "l": 50 + }, + "hsb": { + "h": 42, + "s": 100, + "b": 100 + }, + "cmyk": { + "c": "0", + "m": "45", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Leuchthell orange", + "en": "Luminous bright orange", + "fr": "Orangé clair brillant", + "es": "Naranja claro brillante", + "it": "Arancio chiaro brillante", + "nl": "Briljant lichtoranje" + } + }, + "2008": { + "code": "2008", + "scope": "classic", + "color": { + "hex": "#ED6B21", + "websafe": "#ff6633", + "rgb": { + "r": 237, + "g": 107, + "b": 33 + }, + "hsl": { + "h": 22, + "s": 85, + "l": 53 + }, + "hsb": { + "h": 22, + "s": 86, + "b": 93 + }, + "cmyk": { + "c": "0", + "m": "65", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Hellrotorange", + "en": "Bright red orange", + "fr": "Orangé rouge clair", + "es": "Rojo claro anaranjado", + "it": "Rosso arancio chiaro", + "nl": "Licht roodoranje" + } + }, + "2009": { + "code": "2009", + "scope": "classic", + "color": { + "hex": "#DE5307", + "websafe": "#cc6600", + "rgb": { + "r": 222, + "g": 83, + "b": 7 + }, + "hsl": { + "h": 21, + "s": 94, + "l": 45 + }, + "hsb": { + "h": 21, + "s": 97, + "b": 87 + }, + "cmyk": { + "c": "0", + "m": "80", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Verkehrsorange", + "en": "Traffic orange", + "fr": "Orangé signalisation", + "es": "Naranja tráfico", + "it": "Arancio traffico", + "nl": "Verkeersoranje" + } + }, + "2010": { + "code": "2010", + "scope": "classic", + "color": { + "hex": "#D05D28", + "websafe": "#cc6633", + "rgb": { + "r": 208, + "g": 93, + "b": 40 + }, + "hsl": { + "h": 19, + "s": 68, + "l": 49 + }, + "hsb": { + "h": 19, + "s": 81, + "b": 82 + }, + "cmyk": { + "c": "0", + "m": "80", + "y": "100", + "k": "10" + } + }, + "names": { + "de": "Signalorange", + "en": "Signal orange", + "fr": "Orangé de sécurité", + "es": "Naranja señales", + "it": "Arancio segnale", + "nl": "Signaaloranje" + } + }, + "2011": { + "code": "2011", + "scope": "classic", + "color": { + "hex": "#E26E0E", + "websafe": "#cc6600", + "rgb": { + "r": 226, + "g": 110, + "b": 14 + }, + "hsl": { + "h": 27, + "s": 88, + "l": 47 + }, + "hsb": { + "h": 27, + "s": 94, + "b": 89 + }, + "cmyk": { + "c": "0", + "m": "65", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Tieforange", + "en": "Deep orange", + "fr": "Orangé foncé", + "es": "Naranja intenso", + "it": "Arancio profondo", + "nl": "Dieporanje" + } + }, + "2012": { + "code": "2012", + "scope": "classic", + "color": { + "hex": "#D5654D", + "websafe": "#cc6666", + "rgb": { + "r": 213, + "g": 101, + "b": 77 + }, + "hsl": { + "h": 11, + "s": 62, + "l": 57 + }, + "hsb": { + "h": 11, + "s": 64, + "b": 84 + }, + "cmyk": { + "c": "10", + "m": "80", + "y": "70", + "k": "0" + } + }, + "names": { + "de": "Lachsorange", + "en": "Salmon orange", + "fr": "Orangé saumon", + "es": "Naranja salmón", + "it": "Arancio salmone", + "nl": "Zalmoranje" + } + }, + "2013": { + "code": "2013", + "scope": "classic", + "color": { + "hex": "#923E25", + "websafe": "#993333", + "rgb": { + "r": 146, + "g": 62, + "b": 37 + }, + "hsl": { + "h": 14, + "s": 60, + "l": 36 + }, + "hsb": { + "h": 14, + "s": 75, + "b": 57 + }, + "cmyk": { + "c": "20", + "m": "90", + "y": "100", + "k": "30" + } + }, + "names": { + "de": "Perlorange", + "en": "Pearl orange", + "fr": "Orangé nacré", + "es": "Naranja perlado", + "it": "Arancio perlato", + "nl": "Parelmoer oranje" + } + }, + "3000": { + "code": "3000", + "scope": "classic", + "color": { + "hex": "#A72920", + "websafe": "#993333", + "rgb": { + "r": 167, + "g": 41, + "b": 32 + }, + "hsl": { + "h": 4, + "s": 68, + "l": 39 + }, + "hsb": { + "h": 4, + "s": 81, + "b": 65 + }, + "cmyk": { + "c": "10", + "m": "100", + "y": "100", + "k": "20" + } + }, + "names": { + "de": "Feuerrot", + "en": "Flame red", + "fr": "Rouge feu", + "es": "Rojo vivo", + "it": "Rosso fuoco", + "nl": "Vuurrood" + } + }, + "3001": { + "code": "3001", + "scope": "classic", + "color": { + "hex": "#9B2423", + "websafe": "#993333", + "rgb": { + "r": 155, + "g": 36, + "b": 35 + }, + "hsl": { + "h": 0, + "s": 63, + "l": 37 + }, + "hsb": { + "h": 0, + "s": 77, + "b": 61 + }, + "cmyk": { + "c": "20", + "m": "100", + "y": "100", + "k": "10" + } + }, + "names": { + "de": "Signalrot", + "en": "Signal red", + "fr": "Rouge de sécurité", + "es": "Rojo señales", + "it": "Rosso segnale", + "nl": "Signaalrood" + } + }, + "3002": { + "code": "3002", + "scope": "classic", + "color": { + "hex": "#9B2321", + "websafe": "#993333", + "rgb": { + "r": 155, + "g": 35, + "b": 33 + }, + "hsl": { + "h": 1, + "s": 65, + "l": 37 + }, + "hsb": { + "h": 1, + "s": 79, + "b": 61 + }, + "cmyk": { + "c": "10", + "m": "100", + "y": "100", + "k": "25" + } + }, + "names": { + "de": "Karminrot", + "en": "Carmine red", + "fr": "Rouge carmin", + "es": "Rojo carmin", + "it": "Rosso carminio", + "nl": "Karmijnrood" + } + }, + "3003": { + "code": "3003", + "scope": "classic", + "color": { + "hex": "#861A22", + "websafe": "#993333", + "rgb": { + "r": 134, + "g": 26, + "b": 34 + }, + "hsl": { + "h": 356, + "s": 68, + "l": 31 + }, + "hsb": { + "h": 356, + "s": 81, + "b": 53 + }, + "cmyk": { + "c": "30", + "m": "100", + "y": "80", + "k": "20" + } + }, + "names": { + "de": "Rubinrot", + "en": "Ruby red", + "fr": "Rouge rubis", + "es": "Rojo rubí", + "it": "Rosso rubino", + "nl": "Robijnrood" + } + }, + "3004": { + "code": "3004", + "scope": "classic", + "color": { + "hex": "#6B1C23", + "websafe": "#663333", + "rgb": { + "r": 107, + "g": 28, + "b": 35 + }, + "hsl": { + "h": 355, + "s": 59, + "l": 26 + }, + "hsb": { + "h": 355, + "s": 74, + "b": 42 + }, + "cmyk": { + "c": "30", + "m": "100", + "y": "70", + "k": "40" + } + }, + "names": { + "de": "Purpurrot", + "en": "Purple red", + "fr": "Rouge pourpre", + "es": "Rojo púrpura", + "it": "Rosso porpora", + "nl": "Purperrood" + } + }, + "3005": { + "code": "3005", + "scope": "classic", + "color": { + "hex": "#59191F", + "websafe": "#660033", + "rgb": { + "r": 89, + "g": 25, + "b": 31 + }, + "hsl": { + "h": 354, + "s": 56, + "l": 22 + }, + "hsb": { + "h": 354, + "s": 72, + "b": 35 + }, + "cmyk": { + "c": "40", + "m": "100", + "y": "60", + "k": "40" + } + }, + "names": { + "de": "Weinrot", + "en": "Wine red", + "fr": "Rouge vin", + "es": "Rojo vino", + "it": "Rosso vino", + "nl": "Wijnrood" + } + }, + "3007": { + "code": "3007", + "scope": "classic", + "color": { + "hex": "#3E2022", + "websafe": "#333333", + "rgb": { + "r": 62, + "g": 32, + "b": 34 + }, + "hsl": { + "h": 356, + "s": 32, + "l": 18 + }, + "hsb": { + "h": 356, + "s": 48, + "b": 24 + }, + "cmyk": { + "c": "50", + "m": "100", + "y": "40", + "k": "50" + } + }, + "names": { + "de": "Schwarzrot", + "en": "Black red", + "fr": "Rouge noir", + "es": "Rojo negruzco", + "it": "Rosso nerastro", + "nl": "Zwartrood" + } + }, + "3009": { + "code": "3009", + "scope": "classic", + "color": { + "hex": "#6D342D", + "websafe": "#663333", + "rgb": { + "r": 109, + "g": 52, + "b": 45 + }, + "hsl": { + "h": 7, + "s": 42, + "l": 30 + }, + "hsb": { + "h": 7, + "s": 59, + "b": 43 + }, + "cmyk": { + "c": "40", + "m": "100", + "y": "100", + "k": "30" + } + }, + "names": { + "de": "Oxidrot", + "en": "Oxide red", + "fr": "Rouge oxyde", + "es": "Rojo óxido", + "it": "Rosso ossido", + "nl": "Oxyderood" + } + }, + "3011": { + "code": "3011", + "scope": "classic", + "color": { + "hex": "#792423", + "websafe": "#663333", + "rgb": { + "r": 121, + "g": 36, + "b": 35 + }, + "hsl": { + "h": 1, + "s": 55, + "l": 31 + }, + "hsb": { + "h": 1, + "s": 71, + "b": 47 + }, + "cmyk": { + "c": "20", + "m": "100", + "y": "80", + "k": "40" + } + }, + "names": { + "de": "Braunrot", + "en": "Brown red", + "fr": "Rouge brun", + "es": "Rojo pardo", + "it": "Rosso marrone", + "nl": "Bruinrood" + } + }, + "3012": { + "code": "3012", + "scope": "classic", + "color": { + "hex": "#C6846D", + "websafe": "#cc9966", + "rgb": { + "r": 198, + "g": 132, + "b": 109 + }, + "hsl": { + "h": 16, + "s": 44, + "l": 60 + }, + "hsb": { + "h": 16, + "s": 45, + "b": 78 + }, + "cmyk": { + "c": "0", + "m": "50", + "y": "50", + "k": "20" + } + }, + "names": { + "de": "Beigerot", + "en": "Beige red", + "fr": "Rouge beige", + "es": "Rojo beige", + "it": "Rosso beige", + "nl": "Beigerood" + } + }, + "3013": { + "code": "3013", + "scope": "classic", + "color": { + "hex": "#972E25", + "websafe": "#993333", + "rgb": { + "r": 151, + "g": 46, + "b": 37 + }, + "hsl": { + "h": 5, + "s": 61, + "l": 37 + }, + "hsb": { + "h": 5, + "s": 75, + "b": 59 + }, + "cmyk": { + "c": "0", + "m": "100", + "y": "90", + "k": "30" + } + }, + "names": { + "de": "Tomatenrot", + "en": "Tomato red", + "fr": "Rouge tomate", + "es": "Rojo tomate", + "it": "Rosso pomodoro", + "nl": "Tomaatrood" + } + }, + "3014": { + "code": "3014", + "scope": "classic", + "color": { + "hex": "#CB7375", + "websafe": "#cc6666", + "rgb": { + "r": 203, + "g": 115, + "b": 117 + }, + "hsl": { + "h": 359, + "s": 46, + "l": 62 + }, + "hsb": { + "h": 359, + "s": 43, + "b": 80 + }, + "cmyk": { + "c": "0", + "m": "65", + "y": "40", + "k": "10" + } + }, + "names": { + "de": "Altrosa", + "en": "Antique pink", + "fr": "Vieux rose", + "es": "Rojo viejo", + "it": "Rosa antico", + "nl": "Oudroze" + } + }, + "3015": { + "code": "3015", + "scope": "classic", + "color": { + "hex": "#D8A0A6", + "websafe": "#cc9999", + "rgb": { + "r": 216, + "g": 160, + "b": 166 + }, + "hsl": { + "h": 354, + "s": 42, + "l": 74 + }, + "hsb": { + "h": 354, + "s": 26, + "b": 85 + }, + "cmyk": { + "c": "5", + "m": "40", + "y": "20", + "k": "0" + } + }, + "names": { + "de": "Hellrosa", + "en": "Light pink", + "fr": "Rose clair", + "es": "Rosa claro", + "it": "Rosa chiaro", + "nl": "Lichtroze" + } + }, + "3016": { + "code": "3016", + "scope": "classic", + "color": { + "hex": "#A63D2F", + "websafe": "#993333", + "rgb": { + "r": 166, + "g": 61, + "b": 47 + }, + "hsl": { + "h": 7, + "s": 56, + "l": 42 + }, + "hsb": { + "h": 7, + "s": 72, + "b": 65 + }, + "cmyk": { + "c": "0", + "m": "90", + "y": "90", + "k": "30" + } + }, + "names": { + "de": "Korallenrot", + "en": "Coral red", + "fr": "Rouge corail", + "es": "Rojo coral", + "it": "Rosso corallo", + "nl": "Koraalrood" + } + }, + "3017": { + "code": "3017", + "scope": "classic", + "color": { + "hex": "#CB555D", + "websafe": "#cc6666", + "rgb": { + "r": 203, + "g": 85, + "b": 93 + }, + "hsl": { + "h": 356, + "s": 53, + "l": 56 + }, + "hsb": { + "h": 356, + "s": 58, + "b": 80 + }, + "cmyk": { + "c": "0", + "m": "80", + "y": "50", + "k": "10" + } + }, + "names": { + "de": "Rosé", + "en": "Rose", + "fr": "Rosé", + "es": "Rosa", + "it": "Rosato", + "nl": "Bleekrood" + } + }, + "3018": { + "code": "3018", + "scope": "classic", + "color": { + "hex": "#C73F4A", + "websafe": "#cc3333", + "rgb": { + "r": 199, + "g": 63, + "b": 74 + }, + "hsl": { + "h": 355, + "s": 55, + "l": 51 + }, + "hsb": { + "h": 355, + "s": 68, + "b": 78 + }, + "cmyk": { + "c": "5", + "m": "100", + "y": "60", + "k": "0" + } + }, + "names": { + "de": "Erdbeerrot", + "en": "Strawberry red", + "fr": "Rouge fraise", + "es": "Rojo fresa", + "it": "Rosso fragola", + "nl": "Aardbeirood" + } + }, + "3020": { + "code": "3020", + "scope": "classic", + "color": { + "hex": "#BB1E10", + "websafe": "#cc3300", + "rgb": { + "r": 187, + "g": 30, + "b": 16 + }, + "hsl": { + "h": 5, + "s": 84, + "l": 40 + }, + "hsb": { + "h": 5, + "s": 91, + "b": 73 + }, + "cmyk": { + "c": "0", + "m": "100", + "y": "100", + "k": "10" + } + }, + "names": { + "de": "Verkehrsrot", + "en": "Traffic red", + "fr": "Rouge signalisation", + "es": "Rojo tráfico", + "it": "Rosso traffico", + "nl": "Verkeersrood" + } + }, + "3022": { + "code": "3022", + "scope": "classic", + "color": { + "hex": "#CF6955", + "websafe": "#cc6666", + "rgb": { + "r": 207, + "g": 105, + "b": 85 + }, + "hsl": { + "h": 10, + "s": 56, + "l": 57 + }, + "hsb": { + "h": 10, + "s": 59, + "b": 81 + }, + "cmyk": { + "c": "0", + "m": "70", + "y": "60", + "k": "5" + } + }, + "names": { + "de": "Lachsrot", + "en": "Salmon pink", + "fr": "Rouge saumon", + "es": "Rojo salmón", + "it": "Rosso salmone", + "nl": "Zalmrood" + } + }, + "3024": { + "code": "3024", + "scope": "classic", + "color": { + "hex": "#FF2D21", + "websafe": "#ff3333", + "rgb": { + "r": 255, + "g": 45, + "b": 33 + }, + "hsl": { + "h": 3, + "s": 100, + "l": 56 + }, + "hsb": { + "h": 3, + "s": 87, + "b": 100 + }, + "cmyk": { + "c": "0", + "m": "90", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Leuchtrot", + "en": "Luminous red", + "fr": "Rouge brillant", + "es": "Rojo brillante", + "it": "Rosso brillante", + "nl": "Briljantrood" + } + }, + "3026": { + "code": "3026", + "scope": "classic", + "color": { + "hex": "#FF2A1B", + "websafe": "#ff3333", + "rgb": { + "r": 255, + "g": 42, + "b": 27 + }, + "hsl": { + "h": 4, + "s": 100, + "l": 55 + }, + "hsb": { + "h": 4, + "s": 89, + "b": 100 + }, + "cmyk": { + "c": "0", + "m": "80", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Leuchthellrot", + "en": "Luminous bright red", + "fr": "Rouge clair brillant", + "es": "Rojo claro brillante", + "it": "Rosso chiaro brillante", + "nl": "Briljant lichtrood" + } + }, + "3027": { + "code": "3027", + "scope": "classic", + "color": { + "hex": "#AB273C", + "websafe": "#993333", + "rgb": { + "r": 171, + "g": 39, + "b": 60 + }, + "hsl": { + "h": 350, + "s": 63, + "l": 41 + }, + "hsb": { + "h": 350, + "s": 77, + "b": 67 + }, + "cmyk": { + "c": "0", + "m": "100", + "y": "50", + "k": "20" + } + }, + "names": { + "de": "Himbeerrot", + "en": "Raspberry red", + "fr": "Rouge framboise", + "es": "Rojo frambuesa", + "it": "Rosso lampone", + "nl": "Framboosrood" + } + }, + "3028": { + "code": "3028", + "scope": "classic", + "color": { + "hex": "#CC2C24", + "websafe": "#cc3333", + "rgb": { + "r": 204, + "g": 44, + "b": 36 + }, + "hsl": { + "h": 3, + "s": 70, + "l": 47 + }, + "hsb": { + "h": 3, + "s": 82, + "b": 80 + }, + "cmyk": { + "c": "0", + "m": "100", + "y": "90", + "k": "0" + } + }, + "names": { + "de": "Reinrot", + "en": "Pure red", + "fr": "Rouge pu", + "es": "Rojo puro ", + "it": "Rosso puro", + "nl": "Zuiver rood " + } + }, + "3031": { + "code": "3031", + "scope": "classic", + "color": { + "hex": "#A63437", + "websafe": "#993333", + "rgb": { + "r": 166, + "g": 52, + "b": 55 + }, + "hsl": { + "h": 358, + "s": 52, + "l": 43 + }, + "hsb": { + "h": 358, + "s": 69, + "b": 65 + }, + "cmyk": { + "c": "20", + "m": "100", + "y": "70", + "k": "10" + } + }, + "names": { + "de": "Orientrot", + "en": "Orient red", + "fr": "Rouge oriental", + "es": "Rojo oriente", + "it": "Rosso oriente", + "nl": "Oriëntrood" + } + }, + "3032": { + "code": "3032", + "scope": "classic", + "color": { + "hex": "#701D23", + "websafe": "#663333", + "rgb": { + "r": 112, + "g": 29, + "b": 35 + }, + "hsl": { + "h": 356, + "s": 59, + "l": 28 + }, + "hsb": { + "h": 356, + "s": 74, + "b": 44 + }, + "cmyk": { + "c": "10", + "m": "100", + "y": "60", + "k": "40" + } + }, + "names": { + "de": "Perlrubinrot", + "en": "Pearl ruby red", + "fr": "Rouge rubis nacré", + "es": "Rojo rubí perlado", + "it": "Rosso rubino perlato", + "nl": "Parelmoer donkerrood" + } + }, + "3033": { + "code": "3033", + "scope": "classic", + "color": { + "hex": "#A53A2D", + "websafe": "#993333", + "rgb": { + "r": 165, + "g": 58, + "b": 45 + }, + "hsl": { + "h": 7, + "s": 57, + "l": 41 + }, + "hsb": { + "h": 7, + "s": 73, + "b": 65 + }, + "cmyk": { + "c": "10", + "m": "90", + "y": "90", + "k": "20" + } + }, + "names": { + "de": "Perlrosa", + "en": "Pearl pink", + "fr": "Rose nacré", + "es": "Rosa perlado", + "it": "Rosa perlato", + "nl": "Parelmoer lichtrood" + } + }, + "4001": { + "code": "4001", + "scope": "classic", + "color": { + "hex": "#816183", + "websafe": "#996699", + "rgb": { + "r": 129, + "g": 97, + "b": 131 + }, + "hsl": { + "h": 296, + "s": 15, + "l": 45 + }, + "hsb": { + "h": 296, + "s": 26, + "b": 51 + }, + "cmyk": { + "c": "30", + "m": "60", + "y": "10", + "k": "20" + } + }, + "names": { + "de": "Rotlila", + "en": "Red lilac", + "fr": "Lilas rouge", + "es": "Rojo lila", + "it": "Lilla rossastro", + "nl": "Roodlila" + } + }, + "4002": { + "code": "4002", + "scope": "classic", + "color": { + "hex": "#8D3C4B", + "websafe": "#993333", + "rgb": { + "r": 141, + "g": 60, + "b": 75 + }, + "hsl": { + "h": 349, + "s": 40, + "l": 39 + }, + "hsb": { + "h": 349, + "s": 57, + "b": 55 + }, + "cmyk": { + "c": "25", + "m": "90", + "y": "50", + "k": "30" + } + }, + "names": { + "de": "Rotviolett", + "en": "Red violet", + "fr": "Violet rouge", + "es": "Rojo violeta", + "it": "Viola rossastro", + "nl": "Roodpaars" + } + }, + "4003": { + "code": "4003", + "scope": "classic", + "color": { + "hex": "#C4618C", + "websafe": "#cc6699", + "rgb": { + "r": 196, + "g": 97, + "b": 140 + }, + "hsl": { + "h": 334, + "s": 46, + "l": 57 + }, + "hsb": { + "h": 334, + "s": 51, + "b": 77 + }, + "cmyk": { + "c": "10", + "m": "80", + "y": "5", + "k": "5" + } + }, + "names": { + "de": "Erikaviolett", + "en": "Heather violet", + "fr": "Violet bruyère", + "es": "Violeta érica", + "it": "Viola erica", + "nl": "Heidepaars" + } + }, + "4004": { + "code": "4004", + "scope": "classic", + "color": { + "hex": "#651E38", + "websafe": "#663333", + "rgb": { + "r": 101, + "g": 30, + "b": 56 + }, + "hsl": { + "h": 338, + "s": 54, + "l": 26 + }, + "hsb": { + "h": 338, + "s": 70, + "b": 40 + }, + "cmyk": { + "c": "30", + "m": "100", + "y": "30", + "k": "60" + } + }, + "names": { + "de": "Bordeauxviolett", + "en": "Claret violet", + "fr": "Violet bordeaux", + "es": "Burdeos", + "it": "Viola bordeaux", + "nl": "Bordeuaxpaars" + } + }, + "4005": { + "code": "4005", + "scope": "classic", + "color": { + "hex": "#76689A", + "websafe": "#666699", + "rgb": { + "r": 118, + "g": 104, + "b": 154 + }, + "hsl": { + "h": 257, + "s": 20, + "l": 51 + }, + "hsb": { + "h": 257, + "s": 32, + "b": 60 + }, + "cmyk": { + "c": "50", + "m": "60", + "y": "0", + "k": "0" + } + }, + "names": { + "de": "Blaulila", + "en": "Blue lilac", + "fr": "Lilas bleu", + "es": "Lila azulado", + "it": "Lilla bluastro", + "nl": "Blauwlila" + } + }, + "4006": { + "code": "4006", + "scope": "classic", + "color": { + "hex": "#903373", + "websafe": "#993366", + "rgb": { + "r": 144, + "g": 51, + "b": 115 + }, + "hsl": { + "h": 319, + "s": 48, + "l": 38 + }, + "hsb": { + "h": 319, + "s": 65, + "b": 56 + }, + "cmyk": { + "c": "40", + "m": "100", + "y": "0", + "k": "15" + } + }, + "names": { + "de": "Verkehrspurpur", + "en": "Traffic purple", + "fr": "Pourpre signalisation", + "es": "Púrpurá tráfico", + "it": "Porpora traffico", + "nl": "Verkeerspurper" + } + }, + "4007": { + "code": "4007", + "scope": "classic", + "color": { + "hex": "#47243C", + "websafe": "#333333", + "rgb": { + "r": 71, + "g": 36, + "b": 60 + }, + "hsl": { + "h": 319, + "s": 33, + "l": 21 + }, + "hsb": { + "h": 319, + "s": 49, + "b": 28 + }, + "cmyk": { + "c": "70", + "m": "100", + "y": "10", + "k": "70" + } + }, + "names": { + "de": "Purpurviolett", + "en": "Purple violet", + "fr": "Violet pourpre", + "es": "Violeta púrpura", + "it": "Porpora violetto", + "nl": "Purperviolet" + } + }, + "4008": { + "code": "4008", + "scope": "classic", + "color": { + "hex": "#844C82", + "websafe": "#993399", + "rgb": { + "r": 132, + "g": 76, + "b": 130 + }, + "hsl": { + "h": 302, + "s": 27, + "l": 41 + }, + "hsb": { + "h": 302, + "s": 42, + "b": 52 + }, + "cmyk": { + "c": "50", + "m": "90", + "y": "0", + "k": "5" + } + }, + "names": { + "de": "Signalviolett", + "en": "Signal violet", + "fr": "Violet de sécurité", + "es": "Violeta señales", + "it": "Violetto segnale", + "nl": "Signaalviolet" + } + }, + "4009": { + "code": "4009", + "scope": "classic", + "color": { + "hex": "#9D8692", + "websafe": "#999999", + "rgb": { + "r": 157, + "g": 134, + "b": 146 + }, + "hsl": { + "h": 329, + "s": 11, + "l": 57 + }, + "hsb": { + "h": 329, + "s": 15, + "b": 62 + }, + "cmyk": { + "c": "35", + "m": "50", + "y": "30", + "k": "10" + } + }, + "names": { + "de": "Pastellviolett", + "en": "Pastel violet", + "fr": "Violet pastel", + "es": "Violeta pastel", + "it": "Violetto pastello", + "nl": "Pastelviolet" + } + }, + "4010": { + "code": "4010", + "scope": "classic", + "color": { + "hex": "#BC4077", + "websafe": "#cc3366", + "rgb": { + "r": 188, + "g": 64, + "b": 119 + }, + "hsl": { + "h": 333, + "s": 49, + "l": 49 + }, + "hsb": { + "h": 333, + "s": 66, + "b": 74 + }, + "cmyk": { + "c": "15", + "m": "100", + "y": "15", + "k": "10" + } + }, + "names": { + "de": "Telemagenta", + "en": "Telemagenta", + "fr": "Telemagenta", + "es": "Magenta tele", + "it": "Tele Magenta", + "nl": "Telemagenta" + } + }, + "4011": { + "code": "4011", + "scope": "classic", + "color": { + "hex": "#6E6387", + "websafe": "#666699", + "rgb": { + "r": 110, + "g": 99, + "b": 135 + }, + "hsl": { + "h": 258, + "s": 15, + "l": 46 + }, + "hsb": { + "h": 258, + "s": 27, + "b": 53 + }, + "cmyk": { + "c": "50", + "m": "60", + "y": "0", + "k": "20" + } + }, + "names": { + "de": "Perlviolett", + "en": "Pearl violet", + "fr": "Violet nacré", + "es": "Violeta perlado", + "it": "Violetto perlato", + "nl": "Parelmoer donkerviolet" + } + }, + "4012": { + "code": "4012", + "scope": "classic", + "color": { + "hex": "#6B6B7F", + "websafe": "#666666", + "rgb": { + "r": 107, + "g": 107, + "b": 127 + }, + "hsl": { + "h": 240, + "s": 9, + "l": 46 + }, + "hsb": { + "h": 240, + "s": 16, + "b": 50 + }, + "cmyk": { + "c": "40", + "m": "35", + "y": "0", + "k": "40" + } + }, + "names": { + "de": "Perlbrombeer", + "en": "Pearl blackberry", + "fr": "Mûre nacré", + "es": "Morado perlado", + "it": "Mora perlato", + "nl": "Parelmoer lichtviolet" + } + }, + "5000": { + "code": "5000", + "scope": "classic", + "color": { + "hex": "#314F6F", + "websafe": "#336666", + "rgb": { + "r": 49, + "g": 79, + "b": 111 + }, + "hsl": { + "h": 211, + "s": 39, + "l": 31 + }, + "hsb": { + "h": 211, + "s": 56, + "b": 44 + }, + "cmyk": { + "c": "100", + "m": "80", + "y": "40", + "k": "5" + } + }, + "names": { + "de": "Violettblau", + "en": "Violet blue", + "fr": "Bleu violet", + "es": "Azul violeta", + "it": "Blu violaceo", + "nl": "Paarsblauw" + } + }, + "5001": { + "code": "5001", + "scope": "classic", + "color": { + "hex": "#0F4C64", + "websafe": "#003366", + "rgb": { + "r": 15, + "g": 76, + "b": 100 + }, + "hsl": { + "h": 197, + "s": 74, + "l": 23 + }, + "hsb": { + "h": 197, + "s": 85, + "b": 39 + }, + "cmyk": { + "c": "100", + "m": "60", + "y": "30", + "k": "40" + } + }, + "names": { + "de": "Grünblau", + "en": "Green blue", + "fr": "Bleu vert", + "es": "Azul verdoso", + "it": "Blu verdastro", + "nl": "Groenblauw" + } + }, + "5002": { + "code": "5002", + "scope": "classic", + "color": { + "hex": "#00387B", + "websafe": "#003366", + "rgb": { + "r": 0, + "g": 56, + "b": 123 + }, + "hsl": { + "h": 213, + "s": 100, + "l": 24 + }, + "hsb": { + "h": 213, + "s": 100, + "b": 48 + }, + "cmyk": { + "c": "100", + "m": "90", + "y": "0", + "k": "10" + } + }, + "names": { + "de": "Ultramarinblau", + "en": "Ultramarine blue", + "fr": "Bleu outremer", + "es": "Azul ultramar", + "it": "Blu oltremare", + "nl": "Ultramarijn blauw" + } + }, + "5003": { + "code": "5003", + "scope": "classic", + "color": { + "hex": "#1F3855", + "websafe": "#333366", + "rgb": { + "r": 31, + "g": 56, + "b": 85 + }, + "hsl": { + "h": 212, + "s": 47, + "l": 23 + }, + "hsb": { + "h": 212, + "s": 64, + "b": 33 + }, + "cmyk": { + "c": "70", + "m": "30", + "y": "10", + "k": "80" + } + }, + "names": { + "de": "Saphirblau", + "en": "Sapphire blue", + "fr": "Bleu saphir", + "es": "Azul zafiro", + "it": "Blu zaffiro", + "nl": "Saffierblauw" + } + }, + "5004": { + "code": "5004", + "scope": "classic", + "color": { + "hex": "#191E28", + "websafe": "#003333", + "rgb": { + "r": 25, + "g": 30, + "b": 40 + }, + "hsl": { + "h": 220, + "s": 23, + "l": 13 + }, + "hsb": { + "h": 220, + "s": 38, + "b": 16 + }, + "cmyk": { + "c": "70", + "m": "30", + "y": "10", + "k": "80" + } + }, + "names": { + "de": "Schwarzblau", + "en": "Black blue", + "fr": "Bleu noir", + "es": "Azul negruzco", + "it": "Blu nerastro", + "nl": "Zwartblauw" + } + }, + "5005": { + "code": "5005", + "scope": "classic", + "color": { + "hex": "#005387", + "websafe": "#006699", + "rgb": { + "r": 0, + "g": 83, + "b": 135 + }, + "hsl": { + "h": 203, + "s": 100, + "l": 26 + }, + "hsb": { + "h": 203, + "s": 100, + "b": 53 + }, + "cmyk": { + "c": "95", + "m": "60", + "y": "0", + "k": "20" + } + }, + "names": { + "de": "Signalblau", + "en": "Signal blue", + "fr": "Bleu de sécurité", + "es": "Azul señales", + "it": "Blu segnale", + "nl": "Signaalblauw" + } + }, + "5007": { + "code": "5007", + "scope": "classic", + "color": { + "hex": "#376B8C", + "websafe": "#336699", + "rgb": { + "r": 55, + "g": 107, + "b": 140 + }, + "hsl": { + "h": 203, + "s": 44, + "l": 38 + }, + "hsb": { + "h": 203, + "s": 61, + "b": 55 + }, + "cmyk": { + "c": "80", + "m": "50", + "y": "20", + "k": "20" + } + }, + "names": { + "de": "Brillantblau", + "en": "Brilliant blue", + "fr": "Bleu brillant", + "es": "Azul brillante", + "it": "Blu brillante", + "nl": "Briljantblauw" + } + }, + "5008": { + "code": "5008", + "scope": "classic", + "color": { + "hex": "#2B3A44", + "websafe": "#333333", + "rgb": { + "r": 43, + "g": 58, + "b": 68 + }, + "hsl": { + "h": 204, + "s": 23, + "l": 22 + }, + "hsb": { + "h": 204, + "s": 37, + "b": 27 + }, + "cmyk": { + "c": "100", + "m": "90", + "y": "60", + "k": "30" + } + }, + "names": { + "de": "Graublau", + "en": "Grey blue", + "fr": "Bleu gris", + "es": "Azul grisáceo", + "it": "Blu grigiastro", + "nl": "Grijsblauw" + } + }, + "5009": { + "code": "5009", + "scope": "classic", + "color": { + "hex": "#225F78", + "websafe": "#336666", + "rgb": { + "r": 34, + "g": 95, + "b": 120 + }, + "hsl": { + "h": 197, + "s": 56, + "l": 30 + }, + "hsb": { + "h": 197, + "s": 72, + "b": 47 + }, + "cmyk": { + "c": "90", + "m": "40", + "y": "0", + "k": "30" + } + }, + "names": { + "de": "Azurblau", + "en": "Azure blue", + "fr": "Bleu azur", + "es": "Azul azur", + "it": "Blu azzurro", + "nl": "Azuurblauw" + } + }, + "5010": { + "code": "5010", + "scope": "classic", + "color": { + "hex": "#004F7C", + "websafe": "#006666", + "rgb": { + "r": 0, + "g": 79, + "b": 124 + }, + "hsl": { + "h": 202, + "s": 100, + "l": 24 + }, + "hsb": { + "h": 202, + "s": 100, + "b": 49 + }, + "cmyk": { + "c": "100", + "m": "70", + "y": "5", + "k": "15" + } + }, + "names": { + "de": "Enzianblau", + "en": "Gentian blue", + "fr": "Bleu gentiane", + "es": "Azul genciana", + "it": "Blu genziana", + "nl": "Gentiaanblauw" + } + }, + "5011": { + "code": "5011", + "scope": "classic", + "color": { + "hex": "#1A2B3C", + "websafe": "#333333", + "rgb": { + "r": 26, + "g": 43, + "b": 60 + }, + "hsl": { + "h": 210, + "s": 40, + "l": 17 + }, + "hsb": { + "h": 210, + "s": 57, + "b": 24 + }, + "cmyk": { + "c": "100", + "m": "100", + "y": "60", + "k": "30" + } + }, + "names": { + "de": "Stahlblau", + "en": "Steel blue", + "fr": "Bleu acier", + "es": "Azul acero", + "it": "Blu acciaio", + "nl": "Staalblauw" + } + }, + "5012": { + "code": "5012", + "scope": "classic", + "color": { + "hex": "#0089B6", + "websafe": "#0099cc", + "rgb": { + "r": 0, + "g": 137, + "b": 182 + }, + "hsl": { + "h": 195, + "s": 100, + "l": 36 + }, + "hsb": { + "h": 195, + "s": 100, + "b": 71 + }, + "cmyk": { + "c": "75", + "m": "30", + "y": "0", + "k": "10" + } + }, + "names": { + "de": "Lichtblau", + "en": "Light blue", + "fr": "Bleu clair", + "es": "Azul luminoso", + "it": "Blu luce", + "nl": "Lichtblauw" + } + }, + "5013": { + "code": "5013", + "scope": "classic", + "color": { + "hex": "#193153", + "websafe": "#003366", + "rgb": { + "r": 25, + "g": 49, + "b": 83 + }, + "hsl": { + "h": 215, + "s": 54, + "l": 21 + }, + "hsb": { + "h": 215, + "s": 70, + "b": 33 + }, + "cmyk": { + "c": "100", + "m": "80", + "y": "10", + "k": "50" + } + }, + "names": { + "de": "Kobaltblau", + "en": "Cobalt blue", + "fr": "Bleu cobalt", + "es": "Azul cobalto", + "it": "Blu cobalto", + "nl": "Kobaltblauw" + } + }, + "5014": { + "code": "5014", + "scope": "classic", + "color": { + "hex": "#637D96", + "websafe": "#666699", + "rgb": { + "r": 99, + "g": 125, + "b": 150 + }, + "hsl": { + "h": 209, + "s": 20, + "l": 49 + }, + "hsb": { + "h": 209, + "s": 34, + "b": 59 + }, + "cmyk": { + "c": "50", + "m": "30", + "y": "10", + "k": "30" + } + }, + "names": { + "de": "Taubenblau", + "en": "Pigeon blue", + "fr": "Bleu pigeon", + "es": "Azul colombino", + "it": "Blu colomba", + "nl": "Duifblauw" + } + }, + "5015": { + "code": "5015", + "scope": "classic", + "color": { + "hex": "#007CB0", + "websafe": "#006699", + "rgb": { + "r": 0, + "g": 124, + "b": 176 + }, + "hsl": { + "h": 198, + "s": 100, + "l": 35 + }, + "hsb": { + "h": 198, + "s": 100, + "b": 69 + }, + "cmyk": { + "c": "90", + "m": "40", + "y": "0", + "k": "0" + } + }, + "names": { + "de": "Himmelblau", + "en": "Sky blue", + "fr": "Bleu ciel", + "es": "Azul celeste", + "it": "Blu cielo", + "nl": "Hemelsblauw" + } + }, + "5017": { + "code": "5017", + "scope": "classic", + "color": { + "hex": "#005B8C", + "websafe": "#006699", + "rgb": { + "r": 0, + "g": 91, + "b": 140 + }, + "hsl": { + "h": 201, + "s": 100, + "l": 27 + }, + "hsb": { + "h": 201, + "s": 100, + "b": 55 + }, + "cmyk": { + "c": "100", + "m": "60", + "y": "0", + "k": "10" + } + }, + "names": { + "de": "Verkehrsblau", + "en": "Traffic blue", + "fr": "Bleu signalisation", + "es": "Azul tráfico", + "it": "Blu traffico", + "nl": "Verkeersblauw" + } + }, + "5018": { + "code": "5018", + "scope": "classic", + "color": { + "hex": "#058B8C", + "websafe": "#009999", + "rgb": { + "r": 5, + "g": 139, + "b": 140 + }, + "hsl": { + "h": 180, + "s": 93, + "l": 28 + }, + "hsb": { + "h": 180, + "s": 96, + "b": 55 + }, + "cmyk": { + "c": "80", + "m": "10", + "y": "35", + "k": "20" + } + }, + "names": { + "de": "Türkisblau", + "en": "Turquoise blue", + "fr": "Bleu turquoise", + "es": "Azul turquesa", + "it": "Blu turchese", + "nl": "Turkooisblauw" + } + }, + "5019": { + "code": "5019", + "scope": "classic", + "color": { + "hex": "#005E83", + "websafe": "#006699", + "rgb": { + "r": 0, + "g": 94, + "b": 131 + }, + "hsl": { + "h": 197, + "s": 100, + "l": 26 + }, + "hsb": { + "h": 197, + "s": 100, + "b": 51 + }, + "cmyk": { + "c": "100", + "m": "50", + "y": "15", + "k": "25" + } + }, + "names": { + "de": "Capriblau", + "en": "Capri blue", + "fr": "Bleu capri", + "es": "Azul capri", + "it": "Blu Capri", + "nl": "Capriblauw" + } + }, + "5020": { + "code": "5020", + "scope": "classic", + "color": { + "hex": "#00414B", + "websafe": "#003333", + "rgb": { + "r": 0, + "g": 65, + "b": 75 + }, + "hsl": { + "h": 188, + "s": 100, + "l": 15 + }, + "hsb": { + "h": 188, + "s": 100, + "b": 29 + }, + "cmyk": { + "c": "100", + "m": "10", + "y": "20", + "k": "80" + } + }, + "names": { + "de": "Ozeanblau", + "en": "Ocean blue", + "fr": "Bleu océan", + "es": "Azul oceano", + "it": "Blu oceano", + "nl": "Oceaanblauw" + } + }, + "5021": { + "code": "5021", + "scope": "classic", + "color": { + "hex": "#007577", + "websafe": "#006666", + "rgb": { + "r": 0, + "g": 117, + "b": 119 + }, + "hsl": { + "h": 181, + "s": 100, + "l": 23 + }, + "hsb": { + "h": 181, + "s": 100, + "b": 47 + }, + "cmyk": { + "c": "100", + "m": "0", + "y": "40", + "k": "35" + } + }, + "names": { + "de": "Wasserblau", + "en": "Water blue", + "fr": "Bleu d’eau", + "es": "Azul agua", + "it": "Blu acqua", + "nl": "Waterblauw" + } + }, + "5022": { + "code": "5022", + "scope": "classic", + "color": { + "hex": "#222D5A", + "websafe": "#333366", + "rgb": { + "r": 34, + "g": 45, + "b": 90 + }, + "hsl": { + "h": 228, + "s": 45, + "l": 24 + }, + "hsb": { + "h": 228, + "s": 62, + "b": 35 + }, + "cmyk": { + "c": "100", + "m": "90", + "y": "0", + "k": "50" + } + }, + "names": { + "de": "Nachtblau", + "en": "Night blue", + "fr": "Bleu nocturne", + "es": "Azul noche", + "it": "Blu notte", + "nl": "Nachtblauw" + } + }, + "5023": { + "code": "5023", + "scope": "classic", + "color": { + "hex": "#42698C", + "websafe": "#336699", + "rgb": { + "r": 66, + "g": 105, + "b": 140 + }, + "hsl": { + "h": 208, + "s": 36, + "l": 40 + }, + "hsb": { + "h": 208, + "s": 53, + "b": 55 + }, + "cmyk": { + "c": "70", + "m": "40", + "y": "10", + "k": "30" + } + }, + "names": { + "de": "Fernblau", + "en": "Distant blue", + "fr": "Bleu distant", + "es": "Azul lejanía", + "it": "Blu distante", + "nl": "Verblauw" + } + }, + "5024": { + "code": "5024", + "scope": "classic", + "color": { + "hex": "#6093AC", + "websafe": "#669999", + "rgb": { + "r": 96, + "g": 147, + "b": 172 + }, + "hsl": { + "h": 200, + "s": 31, + "l": 53 + }, + "hsb": { + "h": 200, + "s": 44, + "b": 67 + }, + "cmyk": { + "c": "60", + "m": "20", + "y": "5", + "k": "20" + } + }, + "names": { + "de": "Pastellblau", + "en": "Pastel blue", + "fr": "Bleu pastel", + "es": "Azul pastel", + "it": "Blu pastello", + "nl": "Pastelblauw" + } + }, + "5025": { + "code": "5025", + "scope": "classic", + "color": { + "hex": "#21697C", + "websafe": "#336666", + "rgb": { + "r": 33, + "g": 105, + "b": 124 + }, + "hsl": { + "h": 193, + "s": 58, + "l": 31 + }, + "hsb": { + "h": 193, + "s": 73, + "b": 49 + }, + "cmyk": { + "c": "80", + "m": "25", + "y": "5", + "k": "60" + } + }, + "names": { + "de": "Perlenzian", + "en": "Pearl gentian blue", + "fr": "Gentiane nacré", + "es": "Gencian perlado", + "it": "Blu genziana perlato", + "nl": "Parelmoer blauw" + } + }, + "5026": { + "code": "5026", + "scope": "classic", + "color": { + "hex": "#0F3052", + "websafe": "#003366", + "rgb": { + "r": 15, + "g": 48, + "b": 82 + }, + "hsl": { + "h": 210, + "s": 69, + "l": 19 + }, + "hsb": { + "h": 210, + "s": 82, + "b": 32 + }, + "cmyk": { + "c": "100", + "m": "60", + "y": "0", + "k": "45" + } + }, + "names": { + "de": "Perlnachtblau", + "en": "Pearl night blue", + "fr": "Bleu nuit nacré", + "es": "Azul noche perlado", + "it": "Blu notte perlato", + "nl": "Parelmoer nachtblauw" + } + }, + "6000": { + "code": "6000", + "scope": "classic", + "color": { + "hex": "#3C7460", + "websafe": "#336666", + "rgb": { + "r": 60, + "g": 116, + "b": 96 + }, + "hsl": { + "h": 159, + "s": 32, + "l": 35 + }, + "hsb": { + "h": 159, + "s": 48, + "b": 45 + }, + "cmyk": { + "c": "80", + "m": "25", + "y": "60", + "k": "15" + } + }, + "names": { + "de": "Patinagrün", + "en": "Patina green", + "fr": "Vert patine", + "es": "Verde patina", + "it": "Verde patina", + "nl": "Patinagroen" + } + }, + "6001": { + "code": "6001", + "scope": "classic", + "color": { + "hex": "#366735", + "websafe": "#336633", + "rgb": { + "r": 54, + "g": 103, + "b": 53 + }, + "hsl": { + "h": 119, + "s": 32, + "l": 31 + }, + "hsb": { + "h": 119, + "s": 49, + "b": 40 + }, + "cmyk": { + "c": "80", + "m": "30", + "y": "100", + "k": "10" + } + }, + "names": { + "de": "Smaragdgrün", + "en": "Emerald green", + "fr": "Vert émeraude", + "es": "Verde esmeralda", + "it": "Verde smeraldo", + "nl": "Smaragdgroen" + } + }, + "6002": { + "code": "6002", + "scope": "classic", + "color": { + "hex": "#325928", + "websafe": "#336633", + "rgb": { + "r": 50, + "g": 89, + "b": 40 + }, + "hsl": { + "h": 108, + "s": 38, + "l": 25 + }, + "hsb": { + "h": 108, + "s": 55, + "b": 35 + }, + "cmyk": { + "c": "85", + "m": "30", + "y": "100", + "k": "30" + } + }, + "names": { + "de": "Laubgrün", + "en": "Leaf green", + "fr": "Vert feuillage", + "es": "Verde hoja", + "it": "Verde foglia", + "nl": "Loofgroen" + } + }, + "6003": { + "code": "6003", + "scope": "classic", + "color": { + "hex": "#50533C", + "websafe": "#666633", + "rgb": { + "r": 80, + "g": 83, + "b": 60 + }, + "hsl": { + "h": 68, + "s": 16, + "l": 28 + }, + "hsb": { + "h": 68, + "s": 28, + "b": 33 + }, + "cmyk": { + "c": "45", + "m": "15", + "y": "60", + "k": "70" + } + }, + "names": { + "de": "Olivgrün", + "en": "Olive green", + "fr": "Vert olive", + "es": "Verde oliva", + "it": "Verde oliva", + "nl": "Olijfgroen" + } + }, + "6004": { + "code": "6004", + "scope": "classic", + "color": { + "hex": "#024442", + "websafe": "#003333", + "rgb": { + "r": 2, + "g": 68, + "b": 66 + }, + "hsl": { + "h": 178, + "s": 94, + "l": 14 + }, + "hsb": { + "h": 178, + "s": 97, + "b": 27 + }, + "cmyk": { + "c": "90", + "m": "10", + "y": "45", + "k": "70" + } + }, + "names": { + "de": "Blaugrün", + "en": "Blue green", + "fr": "Vert bleu", + "es": "Verde azulado", + "it": "Verde bluastro", + "nl": "Blauwgroen" + } + }, + "6005": { + "code": "6005", + "scope": "classic", + "color": { + "hex": "#114232", + "websafe": "#003333", + "rgb": { + "r": 17, + "g": 66, + "b": 50 + }, + "hsl": { + "h": 160, + "s": 59, + "l": 16 + }, + "hsb": { + "h": 160, + "s": 74, + "b": 26 + }, + "cmyk": { + "c": "80", + "m": "5", + "y": "60", + "k": "70" + } + }, + "names": { + "de": "Moosgrün", + "en": "Moss green", + "fr": "Vert mousse", + "es": "Verde musgo", + "it": "Verde muschio", + "nl": "Mosgroen" + } + }, + "6006": { + "code": "6006", + "scope": "classic", + "color": { + "hex": "#3C392E", + "websafe": "#333333", + "rgb": { + "r": 60, + "g": 57, + "b": 46 + }, + "hsl": { + "h": 47, + "s": 13, + "l": 21 + }, + "hsb": { + "h": 47, + "s": 23, + "b": 24 + }, + "cmyk": { + "c": "20", + "m": "0", + "y": "30", + "k": "90" + } + }, + "names": { + "de": "Grauoliv", + "en": "Grey olive", + "fr": "Olive gris", + "es": "Oliva grisáceo", + "it": "Oliva grigiastro", + "nl": "Grijs olijfgroen" + } + }, + "6007": { + "code": "6007", + "scope": "classic", + "color": { + "hex": "#2C3222", + "websafe": "#333333", + "rgb": { + "r": 44, + "g": 50, + "b": 34 + }, + "hsl": { + "h": 83, + "s": 19, + "l": 16 + }, + "hsb": { + "h": 83, + "s": 32, + "b": 20 + }, + "cmyk": { + "c": "80", + "m": "45", + "y": "70", + "k": "80" + } + }, + "names": { + "de": "Flaschengrün", + "en": "Bottle green", + "fr": "Vert bouteille", + "es": "Verde botella", + "it": "Verde bottiglia", + "nl": "Flessengroen" + } + }, + "6008": { + "code": "6008", + "scope": "classic", + "color": { + "hex": "#37342A", + "websafe": "#333333", + "rgb": { + "r": 55, + "g": 52, + "b": 42 + }, + "hsl": { + "h": 46, + "s": 13, + "l": 19 + }, + "hsb": { + "h": 46, + "s": 24, + "b": 22 + }, + "cmyk": { + "c": "60", + "m": "50", + "y": "60", + "k": "80" + } + }, + "names": { + "de": "Braungrün", + "en": "Brown green", + "fr": "Vert brun", + "es": "Verde parduzco", + "it": "Verde brunastro", + "nl": "Bruingroen" + } + }, + "6009": { + "code": "6009", + "scope": "classic", + "color": { + "hex": "#27352A", + "websafe": "#333333", + "rgb": { + "r": 39, + "g": 53, + "b": 42 + }, + "hsl": { + "h": 133, + "s": 15, + "l": 18 + }, + "hsb": { + "h": 133, + "s": 26, + "b": 21 + }, + "cmyk": { + "c": "100", + "m": "30", + "y": "80", + "k": "80" + } + }, + "names": { + "de": "Tannengrün", + "en": "Fir green", + "fr": "Vert sapin", + "es": "Verde abeto", + "it": "Verde abete", + "nl": "Dennengroen" + } + }, + "6010": { + "code": "6010", + "scope": "classic", + "color": { + "hex": "#4D6F39", + "websafe": "#666633", + "rgb": { + "r": 77, + "g": 111, + "b": 57 + }, + "hsl": { + "h": 98, + "s": 32, + "l": 33 + }, + "hsb": { + "h": 98, + "s": 49, + "b": 44 + }, + "cmyk": { + "c": "80", + "m": "20", + "y": "100", + "k": "25" + } + }, + "names": { + "de": "Grasgrün", + "en": "Grass green", + "fr": "Vert herbe", + "es": "Verde hierba", + "it": "Verde erba", + "nl": "Grasgroen" + } + }, + "6011": { + "code": "6011", + "scope": "classic", + "color": { + "hex": "#6C7C59", + "websafe": "#666666", + "rgb": { + "r": 108, + "g": 124, + "b": 89 + }, + "hsl": { + "h": 87, + "s": 16, + "l": 42 + }, + "hsb": { + "h": 87, + "s": 28, + "b": 49 + }, + "cmyk": { + "c": "50", + "m": "10", + "y": "60", + "k": "45" + } + }, + "names": { + "de": "Resedagrün", + "en": "Reseda green", + "fr": "Vert réséda", + "es": "Verde reseda", + "it": "Verde reseda", + "nl": "Resedagroen" + } + }, + "6012": { + "code": "6012", + "scope": "classic", + "color": { + "hex": "#303D3A", + "websafe": "#333333", + "rgb": { + "r": 48, + "g": 61, + "b": 58 + }, + "hsl": { + "h": 166, + "s": 12, + "l": 21 + }, + "hsb": { + "h": 166, + "s": 21, + "b": 24 + }, + "cmyk": { + "c": "80", + "m": "45", + "y": "50", + "k": "70" + } + }, + "names": { + "de": "Schwarzgrün", + "en": "Black green", + "fr": "Vert noir", + "es": "Verde negruzco", + "it": "Verde nerastro", + "nl": "Zwartgroen" + } + }, + "6013": { + "code": "6013", + "scope": "classic", + "color": { + "hex": "#7D765A", + "websafe": "#666666", + "rgb": { + "r": 125, + "g": 118, + "b": 90 + }, + "hsl": { + "h": 48, + "s": 16, + "l": 42 + }, + "hsb": { + "h": 48, + "s": 28, + "b": 49 + }, + "cmyk": { + "c": "45", + "m": "25", + "y": "60", + "k": "50" + } + }, + "names": { + "de": "Schilfgrün", + "en": "Reed green", + "fr": "Vert jonc", + "es": "Verde caña", + "it": "Verde canna", + "nl": "Rietgroen" + } + }, + "6014": { + "code": "6014", + "scope": "classic", + "color": { + "hex": "#474135", + "websafe": "#333333", + "rgb": { + "r": 71, + "g": 65, + "b": 53 + }, + "hsl": { + "h": 40, + "s": 15, + "l": 24 + }, + "hsb": { + "h": 40, + "s": 25, + "b": 28 + }, + "cmyk": { + "c": "20", + "m": "20", + "y": "50", + "k": "90" + } + }, + "names": { + "de": "Gelboliv", + "en": "Yellow olive", + "fr": "Olive jaune", + "es": "Amarillo oliva", + "it": "Oliva giallastro", + "nl": "Geel olijfgroen" + } + }, + "6015": { + "code": "6015", + "scope": "classic", + "color": { + "hex": "#3D3D36", + "websafe": "#333333", + "rgb": { + "r": 61, + "g": 61, + "b": 54 + }, + "hsl": { + "h": 60, + "s": 6, + "l": 23 + }, + "hsb": { + "h": 60, + "s": 11, + "b": 24 + }, + "cmyk": { + "c": "25", + "m": "5", + "y": "30", + "k": "90" + } + }, + "names": { + "de": "Schwarzoliv", + "en": "Black olive", + "fr": "Olive noir", + "es": "Oliva negruzco", + "it": "Oliva nerastro", + "nl": "Zwart olijfgroen" + } + }, + "6016": { + "code": "6016", + "scope": "classic", + "color": { + "hex": "#00694C", + "websafe": "#006633", + "rgb": { + "r": 0, + "g": 105, + "b": 76 + }, + "hsl": { + "h": 163, + "s": 100, + "l": 21 + }, + "hsb": { + "h": 163, + "s": 100, + "b": 41 + }, + "cmyk": { + "c": "100", + "m": "20", + "y": "80", + "k": "25" + } + }, + "names": { + "de": "Türkisgrün", + "en": "Turquoise green", + "fr": "Vert turquoise", + "es": "Verde turquesa", + "it": "Verde turchese", + "nl": "Turkooisgroen" + } + }, + "6017": { + "code": "6017", + "scope": "classic", + "color": { + "hex": "#587F40", + "websafe": "#666633", + "rgb": { + "r": 88, + "g": 127, + "b": 64 + }, + "hsl": { + "h": 97, + "s": 33, + "l": 37 + }, + "hsb": { + "h": 97, + "s": 50, + "b": 50 + }, + "cmyk": { + "c": "70", + "m": "5", + "y": "90", + "k": "20" + } + }, + "names": { + "de": "Maigrün", + "en": "May green", + "fr": "Vert mai", + "es": "Verde mayo", + "it": "Verde maggio", + "nl": "Meigroen" + } + }, + "6018": { + "code": "6018", + "scope": "classic", + "color": { + "hex": "#61993B", + "websafe": "#669933", + "rgb": { + "r": 97, + "g": 153, + "b": 59 + }, + "hsl": { + "h": 96, + "s": 44, + "l": 42 + }, + "hsb": { + "h": 96, + "s": 61, + "b": 60 + }, + "cmyk": { + "c": "70", + "m": "0", + "y": "90", + "k": "0" + } + }, + "names": { + "de": "Gelbgrün", + "en": "Yellow green", + "fr": "Vert jaune", + "es": "Verde amarillento", + "it": "Verde giallastro", + "nl": "Geelgroen" + } + }, + "6019": { + "code": "6019", + "scope": "classic", + "color": { + "hex": "#B9CEAC", + "websafe": "#cccc99", + "rgb": { + "r": 185, + "g": 206, + "b": 172 + }, + "hsl": { + "h": 97, + "s": 26, + "l": 74 + }, + "hsb": { + "h": 97, + "s": 17, + "b": 81 + }, + "cmyk": { + "c": "35", + "m": "0", + "y": "40", + "k": "0" + } + }, + "names": { + "de": "Weißgrün", + "en": "Pastel green", + "fr": "Vert blanc", + "es": "Verde blanquecino", + "it": "Verde biancastro", + "nl": "Witgroen" + } + }, + "6020": { + "code": "6020", + "scope": "classic", + "color": { + "hex": "#37422F", + "websafe": "#333333", + "rgb": { + "r": 55, + "g": 66, + "b": 47 + }, + "hsl": { + "h": 95, + "s": 17, + "l": 22 + }, + "hsb": { + "h": 95, + "s": 29, + "b": 26 + }, + "cmyk": { + "c": "80", + "m": "50", + "y": "90", + "k": "50" + } + }, + "names": { + "de": "Chromoxidgrün", + "en": "Chrome green", + "fr": "Vert oxyde chromique", + "es": "Verde cromo", + "it": "Verde cromo", + "nl": "Chroomoxyde groen" + } + }, + "6021": { + "code": "6021", + "scope": "classic", + "color": { + "hex": "#8A9977", + "websafe": "#999966", + "rgb": { + "r": 138, + "g": 153, + "b": 119 + }, + "hsl": { + "h": 86, + "s": 14, + "l": 53 + }, + "hsb": { + "h": 86, + "s": 22, + "b": 60 + }, + "cmyk": { + "c": "45", + "m": "5", + "y": "50", + "k": "25" + } + }, + "names": { + "de": "Blassgrün", + "en": "Pale green", + "fr": "Vert pâle", + "es": "Verde pálido", + "it": "Verde pallido", + "nl": "Bleekgroen" + } + }, + "6022": { + "code": "6022", + "scope": "classic", + "color": { + "hex": "#3A3327", + "websafe": "#333333", + "rgb": { + "r": 58, + "g": 51, + "b": 39 + }, + "hsl": { + "h": 38, + "s": 20, + "l": 19 + }, + "hsb": { + "h": 38, + "s": 33, + "b": 23 + }, + "cmyk": { + "c": "70", + "m": "70", + "y": "100", + "k": "70" + } + }, + "names": { + "de": "Braunoliv", + "en": "Olive drab", + "fr": "Olive brun", + "es": "Oliva parduzco", + "it": "Oliva brunastro", + "nl": "Bruin olijfgroen" + } + }, + "6024": { + "code": "6024", + "scope": "classic", + "color": { + "hex": "#008351", + "websafe": "#009966", + "rgb": { + "r": 0, + "g": 131, + "b": 81 + }, + "hsl": { + "h": 157, + "s": 100, + "l": 26 + }, + "hsb": { + "h": 157, + "s": 100, + "b": 51 + }, + "cmyk": { + "c": "90", + "m": "10", + "y": "80", + "k": "10" + } + }, + "names": { + "de": "Verkehrsgrün", + "en": "Traffic green", + "fr": "Vert signalisation", + "es": "Verde tráfico", + "it": "Verde traffico", + "nl": "Verkeersgroen" + } + }, + "6025": { + "code": "6025", + "scope": "classic", + "color": { + "hex": "#5E6E3B", + "websafe": "#666633", + "rgb": { + "r": 94, + "g": 110, + "b": 59 + }, + "hsl": { + "h": 79, + "s": 30, + "l": 33 + }, + "hsb": { + "h": 79, + "s": 46, + "b": 43 + }, + "cmyk": { + "c": "70", + "m": "25", + "y": "100", + "k": "20" + } + }, + "names": { + "de": "Farngrün", + "en": "Fern green", + "fr": "Vert fougère", + "es": "Verde helecho", + "it": "Verde felce", + "nl": "Varengroen" + } + }, + "6026": { + "code": "6026", + "scope": "classic", + "color": { + "hex": "#005F4E", + "websafe": "#006666", + "rgb": { + "r": 0, + "g": 95, + "b": 78 + }, + "hsl": { + "h": 169, + "s": 100, + "l": 19 + }, + "hsb": { + "h": 169, + "s": 100, + "b": 37 + }, + "cmyk": { + "c": "100", + "m": "10", + "y": "60", + "k": "50" + } + }, + "names": { + "de": "Opalgrün", + "en": "Opal green", + "fr": "Vert opale", + "es": "Verde opalo", + "it": "Verde opale", + "nl": "Opaalgroen" + } + }, + "6027": { + "code": "6027", + "scope": "classic", + "color": { + "hex": "#7EBAB5", + "websafe": "#66cccc", + "rgb": { + "r": 126, + "g": 186, + "b": 181 + }, + "hsl": { + "h": 175, + "s": 30, + "l": 61 + }, + "hsb": { + "h": 175, + "s": 32, + "b": 73 + }, + "cmyk": { + "c": "50", + "m": "0", + "y": "25", + "k": "5" + } + }, + "names": { + "de": "Lichtgrün", + "en": "Light green", + "fr": "Vert clair", + "es": "Verde luminoso", + "it": "Verde chiaro", + "nl": "Lichtgroen" + } + }, + "6028": { + "code": "6028", + "scope": "classic", + "color": { + "hex": "#315442", + "websafe": "#336633", + "rgb": { + "r": 49, + "g": 84, + "b": 66 + }, + "hsl": { + "h": 149, + "s": 26, + "l": 26 + }, + "hsb": { + "h": 149, + "s": 42, + "b": 33 + }, + "cmyk": { + "c": "80", + "m": "35", + "y": "70", + "k": "50" + } + }, + "names": { + "de": "Kieferngrün", + "en": "Pine green", + "fr": "Vert pin", + "es": "Verde pino", + "it": "Verde pino", + "nl": "Pijnboomgroen" + } + }, + "6029": { + "code": "6029", + "scope": "classic", + "color": { + "hex": "#006F3D", + "websafe": "#006633", + "rgb": { + "r": 0, + "g": 111, + "b": 61 + }, + "hsl": { + "h": 153, + "s": 100, + "l": 22 + }, + "hsb": { + "h": 153, + "s": 100, + "b": 44 + }, + "cmyk": { + "c": "100", + "m": "5", + "y": "90", + "k": "30" + } + }, + "names": { + "de": "Minzgrün", + "en": "Mint green", + "fr": "Vert menthe", + "es": "Verde menta", + "it": "Verde menta", + "nl": "Mintgroen" + } + }, + "6032": { + "code": "6032", + "scope": "classic", + "color": { + "hex": "#237F52", + "websafe": "#336666", + "rgb": { + "r": 35, + "g": 127, + "b": 82 + }, + "hsl": { + "h": 151, + "s": 57, + "l": 32 + }, + "hsb": { + "h": 151, + "s": 72, + "b": 50 + }, + "cmyk": { + "c": "90", + "m": "10", + "y": "80", + "k": "10" + } + }, + "names": { + "de": "Signalgrün", + "en": "Signal green", + "fr": "Vert de sécurité", + "es": "Verde señales", + "it": "Verde segnale", + "nl": "Signaalgroen" + } + }, + "6033": { + "code": "6033", + "scope": "classic", + "color": { + "hex": "#46877F", + "websafe": "#339966", + "rgb": { + "r": 70, + "g": 135, + "b": 127 + }, + "hsl": { + "h": 173, + "s": 32, + "l": 40 + }, + "hsb": { + "h": 173, + "s": 48, + "b": 53 + }, + "cmyk": { + "c": "70", + "m": "15", + "y": "50", + "k": "20" + } + }, + "names": { + "de": "Minttürkis", + "en": "Mint turquoise", + "fr": "Turquoise menthe", + "es": "Turquesa menta", + "it": "Turchese menta", + "nl": "Mintturquoise" + } + }, + "6034": { + "code": "6034", + "scope": "classic", + "color": { + "hex": "#7AACAC", + "websafe": "#669999", + "rgb": { + "r": 122, + "g": 172, + "b": 172 + }, + "hsl": { + "h": 180, + "s": 23, + "l": 58 + }, + "hsb": { + "h": 180, + "s": 29, + "b": 67 + }, + "cmyk": { + "c": "45", + "m": "0", + "y": "20", + "k": "20" + } + }, + "names": { + "de": "Pastelltürkis", + "en": "Pastel turquoise", + "fr": "Turquoise pastel", + "es": "Turquesa pastel", + "it": "Turchese pastello", + "nl": "Pastelturquoise" + } + }, + "6035": { + "code": "6035", + "scope": "classic", + "color": { + "hex": "#194D25", + "websafe": "#006633", + "rgb": { + "r": 25, + "g": 77, + "b": 37 + }, + "hsl": { + "h": 134, + "s": 51, + "l": 20 + }, + "hsb": { + "h": 134, + "s": 68, + "b": 30 + }, + "cmyk": { + "c": "90", + "m": "15", + "y": "100", + "k": "60" + } + }, + "names": { + "de": "Perlgrün", + "en": "Pearl green", + "fr": "Vert nacré", + "es": "Verde perlado", + "it": "Verde perlato", + "nl": "Parelmoer donkergroen" + } + }, + "6036": { + "code": "6036", + "scope": "classic", + "color": { + "hex": "#04574B", + "websafe": "#006633", + "rgb": { + "r": 4, + "g": 87, + "b": 75 + }, + "hsl": { + "h": 171, + "s": 91, + "l": 18 + }, + "hsb": { + "h": 171, + "s": 95, + "b": 34 + }, + "cmyk": { + "c": "85", + "m": "10", + "y": "60", + "k": "40" + } + }, + "names": { + "de": "Perlopalgrün", + "en": "Pearl opal green", + "fr": "Vert opal nacré", + "es": "Verde ópalo perlado", + "it": "Verde opalo perlato", + "nl": "Parelmoer lichtgroen" + } + }, + "6037": { + "code": "6037", + "scope": "classic", + "color": { + "hex": "#008B29", + "websafe": "#009933", + "rgb": { + "r": 0, + "g": 139, + "b": 41 + }, + "hsl": { + "h": 138, + "s": 100, + "l": 27 + }, + "hsb": { + "h": 138, + "s": 100, + "b": 55 + }, + "cmyk": { + "c": "85", + "m": "0", + "y": "100", + "k": "0" + } + }, + "names": { + "de": "Reingrün", + "en": "Pure green", + "fr": "Vert pur", + "es": "Verde puro ", + "it": "Verde puro", + "nl": "Zuiver groen " + } + }, + "6038": { + "code": "6038", + "scope": "classic", + "color": { + "hex": "#00B51A", + "websafe": "#00cc33", + "rgb": { + "r": 0, + "g": 181, + "b": 26 + }, + "hsl": { + "h": 129, + "s": 100, + "l": 35 + }, + "hsb": { + "h": 129, + "s": 100, + "b": 71 + }, + "cmyk": { + "c": "70", + "m": "0", + "y": "90", + "k": "0" + } + }, + "names": { + "de": "Leuchtgrün", + "en": "Luminous green", + "fr": "Vert brillant", + "es": "Verde brillante ", + "it": "Verde brillante", + "nl": "Briljantgroen " + } + }, + "7000": { + "code": "7000", + "scope": "classic", + "color": { + "hex": "#7A888E", + "websafe": "#669999", + "rgb": { + "r": 122, + "g": 136, + "b": 142 + }, + "hsl": { + "h": 198, + "s": 8, + "l": 52 + }, + "hsb": { + "h": 198, + "s": 14, + "b": 56 + }, + "cmyk": { + "c": "35", + "m": "5", + "y": "10", + "k": "40" + } + }, + "names": { + "de": "Fehgrau", + "en": "Squirrel grey", + "fr": "Gris petit-gris", + "es": "Gris ardilla", + "it": "Grigio vaio", + "nl": "Pelsgrijs" + } + }, + "7001": { + "code": "7001", + "scope": "classic", + "color": { + "hex": "#8C969D", + "websafe": "#999999", + "rgb": { + "r": 140, + "g": 150, + "b": 157 + }, + "hsl": { + "h": 205, + "s": 8, + "l": 58 + }, + "hsb": { + "h": 205, + "s": 11, + "b": 62 + }, + "cmyk": { + "c": "25", + "m": "10", + "y": "5", + "k": "45" + } + }, + "names": { + "de": "Silbergrau", + "en": "Silver grey", + "fr": "Gris argent", + "es": "Gris plata", + "it": "Grigio argento", + "nl": "Zilvergrijs" + } + }, + "7002": { + "code": "7002", + "scope": "classic", + "color": { + "hex": "#817863", + "websafe": "#996666", + "rgb": { + "r": 129, + "g": 120, + "b": 99 + }, + "hsl": { + "h": 42, + "s": 13, + "l": 45 + }, + "hsb": { + "h": 42, + "s": 23, + "b": 51 + }, + "cmyk": { + "c": "0", + "m": "5", + "y": "40", + "k": "60" + } + }, + "names": { + "de": "Olivgrau", + "en": "Olive grey", + "fr": "Gris olive", + "es": "Gris oliva", + "it": "Grigio olivastro", + "nl": "Olijfgrijs" + } + }, + "7003": { + "code": "7003", + "scope": "classic", + "color": { + "hex": "#7A7669", + "websafe": "#666666", + "rgb": { + "r": 122, + "g": 118, + "b": 105 + }, + "hsl": { + "h": 46, + "s": 7, + "l": 45 + }, + "hsb": { + "h": 46, + "s": 14, + "b": 48 + }, + "cmyk": { + "c": "45", + "m": "35", + "y": "45", + "k": "45" + } + }, + "names": { + "de": "Moosgrau", + "en": "Moss grey", + "fr": "Gris mousse", + "es": "Gris musgo", + "it": "Grigio muschio", + "nl": "Mosgrijs" + } + }, + "7004": { + "code": "7004", + "scope": "classic", + "color": { + "hex": "#9B9B9B", + "websafe": "#999999", + "rgb": { + "r": 155, + "g": 155, + "b": 155 + }, + "hsl": { + "h": 0, + "s": 0, + "l": 61 + }, + "hsb": { + "h": 0, + "s": 0, + "b": 61 + }, + "cmyk": { + "c": "15", + "m": "10", + "y": "5", + "k": "45" + } + }, + "names": { + "de": "Signalgrau", + "en": "Signal grey", + "fr": "Gris de sécurité", + "es": "Gris señales", + "it": "Grigio segnale", + "nl": "Signaalgrijs" + } + }, + "7005": { + "code": "7005", + "scope": "classic", + "color": { + "hex": "#6C6E6B", + "websafe": "#666666", + "rgb": { + "r": 108, + "g": 110, + "b": 107 + }, + "hsl": { + "h": 100, + "s": 1, + "l": 43 + }, + "hsb": { + "h": 100, + "s": 3, + "b": 43 + }, + "cmyk": { + "c": "35", + "m": "20", + "y": "30", + "k": "40" + } + }, + "names": { + "de": "Mausgrau", + "en": "Mouse grey", + "fr": "Gris souris", + "es": "Gris ratón", + "it": "Grigio topo", + "nl": "Muisgrijs" + } + }, + "7006": { + "code": "7006", + "scope": "classic", + "color": { + "hex": "#766A5E", + "websafe": "#666666", + "rgb": { + "r": 118, + "g": 106, + "b": 94 + }, + "hsl": { + "h": 30, + "s": 11, + "l": 42 + }, + "hsb": { + "h": 30, + "s": 20, + "b": 46 + }, + "cmyk": { + "c": "40", + "m": "40", + "y": "50", + "k": "40" + } + }, + "names": { + "de": "Beigegrau", + "en": "Beige grey", + "fr": "Gris beige", + "es": "Gris beige", + "it": "Grigio beige", + "nl": "Beigegrijs" + } + }, + "7008": { + "code": "7008", + "scope": "classic", + "color": { + "hex": "#745E3D", + "websafe": "#666633", + "rgb": { + "r": 116, + "g": 94, + "b": 61 + }, + "hsl": { + "h": 36, + "s": 31, + "l": 35 + }, + "hsb": { + "h": 36, + "s": 47, + "b": 45 + }, + "cmyk": { + "c": "40", + "m": "50", + "y": "90", + "k": "40" + } + }, + "names": { + "de": "Khakigrau", + "en": "Khaki grey", + "fr": "Gris kaki", + "es": "Gris caqui", + "it": "Grigio kaki", + "nl": "Kakigrijs" + } + }, + "7009": { + "code": "7009", + "scope": "classic", + "color": { + "hex": "#5D6058", + "websafe": "#666666", + "rgb": { + "r": 93, + "g": 96, + "b": 88 + }, + "hsl": { + "h": 83, + "s": 4, + "l": 36 + }, + "hsb": { + "h": 83, + "s": 8, + "b": 38 + }, + "cmyk": { + "c": "50", + "m": "35", + "y": "50", + "k": "50" + } + }, + "names": { + "de": "Grüngrau", + "en": "Green grey", + "fr": "Gris vert", + "es": "Gris verdoso", + "it": "Grigio verdastro", + "nl": "Groengrijs" + } + }, + "7010": { + "code": "7010", + "scope": "classic", + "color": { + "hex": "#585C56", + "websafe": "#666666", + "rgb": { + "r": 88, + "g": 92, + "b": 86 + }, + "hsl": { + "h": 100, + "s": 3, + "l": 35 + }, + "hsb": { + "h": 100, + "s": 7, + "b": 36 + }, + "cmyk": { + "c": "50", + "m": "30", + "y": "45", + "k": "60" + } + }, + "names": { + "de": "Zeltgrau", + "en": "Tarpaulin grey", + "fr": "Gris tente", + "es": "Gris lona", + "it": "Grigio tenda", + "nl": "Zeildoekgrijs" + } + }, + "7011": { + "code": "7011", + "scope": "classic", + "color": { + "hex": "#52595D", + "websafe": "#666666", + "rgb": { + "r": 82, + "g": 89, + "b": 93 + }, + "hsl": { + "h": 202, + "s": 6, + "l": 34 + }, + "hsb": { + "h": 202, + "s": 12, + "b": 36 + }, + "cmyk": { + "c": "40", + "m": "15", + "y": "15", + "k": "70" + } + }, + "names": { + "de": "Eisengrau", + "en": "Iron grey", + "fr": "Gris fer", + "es": "Gris hierro", + "it": "Grigio ferro", + "nl": "IJzergrijs" + } + }, + "7012": { + "code": "7012", + "scope": "classic", + "color": { + "hex": "#575D5E", + "websafe": "#666666", + "rgb": { + "r": 87, + "g": 93, + "b": 94 + }, + "hsl": { + "h": 189, + "s": 4, + "l": 35 + }, + "hsb": { + "h": 189, + "s": 7, + "b": 37 + }, + "cmyk": { + "c": "30", + "m": "10", + "y": "10", + "k": "70" + } + }, + "names": { + "de": "Basaltgrau", + "en": "Basalt grey", + "fr": "Gris basalte", + "es": "Gris basalto", + "it": "Grigio basalto", + "nl": "Bazaltgrijs" + } + }, + "7013": { + "code": "7013", + "scope": "classic", + "color": { + "hex": "#575044", + "websafe": "#666633", + "rgb": { + "r": 87, + "g": 80, + "b": 68 + }, + "hsl": { + "h": 38, + "s": 12, + "l": 30 + }, + "hsb": { + "h": 38, + "s": 22, + "b": 34 + }, + "cmyk": { + "c": "30", + "m": "35", + "y": "50", + "k": "70" + } + }, + "names": { + "de": "Braungrau", + "en": "Brown grey", + "fr": "Gris brun", + "es": "Gris parduzco", + "it": "Grigio brunastro", + "nl": "Bruingrijs" + } + }, + "7015": { + "code": "7015", + "scope": "classic", + "color": { + "hex": "#4F5358", + "websafe": "#666666", + "rgb": { + "r": 79, + "g": 83, + "b": 88 + }, + "hsl": { + "h": 213, + "s": 5, + "l": 33 + }, + "hsb": { + "h": 213, + "s": 10, + "b": 35 + }, + "cmyk": { + "c": "45", + "m": "30", + "y": "15", + "k": "70" + } + }, + "names": { + "de": "Schiefergrau", + "en": "Slate grey", + "fr": "Gris ardoise", + "es": "Gris pizarra", + "it": "Grigio ardesia", + "nl": "Leigrijs" + } + }, + "7016": { + "code": "7016", + "scope": "classic", + "color": { + "hex": "#383E42", + "websafe": "#333333", + "rgb": { + "r": 56, + "g": 62, + "b": 66 + }, + "hsl": { + "h": 204, + "s": 8, + "l": 24 + }, + "hsb": { + "h": 204, + "s": 15, + "b": 26 + }, + "cmyk": { + "c": "60", + "m": "30", + "y": "20", + "k": "80" + } + }, + "names": { + "de": "Anthrazitgrau", + "en": "Anthracite grey", + "fr": "Gris anthracite", + "es": "Gris antracita", + "it": "Grigio antracite", + "nl": "Antracietgrijs" + } + }, + "7021": { + "code": "7021", + "scope": "classic", + "color": { + "hex": "#2F3234", + "websafe": "#333333", + "rgb": { + "r": 47, + "g": 50, + "b": 52 + }, + "hsl": { + "h": 204, + "s": 5, + "l": 19 + }, + "hsb": { + "h": 204, + "s": 10, + "b": 20 + }, + "cmyk": { + "c": "60", + "m": "35", + "y": "30", + "k": "90" + } + }, + "names": { + "de": "Schwarzgrau", + "en": "Black grey", + "fr": "Gris noir", + "es": "Gris negruzco", + "it": "Grigio nerastro", + "nl": "Zwartgrijs" + } + }, + "7022": { + "code": "7022", + "scope": "classic", + "color": { + "hex": "#4C4A44", + "websafe": "#333333", + "rgb": { + "r": 76, + "g": 74, + "b": 68 + }, + "hsl": { + "h": 45, + "s": 6, + "l": 28 + }, + "hsb": { + "h": 45, + "s": 11, + "b": 30 + }, + "cmyk": { + "c": "40", + "m": "30", + "y": "40", + "k": "80" + } + }, + "names": { + "de": "Umbragrau", + "en": "Umbra grey", + "fr": "Gris terre d’ombre", + "es": "Gris sombra", + "it": "Grigio ombra", + "nl": "Ombergrijs" + } + }, + "7023": { + "code": "7023", + "scope": "classic", + "color": { + "hex": "#808076", + "websafe": "#999966", + "rgb": { + "r": 128, + "g": 128, + "b": 118 + }, + "hsl": { + "h": 60, + "s": 4, + "l": 48 + }, + "hsb": { + "h": 60, + "s": 8, + "b": 50 + }, + "cmyk": { + "c": "5", + "m": "0", + "y": "20", + "k": "50" + } + }, + "names": { + "de": "Betongrau", + "en": "Concrete grey", + "fr": "Gris béton", + "es": "Gris hormigón", + "it": "Grigio calcestruzzo", + "nl": "Betongrijs" + } + }, + "7024": { + "code": "7024", + "scope": "classic", + "color": { + "hex": "#45494E", + "websafe": "#333366", + "rgb": { + "r": 69, + "g": 73, + "b": 78 + }, + "hsl": { + "h": 213, + "s": 6, + "l": 29 + }, + "hsb": { + "h": 213, + "s": 12, + "b": 31 + }, + "cmyk": { + "c": "30", + "m": "20", + "y": "0", + "k": "80" + } + }, + "names": { + "de": "Graphitgrau", + "en": "Graphite grey", + "fr": "Gris graphite", + "es": "Gris grafita", + "it": "Grigio grafite", + "nl": "Grafietgrijs" + } + }, + "7026": { + "code": "7026", + "scope": "classic", + "color": { + "hex": "#374345", + "websafe": "#333333", + "rgb": { + "r": 55, + "g": 67, + "b": 69 + }, + "hsl": { + "h": 189, + "s": 11, + "l": 24 + }, + "hsb": { + "h": 189, + "s": 20, + "b": 27 + }, + "cmyk": { + "c": "50", + "m": "15", + "y": "15", + "k": "80" + } + }, + "names": { + "de": "Granitgrau", + "en": "Granite grey", + "fr": "Gris granit", + "es": "Gris granito", + "it": "Grigio granito", + "nl": "Granietgrijs" + } + }, + "7030": { + "code": "7030", + "scope": "classic", + "color": { + "hex": "#928E85", + "websafe": "#999999", + "rgb": { + "r": 146, + "g": 142, + "b": 133 + }, + "hsl": { + "h": 42, + "s": 6, + "l": 55 + }, + "hsb": { + "h": 42, + "s": 9, + "b": 57 + }, + "cmyk": { + "c": "5", + "m": "5", + "y": "15", + "k": "50" + } + }, + "names": { + "de": "Steingrau", + "en": "Stone grey", + "fr": "Gris pierre", + "es": "Gris piedra", + "it": "Grigio pietra", + "nl": "Steengrijs" + } + }, + "7031": { + "code": "7031", + "scope": "classic", + "color": { + "hex": "#5B686D", + "websafe": "#666666", + "rgb": { + "r": 91, + "g": 104, + "b": 109 + }, + "hsl": { + "h": 197, + "s": 9, + "l": 39 + }, + "hsb": { + "h": 197, + "s": 17, + "b": 43 + }, + "cmyk": { + "c": "50", + "m": "20", + "y": "15", + "k": "60" + } + }, + "names": { + "de": "Blaugrau", + "en": "Blue grey", + "fr": "Gris bleu", + "es": "Gris azulado", + "it": "Grigio bluastro", + "nl": "Blauwgrijs" + } + }, + "7032": { + "code": "7032", + "scope": "classic", + "color": { + "hex": "#B5B0A1", + "websafe": "#cc9999", + "rgb": { + "r": 181, + "g": 176, + "b": 161 + }, + "hsl": { + "h": 45, + "s": 12, + "l": 67 + }, + "hsb": { + "h": 45, + "s": 11, + "b": 71 + }, + "cmyk": { + "c": "15", + "m": "10", + "y": "25", + "k": "20" + } + }, + "names": { + "de": "Kieselgrau", + "en": "Pebble grey", + "fr": "Gris silex", + "es": "Gris guijarro", + "it": "Grigio ghiaia", + "nl": "Kiezelgrijs" + } + }, + "7033": { + "code": "7033", + "scope": "classic", + "color": { + "hex": "#7F8274", + "websafe": "#669966", + "rgb": { + "r": 127, + "g": 130, + "b": 116 + }, + "hsl": { + "h": 73, + "s": 6, + "l": 48 + }, + "hsb": { + "h": 73, + "s": 11, + "b": 51 + }, + "cmyk": { + "c": "25", + "m": "10", + "y": "30", + "k": "40" + } + }, + "names": { + "de": "Zementgrau", + "en": "Cement grey", + "fr": "Gris ciment", + "es": "Gris cemento", + "it": "Grigio cemento", + "nl": "Cementgrijs" + } + }, + "7034": { + "code": "7034", + "scope": "classic", + "color": { + "hex": "#92886F", + "websafe": "#999966", + "rgb": { + "r": 146, + "g": 136, + "b": 111 + }, + "hsl": { + "h": 43, + "s": 14, + "l": 50 + }, + "hsb": { + "h": 43, + "s": 24, + "b": 57 + }, + "cmyk": { + "c": "15", + "m": "20", + "y": "40", + "k": "40" + } + }, + "names": { + "de": "Gelbgrau", + "en": "Yellow grey", + "fr": "Gris jaune", + "es": "Gris amarillento", + "it": "Grigio giallastro", + "nl": "Geelgrijs" + } + }, + "7035": { + "code": "7035", + "scope": "classic", + "color": { + "hex": "#C5C7C4", + "websafe": "#cccccc", + "rgb": { + "r": 197, + "g": 199, + "b": 196 + }, + "hsl": { + "h": 100, + "s": 3, + "l": 77 + }, + "hsb": { + "h": 100, + "s": 2, + "b": 78 + }, + "cmyk": { + "c": "20", + "m": "10", + "y": "15", + "k": "5" + } + }, + "names": { + "de": "Lichtgrau", + "en": "Light grey", + "fr": "Gris clair", + "es": "Gris luminoso", + "it": "Grigio luce", + "nl": "Lichtgrijs" + } + }, + "7036": { + "code": "7036", + "scope": "classic", + "color": { + "hex": "#979392", + "websafe": "#999999", + "rgb": { + "r": 151, + "g": 147, + "b": 146 + }, + "hsl": { + "h": 12, + "s": 2, + "l": 58 + }, + "hsb": { + "h": 12, + "s": 3, + "b": 59 + }, + "cmyk": { + "c": "35", + "m": "30", + "y": "30", + "k": "10" + } + }, + "names": { + "de": "Platingrau", + "en": "Platinum grey", + "fr": "Gris platine", + "es": "Gris platino", + "it": "Grigio platino", + "nl": "Platinagrijs" + } + }, + "7037": { + "code": "7037", + "scope": "classic", + "color": { + "hex": "#7A7B7A", + "websafe": "#666666", + "rgb": { + "r": 122, + "g": 123, + "b": 122 + }, + "hsl": { + "h": 120, + "s": 0, + "l": 48 + }, + "hsb": { + "h": 120, + "s": 1, + "b": 48 + }, + "cmyk": { + "c": "30", + "m": "20", + "y": "20", + "k": "40" + } + }, + "names": { + "de": "Staubgrau", + "en": "Dusty grey", + "fr": "Gris poussière", + "es": "Gris polvo", + "it": "Grigio polvere", + "nl": "Stofgrijs" + } + }, + "7038": { + "code": "7038", + "scope": "classic", + "color": { + "hex": "#B0B0A9", + "websafe": "#999999", + "rgb": { + "r": 176, + "g": 176, + "b": 169 + }, + "hsl": { + "h": 60, + "s": 4, + "l": 68 + }, + "hsb": { + "h": 60, + "s": 4, + "b": 69 + }, + "cmyk": { + "c": "5", + "m": "0", + "y": "10", + "k": "30" + } + }, + "names": { + "de": "Achatgrau", + "en": "Agate grey", + "fr": "Gris agate", + "es": "Gris ágata", + "it": "Grigio agata", + "nl": "Agaatgrijs" + } + }, + "7039": { + "code": "7039", + "scope": "classic", + "color": { + "hex": "#6B665E", + "websafe": "#666666", + "rgb": { + "r": 107, + "g": 102, + "b": 94 + }, + "hsl": { + "h": 37, + "s": 6, + "l": 39 + }, + "hsb": { + "h": 37, + "s": 12, + "b": 42 + }, + "cmyk": { + "c": "25", + "m": "20", + "y": "30", + "k": "60" + } + }, + "names": { + "de": "Quarzgrau", + "en": "Quartz grey", + "fr": "Gris quartz", + "es": "Gris cuarzo", + "it": "Grigio quarzo", + "nl": "Kwartsgrijs" + } + }, + "7040": { + "code": "7040", + "scope": "classic", + "color": { + "hex": "#989EA1", + "websafe": "#999999", + "rgb": { + "r": 152, + "g": 158, + "b": 161 + }, + "hsl": { + "h": 200, + "s": 5, + "l": 61 + }, + "hsb": { + "h": 200, + "s": 6, + "b": 63 + }, + "cmyk": { + "c": "20", + "m": "10", + "y": "5", + "k": "35" + } + }, + "names": { + "de": "Fenstergrau", + "en": "Window grey", + "fr": "Gris fenêtre", + "es": "Gris ventana", + "it": "Grigio finestra", + "nl": "Venstergrijs" + } + }, + "7042": { + "code": "7042", + "scope": "classic", + "color": { + "hex": "#8E9291", + "websafe": "#999999", + "rgb": { + "r": 142, + "g": 146, + "b": 145 + }, + "hsl": { + "h": 165, + "s": 2, + "l": 56 + }, + "hsb": { + "h": 165, + "s": 3, + "b": 57 + }, + "cmyk": { + "c": "30", + "m": "20", + "y": "30", + "k": "30" + } + }, + "names": { + "de": "Verkehrsgrau A", + "en": "Traffic grey A", + "fr": "Gris signalisation A", + "es": "Gris tráfico A", + "it": "Grigio traffico A", + "nl": "Verkeersgrijs A" + } + }, + "7043": { + "code": "7043", + "scope": "classic", + "color": { + "hex": "#4F5250", + "websafe": "#666666", + "rgb": { + "r": 79, + "g": 82, + "b": 80 + }, + "hsl": { + "h": 140, + "s": 2, + "l": 32 + }, + "hsb": { + "h": 140, + "s": 4, + "b": 32 + }, + "cmyk": { + "c": "20", + "m": "5", + "y": "0", + "k": "80" + } + }, + "names": { + "de": "Verkehrsgrau B", + "en": "Traffic grey B", + "fr": "Gris signalisation B", + "es": "Gris tráfico B", + "it": "Grigio traffico B", + "nl": "Verkeersgrijs B" + } + }, + "7044": { + "code": "7044", + "scope": "classic", + "color": { + "hex": "#B7B3A8", + "websafe": "#cccc99", + "rgb": { + "r": 183, + "g": 179, + "b": 168 + }, + "hsl": { + "h": 44, + "s": 9, + "l": 69 + }, + "hsb": { + "h": 44, + "s": 8, + "b": 72 + }, + "cmyk": { + "c": "20", + "m": "15", + "y": "25", + "k": "15" + } + }, + "names": { + "de": "Seidengrau", + "en": "Silk grey", + "fr": "Gris soie", + "es": "Gris seda", + "it": "Grigio seta", + "nl": "Zijdegrijs" + } + }, + "7045": { + "code": "7045", + "scope": "classic", + "color": { + "hex": "#8D9295", + "websafe": "#999999", + "rgb": { + "r": 141, + "g": 146, + "b": 149 + }, + "hsl": { + "h": 203, + "s": 4, + "l": 57 + }, + "hsb": { + "h": 203, + "s": 5, + "b": 58 + }, + "cmyk": { + "c": "5", + "m": "0", + "y": "0", + "k": "45" + } + }, + "names": { + "de": "Telegrau 1", + "en": "Telegrey 1", + "fr": "Telegris 1", + "es": "Gris tele 1", + "it": "Grigio tele 1", + "nl": "Telegrijs 1" + } + }, + "7046": { + "code": "7046", + "scope": "classic", + "color": { + "hex": "#7F868A", + "websafe": "#669999", + "rgb": { + "r": 127, + "g": 134, + "b": 138 + }, + "hsl": { + "h": 202, + "s": 4, + "l": 52 + }, + "hsb": { + "h": 202, + "s": 8, + "b": 54 + }, + "cmyk": { + "c": "30", + "m": "20", + "y": "20", + "k": "40" + } + }, + "names": { + "de": "Telegrau 2", + "en": "Telegrey 2", + "fr": "Telegris 2", + "es": "Gris tele 2", + "it": "Grigio tele 2", + "nl": "Telegrijs 2" + } + }, + "7047": { + "code": "7047", + "scope": "classic", + "color": { + "hex": "#C8C8C7", + "websafe": "#cccccc", + "rgb": { + "r": 200, + "g": 200, + "b": 199 + }, + "hsl": { + "h": 60, + "s": 1, + "l": 78 + }, + "hsb": { + "h": 60, + "s": 0, + "b": 78 + }, + "cmyk": { + "c": "5", + "m": "5", + "y": "5", + "k": "20" + } + }, + "names": { + "de": "Telegrau 4", + "en": "Telegrey 4", + "fr": "Telegris 4", + "es": "Gris tele 4", + "it": "Grigio tele 4", + "nl": "Telegrijs 4" + } + }, + "7048": { + "code": "7048", + "scope": "classic", + "color": { + "hex": "#817B73", + "websafe": "#996666", + "rgb": { + "r": 129, + "g": 123, + "b": 115 + }, + "hsl": { + "h": 34, + "s": 6, + "l": 48 + }, + "hsb": { + "h": 34, + "s": 11, + "b": 51 + }, + "cmyk": { + "c": "15", + "m": "15", + "y": "25", + "k": "60" + } + }, + "names": { + "de": "Perlmausgrau", + "en": "Pearl mouse grey", + "fr": "Gris souris nacré", + "es": "Gris musgo perlado", + "it": "Grigio topo perlato", + "nl": "Parelmoer muisgrijs" + } + }, + "8000": { + "code": "8000", + "scope": "classic", + "color": { + "hex": "#89693E", + "websafe": "#996633", + "rgb": { + "r": 137, + "g": 105, + "b": 62 + }, + "hsl": { + "h": 34, + "s": 38, + "l": 39 + }, + "hsb": { + "h": 34, + "s": 55, + "b": 54 + }, + "cmyk": { + "c": "50", + "m": "60", + "y": "90", + "k": "0" + } + }, + "names": { + "de": "Grünbraun", + "en": "Green brown", + "fr": "Brun vert", + "es": "Pardo verdoso", + "it": "Marrone verdastro", + "nl": "Groenbruin" + } + }, + "8001": { + "code": "8001", + "scope": "classic", + "color": { + "hex": "#9D622B", + "websafe": "#996633", + "rgb": { + "r": 157, + "g": 98, + "b": 43 + }, + "hsl": { + "h": 29, + "s": 57, + "l": 39 + }, + "hsb": { + "h": 29, + "s": 73, + "b": 62 + }, + "cmyk": { + "c": "30", + "m": "60", + "y": "90", + "k": "10" + } + }, + "names": { + "de": "Ockerbraun", + "en": "Ochre brown", + "fr": "Brun terre de Sienne", + "es": "Pardo ocre", + "it": "Marrone ocra", + "nl": "Okerbruin" + } + }, + "8002": { + "code": "8002", + "scope": "classic", + "color": { + "hex": "#794D3E", + "websafe": "#666633", + "rgb": { + "r": 121, + "g": 77, + "b": 62 + }, + "hsl": { + "h": 15, + "s": 32, + "l": 36 + }, + "hsb": { + "h": 15, + "s": 49, + "b": 47 + }, + "cmyk": { + "c": "30", + "m": "70", + "y": "70", + "k": "50" + } + }, + "names": { + "de": "Signalbraun", + "en": "Signal brown", + "fr": "Brun de sécurité", + "es": "Marrón señales", + "it": "Marrone segnale", + "nl": "Signaalbruin" + } + }, + "8003": { + "code": "8003", + "scope": "classic", + "color": { + "hex": "#7E4B26", + "websafe": "#663333", + "rgb": { + "r": 126, + "g": 75, + "b": 38 + }, + "hsl": { + "h": 25, + "s": 54, + "l": 32 + }, + "hsb": { + "h": 25, + "s": 70, + "b": 49 + }, + "cmyk": { + "c": "0", + "m": "60", + "y": "80", + "k": "60" + } + }, + "names": { + "de": "Lehmbraun", + "en": "Clay brown", + "fr": "Brun argile", + "es": "Pardo arcilla", + "it": "Marrone fango", + "nl": "Leembruin" + } + }, + "8004": { + "code": "8004", + "scope": "classic", + "color": { + "hex": "#8D4931", + "websafe": "#993333", + "rgb": { + "r": 141, + "g": 73, + "b": 49 + }, + "hsl": { + "h": 16, + "s": 48, + "l": 37 + }, + "hsb": { + "h": 16, + "s": 65, + "b": 55 + }, + "cmyk": { + "c": "45", + "m": "80", + "y": "100", + "k": "10" + } + }, + "names": { + "de": "Kupferbraun", + "en": "Copper brown", + "fr": "Brun cuivré", + "es": "Pardo cobre", + "it": "Marrone rame", + "nl": "Koperbruin" + } + }, + "8007": { + "code": "8007", + "scope": "classic", + "color": { + "hex": "#70452A", + "websafe": "#663333", + "rgb": { + "r": 112, + "g": 69, + "b": 42 + }, + "hsl": { + "h": 23, + "s": 45, + "l": 30 + }, + "hsb": { + "h": 23, + "s": 63, + "b": 44 + }, + "cmyk": { + "c": "40", + "m": "70", + "y": "100", + "k": "50" + } + }, + "names": { + "de": "Rehbraun", + "en": "Fawn brown", + "fr": "Brun fauve", + "es": "Pardo corzo", + "it": "Marrone capriolo", + "nl": "Reebruin" + } + }, + "8008": { + "code": "8008", + "scope": "classic", + "color": { + "hex": "#724A25", + "websafe": "#663333", + "rgb": { + "r": 114, + "g": 74, + "b": 37 + }, + "hsl": { + "h": 29, + "s": 51, + "l": 30 + }, + "hsb": { + "h": 29, + "s": 68, + "b": 45 + }, + "cmyk": { + "c": "15", + "m": "50", + "y": "90", + "k": "60" + } + }, + "names": { + "de": "Olivbraun", + "en": "Olive brown", + "fr": "Brun olive", + "es": "Pardo oliva", + "it": "Marrone oliva", + "nl": "Olijfbruin" + } + }, + "8011": { + "code": "8011", + "scope": "classic", + "color": { + "hex": "#5A3826", + "websafe": "#663333", + "rgb": { + "r": 90, + "g": 56, + "b": 38 + }, + "hsl": { + "h": 21, + "s": 41, + "l": 25 + }, + "hsb": { + "h": 21, + "s": 58, + "b": 35 + }, + "cmyk": { + "c": "30", + "m": "70", + "y": "90", + "k": "70" + } + }, + "names": { + "de": "Nussbraun", + "en": "Nut brown", + "fr": "Brun noisette", + "es": "Pardo nuez", + "it": "Marrone noce", + "nl": "Notenbruin" + } + }, + "8012": { + "code": "8012", + "scope": "classic", + "color": { + "hex": "#66332B", + "websafe": "#663333", + "rgb": { + "r": 102, + "g": 51, + "b": 43 + }, + "hsl": { + "h": 8, + "s": 41, + "l": 28 + }, + "hsb": { + "h": 8, + "s": 58, + "b": 40 + }, + "cmyk": { + "c": "40", + "m": "90", + "y": "100", + "k": "50" + } + }, + "names": { + "de": "Rotbraun", + "en": "Red brown", + "fr": "Brun rouge", + "es": "Pardo rojo", + "it": "Marrone rossiccio", + "nl": "Roodbruin" + } + }, + "8014": { + "code": "8014", + "scope": "classic", + "color": { + "hex": "#4A3526", + "websafe": "#333333", + "rgb": { + "r": 74, + "g": 53, + "b": 38 + }, + "hsl": { + "h": 25, + "s": 32, + "l": 22 + }, + "hsb": { + "h": 25, + "s": 49, + "b": 29 + }, + "cmyk": { + "c": "30", + "m": "60", + "y": "70", + "k": "80" + } + }, + "names": { + "de": "Sepiabraun", + "en": "Sepia brown", + "fr": "Brun sépia", + "es": "Sepia", + "it": "Marrone seppia", + "nl": "Sepiabruin" + } + }, + "8015": { + "code": "8015", + "scope": "classic", + "color": { + "hex": "#5E2F26", + "websafe": "#663333", + "rgb": { + "r": 94, + "g": 47, + "b": 38 + }, + "hsl": { + "h": 10, + "s": 42, + "l": 26 + }, + "hsb": { + "h": 10, + "s": 60, + "b": 37 + }, + "cmyk": { + "c": "50", + "m": "100", + "y": "100", + "k": "50" + } + }, + "names": { + "de": "Kastanienbraun", + "en": "Chestnut brown", + "fr": "Marron", + "es": "Castaño", + "it": "Marrone castagna", + "nl": "Kastanjebruin" + } + }, + "8016": { + "code": "8016", + "scope": "classic", + "color": { + "hex": "#4C2B20", + "websafe": "#333333", + "rgb": { + "r": 76, + "g": 43, + "b": 32 + }, + "hsl": { + "h": 15, + "s": 41, + "l": 21 + }, + "hsb": { + "h": 15, + "s": 58, + "b": 30 + }, + "cmyk": { + "c": "40", + "m": "80", + "y": "70", + "k": "70" + } + }, + "names": { + "de": "Mahagonibraun", + "en": "Mahogany brown", + "fr": "Brun acajou", + "es": "Caoba", + "it": "Marrone mogano", + "nl": "Mahoniebruin" + } + }, + "8017": { + "code": "8017", + "scope": "classic", + "color": { + "hex": "#442F29", + "websafe": "#333333", + "rgb": { + "r": 68, + "g": 47, + "b": 41 + }, + "hsl": { + "h": 13, + "s": 25, + "l": 21 + }, + "hsb": { + "h": 13, + "s": 40, + "b": 27 + }, + "cmyk": { + "c": "30", + "m": "70", + "y": "60", + "k": "80" + } + }, + "names": { + "de": "Schokoladenbraun", + "en": "Chocolate brown", + "fr": "Brun chocolat", + "es": "Chocolate", + "it": "Marrone cioccolata", + "nl": "Chocoladebruin" + } + }, + "8019": { + "code": "8019", + "scope": "classic", + "color": { + "hex": "#3D3635", + "websafe": "#333333", + "rgb": { + "r": 61, + "g": 54, + "b": 53 + }, + "hsl": { + "h": 7, + "s": 7, + "l": 22 + }, + "hsb": { + "h": 7, + "s": 13, + "b": 24 + }, + "cmyk": { + "c": "50", + "m": "50", + "y": "40", + "k": "80" + } + }, + "names": { + "de": "Graubraun", + "en": "Grey brown", + "fr": "Brun gris", + "es": "Pardo grisáceo", + "it": "Marrone grigiastro", + "nl": "Grijsbruin" + } + }, + "8022": { + "code": "8022", + "scope": "classic", + "color": { + "hex": "#1A1718", + "websafe": "#330000", + "rgb": { + "r": 26, + "g": 23, + "b": 24 + }, + "hsl": { + "h": 340, + "s": 6, + "l": 10 + }, + "hsb": { + "h": 340, + "s": 12, + "b": 10 + }, + "cmyk": { + "c": "100", + "m": "50", + "y": "30", + "k": "100" + } + }, + "names": { + "de": "Schwarzbraun", + "en": "Black brown", + "fr": "Brun noir", + "es": "Pardo negruzco", + "it": "Marrone nerastro", + "nl": "Zwartbruin" + } + }, + "8023": { + "code": "8023", + "scope": "classic", + "color": { + "hex": "#A45729", + "websafe": "#996633", + "rgb": { + "r": 164, + "g": 87, + "b": 41 + }, + "hsl": { + "h": 22, + "s": 60, + "l": 40 + }, + "hsb": { + "h": 22, + "s": 75, + "b": 64 + }, + "cmyk": { + "c": "25", + "m": "75", + "y": "100", + "k": "10" + } + }, + "names": { + "de": "Orangebraun", + "en": "Orange brown", + "fr": "Brun orangé", + "es": "Pardo anaranjado", + "it": "Marrone arancio", + "nl": "Oranjebruin" + } + }, + "8024": { + "code": "8024", + "scope": "classic", + "color": { + "hex": "#795038", + "websafe": "#666633", + "rgb": { + "r": 121, + "g": 80, + "b": 56 + }, + "hsl": { + "h": 22, + "s": 37, + "l": 35 + }, + "hsb": { + "h": 22, + "s": 54, + "b": 47 + }, + "cmyk": { + "c": "25", + "m": "60", + "y": "70", + "k": "50" + } + }, + "names": { + "de": "Beigebraun", + "en": "Beige brown", + "fr": "Brun beige", + "es": "Pardo beige", + "it": "Marrone beige", + "nl": "Beigebruin" + } + }, + "8025": { + "code": "8025", + "scope": "classic", + "color": { + "hex": "#755847", + "websafe": "#666633", + "rgb": { + "r": 117, + "g": 88, + "b": 71 + }, + "hsl": { + "h": 22, + "s": 24, + "l": 37 + }, + "hsb": { + "h": 22, + "s": 39, + "b": 46 + }, + "cmyk": { + "c": "40", + "m": "60", + "y": "60", + "k": "45" + } + }, + "names": { + "de": "Blassbraun", + "en": "Pale brown", + "fr": "Brun pâle", + "es": "Pardo pálido", + "it": "Marrone pallido", + "nl": "Bleekbruin" + } + }, + "8028": { + "code": "8028", + "scope": "classic", + "color": { + "hex": "#513A2A", + "websafe": "#663333", + "rgb": { + "r": 81, + "g": 58, + "b": 42 + }, + "hsl": { + "h": 25, + "s": 32, + "l": 24 + }, + "hsb": { + "h": 25, + "s": 48, + "b": 32 + }, + "cmyk": { + "c": "60", + "m": "70", + "y": "90", + "k": "60" + } + }, + "names": { + "de": "Terrabraun", + "en": "Terra brown", + "fr": "Brun terre", + "es": "Marrón tierra", + "it": "Marrone terra", + "nl": "Terrabruin" + } + }, + "8029": { + "code": "8029", + "scope": "classic", + "color": { + "hex": "#7F4031", + "websafe": "#663333", + "rgb": { + "r": 127, + "g": 64, + "b": 49 + }, + "hsl": { + "h": 12, + "s": 44, + "l": 35 + }, + "hsb": { + "h": 12, + "s": 61, + "b": 50 + }, + "cmyk": { + "c": "30", + "m": "80", + "y": "80", + "k": "45" + } + }, + "names": { + "de": "Perlkupfer", + "en": "Pearl copper", + "fr": "Cuivre nacré", + "es": "Cobre perlado", + "it": "Rame perlato", + "nl": "Parelmoer koper" + } + }, + "9001": { + "code": "9001", + "scope": "classic", + "color": { + "hex": "#E9E0D2", + "websafe": "#ffcccc", + "rgb": { + "r": 233, + "g": 224, + "b": 210 + }, + "hsl": { + "h": 37, + "s": 34, + "l": 87 + }, + "hsb": { + "h": 37, + "s": 10, + "b": 91 + }, + "cmyk": { + "c": "5", + "m": "5", + "y": "15", + "k": "0" + } + }, + "names": { + "de": "Cremeweiß", + "en": "Cream", + "fr": "Blanc crème", + "es": "Blanco crema", + "it": "Bianco crema", + "nl": "Crèmewit" + } + }, + "9002": { + "code": "9002", + "scope": "classic", + "color": { + "hex": "#D7D5CB", + "websafe": "#cccccc", + "rgb": { + "r": 215, + "g": 213, + "b": 203 + }, + "hsl": { + "h": 50, + "s": 13, + "l": 82 + }, + "hsb": { + "h": 50, + "s": 6, + "b": 84 + }, + "cmyk": { + "c": "0", + "m": "0", + "y": "10", + "k": "10" + } + }, + "names": { + "de": "Grauweiß", + "en": "Grey white", + "fr": "Blanc gris", + "es": "Blanco grisáceo", + "it": "Bianco grigiastro", + "nl": "Grijswit" + } + }, + "9003": { + "code": "9003", + "scope": "classic", + "color": { + "hex": "#ECECE7", + "websafe": "#ffffff", + "rgb": { + "r": 236, + "g": 236, + "b": 231 + }, + "hsl": { + "h": 60, + "s": 12, + "l": 92 + }, + "hsb": { + "h": 60, + "s": 2, + "b": 93 + }, + "cmyk": { + "c": "0", + "m": "0", + "y": "0", + "k": "0" + } + }, + "names": { + "de": "Signalweiß", + "en": "Signal white", + "fr": "Blanc de sécurité", + "es": "Blanco señales", + "it": "Bianco segnale", + "nl": "Signaalwit" + } + }, + "9004": { + "code": "9004", + "scope": "classic", + "color": { + "hex": "#2B2B2C", + "websafe": "#333333", + "rgb": { + "r": 43, + "g": 43, + "b": 44 + }, + "hsl": { + "h": 240, + "s": 1, + "l": 17 + }, + "hsb": { + "h": 240, + "s": 2, + "b": 17 + }, + "cmyk": { + "c": "35", + "m": "50", + "y": "40", + "k": "90" + } + }, + "names": { + "de": "Signalschwarz", + "en": "Signal black", + "fr": "Noir de sécurité", + "es": "Negro señales", + "it": "Nero segnale", + "nl": "Signaalzwart" + } + }, + "9005": { + "code": "9005", + "scope": "classic", + "color": { + "hex": "#0E0E10", + "websafe": "#000000", + "rgb": { + "r": 14, + "g": 14, + "b": 16 + }, + "hsl": { + "h": 240, + "s": 7, + "l": 6 + }, + "hsb": { + "h": 240, + "s": 13, + "b": 6 + }, + "cmyk": { + "c": "100", + "m": "40", + "y": "50", + "k": "90" + } + }, + "names": { + "de": "Tiefschwarz", + "en": "Jet black", + "fr": "Noir foncé", + "es": "Negro intenso", + "it": "Nero intenso", + "nl": "Gitzwart" + } + }, + "9006": { + "code": "9006", + "scope": "classic", + "color": { + "hex": "#A1A1A0", + "websafe": "#999999", + "rgb": { + "r": 161, + "g": 161, + "b": 160 + }, + "hsl": { + "h": 60, + "s": 1, + "l": 63 + }, + "hsb": { + "h": 60, + "s": 1, + "b": 63 + }, + "cmyk": { + "c": "35", + "m": "30", + "y": "30", + "k": "10" + } + }, + "names": { + "de": "Weißaluminium", + "en": "White aluminium", + "fr": "Aluminium blanc", + "es": "Aluminio blanco", + "it": "Alluminio brillante", + "nl": "Blank aluminiumkleurig" + } + }, + "9007": { + "code": "9007", + "scope": "classic", + "color": { + "hex": "#878581", + "websafe": "#999999", + "rgb": { + "r": 135, + "g": 133, + "b": 129 + }, + "hsl": { + "h": 40, + "s": 2, + "l": 52 + }, + "hsb": { + "h": 40, + "s": 4, + "b": 53 + }, + "cmyk": { + "c": "35", + "m": "30", + "y": "30", + "k": "15" + } + }, + "names": { + "de": "Graualuminium", + "en": "Grey aluminium", + "fr": "Aluminium gris", + "es": "Aluminio gris", + "it": "Alluminio grigiastro", + "nl": "Grijs aluminiumkleurig" + } + }, + "9010": { + "code": "9010", + "scope": "classic", + "color": { + "hex": "#F1ECE1", + "websafe": "#ffffcc", + "rgb": { + "r": 241, + "g": 236, + "b": 225 + }, + "hsl": { + "h": 41, + "s": 36, + "l": 91 + }, + "hsb": { + "h": 41, + "s": 7, + "b": 95 + }, + "cmyk": { + "c": "0", + "m": "0", + "y": "5", + "k": "0" + } + }, + "names": { + "de": "Reinweiß", + "en": "Pure white", + "fr": "Blanc pur", + "es": "Blanco puro", + "it": "Bianco puro", + "nl": "Zuiver wit" + } + }, + "9011": { + "code": "9011", + "scope": "classic", + "color": { + "hex": "#27292B", + "websafe": "#333333", + "rgb": { + "r": 39, + "g": 41, + "b": 43 + }, + "hsl": { + "h": 210, + "s": 5, + "l": 16 + }, + "hsb": { + "h": 210, + "s": 9, + "b": 17 + }, + "cmyk": { + "c": "60", + "m": "45", + "y": "30", + "k": "90" + } + }, + "names": { + "de": "Graphitschwarz", + "en": "Graphite black", + "fr": "Noir graphite", + "es": "Negro grafito", + "it": "Nero grafite", + "nl": "Grafietzwart" + } + }, + "9016": { + "code": "9016", + "scope": "classic", + "color": { + "hex": "#F1F0EA", + "websafe": "#ffffff", + "rgb": { + "r": 241, + "g": 240, + "b": 234 + }, + "hsl": { + "h": 51, + "s": 20, + "l": 93 + }, + "hsb": { + "h": 51, + "s": 3, + "b": 95 + }, + "cmyk": { + "c": "0", + "m": "0", + "y": "5", + "k": "0" + } + }, + "names": { + "de": "Verkehrsweiß", + "en": "Traffic white", + "fr": "Blanc signalisation", + "es": "Blanco tráfico", + "it": "Bianco traffico", + "nl": "Verkeerswit" + } + }, + "9017": { + "code": "9017", + "scope": "classic", + "color": { + "hex": "#2A292A", + "websafe": "#333333", + "rgb": { + "r": 42, + "g": 41, + "b": 42 + }, + "hsl": { + "h": 300, + "s": 1, + "l": 16 + }, + "hsb": { + "h": 300, + "s": 2, + "b": 16 + }, + "cmyk": { + "c": "50", + "m": "30", + "y": "50", + "k": "100" + } + }, + "names": { + "de": "Verkehrsschwarz", + "en": "Traffic black", + "fr": "Noir signalisation", + "es": "Negro tráfico", + "it": "Nero traffico", + "nl": "Verkeerszwart" + } + }, + "9018": { + "code": "9018", + "scope": "classic", + "color": { + "hex": "#C8CBC4", + "websafe": "#cccccc", + "rgb": { + "r": 200, + "g": 203, + "b": 196 + }, + "hsl": { + "h": 86, + "s": 6, + "l": 78 + }, + "hsb": { + "h": 86, + "s": 3, + "b": 80 + }, + "cmyk": { + "c": "10", + "m": "5", + "y": "15", + "k": "10" + } + }, + "names": { + "de": "Papyrusweiß", + "en": "Papyrus white", + "fr": "Blanc papyrus", + "es": "Blanco papiro", + "it": "Bianco papiro", + "nl": "Papyruswit" + } + }, + "9022": { + "code": "9022", + "scope": "classic", + "color": { + "hex": "#858583", + "websafe": "#999999", + "rgb": { + "r": 133, + "g": 133, + "b": 131 + }, + "hsl": { + "h": 60, + "s": 1, + "l": 52 + }, + "hsb": { + "h": 60, + "s": 2, + "b": 52 + }, + "cmyk": { + "c": "35", + "m": "30", + "y": "30", + "k": "20" + } + }, + "names": { + "de": "Perlhellgrau", + "en": "Pearl light grey", + "fr": "Gris clair nacré", + "es": "Gris claro perlado", + "it": "Grigio chiaro perlato", + "nl": "Parelmoer lichtgrijs" + } + }, + "9023": { + "code": "9023", + "scope": "classic", + "color": { + "hex": "#797B7A", + "websafe": "#666666", + "rgb": { + "r": 121, + "g": 123, + "b": 122 + }, + "hsl": { + "h": 150, + "s": 1, + "l": 48 + }, + "hsb": { + "h": 150, + "s": 2, + "b": 48 + }, + "cmyk": { + "c": "15", + "m": "10", + "y": "10", + "k": "50" + } + }, + "names": { + "de": "Perldunkelgrau", + "en": "Pearl dark grey", + "fr": "Gris fonçé nacré", + "es": "Gris oscuro perlado", + "it": "Grigio scuro perlato", + "nl": "Parelmoer donkergrijs" + } + } +} diff --git a/tools/data/ral_palettes/ral_colors/README.md b/tools/data/ral_palettes/ral_colors/README.md new file mode 100644 index 0000000..d30c122 --- /dev/null +++ b/tools/data/ral_palettes/ral_colors/README.md @@ -0,0 +1,13 @@ +# Thanks + + + +## Used Tools + +1. + +2. + +## Actions + +See `ral-colors` folder. diff --git a/tools/data/ral_palettes/ral_colors/ral_colors.yml b/tools/data/ral_palettes/ral_colors/ral_colors.yml new file mode 100644 index 0000000..ee1e006 --- /dev/null +++ b/tools/data/ral_palettes/ral_colors/ral_colors.yml @@ -0,0 +1,1071 @@ +--- +- :1001: + :ral_name: RAL 1001 + :hex_value: D0B084 + :english_name: Beige + :ukrainian_name: Бежевий +- :1002: + :ral_name: RAL 1002 + :hex_value: D2AA6D + :english_name: Sand yellow + :ukrainian_name: Пісочно-жовтий +- :1003: + :ral_name: RAL 1003 + :hex_value: F9A800 + :english_name: Signal yellow + :ukrainian_name: Сигнально-жовтий +- :1004: + :ral_name: RAL 1004 + :hex_value: E49E00 + :english_name: Golden yellow + :ukrainian_name: Золотисто-жовтий +- :1005: + :ral_name: RAL 1005 + :hex_value: CB8E00 + :english_name: Honey yellow + :ukrainian_name: Медово-жовтий +- :1006: + :ral_name: RAL 1006 + :hex_value: E29000 + :english_name: Maize yellow + :ukrainian_name: Кукурудзяно-жовтий +- :1007: + :ral_name: RAL 1007 + :hex_value: E88C00 + :english_name: Daffodil yellow + :ukrainian_name: Нарцисово-жовтий +- :1011: + :ral_name: RAL 1011 + :hex_value: AF804F + :english_name: Brown beige + :ukrainian_name: Коричнево-бежевий +- :1012: + :ral_name: RAL 1012 + :hex_value: DDAF27 + :english_name: Lemon yellow + :ukrainian_name: Лимонно-жовтий +- :1013: + :ral_name: RAL 1013 + :hex_value: E3D9C6 + :english_name: Oyster white + :ukrainian_name: Устрично-білий +- :1014: + :ral_name: RAL 1014 + :hex_value: DDC49A + :english_name: Ivory + :ukrainian_name: Слонова кістка +- :1015: + :ral_name: RAL 1015 + :hex_value: E6D2B5 + :english_name: Light ivory + :ukrainian_name: Світла слонова кістка +- :1016: + :ral_name: RAL 1016 + :hex_value: F1DD38 + :english_name: Sulfur yellow + :ukrainian_name: Сірчано-жовтий +- :1017: + :ral_name: RAL 1017 + :hex_value: F6A950 + :english_name: Saffron yellow + :ukrainian_name: Шафраново-жовтий +- :1018: + :ral_name: RAL 1018 + :hex_value: FACA30 + :english_name: Zinc yellow + :ukrainian_name: Цинково-жовтий +- :1019: + :ral_name: RAL 1019 + :hex_value: A48F7A + :english_name: Grey beige + :ukrainian_name: Сіро-бежевий +- :1020: + :ral_name: RAL 1020 + :hex_value: A08F65 + :english_name: Olive yellow + :ukrainian_name: Оливково-жовтий +- :1021: + :ral_name: RAL 1021 + :hex_value: F6B600 + :english_name: Colza yellow + :ukrainian_name: Рапсово-жовтий +- :1023: + :ral_name: RAL 1023 + :hex_value: F7B500 + :english_name: Traffic yellow + :ukrainian_name: Жовтий колір руху +- :1024: + :ral_name: RAL 1024 + :hex_value: BA8F4C + :english_name: Ochre yellow + :ukrainian_name: Жовта охра +- :1026: + :ral_name: RAL 1026 + :hex_value: FFFF00 + :english_name: Luminous yellow + :ukrainian_name: Світловідбиваючий жовтий +- :1027: + :ral_name: RAL 1027 + :hex_value: A77F0E + :english_name: Curry + :ukrainian_name: Каррі +- :1028: + :ral_name: RAL 1028 + :hex_value: FF9B00 + :english_name: Melon yellow + :ukrainian_name: Диня жовта +- :1032: + :ral_name: RAL 1032 + :hex_value: E2A300 + :english_name: Broom yellow + :ukrainian_name: Жарновець жовтий +- :1033: + :ral_name: RAL 1033 + :hex_value: F99A1C + :english_name: Dahlia yellow + :ukrainian_name: Жоржина жовта +- :1034: + :ral_name: RAL 1034 + :hex_value: EB9C52 + :english_name: Pastel yellow + :ukrainian_name: Пастельно-жовтий +- :1035: + :ral_name: RAL 1035 + :hex_value: '908370' + :english_name: Pearl beige + :ukrainian_name: Перлинно-бежевий +- :1036: + :ral_name: RAL 1036 + :hex_value: 80643F + :english_name: Pearl gold + :ukrainian_name: Золотисто-перлинний +- :1037: + :ral_name: RAL 1037 + :hex_value: F09200 + :english_name: Sun yellow + :ukrainian_name: Сонячно-жовтий +- :2000: + :ral_name: RAL 2000 + :hex_value: DD7907 + :english_name: Yellow orange + :ukrainian_name: Жовто-помаранчевий +- :2001: + :ral_name: RAL 2001 + :hex_value: BE4E20 + :english_name: Red orange + :ukrainian_name: Червоно-помаранчевий +- :2002: + :ral_name: RAL 2002 + :hex_value: C63927 + :english_name: Vermilion + :ukrainian_name: Яскраво-червоний +- :2003: + :ral_name: RAL 2003 + :hex_value: FA842B + :english_name: Pastel orange + :ukrainian_name: Пастельно-помаранчевий +- :2004: + :ral_name: RAL 2004 + :hex_value: E75B12 + :english_name: Pure orange + :ukrainian_name: Чисто-помаранчевий +- :2005: + :ral_name: RAL 2005 + :hex_value: FF2300 + :english_name: Luminous orange + :ukrainian_name: Світловідбиваючий помаранчевий +- :2007: + :ral_name: RAL 2007 + :hex_value: FFA421 + :english_name: Luminous bright orange + :ukrainian_name: Яскраво світловідбиваючий помаранчевий +- :2008: + :ral_name: RAL 2008 + :hex_value: F3752C + :english_name: Bright red orange + :ukrainian_name: Яскравий червоно-помаранчевий +- :2009: + :ral_name: RAL 2009 + :hex_value: E15501 + :english_name: Traffic orange + :ukrainian_name: Дорожній помаранчевий +- :2010: + :ral_name: RAL 2010 + :hex_value: D4652F + :english_name: Signal orange + :ukrainian_name: Сигнальний помаранчевий +- :2011: + :ral_name: RAL 2011 + :hex_value: EC7C25 + :english_name: Deep orange + :ukrainian_name: Глибокий помаранчевий +- :2012: + :ral_name: RAL 2012 + :hex_value: DB6A50 + :english_name: Salmon orange + :ukrainian_name: Лососевий помаранчевий +- :2013: + :ral_name: RAL 2013 + :hex_value: '954527' + :english_name: Pearl orange + :ukrainian_name: Перлинно-помаранчевий +- :2017: + :ral_name: RAL 2017 + :hex_value: fa4402 + :english_name: RAL orange + :ukrainian_name: RAL помаранчевий +- :3000: + :ral_name: RAL 3000 + :hex_value: AB2524 + :english_name: Flame red + :ukrainian_name: Вогняно-червоний +- :3001: + :ral_name: RAL 3001 + :hex_value: A02128 + :english_name: Signal red + :ukrainian_name: Сигнально-червоний +- :3002: + :ral_name: RAL 3002 + :hex_value: A1232B + :english_name: Carmine red + :ukrainian_name: Карміново-червоний +- :3003: + :ral_name: RAL 3003 + :hex_value: 8D1D2C + :english_name: Ruby red + :ukrainian_name: Рубіновий червоний +- :3004: + :ral_name: RAL 3004 + :hex_value: 701F29 + :english_name: Purple red + :ukrainian_name: Пурпурово-червоний +- :3005: + :ral_name: RAL 3005 + :hex_value: 5E2028 + :english_name: Wine red + :ukrainian_name: Винно-червоний +- :3007: + :ral_name: RAL 3007 + :hex_value: '402225' + :english_name: Black red + :ukrainian_name: Чорно-червоний +- :3009: + :ral_name: RAL 3009 + :hex_value: '703731' + :english_name: Oxide red + :ukrainian_name: Оксидний червоний +- :3011: + :ral_name: RAL 3011 + :hex_value: 7E292C + :english_name: Brown red + :ukrainian_name: Коричнево-червоний +- :3012: + :ral_name: RAL 3012 + :hex_value: CB8D73 + :english_name: Beige red + :ukrainian_name: Бежево-червоний +- :3013: + :ral_name: RAL 3013 + :hex_value: 9C322E + :english_name: Tomato red + :ukrainian_name: Помідорний червоний +- :3014: + :ral_name: RAL 3014 + :hex_value: D47479 + :english_name: Antique pink + :ukrainian_name: Антично-рожевий +- :3015: + :ral_name: RAL 3015 + :hex_value: E1A6AD + :english_name: Light pink + :ukrainian_name: Світло-рожевий +- :3016: + :ral_name: RAL 3016 + :hex_value: AC4034 + :english_name: Coral red + :ukrainian_name: Кораловий червоний +- :3017: + :ral_name: RAL 3017 + :hex_value: D3545F + :english_name: Rose + :ukrainian_name: Рожевий +- :3018: + :ral_name: RAL 3018 + :hex_value: D14152 + :english_name: Strawberry red + :ukrainian_name: Полунично-червоний +- :3020: + :ral_name: RAL 3020 + :hex_value: C1121C + :english_name: Traffic red + :ukrainian_name: Дорожній червоний +- :3022: + :ral_name: RAL 3022 + :hex_value: D56D56 + :english_name: Salmon pink + :ukrainian_name: Лососевий рожевий +- :3024: + :ral_name: RAL 3024 + :hex_value: F70000 + :english_name: Luminous red + :ukrainian_name: Світловідбиваючий червоний +- :3026: + :ral_name: RAL 3026 + :hex_value: FF0000 + :english_name: Luminous bright red + :ukrainian_name: Яскраво світловідбиваючий червоний +- :3027: + :ral_name: RAL 3027 + :hex_value: B42041 + :english_name: Raspberry red + :ukrainian_name: Малиновий червоний +- :3028: + :ral_name: RAL 3028 + :hex_value: E72512 + :english_name: Pure red + :ukrainian_name: Чисто-червоний +- :3031: + :ral_name: RAL 3031 + :hex_value: AC323B + :english_name: Orient red + :ukrainian_name: Орієнт червоний +- :3032: + :ral_name: RAL 3032 + :hex_value: '711521' + :english_name: Pearl ruby red + :ukrainian_name: Перлинно-рубіновий червоний +- :3033: + :ral_name: RAL 3033 + :hex_value: B24C43 + :english_name: Pearl pink + :ukrainian_name: Перлинно-рожевий +- :4001: + :ral_name: RAL 4001 + :hex_value: 8A5A83 + :english_name: Red lilac + :ukrainian_name: Червоно-бузковий +- :4002: + :ral_name: RAL 4002 + :hex_value: 933D50 + :english_name: Red violet + :ukrainian_name: Червоно-фіолетовий +- :4003: + :ral_name: RAL 4003 + :hex_value: D15B8F + :english_name: Heather violet + :ukrainian_name: Вересовий фіолетовий +- :4004: + :ral_name: RAL 4004 + :hex_value: '691639' + :english_name: Claret violet + :ukrainian_name: Бордово-фіолетовий +- :4005: + :ral_name: RAL 4005 + :hex_value: 83639D + :english_name: Blue lilac + :ukrainian_name: Синій бузковий колір +- :4006: + :ral_name: RAL 4006 + :hex_value: '992572' + :english_name: Traffic purple + :ukrainian_name: Дорожній фіолетовий +- :4007: + :ral_name: RAL 4007 + :hex_value: 4A203B + :english_name: Purple violet + :ukrainian_name: Пурпурно фіолетовий +- :4008: + :ral_name: RAL 4008 + :hex_value: '904684' + :english_name: Signal violet + :ukrainian_name: Сигнально-фіолетовий +- :4009: + :ral_name: RAL 4009 + :hex_value: A38995 + :english_name: Pastel violet + :ukrainian_name: Пастельно-фіолетовий +- :4010: + :ral_name: RAL 4010 + :hex_value: C63678 + :english_name: Telemagenta + :ukrainian_name: Телемагента +- :4011: + :ral_name: RAL 4011 + :hex_value: 8773A1 + :english_name: Pearl violet + :ukrainian_name: Перлинно-фіолетовий +- :4012: + :ral_name: RAL 4012 + :hex_value: 6B6880 + :english_name: Pearl blackberry + :ukrainian_name: Ожинo-перламутровий +- :5000: + :ral_name: RAL 5000 + :hex_value: 384C70 + :english_name: Violet blue + :ukrainian_name: Синьо-фіолетовий +- :5001: + :ral_name: RAL 5001 + :hex_value: 1F4764 + :english_name: Green blue + :ukrainian_name: Зелено-синій +- :5002: + :ral_name: RAL 5002 + :hex_value: 2B2C7C + :english_name: Ultramarine blue + :ukrainian_name: Ультрамариновий синій +- :5003: + :ral_name: RAL 5003 + :hex_value: 2A3756 + :english_name: Sapphire blue + :ukrainian_name: Сапфіровий синій +- :5004: + :ral_name: RAL 5004 + :hex_value: 1D1F2A + :english_name: Black blue + :ukrainian_name: Чорно-синій +- :5005: + :ral_name: RAL 5005 + :hex_value: '154889' + :english_name: Signal blue + :ukrainian_name: Сигнальний синій +- :5007: + :ral_name: RAL 5007 + :hex_value: 41678D + :english_name: Brilliant blue + :ukrainian_name: Брильянтово-синій +- :5008: + :ral_name: RAL 5008 + :hex_value: 313C48 + :english_name: Grey blue + :ukrainian_name: Сіро-синій +- :5009: + :ral_name: RAL 5009 + :hex_value: 2E5978 + :english_name: Azure blue + :ukrainian_name: Лазурно-синій +- :5010: + :ral_name: RAL 5010 + :hex_value: 13447C + :english_name: Gentian blue + :ukrainian_name: Генціаново-синій +- :5011: + :ral_name: RAL 5011 + :hex_value: 232C3F + :english_name: Steel blue + :ukrainian_name: Сталево-синій +- :5012: + :ral_name: RAL 5012 + :hex_value: 3481B8 + :english_name: Light blue + :ukrainian_name: Світло-синій +- :5013: + :ral_name: RAL 5013 + :hex_value: 232D53 + :english_name: Cobalt blue + :ukrainian_name: Кобальтово-синій +- :5014: + :ral_name: RAL 5014 + :hex_value: 6C7C98 + :english_name: Pigeon blue + :ukrainian_name: Голубино-синій +- :5015: + :ral_name: RAL 5015 + :hex_value: 2874B2 + :english_name: Sky blue + :ukrainian_name: Небесно-синій +- :5017: + :ral_name: RAL 5017 + :hex_value: 0E518D + :english_name: Traffic blue + :ukrainian_name: Дорожній синій +- :5018: + :ral_name: RAL 5018 + :hex_value: 21888F + :english_name: Turquoise blue + :ukrainian_name: Бірюзовий синій +- :5019: + :ral_name: RAL 5019 + :hex_value: 1A5784 + :english_name: Capri blue + :ukrainian_name: Капрі синій +- :5020: + :ral_name: RAL 5020 + :hex_value: 0B4151 + :english_name: Ocean blue + :ukrainian_name: Cиній океан +- :5021: + :ral_name: RAL 5021 + :hex_value: 07737A + :english_name: Water blue + :ukrainian_name: Водна синь +- :5022: + :ral_name: RAL 5022 + :hex_value: 2F2A5A + :english_name: Night blue + :ukrainian_name: Нічний синій +- :5023: + :ral_name: RAL 5023 + :hex_value: 4D668E + :english_name: Distant blue + :ukrainian_name: Далека синь +- :5024: + :ral_name: RAL 5024 + :hex_value: 6A93B0 + :english_name: Pastel blue + :ukrainian_name: Пастельно-синій +- :5025: + :ral_name: RAL 5025 + :hex_value: '296478' + :english_name: Pearl Gentian blue + :ukrainian_name: Перлинно-синій +- :5026: + :ral_name: RAL 5026 + :hex_value: 102C54 + :english_name: Pearl night blue + :ukrainian_name: Перлинно-синя ніч +- :6000: + :ral_name: RAL 6000 + :hex_value: '327662' + :english_name: Patina green + :ukrainian_name: Патиново-зелений +- :6001: + :ral_name: RAL 6001 + :hex_value: 28713E + :english_name: Emerald green + :ukrainian_name: Ізумрудно-зелений +- :6002: + :ral_name: RAL 6002 + :hex_value: '276235' + :english_name: Leaf green + :ukrainian_name: Листяно-зелений +- :6003: + :ral_name: RAL 6003 + :hex_value: 4B573E + :english_name: Olive green + :ukrainian_name: Оливково-зелений +- :6004: + :ral_name: RAL 6004 + :hex_value: 0E4243 + :english_name: Blue green + :ukrainian_name: Синьо-зелений +- :6005: + :ral_name: RAL 6005 + :hex_value: 0F4336 + :english_name: Moss green + :ukrainian_name: Мохово-зелений +- :6006: + :ral_name: RAL 6006 + :hex_value: 40433B + :english_name: Grey olive + :ukrainian_name: Сіро-оливковий +- :6007: + :ral_name: RAL 6007 + :hex_value: '283424' + :english_name: Bottle green + :ukrainian_name: Пляшково-зелений +- :6008: + :ral_name: RAL 6008 + :hex_value: 35382E + :english_name: Brown green + :ukrainian_name: Коричнево-зелений +- :6009: + :ral_name: RAL 6009 + :hex_value: 26392F + :english_name: Fir green + :ukrainian_name: Хвойно-зелений +- :6010: + :ral_name: RAL 6010 + :hex_value: 3E753B + :english_name: Grass green + :ukrainian_name: Трав’яно-зелений +- :6011: + :ral_name: RAL 6011 + :hex_value: 68825B + :english_name: Reseda green + :ukrainian_name: Резедово зелений +- :6012: + :ral_name: RAL 6012 + :hex_value: 31403D + :english_name: Black green + :ukrainian_name: Чорно-зелений +- :6013: + :ral_name: RAL 6013 + :hex_value: 797C5A + :english_name: Reed green + :ukrainian_name: Тростниково-зелений +- :6014: + :ral_name: RAL 6014 + :hex_value: '444337' + :english_name: Yellow olive + :ukrainian_name: Жовто-оливковий +- :6015: + :ral_name: RAL 6015 + :hex_value: 3D403A + :english_name: Black olive + :ukrainian_name: Чорно-оливковий +- :6016: + :ral_name: RAL 6016 + :hex_value: 026A52 + :english_name: Turquoise green + :ukrainian_name: Бірюзово-зелений +- :6017: + :ral_name: RAL 6017 + :hex_value: '468641' + :english_name: May green + :ukrainian_name: Травнево-зелений +- :6018: + :ral_name: RAL 6018 + :hex_value: 48A43F + :english_name: Yellow green + :ukrainian_name: Жовто-зелений +- :6019: + :ral_name: RAL 6019 + :hex_value: B7D9B1 + :english_name: Pastel green + :ukrainian_name: Пастельно-зелений +- :6020: + :ral_name: RAL 6020 + :hex_value: '354733' + :english_name: Chrome green + :ukrainian_name: Хромовий зелений +- :6021: + :ral_name: RAL 6021 + :hex_value: 86A47C + :english_name: Pale green + :ukrainian_name: Блідо-зелений +- :6022: + :ral_name: RAL 6022 + :hex_value: 3E3C32 + :english_name: Olive-drab/brown olive + :ukrainian_name: Оливково-коричневий +- :6024: + :ral_name: RAL 6024 + :hex_value: '008754' + :english_name: Traffic green + :ukrainian_name: Дорожній зелений +- :6025: + :ral_name: RAL 6025 + :hex_value: 53753C + :english_name: Fern green + :ukrainian_name: Папоротево-зелений +- :6026: + :ral_name: RAL 6026 + :hex_value: 005D52 + :english_name: Opal green + :ukrainian_name: Опаловий зелений +- :6027: + :ral_name: RAL 6027 + :hex_value: 81C0BB + :english_name: Light green + :ukrainian_name: Світло-зелений +- :6028: + :ral_name: RAL 6028 + :hex_value: 2D5546 + :english_name: Pine green + :ukrainian_name: Сосновий зелений +- :6029: + :ral_name: RAL 6029 + :hex_value: '007243' + :english_name: Mint green + :ukrainian_name: М'ятно-зелений +- :6032: + :ral_name: RAL 6032 + :hex_value: 0F8558 + :english_name: Signal green + :ukrainian_name: Сигнальний зелений +- :6033: + :ral_name: RAL 6033 + :hex_value: 478A84 + :english_name: Mint turquoise + :ukrainian_name: М'ятно-бірюзовий +- :6034: + :ral_name: RAL 6034 + :hex_value: 7FB0B2 + :english_name: Pastel turquoise + :ukrainian_name: Пастельно-бірюзовий +- :6035: + :ral_name: RAL 6035 + :hex_value: 1B542C + :english_name: Pearl green + :ukrainian_name: Перлиново-зелений +- :6036: + :ral_name: RAL 6036 + :hex_value: 005D4C + :english_name: Pearl opal green + :ukrainian_name: Перлиновий опаловий зелений +- :6037: + :ral_name: RAL 6037 + :hex_value: 25E712 + :english_name: Pure green + :ukrainian_name: Чисто-зелений +- :6038: + :ral_name: RAL 6038 + :hex_value: 00F700 + :english_name: Luminous green + :ukrainian_name: Світловідбиваючий зелений +- :7000: + :ral_name: RAL 7000 + :hex_value: 7E8B92 + :english_name: Squirrel grey + :ukrainian_name: Сіра білка +- :7001: + :ral_name: RAL 7001 + :hex_value: 8F999F + :english_name: Silver grey + :ukrainian_name: Сріблясто-сірий +- :7002: + :ral_name: RAL 7002 + :hex_value: 817F68 + :english_name: Olive grey + :ukrainian_name: Оливково-сірий +- :7003: + :ral_name: RAL 7003 + :hex_value: 7A7B6D + :english_name: Moss grey + :ukrainian_name: Мохово-сірий +- :7004: + :ral_name: RAL 7004 + :hex_value: 9EA0A1 + :english_name: Signal grey + :ukrainian_name: Сигнальний сірий +- :7005: + :ral_name: RAL 7005 + :hex_value: 6B716F + :english_name: Mouse grey + :ukrainian_name: Мишино-сірий +- :7006: + :ral_name: RAL 7006 + :hex_value: 756F61 + :english_name: Beige grey + :ukrainian_name: Бежево-сірий +- :7008: + :ral_name: RAL 7008 + :hex_value: '746643' + :english_name: Khaki grey + :ukrainian_name: Хакі сірий +- :7009: + :ral_name: RAL 7009 + :hex_value: 5B6259 + :english_name: Green grey + :ukrainian_name: Зелено-сірий +- :7010: + :ral_name: RAL 7010 + :hex_value: 575D57 + :english_name: Tarpaulin grey + :ukrainian_name: Брезентово-сірий +- :7011: + :ral_name: RAL 7011 + :hex_value: 555D61 + :english_name: Iron grey + :ukrainian_name: Залізно-сірий +- :7012: + :ral_name: RAL 7012 + :hex_value: '596163' + :english_name: Basalt grey + :ukrainian_name: Базальтово-сірий +- :7013: + :ral_name: RAL 7013 + :hex_value: '555548' + :english_name: Brown grey + :ukrainian_name: Коричнево-сірий +- :7015: + :ral_name: RAL 7015 + :hex_value: 51565C + :english_name: Slate grey + :ukrainian_name: Сланцево-сірий +- :7016: + :ral_name: RAL 7016 + :hex_value: 373F43 + :english_name: Anthracite grey + :ukrainian_name: Антрацитово-сірий +- :7021: + :ral_name: RAL 7021 + :hex_value: 2E3234 + :english_name: Black grey + :ukrainian_name: Чорно-сірий +- :7022: + :ral_name: RAL 7022 + :hex_value: 4B4D46 + :english_name: Umbra grey + :ukrainian_name: Умбровий сірий +- :7023: + :ral_name: RAL 7023 + :hex_value: '818479' + :english_name: Concrete grey + :ukrainian_name: Бетонно-сірий +- :7024: + :ral_name: RAL 7024 + :hex_value: 474A50 + :english_name: Graphite grey + :ukrainian_name: Графітово-сірий +- :7026: + :ral_name: RAL 7026 + :hex_value: '374447' + :english_name: Granite grey + :ukrainian_name: Гранітно-сірий +- :7030: + :ral_name: RAL 7030 + :hex_value: '939388' + :english_name: Stone grey + :ukrainian_name: Кам’яно-сірий +- :7031: + :ral_name: RAL 7031 + :hex_value: 5D6970 + :english_name: Blue grey + :ukrainian_name: Сіро-синій +- :7032: + :ral_name: RAL 7032 + :hex_value: B9B9A8 + :english_name: Pebble grey + :ukrainian_name: Гальково-сірий +- :7033: + :ral_name: RAL 7033 + :hex_value: '818979' + :english_name: Cement grey + :ukrainian_name: Цементно-сірий +- :7034: + :ral_name: RAL 7034 + :hex_value: '939176' + :english_name: Yellow grey + :ukrainian_name: Жовто-сірий +- :7035: + :ral_name: RAL 7035 + :hex_value: CBD0CC + :english_name: Light grey + :ukrainian_name: Світло-сірий +- :7036: + :ral_name: RAL 7036 + :hex_value: 9A9697 + :english_name: Platinum grey + :ukrainian_name: Платиново-сірий +- :7037: + :ral_name: RAL 7037 + :hex_value: 7C7F7E + :english_name: Dusty grey + :ukrainian_name: Пильно-сірий +- :7038: + :ral_name: RAL 7038 + :hex_value: B4B8B0 + :english_name: Agate grey + :ukrainian_name: Агатовий сірий +- :7039: + :ral_name: RAL 7039 + :hex_value: 6B695F + :english_name: Quartz grey + :ukrainian_name: Кварцовий сірий +- :7040: + :ral_name: RAL 7040 + :hex_value: 9DA3A6 + :english_name: Window grey + :ukrainian_name: Віконно-сірий +- :7042: + :ral_name: RAL 7042 + :hex_value: 8F9695 + :english_name: Traffic grey A + :ukrainian_name: Дорожній сірий A +- :7043: + :ral_name: RAL 7043 + :hex_value: 4E5451 + :english_name: Traffic grey B + :ukrainian_name: Дорожній сірий B +- :7044: + :ral_name: RAL 7044 + :hex_value: BDBDB2 + :english_name: Silk grey + :ukrainian_name: Шовковий сірий +- :7045: + :ral_name: RAL 7045 + :hex_value: 91969A + :english_name: Telegrey 1 + :ukrainian_name: Телесірий 1 +- :7046: + :ral_name: RAL 7046 + :hex_value: 82898E + :english_name: Telegrey 2 + :ukrainian_name: Телесірий 2 +- :7047: + :ral_name: RAL 7047 + :hex_value: CFD0CF + :english_name: Telegrey 4 + :ukrainian_name: Телесірий 4 +- :7048: + :ral_name: RAL 7048 + :hex_value: '888175' + :english_name: Pearl mouse grey + :ukrainian_name: Перламутрово-мишачий сірий +- :8000: + :ral_name: RAL 8000 + :hex_value: '887142' + :english_name: Green brown + :ukrainian_name: Зелено-коричневий +- :8001: + :ral_name: RAL 8001 + :hex_value: 9C6B30 + :english_name: Ochre brown + :ukrainian_name: Охрово-коричневий +- :8002: + :ral_name: RAL 8002 + :hex_value: 7B5141 + :english_name: Signal brown + :ukrainian_name: Сигнальний коричневий +- :8003: + :ral_name: RAL 8003 + :hex_value: 80542F + :english_name: Clay brown + :ukrainian_name: Глиняний коричневий +- :8004: + :ral_name: RAL 8004 + :hex_value: 8F4E35 + :english_name: Copper brown + :ukrainian_name: Мідний коричневий +- :8007: + :ral_name: RAL 8007 + :hex_value: 6F4A2F + :english_name: Fawn brown + :ukrainian_name: Сірувато-коричневий +- :8008: + :ral_name: RAL 8008 + :hex_value: 6F4F28 + :english_name: Olive brown + :ukrainian_name: Оливково-коричневий +- :8011: + :ral_name: RAL 8011 + :hex_value: 5A3A29 + :english_name: Nut brown + :ukrainian_name: Горіхово-коричневий +- :8012: + :ral_name: RAL 8012 + :hex_value: '673831' + :english_name: Red brown + :ukrainian_name: Червоно-коричневий +- :8014: + :ral_name: RAL 8014 + :hex_value: 49392D + :english_name: Sepia brown + :ukrainian_name: Сепія коричневий +- :8015: + :ral_name: RAL 8015 + :hex_value: 633A34 + :english_name: Chestnut brown + :ukrainian_name: Каштаново-коричневий +- :8016: + :ral_name: RAL 8016 + :hex_value: 4C2F26 + :english_name: Mahogany brown + :ukrainian_name: Махагон коричневий +- :8017: + :ral_name: RAL 8017 + :hex_value: 44322D + :english_name: Chocolate brown + :ukrainian_name: Шоколадно-коричневий +- :8019: + :ral_name: RAL 8019 + :hex_value: 3F3A3A + :english_name: Grey brown + :ukrainian_name: Сіро-коричневий +- :8022: + :ral_name: RAL 8022 + :hex_value: 211F20 + :english_name: Black brown + :ukrainian_name: Чорно-коричневий +- :8023: + :ral_name: RAL 8023 + :hex_value: A65E2F + :english_name: Orange brown + :ukrainian_name: Помаранчево-коричневий +- :8024: + :ral_name: RAL 8024 + :hex_value: 79553C + :english_name: Beige brown + :ukrainian_name: Бежево-коричневий +- :8025: + :ral_name: RAL 8025 + :hex_value: 755C49 + :english_name: Pale brown + :ukrainian_name: Блідо-коричневий +- :8028: + :ral_name: RAL 8028 + :hex_value: 4E3B2B + :english_name: Terra brown + :ukrainian_name: Теракотово-коричневий +- :8029: + :ral_name: RAL 8029 + :hex_value: 773C27 + :english_name: Pearl copper + :ukrainian_name: Перлино-мідний +- :9001: + :ral_name: RAL 9001 + :hex_value: EFEBDC + :english_name: Cream + :ukrainian_name: Кремовий +- :9002: + :ral_name: RAL 9002 + :hex_value: DDDED4 + :english_name: Grey white + :ukrainian_name: Сіро-білий +- :9003: + :ral_name: RAL 9003 + :hex_value: F4F8F4 + :english_name: Signal white + :ukrainian_name: Сигнальний білий +- :9004: + :ral_name: RAL 9004 + :hex_value: 2E3032 + :english_name: Signal black + :ukrainian_name: Сигнальний чорний +- :9005: + :ral_name: RAL 9005 + :hex_value: 0A0A0D + :english_name: Jet black + :ukrainian_name: Чорний +- :9006: + :ral_name: RAL 9006 + :hex_value: A5A8A6 + :english_name: White aluminium + :ukrainian_name: Алюмінієво-білий +- :9007: + :ral_name: RAL 9007 + :hex_value: 8F8F8C + :english_name: Grey aluminium + :ukrainian_name: Алюмінієво-сірий +- :9010: + :ral_name: RAL 9010 + :hex_value: F7F9EF + :english_name: Pure white + :ukrainian_name: Чисто-білий +- :9011: + :ral_name: RAL 9011 + :hex_value: 292C2F + :english_name: Graphite black + :ukrainian_name: Графітно-чорний +- :9012: + :ral_name: RAL 9012 + :hex_value: FFFDE6 + :english_name: Clean room white + :ukrainian_name: Білий для чистих приміщень +- :9016: + :ral_name: RAL 9016 + :hex_value: F7FBF5 + :english_name: Traffic white + :ukrainian_name: Дорожній білий +- :9017: + :ral_name: RAL 9017 + :hex_value: 2A2D2F + :english_name: Traffic black + :ukrainian_name: Дорожній чорний +- :9018: + :ral_name: RAL 9018 + :hex_value: CFD3CD + :english_name: Papyrus white + :ukrainian_name: Папірусно-білий +- :9022: + :ral_name: RAL 9022 + :hex_value: 9C9C9C + :english_name: Pearl light grey + :ukrainian_name: Перлиновий світло-сірий +- :9023: + :ral_name: RAL 9023 + :hex_value: 7E8182 + :english_name: Pearl dark grey + :ukrainian_name: Перлиновий темно-сірий