From 52d6d43f55c88526ab0aa4f268b6ab63823a7fe8 Mon Sep 17 00:00:00 2001 From: Andrii Syrokomskyi Date: Sat, 30 Mar 2024 19:50:18 +0100 Subject: [PATCH] First. Separated from the project `uni_color_name`. --- .github/CODEOWNERS | 1 + .github/ISSUE_TEMPLATE/bug_report.md | 35 + .github/ISSUE_TEMPLATE/feature_request.md | 22 + .github/PULL_REQUEST_TEMPLATE.md | 39 + .github/workflows/dart-ci.yml | 29 + .gitignore | 9 + .markdownlint.json | 5 + .vscode/launch.json | 11 + .vscode/settings.default.json | 101 + CHANGELOG.md | 8 + CODE_OF_CONDUCT.md | 76 + CONTRIBUTING.md | 98 + LICENSE | 21 + README.md | 156 + SECURITY.md | 9 + STYLEGUIDE.md | 129 + analysis_options.yaml | 27 + example/README.md | 22 + example/all_palettes/.gitignore | 43 + example/all_palettes/.metadata | 45 + example/all_palettes/README.md | 20 + example/all_palettes/analysis_options.yaml | 44 + example/all_palettes/android/.gitignore | 13 + example/all_palettes/android/app/build.gradle | 67 + .../android/app/src/debug/AndroidManifest.xml | 7 + .../android/app/src/main/AndroidManifest.xml | 44 + .../com/example/all_palettes/MainActivity.kt | 5 + .../res/drawable-v21/launch_background.xml | 12 + .../main/res/drawable/launch_background.xml | 12 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 544 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 442 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 721 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 1031 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 1443 bytes .../app/src/main/res/values-night/styles.xml | 18 + .../app/src/main/res/values/styles.xml | 18 + .../app/src/profile/AndroidManifest.xml | 7 + example/all_palettes/android/build.gradle | 18 + .../all_palettes/android/gradle.properties | 3 + .../gradle/wrapper/gradle-wrapper.properties | 5 + example/all_palettes/android/settings.gradle | 26 + example/all_palettes/ios/.gitignore | 34 + .../ios/Flutter/AppFrameworkInfo.plist | 26 + .../all_palettes/ios/Flutter/Debug.xcconfig | 1 + .../all_palettes/ios/Flutter/Release.xcconfig | 1 + .../ios/Runner.xcodeproj/project.pbxproj | 616 + .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../xcshareddata/xcschemes/Runner.xcscheme | 98 + .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../all_palettes/ios/Runner/AppDelegate.swift | 13 + .../AppIcon.appiconset/Contents.json | 122 + .../Icon-App-1024x1024@1x.png | Bin 0 -> 10932 bytes .../AppIcon.appiconset/Icon-App-20x20@1x.png | Bin 0 -> 295 bytes .../AppIcon.appiconset/Icon-App-20x20@2x.png | Bin 0 -> 406 bytes .../AppIcon.appiconset/Icon-App-20x20@3x.png | Bin 0 -> 450 bytes .../AppIcon.appiconset/Icon-App-29x29@1x.png | Bin 0 -> 282 bytes .../AppIcon.appiconset/Icon-App-29x29@2x.png | Bin 0 -> 462 bytes .../AppIcon.appiconset/Icon-App-29x29@3x.png | Bin 0 -> 704 bytes .../AppIcon.appiconset/Icon-App-40x40@1x.png | Bin 0 -> 406 bytes .../AppIcon.appiconset/Icon-App-40x40@2x.png | Bin 0 -> 586 bytes .../AppIcon.appiconset/Icon-App-40x40@3x.png | Bin 0 -> 862 bytes .../AppIcon.appiconset/Icon-App-60x60@2x.png | Bin 0 -> 862 bytes .../AppIcon.appiconset/Icon-App-60x60@3x.png | Bin 0 -> 1674 bytes .../AppIcon.appiconset/Icon-App-76x76@1x.png | Bin 0 -> 762 bytes .../AppIcon.appiconset/Icon-App-76x76@2x.png | Bin 0 -> 1226 bytes .../Icon-App-83.5x83.5@2x.png | Bin 0 -> 1418 bytes .../LaunchImage.imageset/Contents.json | 23 + .../LaunchImage.imageset/LaunchImage.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@2x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@3x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/README.md | 5 + .../Runner/Base.lproj/LaunchScreen.storyboard | 37 + .../ios/Runner/Base.lproj/Main.storyboard | 26 + example/all_palettes/ios/Runner/Info.plist | 49 + .../ios/Runner/Runner-Bridging-Header.h | 1 + .../ios/RunnerTests/RunnerTests.swift | 12 + example/all_palettes/lib/main.dart | 87 + example/all_palettes/linux/.gitignore | 1 + example/all_palettes/linux/CMakeLists.txt | 145 + .../all_palettes/linux/flutter/CMakeLists.txt | 88 + .../flutter/generated_plugin_registrant.cc | 11 + .../flutter/generated_plugin_registrant.h | 15 + .../linux/flutter/generated_plugins.cmake | 23 + example/all_palettes/linux/main.cc | 6 + example/all_palettes/linux/my_application.cc | 124 + example/all_palettes/linux/my_application.h | 18 + example/all_palettes/macos/.gitignore | 7 + .../macos/Flutter/Flutter-Debug.xcconfig | 1 + .../macos/Flutter/Flutter-Release.xcconfig | 1 + .../Flutter/GeneratedPluginRegistrant.swift | 10 + .../macos/Runner.xcodeproj/project.pbxproj | 705 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/xcschemes/Runner.xcscheme | 98 + .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../macos/Runner/AppDelegate.swift | 9 + .../AppIcon.appiconset/Contents.json | 68 + .../AppIcon.appiconset/app_icon_1024.png | Bin 0 -> 102994 bytes .../AppIcon.appiconset/app_icon_128.png | Bin 0 -> 5680 bytes .../AppIcon.appiconset/app_icon_16.png | Bin 0 -> 520 bytes .../AppIcon.appiconset/app_icon_256.png | Bin 0 -> 14142 bytes .../AppIcon.appiconset/app_icon_32.png | Bin 0 -> 1066 bytes .../AppIcon.appiconset/app_icon_512.png | Bin 0 -> 36406 bytes .../AppIcon.appiconset/app_icon_64.png | Bin 0 -> 2218 bytes .../macos/Runner/Base.lproj/MainMenu.xib | 343 + .../macos/Runner/Configs/AppInfo.xcconfig | 14 + .../macos/Runner/Configs/Debug.xcconfig | 2 + .../macos/Runner/Configs/Release.xcconfig | 2 + .../macos/Runner/Configs/Warnings.xcconfig | 13 + .../macos/Runner/DebugProfile.entitlements | 12 + example/all_palettes/macos/Runner/Info.plist | 32 + .../macos/Runner/MainFlutterWindow.swift | 15 + .../macos/Runner/Release.entitlements | 8 + .../macos/RunnerTests/RunnerTests.swift | 12 + example/all_palettes/pubspec.lock | 493 + example/all_palettes/pubspec.yaml | 26 + example/all_palettes/web/favicon.png | Bin 0 -> 917 bytes example/all_palettes/web/icons/Icon-192.png | Bin 0 -> 5292 bytes example/all_palettes/web/icons/Icon-512.png | Bin 0 -> 8252 bytes .../web/icons/Icon-maskable-192.png | Bin 0 -> 5594 bytes .../web/icons/Icon-maskable-512.png | Bin 0 -> 20998 bytes example/all_palettes/web/index.html | 59 + example/all_palettes/web/manifest.json | 35 + example/all_palettes/windows/.gitignore | 17 + example/all_palettes/windows/CMakeLists.txt | 108 + .../windows/flutter/CMakeLists.txt | 109 + .../flutter/generated_plugin_registrant.cc | 11 + .../flutter/generated_plugin_registrant.h | 15 + .../windows/flutter/generated_plugins.cmake | 23 + .../windows/runner/CMakeLists.txt | 40 + example/all_palettes/windows/runner/Runner.rc | 121 + .../windows/runner/flutter_window.cpp | 71 + .../windows/runner/flutter_window.h | 33 + example/all_palettes/windows/runner/main.cpp | 43 + .../all_palettes/windows/runner/resource.h | 16 + .../windows/runner/resources/app_icon.ico | Bin 0 -> 33772 bytes .../windows/runner/runner.exe.manifest | 20 + example/all_palettes/windows/runner/utils.cpp | 65 + example/all_palettes/windows/runner/utils.h | 19 + .../windows/runner/win32_window.cpp | 288 + .../windows/runner/win32_window.h | 102 + example/main.dart | 11 + images/cover.webp | Bin 0 -> 340798 bytes images/screenshots/zeplin_palette.webp | Bin 0 -> 389134 bytes lib/src/palettes/commodore_64.dart | 22 + lib/src/palettes/pantone_fashion_design.dart | 2449 ++ lib/src/palettes/pantone_graphic_design.dart | 15876 ++++++++++++ lib/src/palettes/pantone_product_design.dart | 4973 ++++ lib/src/palettes/ral.dart | 19283 +++++++++++++++ lib/src/palettes/zeplin.dart | 955 + lib/uni_color_palette.dart | 12 + pubspec.lock | 452 + pubspec.yaml | 34 + test/palette_test.dart | 7 + tools/README.md | 14 + tools/data/ral_palettes/colourness/1.csv | 194 + tools/data/ral_palettes/colourness/README.md | 11 + .../data/ral_palettes/colourness/colors.json | 4827 ++++ .../data/ral_palettes/colourness/outline.json | 79 + tools/data/ral_palettes/ral-colors/1.csv | 71 + tools/data/ral_palettes/ral-colors/README.md | 41 + tools/data/ral_palettes/ral-colors/classic.js | 217 + .../data/ral_palettes/ral-colors/classic.json | 2152 ++ tools/data/ral_palettes/ral-colors/design.js | 1827 ++ .../data/ral_palettes/ral-colors/design.json | 20077 ++++++++++++++++ tools/data/ral_palettes/ral-colors/effect.js | 72 + .../data/ral_palettes/ral-colors/effect.json | 4272 ++++ .../data/ral_palettes/ral-colors/outline.json | 127 + tools/data/ral_palettes/ral-json/1.csv | 214 + tools/data/ral_palettes/ral-json/README.md | 11 + tools/data/ral_palettes/ral-json/outline.json | 103 + .../ral_palettes/ral-json/ral_pretty.json | 7883 ++++++ tools/data/ral_palettes/ral_colors/README.md | 13 + .../ral_palettes/ral_colors/ral_colors.yml | 1071 + 178 files changed, 93272 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/workflows/dart-ci.yml create mode 100644 .gitignore create mode 100644 .markdownlint.json create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.default.json create mode 100644 CHANGELOG.md create mode 100644 CODE_OF_CONDUCT.md create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE create mode 100644 README.md create mode 100644 SECURITY.md create mode 100644 STYLEGUIDE.md create mode 100644 analysis_options.yaml create mode 100644 example/README.md create mode 100644 example/all_palettes/.gitignore create mode 100644 example/all_palettes/.metadata create mode 100644 example/all_palettes/README.md create mode 100644 example/all_palettes/analysis_options.yaml create mode 100644 example/all_palettes/android/.gitignore create mode 100644 example/all_palettes/android/app/build.gradle create mode 100644 example/all_palettes/android/app/src/debug/AndroidManifest.xml create mode 100644 example/all_palettes/android/app/src/main/AndroidManifest.xml create mode 100644 example/all_palettes/android/app/src/main/kotlin/com/example/all_palettes/MainActivity.kt create mode 100644 example/all_palettes/android/app/src/main/res/drawable-v21/launch_background.xml create mode 100644 example/all_palettes/android/app/src/main/res/drawable/launch_background.xml create mode 100644 example/all_palettes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 example/all_palettes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 example/all_palettes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 example/all_palettes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 example/all_palettes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 example/all_palettes/android/app/src/main/res/values-night/styles.xml create mode 100644 example/all_palettes/android/app/src/main/res/values/styles.xml create mode 100644 example/all_palettes/android/app/src/profile/AndroidManifest.xml create mode 100644 example/all_palettes/android/build.gradle create mode 100644 example/all_palettes/android/gradle.properties create mode 100644 example/all_palettes/android/gradle/wrapper/gradle-wrapper.properties create mode 100644 example/all_palettes/android/settings.gradle create mode 100644 example/all_palettes/ios/.gitignore create mode 100644 example/all_palettes/ios/Flutter/AppFrameworkInfo.plist create mode 100644 example/all_palettes/ios/Flutter/Debug.xcconfig create mode 100644 example/all_palettes/ios/Flutter/Release.xcconfig create mode 100644 example/all_palettes/ios/Runner.xcodeproj/project.pbxproj create mode 100644 example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 example/all_palettes/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 example/all_palettes/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 example/all_palettes/ios/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 example/all_palettes/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 example/all_palettes/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 example/all_palettes/ios/Runner/AppDelegate.swift create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png create mode 100644 example/all_palettes/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md create mode 100644 example/all_palettes/ios/Runner/Base.lproj/LaunchScreen.storyboard create mode 100644 example/all_palettes/ios/Runner/Base.lproj/Main.storyboard create mode 100644 example/all_palettes/ios/Runner/Info.plist create mode 100644 example/all_palettes/ios/Runner/Runner-Bridging-Header.h create mode 100644 example/all_palettes/ios/RunnerTests/RunnerTests.swift create mode 100644 example/all_palettes/lib/main.dart create mode 100644 example/all_palettes/linux/.gitignore create mode 100644 example/all_palettes/linux/CMakeLists.txt create mode 100644 example/all_palettes/linux/flutter/CMakeLists.txt create mode 100644 example/all_palettes/linux/flutter/generated_plugin_registrant.cc create mode 100644 example/all_palettes/linux/flutter/generated_plugin_registrant.h create mode 100644 example/all_palettes/linux/flutter/generated_plugins.cmake create mode 100644 example/all_palettes/linux/main.cc create mode 100644 example/all_palettes/linux/my_application.cc create mode 100644 example/all_palettes/linux/my_application.h create mode 100644 example/all_palettes/macos/.gitignore create mode 100644 example/all_palettes/macos/Flutter/Flutter-Debug.xcconfig create mode 100644 example/all_palettes/macos/Flutter/Flutter-Release.xcconfig create mode 100644 example/all_palettes/macos/Flutter/GeneratedPluginRegistrant.swift create mode 100644 example/all_palettes/macos/Runner.xcodeproj/project.pbxproj create mode 100644 example/all_palettes/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 example/all_palettes/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 example/all_palettes/macos/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 example/all_palettes/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 example/all_palettes/macos/Runner/AppDelegate.swift create mode 100644 example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png create mode 100644 example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png create mode 100644 example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png create mode 100644 example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png create mode 100644 example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png create mode 100644 example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png create mode 100644 example/all_palettes/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png create mode 100644 example/all_palettes/macos/Runner/Base.lproj/MainMenu.xib create mode 100644 example/all_palettes/macos/Runner/Configs/AppInfo.xcconfig create mode 100644 example/all_palettes/macos/Runner/Configs/Debug.xcconfig create mode 100644 example/all_palettes/macos/Runner/Configs/Release.xcconfig create mode 100644 example/all_palettes/macos/Runner/Configs/Warnings.xcconfig create mode 100644 example/all_palettes/macos/Runner/DebugProfile.entitlements create mode 100644 example/all_palettes/macos/Runner/Info.plist create mode 100644 example/all_palettes/macos/Runner/MainFlutterWindow.swift create mode 100644 example/all_palettes/macos/Runner/Release.entitlements create mode 100644 example/all_palettes/macos/RunnerTests/RunnerTests.swift create mode 100644 example/all_palettes/pubspec.lock create mode 100644 example/all_palettes/pubspec.yaml create mode 100644 example/all_palettes/web/favicon.png create mode 100644 example/all_palettes/web/icons/Icon-192.png create mode 100644 example/all_palettes/web/icons/Icon-512.png create mode 100644 example/all_palettes/web/icons/Icon-maskable-192.png create mode 100644 example/all_palettes/web/icons/Icon-maskable-512.png create mode 100644 example/all_palettes/web/index.html create mode 100644 example/all_palettes/web/manifest.json create mode 100644 example/all_palettes/windows/.gitignore create mode 100644 example/all_palettes/windows/CMakeLists.txt create mode 100644 example/all_palettes/windows/flutter/CMakeLists.txt create mode 100644 example/all_palettes/windows/flutter/generated_plugin_registrant.cc create mode 100644 example/all_palettes/windows/flutter/generated_plugin_registrant.h create mode 100644 example/all_palettes/windows/flutter/generated_plugins.cmake create mode 100644 example/all_palettes/windows/runner/CMakeLists.txt create mode 100644 example/all_palettes/windows/runner/Runner.rc create mode 100644 example/all_palettes/windows/runner/flutter_window.cpp create mode 100644 example/all_palettes/windows/runner/flutter_window.h create mode 100644 example/all_palettes/windows/runner/main.cpp create mode 100644 example/all_palettes/windows/runner/resource.h create mode 100644 example/all_palettes/windows/runner/resources/app_icon.ico create mode 100644 example/all_palettes/windows/runner/runner.exe.manifest create mode 100644 example/all_palettes/windows/runner/utils.cpp create mode 100644 example/all_palettes/windows/runner/utils.h create mode 100644 example/all_palettes/windows/runner/win32_window.cpp create mode 100644 example/all_palettes/windows/runner/win32_window.h create mode 100644 example/main.dart create mode 100644 images/cover.webp create mode 100644 images/screenshots/zeplin_palette.webp create mode 100644 lib/src/palettes/commodore_64.dart create mode 100644 lib/src/palettes/pantone_fashion_design.dart create mode 100644 lib/src/palettes/pantone_graphic_design.dart create mode 100644 lib/src/palettes/pantone_product_design.dart create mode 100644 lib/src/palettes/ral.dart create mode 100644 lib/src/palettes/zeplin.dart create mode 100644 lib/uni_color_palette.dart create mode 100644 pubspec.lock create mode 100644 pubspec.yaml create mode 100644 test/palette_test.dart create mode 100644 tools/README.md create mode 100644 tools/data/ral_palettes/colourness/1.csv create mode 100644 tools/data/ral_palettes/colourness/README.md create mode 100644 tools/data/ral_palettes/colourness/colors.json create mode 100644 tools/data/ral_palettes/colourness/outline.json create mode 100644 tools/data/ral_palettes/ral-colors/1.csv create mode 100644 tools/data/ral_palettes/ral-colors/README.md create mode 100644 tools/data/ral_palettes/ral-colors/classic.js create mode 100644 tools/data/ral_palettes/ral-colors/classic.json create mode 100644 tools/data/ral_palettes/ral-colors/design.js create mode 100644 tools/data/ral_palettes/ral-colors/design.json create mode 100644 tools/data/ral_palettes/ral-colors/effect.js create mode 100644 tools/data/ral_palettes/ral-colors/effect.json create mode 100644 tools/data/ral_palettes/ral-colors/outline.json create mode 100644 tools/data/ral_palettes/ral-json/1.csv create mode 100644 tools/data/ral_palettes/ral-json/README.md create mode 100644 tools/data/ral_palettes/ral-json/outline.json create mode 100644 tools/data/ral_palettes/ral-json/ral_pretty.json create mode 100644 tools/data/ral_palettes/ral_colors/README.md create mode 100644 tools/data/ral_palettes/ral_colors/ral_colors.yml 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 0000000000000000000000000000000000000000..db77bb4b7b0906d62b1847e87f15cdcacf6a4f29 GIT binary patch literal 544 zcmeAS@N?(olHy`uVBq!ia0vp^9w5xY3?!3`olAj~WQl7;NpOBzNqJ&XDuZK6ep0G} zXKrG8YEWuoN@d~6R2!h8bpbvhu0Wd6uZuB!w&u2PAxD2eNXD>P5D~Wn-+_Wa#27Xc zC?Zj|6r#X(-D3u$NCt}(Ms06KgJ4FxJVv{GM)!I~&n8Bnc94O7-Hd)cjDZswgC;Qs zO=b+9!WcT8F?0rF7!Uys2bs@gozCP?z~o%U|N3vA*22NaGQG zlg@K`O_XuxvZ&Ks^m&R!`&1=spLvfx7oGDKDwpwW`#iqdw@AL`7MR}m`rwr|mZgU`8P7SBkL78fFf!WnuYWm$5Z0 zNXhDbCv&49sM544K|?c)WrFfiZvCi9h0O)B3Pgg&ebxsLQ05GG~ AQ2+n{ literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..17987b79bb8a35cc66c3c1fd44f5a5526c1b78be GIT binary patch literal 442 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA3?vioaBc-sk|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5Xx&nMcT!A!W`0S9QKQy;}1Cl^CgaH=;G9cpY;r$Q>i*pfB zP2drbID<_#qf;rPZx^FqH)F_D#*k@@q03KywUtLX8Ua?`H+NMzkczFPK3lFz@i_kW%1NOn0|D2I9n9wzH8m|-tHjsw|9>@K=iMBhxvkv6m8Y-l zytQ?X=U+MF$@3 zt`~i=@j|6y)RWMK--}M|=T`o&^Ni>IoWKHEbBXz7?A@mgWoL>!*SXo`SZH-*HSdS+ yn*9;$7;m`l>wYBC5bq;=U}IMqLzqbYCidGC!)_gkIk_C@Uy!y&wkt5C($~2D>~)O*cj@FGjOCM)M>_ixfudOh)?xMu#Fs z#}Y=@YDTwOM)x{K_j*Q;dPdJ?Mz0n|pLRx{4n|)f>SXlmV)XB04CrSJn#dS5nK2lM zrZ9#~WelCp7&e13Y$jvaEXHskn$2V!!DN-nWS__6T*l;H&Fopn?A6HZ-6WRLFP=R` zqG+CE#d4|IbyAI+rJJ`&x9*T`+a=p|0O(+s{UBcyZdkhj=yS1>AirP+0R;mf2uMgM zC}@~JfByORAh4SyRgi&!(cja>F(l*O+nd+@4m$|6K6KDn_&uvCpV23&>G9HJp{xgg zoq1^2_p9@|WEo z*X_Uko@K)qYYv~>43eQGMdbiGbo>E~Q& zrYBH{QP^@Sti!`2)uG{irBBq@y*$B zi#&(U-*=fp74j)RyIw49+0MRPMRU)+a2r*PJ$L5roHt2$UjExCTZSbq%V!HeS7J$N zdG@vOZB4v_lF7Plrx+hxo7(fCV&}fHq)$ literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..d5f1c8d34e7a88e3f88bea192c3a370d44689c3c GIT binary patch literal 1031 zcmeAS@N?(olHy`uVBq!ia0vp^6F``Q8Ax83A=Cw=BuiW)N`mv#O3D+9QW+dm@{>{( zJaZG%Q-e|yQz{EjrrIztFa`(sgt!6~Yi|1%a`XoT0ojZ}lNrNjb9xjc(B0U1_% zz5^97Xt*%oq$rQy4?0GKNfJ44uvxI)gC`h-NZ|&0-7(qS@?b!5r36oQ}zyZrNO3 zMO=Or+<~>+A&uN&E!^Sl+>xE!QC-|oJv`ApDhqC^EWD|@=#J`=d#Xzxs4ah}w&Jnc z$|q_opQ^2TrnVZ0o~wh<3t%W&flvYGe#$xqda2bR_R zvPYgMcHgjZ5nSA^lJr%;<&0do;O^tDDh~=pIxA#coaCY>&N%M2^tq^U%3DB@ynvKo}b?yu-bFc-u0JHzced$sg7S3zqI(2 z#Km{dPr7I=pQ5>FuK#)QwK?Y`E`B?nP+}U)I#c1+FM*1kNvWG|a(TpksZQ3B@sD~b zpQ2)*V*TdwjFOtHvV|;OsiDqHi=6%)o4b!)x$)%9pGTsE z-JL={-Ffv+T87W(Xpooq<`r*VzWQcgBN$$`u}f>-ZQI1BB8ykN*=e4rIsJx9>z}*o zo~|9I;xof literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..4d6372eebdb28e45604e46eeda8dd24651419bc0 GIT binary patch literal 1443 zcmb`G{WsKk6vsdJTdFg%tJav9_E4vzrOaqkWF|A724Nly!y+?N9`YV6wZ}5(X(D_N(?!*n3`|_r0Hc?=PQw&*vnU?QTFY zB_MsH|!j$PP;I}?dppoE_gA(4uc!jV&0!l7_;&p2^pxNo>PEcNJv za5_RT$o2Mf!<+r?&EbHH6nMoTsDOa;mN(wv8RNsHpG)`^ymG-S5By8=l9iVXzN_eG%Xg2@Xeq76tTZ*dGh~Lo9vl;Zfs+W#BydUw zCkZ$o1LqWQO$FC9aKlLl*7x9^0q%0}$OMlp@Kk_jHXOjofdePND+j!A{q!8~Jn+s3 z?~~w@4?egS02}8NuulUA=L~QQfm;MzCGd)XhiftT;+zFO&JVyp2mBww?;QByS_1w! zrQlx%{^cMj0|Bo1FjwY@Q8?Hx0cIPF*@-ZRFpPc#bBw{5@tD(5%sClzIfl8WU~V#u zm5Q;_F!wa$BSpqhN>W@2De?TKWR*!ujY;Yylk_X5#~V!L*Gw~;$%4Q8~Mad z@`-kG?yb$a9cHIApZDVZ^U6Xkp<*4rU82O7%}0jjHlK{id@?-wpN*fCHXyXh(bLt* zPc}H-x0e4E&nQ>y%B-(EL=9}RyC%MyX=upHuFhAk&MLbsF0LP-q`XnH78@fT+pKPW zu72MW`|?8ht^tz$iC}ZwLp4tB;Q49K!QCF3@!iB1qOI=?w z7In!}F~ij(18UYUjnbmC!qKhPo%24?8U1x{7o(+?^Zu0Hx81|FuS?bJ0jgBhEMzf< zCgUq7r2OCB(`XkKcN-TL>u5y#dD6D!)5W?`O5)V^>jb)P)GBdy%t$uUMpf$SNV31$ zb||OojAbvMP?T@$h_ZiFLFVHDmbyMhJF|-_)HX3%m=CDI+ID$0^C>kzxprBW)hw(v zr!Gmda);ICoQyhV_oP5+C%?jcG8v+D@9f?Dk*!BxY}dazmrT@64UrP3hlslANK)bq z$67n83eh}OeW&SV@HG95P|bjfqJ7gw$e+`Hxo!4cx`jdK1bJ>YDSpGKLPZ^1cv$ek zIB?0S<#tX?SJCLWdMd{-ME?$hc7A$zBOdIJ)4!KcAwb=VMov)nK;9z>x~rfT1>dS+ zZ6#`2v@`jgbqq)P22H)Tx2CpmM^o1$B+xT6`(v%5xJ(?j#>Q$+rx_R|7TzDZe{J6q zG1*EcU%tE?!kO%^M;3aM6JN*LAKUVb^xz8-Pxo#jR5(-KBeLJvA@-gxNHx0M-ZJLl z;#JwQoh~9V?`UVo#}{6ka@II>++D@%KqGpMdlQ}?9E*wFcf5(#XQnP$Dk5~%iX^>f z%$y;?M0BLp{O3a(-4A?ewryHrrD%cx#Q^%KY1H zNre$ve+vceSLZcNY4U(RBX&)oZn*Py()h)XkE?PL$!bNb{N5FVI2Y%LKEm%yvpyTP z(1P?z~7YxD~Rf<(a@_y` literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..dc9ada4725e9b0ddb1deab583e5b5102493aa332 GIT binary patch literal 10932 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 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..797d452e458972bab9d994556c8305db4c827017 GIT binary patch literal 406 zcmV;H0crk;P))>cdjpWt&rLJgVp-t?DREyuq1A%0Z4)6_WsQ7{nzjN zo!X zGXV)2i3kcZIL~_j>uIKPK_zib+3T+Nt3Mb&Br)s)UIaA}@p{wDda>7=Q|mGRp7pqY zkJ!7E{MNz$9nOwoVqpFb)}$IP24Wn2JJ=Cw(!`OXJBr45rP>>AQr$6c7slJWvbpNW z@KTwna6d?PP>hvXCcp=4F;=GR@R4E7{4VU^0p4F>v^#A|>07*qoM6N<$f*5nx ACIA2c literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..6ed2d933e1120817fe9182483a228007b18ab6ae GIT binary patch literal 450 zcmV;z0X_bSP)iGWQ_5NJQ_~rNh*z)}eT%KUb z`7gNk0#AwF^#0T0?hIa^`~Ck;!}#m+_uT050aTR(J!bU#|IzRL%^UsMS#KsYnTF*!YeDOytlP4VhV?b} z%rz_<=#CPc)tU1MZTq~*2=8~iZ!lSa<{9b@2Jl;?IEV8)=fG217*|@)CCYgFze-x? zIFODUIA>nWKpE+bn~n7;-89sa>#DR>TSlqWk*!2hSN6D~Qb#VqbP~4Fk&m`@1$JGr zXPIdeRE&b2Thd#{MtDK$px*d3-Wx``>!oimf%|A-&-q*6KAH)e$3|6JV%HX{Hig)k suLT-RhftRq8b9;(V=235Wa|I=027H2wCDra;{X5v07*qoM6N<$f;9x^2LJ#7 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..4cd7b0099ca80c806f8fe495613e8d6c69460d76 GIT binary patch literal 282 zcmV+#0p(^bcu7P-R4C8Q z&e;xxFbF_Vrezo%_kH*OKhshZ6BFpG-Y1e10`QXJKbND7AMQ&cMj60B5TNObaZxYybcN07*qoM6N<$g3m;S%K!iX literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..fe730945a01f64a61e2235dbe3f45b08f7729182 GIT binary patch literal 462 zcmV;<0WtoGP)-}iV`2<;=$?g5M=KQbZ{F&YRNy7Nn@%_*5{gvDM0aKI4?ESmw z{NnZg)A0R`+4?NF_RZexyVB&^^ZvN!{I28tr{Vje;QNTz`dG&Jz0~Ek&f2;*Z7>B|cg}xYpxEFY+0YrKLF;^Q+-HreN0P{&i zK~zY`?b7ECf-n?@;d<&orQ*Q7KoR%4|C>{W^h6@&01>0SKS`dn{Q}GT%Qj_{PLZ_& zs`MFI#j-(>?bvdZ!8^xTwlY{qA)T4QLbY@j(!YJ7aXJervHy6HaG_2SB`6CC{He}f zHVw(fJWApwPq!6VY7r1w-Fs)@ox~N+q|w~e;JI~C4Vf^@d>Wvj=fl`^u9x9wd9 zR%3*Q+)t%S!MU_`id^@&Y{y7-r98lZX0?YrHlfmwb?#}^1b{8g&KzmkE(L>Z&)179 zp<)v6Y}pRl100G2FL_t(o!|l{-Q-VMg#&MKg7c{O0 z2wJImOS3Gy*Z2Qifdv~JYOp;v+U)a|nLoc7hNH;I$;lzDt$}rkaFw1mYK5_0Q(Sut zvbEloxON7$+HSOgC9Z8ltuC&0OSF!-mXv5caV>#bc3@hBPX@I$58-z}(ZZE!t-aOG zpjNkbau@>yEzH(5Yj4kZiMH32XI!4~gVXNnjAvRx;Sdg^`>2DpUEwoMhTs_st8pKG z(%SHyHdU&v%f36~uERh!bd`!T2dw;z6PrOTQ7Vt*#9F2uHlUVnb#ev_o^fh}Dzmq} zWtlk35}k=?xj28uO|5>>$yXadTUE@@IPpgH`gJ~Ro4>jd1IF|(+IX>8M4Ps{PNvmI zNj4D+XgN83gPt_Gm}`Ybv{;+&yu-C(Grdiahmo~BjG-l&mWM+{e5M1sm&=xduwgM9 z`8OEh`=F3r`^E{n_;%9weN{cf2%7=VzC@cYj+lg>+3|D|_1C@{hcU(DyQG_BvBWe? zvTv``=%b1zrol#=R`JB)>cdjpWt&rLJgVp-t?DREyuq1A%0Z4)6_WsQ7{nzjN zo!X zGXV)2i3kcZIL~_j>uIKPK_zib+3T+Nt3Mb&Br)s)UIaA}@p{wDda>7=Q|mGRp7pqY zkJ!7E{MNz$9nOwoVqpFb)}$IP24Wn2JJ=Cw(!`OXJBr45rP>>AQr$6c7slJWvbpNW z@KTwna6d?PP>hvXCcp=4F;=GR@R4E7{4VU^0p4F>v^#A|>07*qoM6N<$f*5nx ACIA2c literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..502f463a9bc882b461c96aadf492d1729e49e725 GIT binary patch literal 586 zcmV-Q0=4~#P)+}#`wDE{8-2Mebf5<{{PqV{TgVcv*r8?UZ3{-|G?_}T*&y;@cqf{ z{Q*~+qr%%p!1pS*_Uicl#q9lc(D`!D`LN62sNwq{oYw(Wmhk)k<@f$!$@ng~_5)Ru z0Z)trIA5^j{DIW^c+vT2%lW+2<(RtE2wR;4O@)Tm`Xr*?A(qYoM}7i5Yxw>D(&6ou zxz!_Xr~yNF+waPe00049Nkl*;a!v6h%{rlvIH#gW3s8p;bFr=l}mRqpW2h zw=OA%hdyL~z+UHOzl0eKhEr$YYOL-c-%Y<)=j?(bzDweB7{b+%_ypvm_cG{SvM=DK zhv{K@m>#Bw>2W$eUI#iU)Wdgs8Y3U+A$Gd&{+j)d)BmGKx+43U_!tik_YlN)>$7G! zhkE!s;%oku3;IwG3U^2kw?z+HM)jB{@zFhK8P#KMSytSthr+4!c(5c%+^UBn`0X*2 zy3(k600_CSZj?O$Qu%&$;|TGUJrptR(HzyIx>5E(2r{eA(<6t3e3I0B)7d6s7?Z5J zZ!rtKvA{MiEBm&KFtoifx>5P^Z=vl)95XJn()aS5%ad(s?4-=Tkis9IGu{`Fy8r+H07*qoM6N<$f20Z)wqMt%V?S?~D#06};F zA3KcL`Wb+>5ObvgQIG&ig8(;V04hz?@cqy3{mSh8o!|U|)cI!1_+!fWH@o*8vh^CU z^ws0;(c$gI+2~q^tO#GDHf@=;DncUw00J^eL_t(&-tE|HQ`%4vfZ;WsBqu-$0nu1R zq^Vj;p$clf^?twn|KHO+IGt^q#a3X?w9dXC@*yxhv&l}F322(8Y1&=P&I}~G@#h6; z1CV9ecD9ZEe87{{NtI*)_aJ<`kJa z?5=RBtFF50s;jQLFil-`)m2wrb=6h(&brpj%nG_U&ut~$?8Rokzxi8zJoWr#2dto5 zOX_URcc<1`Iky+jc;A%Vzx}1QU{2$|cKPom2Vf1{8m`vja4{F>HS?^Nc^rp}xo+Nh zxd}eOm`fm3@MQC1< zIk&aCjb~Yh%5+Yq0`)D;q{#-Uqlv*o+Oor zE!I71Z@ASH3grl8&P^L0WpavHoP|UX4e?!igT`4?AZk$hu*@%6WJ;zDOGlw7kj@ zY5!B-0ft0f?Lgb>C;$Ke07*qoM6N<$f~t1N9smFU literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..0ec303439225b78712f49115768196d8d76f6790 GIT binary patch literal 862 zcmV-k1EKthP)20Z)wqMt%V?S?~D#06};F zA3KcL`Wb+>5ObvgQIG&ig8(;V04hz?@cqy3{mSh8o!|U|)cI!1_+!fWH@o*8vh^CU z^ws0;(c$gI+2~q^tO#GDHf@=;DncUw00J^eL_t(&-tE|HQ`%4vfZ;WsBqu-$0nu1R zq^Vj;p$clf^?twn|KHO+IGt^q#a3X?w9dXC@*yxhv&l}F322(8Y1&=P&I}~G@#h6; z1CV9ecD9ZEe87{{NtI*)_aJ<`kJa z?5=RBtFF50s;jQLFil-`)m2wrb=6h(&brpj%nG_U&ut~$?8Rokzxi8zJoWr#2dto5 zOX_URcc<1`Iky+jc;A%Vzx}1QU{2$|cKPom2Vf1{8m`vja4{F>HS?^Nc^rp}xo+Nh zxd}eOm`fm3@MQC1< zIk&aCjb~Yh%5+Yq0`)D;q{#-Uqlv*o+Oor zE!I71Z@ASH3grl8&P^L0WpavHoP|UX4e?!igT`4?AZk$hu*@%6WJ;zDOGlw7kj@ zY5!B-0ft0f?Lgb>C;$Ke07*qoM6N<$f~t1N9smFU literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..e9f5fea27c705180eb716271f41b582e76dcbd90 GIT binary patch literal 1674 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 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..0467bf12aa4d28f374bb26596605a46dcbb3e7c8 GIT binary patch literal 1418 zcmV;51$Fv~P)q zKfU)WzW*n(@|xWGCA9ScMt*e9`2kdxPQ&&>|-UCa7_51w+ zLUsW@ZzZSW0y$)Hp~e9%PvP|a03ks1`~K?q{u;6NC8*{AOqIUq{CL&;p56Lf$oQGq z^={4hPQv)y=I|4n+?>7Fim=dxt1 z2H+Dm+1+fh+IF>G0SjJMkQQre1x4|G*Z==(Ot&kCnUrL4I(rf(ucITwmuHf^hXiJT zkdTm&kdTm&kdTm&kdP`esgWG0BcWCVkVZ&2dUwN`cgM8QJb`Z7Z~e<&Yj2(}>Tmf` zm1{eLgw!b{bXkjWbF%dTkTZEJWyWOb##Lfw4EK2}<0d6%>AGS{po>WCOy&f$Tay_> z?NBlkpo@s-O;0V%Y_Xa-G#_O08q5LR*~F%&)}{}r&L%Sbs8AS4t7Y0NEx*{soY=0MZExqA5XHQkqi#4gW3 zqODM^iyZl;dvf)-bOXtOru(s)Uc7~BFx{w-FK;2{`VA?(g&@3z&bfLFyctOH!cVsF z7IL=fo-qBndRUm;kAdXR4e6>k-z|21AaN%ubeVrHl*<|s&Ax@W-t?LR(P-24A5=>a z*R9#QvjzF8n%@1Nw@?CG@6(%>+-0ASK~jEmCV|&a*7-GKT72W<(TbSjf)&Eme6nGE z>Gkj4Sq&2e+-G%|+NM8OOm5zVl9{Z8Dd8A5z3y8mZ=4Bv4%>as_{9cN#bm~;h>62( zdqY93Zy}v&c4n($Vv!UybR8ocs7#zbfX1IY-*w~)p}XyZ-SFC~4w>BvMVr`dFbelV{lLL0bx7@*ZZdebr3`sP;? zVImji)kG)(6Juv0lz@q`F!k1FE;CQ(D0iG$wchPbKZQELlsZ#~rt8#90Y_Xh&3U-< z{s<&cCV_1`^TD^ia9!*mQDq& zn2{r`j};V|uV%_wsP!zB?m%;FeaRe+X47K0e+KE!8C{gAWF8)lCd1u1%~|M!XNRvw zvtqy3iz0WSpWdhn6$hP8PaRBmp)q`#PCA`Vd#Tc$@f1tAcM>f_I@bC)hkI9|o(Iqv zo}Piadq!j76}004RBio<`)70k^`K1NK)q>w?p^C6J2ZC!+UppiK6&y3Kmbv&O!oYF z34$0Z;QO!JOY#!`qyGH<3Pd}Pt@q*A0V=3SVtWKRR8d8Z&@)3qLPA19LPA19LPEUC YUoZo%k(ykuW&i*H07*qoM6N<$f+CH{y8r+H literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..82b6f9d9a33e198f5747104729e1fcef999772a5 GIT binary patch literal 102994 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ⅅ8MglG&ER{i5lN315cO?EdHNLrg? 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 z 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 Pe7HEdAEg|=c=LY&YVNkY literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..13b35eba55c6dabc3aac36f33d859266c18fa0d0 GIT binary patch literal 5680 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 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..0a3f5fa40fb3d1e0710331a48de5d256da3f275d GIT binary patch literal 520 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|Tv8)E(|mmy zw18|52FCVG1{RPKAeI7R1_tH@j10^`nh_+nfC(-uuz(rC1}QWNE&K#jR^;j87-Auq zoUlN^K{r-Q+XN;zI ze|?*NFmgt#V#GwrSWaz^2G&@SBmck6ZcIFMww~vE<1E?M2#KUn1CzsB6D2+0SuRV@ zV2kK5HvIGB{HX-hQzs0*AB%5$9RJ@a;)Ahq#p$GSP91^&hi#6sg*;a~dt}4AclK>h z_3MoPRQ{i;==;*1S-mY<(JFzhAxMI&<61&m$J0NDHdJ3tYx~j0%M-uN6Zl8~_0DOkGXc0001@sz3l12C6Xg{AT~( zm6w64BA|AX`Ve)YY-glyudNN>MAfkXz-T7`_`fEolM;0T0BA)(02-OaW z0*cW7Z~ec94o8&g0D$N>b!COu{=m}^%oXZ4?T8ZyPZuGGBPBA7pbQMoV5HYhiT?%! zcae~`(QAN4&}-=#2f5fkn!SWGWmSeCISBcS=1-U|MEoKq=k?_x3apK>9((R zuu$9X?^8?@(a{qMS%J8SJPq))v}Q-ZyDm6Gbie0m92=`YlwnQPQP1kGSm(N2UJ3P6 z^{p-u)SSCTW~c1rw;cM)-uL2{->wCn2{#%;AtCQ!m%AakVs1K#v@(*-6QavyY&v&*wO_rCJXJuq$c$7ZjsW+pJo-$L^@!7X04CvaOpPyfw|FKvu;e(&Iw>Tbg zL}#8e^?X%TReXTt>gsBByt0kSU20oQx*~P=4`&tcZ7N6t-6LiK{LxX*p6}9c<0Pu^ zLx1w_P4P2V>bX=`F%v$#{sUDdF|;rbI{p#ZW`00Bgh(eB(nOIhy8W9T>3aQ=k8Z9% zB+TusFABF~J?N~fAd}1Rme=@4+1=M{^P`~se7}e3;mY0!%#MJf!XSrUC{0uZqMAd7%q zQY#$A>q}noIB4g54Ue)x>ofVm3DKBbUmS4Z-bm7KdKsUixva)1*&z5rgAG2gxG+_x zqT-KNY4g7eM!?>==;uD9Y4iI(Hu$pl8!LrK_Zb}5nv(XKW{9R144E!cFf36p{i|8pRL~p`_^iNo z{mf7y`#hejw#^#7oKPlN_Td{psNpNnM?{7{R-ICBtYxk>?3}OTH_8WkfaTLw)ZRTfxjW+0>gMe zpKg~`Bc$Y>^VX;ks^J0oKhB#6Ukt{oQhN+o2FKGZx}~j`cQB%vVsMFnm~R_1Y&Ml? zwFfb~d|dW~UktY@?zkau>Owe zRroi(<)c4Ux&wJfY=3I=vg)uh;sL(IYY9r$WK1$F;jYqq1>xT{LCkIMb3t2jN8d`9 z=4(v-z7vHucc_fjkpS}mGC{ND+J-hc_0Ix4kT^~{-2n|;Jmn|Xf9wGudDk7bi*?^+ z7fku8z*mbkGm&xf&lmu#=b5mp{X(AwtLTf!N`7FmOmX=4xwbD=fEo8CaB1d1=$|)+ z+Dlf^GzGOdlqTO8EwO?8;r+b;gkaF^$;+#~2_YYVH!hD6r;PaWdm#V=BJ1gH9ZK_9 zrAiIC-)z)hRq6i5+$JVmR!m4P>3yJ%lH)O&wtCyum3A*})*fHODD2nq!1@M>t@Za+ zH6{(Vf>_7!I-APmpsGLYpl7jww@s5hHOj5LCQXh)YAp+y{gG(0UMm(Ur z3o3n36oFwCkn+H*GZ-c6$Y!5r3z*@z0`NrB2C^q#LkOuooUM8Oek2KBk}o1PU8&2L z4iNkb5CqJWs58aR394iCU^ImDqV;q_Pp?pl=RB2372(Io^GA^+oKguO1(x$0<7w3z z)j{vnqEB679Rz4i4t;8|&Zg77UrklxY9@GDq(ZphH6=sW`;@uIt5B?7Oi?A0-BL}(#1&R;>2aFdq+E{jsvpNHjLx2t{@g1}c~DQcPNmVmy| zNMO@ewD^+T!|!DCOf}s9dLJU}(KZy@Jc&2Nq3^;vHTs}Hgcp`cw&gd7#N}nAFe3cM1TF%vKbKSffd&~FG9y$gLyr{#to)nxz5cCASEzQ}gz8O)phtHuKOW6p z@EQF(R>j%~P63Wfosrz8p(F=D|Mff~chUGn(<=CQbSiZ{t!e zeDU-pPsLgtc#d`3PYr$i*AaT!zF#23htIG&?QfcUk+@k$LZI}v+js|yuGmE!PvAV3 ztzh90rK-0L6P}s?1QH`Ot@ilbgMBzWIs zIs6K<_NL$O4lwR%zH4oJ+}JJp-bL6~%k&p)NGDMNZX7)0kni&%^sH|T?A)`z z=adV?!qnWx^B$|LD3BaA(G=ePL1+}8iu^SnnD;VE1@VLHMVdSN9$d)R(Wk{JEOp(P zm3LtAL$b^*JsQ0W&eLaoYag~=fRRdI>#FaELCO7L>zXe6w*nxN$Iy*Q*ftHUX0+N- zU>{D_;RRVPbQ?U+$^%{lhOMKyE5>$?U1aEPist+r)b47_LehJGTu>TcgZe&J{ z{q&D{^Ps~z7|zj~rpoh2I_{gAYNoCIJmio3B}$!5vTF*h$Q*vFj~qbo%bJCCRy509 zHTdDh_HYH8Zb9`}D5;;J9fkWOQi%Y$B1!b9+ESj+B@dtAztlY2O3NE<6HFiqOF&p_ zW-K`KiY@RPSY-p9Q99}Hcd05DT79_pfb{BV7r~?9pWh=;mcKBLTen%THFPo2NN~Nf zriOtFnqx}rtO|A6k!r6 zf-z?y-UD{dT0kT9FJ`-oWuPHbo+3wBS(}?2ql(+e@VTExmfnB*liCb zmeI+v5*+W_L;&kQN^ChW{jE0Mw#0Tfs}`9bk3&7UjxP^Ke(%eJu2{VnW?tu7Iqecm zB5|=-QdzK$=h50~{X3*w4%o1FS_u(dG2s&427$lJ?6bkLet}yYXCy)u_Io1&g^c#( z-$yYmSpxz{>BL;~c+~sxJIe1$7eZI_9t`eB^Pr0)5CuA}w;;7#RvPq|H6!byRzIJG ziQ7a4y_vhj(AL`8PhIm9edCv|%TX#f50lt8+&V+D4<}IA@S@#f4xId80oH$!_!q?@ zFRGGg2mTv&@76P7aTI{)Hu%>3QS_d)pQ%g8BYi58K~m-Ov^7r8BhX7YC1D3vwz&N8{?H*_U7DI?CI)+et?q|eGu>42NJ?K4SY zD?kc>h@%4IqNYuQ8m10+8xr2HYg2qFNdJl=Tmp&ybF>1>pqVfa%SsV*BY$d6<@iJA ziyvKnZ(~F9xQNokBgMci#pnZ}Igh0@S~cYcU_2Jfuf|d3tuH?ZSSYBfM(Y3-JBsC|S9c;# zyIMkPxgrq};0T09pjj#X?W^TFCMf1-9P{)g88;NDI+S4DXe>7d3Mb~i-h&S|Jy{J< zq3736$bH?@{!amD!1Ys-X)9V=#Z={fzsjVYMX5BG6%}tkzwC#1nQLj1y1f#}8**4Y zAvDZHw8)N)8~oWC88CgzbwOrL9HFbk4}h85^ptuu7A+uc#$f^9`EWv1Vr{5+@~@Uv z#B<;-nt;)!k|fRIg;2DZ(A2M2aC65kOIov|?Mhi1Sl7YOU4c$T(DoRQIGY`ycfkn% zViHzL;E*A{`&L?GP06Foa38+QNGA zw3+Wqs(@q+H{XLJbwZzE(omw%9~LPZfYB|NF5%j%E5kr_xE0u;i?IOIchn~VjeDZ) zAqsqhP0vu2&Tbz3IgJvMpKbThC-@=nk)!|?MIPP>MggZg{cUcKsP8|N#cG5 zUXMXxcXBF9`p>09IR?x$Ry3;q@x*%}G#lnB1}r#!WL88I@uvm}X98cZ8KO&cqT1p> z+gT=IxPsq%n4GWgh-Bk8E4!~`r@t>DaQKsjDqYc&h$p~TCh8_Mck5UB84u6Jl@kUZCU9BA-S!*bf>ZotFX9?a_^y%)yH~rsAz0M5#^Di80_tgoKw(egN z`)#(MqAI&A84J#Z<|4`Co8`iY+Cv&iboMJ^f9ROUK0Lm$;-T*c;TCTED_0|qfhlcS zv;BD*$Zko#nWPL}2K8T-?4}p{u)4xon!v_(yVW8VMpxg4Kh^J6WM{IlD{s?%XRT8P|yCU`R&6gwB~ zg}{At!iWCzOH37!ytcPeC`(({ovP7M5Y@bYYMZ}P2Z3=Y_hT)4DRk}wfeIo%q*M9UvXYJq!-@Ly79m5aLD{hf@BzQB>FdQ4mw z6$@vzSKF^Gnzc9vbccii)==~9H#KW<6)Uy1wb~auBn6s`ct!ZEos`WK8e2%<00b%# zY9Nvnmj@V^K(a_38dw-S*;G-(i(ETuIwyirs?$FFW@|66a38k+a%GLmucL%Wc8qk3 z?h_4!?4Y-xt)ry)>J`SuY**fuq2>u+)VZ+_1Egzctb*xJ6+7q`K$^f~r|!i?(07CD zH!)C_uerf-AHNa?6Y61D_MjGu*|wcO+ZMOo4q2bWpvjEWK9yASk%)QhwZS%N2_F4& z16D18>e%Q1mZb`R;vW{+IUoKE`y3(7p zplg5cBB)dtf^SdLd4n60oWie|(ZjgZa6L*VKq02Aij+?Qfr#1z#fwh92aV-HGd^_w zsucG24j8b|pk>BO7k8dS86>f-jBP^Sa}SF{YNn=^NU9mLOdKcAstv&GV>r zLxKHPkFxpvE8^r@MSF6UA}cG`#yFL8;kA7ccH9D=BGBtW2;H>C`FjnF^P}(G{wU;G z!LXLCbPfsGeLCQ{Ep$^~)@?v`q(uI`CxBY44osPcq@(rR-633!qa zsyb>?v%@X+e|Mg`+kRL*(;X>^BNZz{_kw5+K;w?#pReiw7eU8_Z^hhJ&fj80XQkuU z39?-z)6Fy$I`bEiMheS(iB6uLmiMd1i)cbK*9iPpl+h4x9ch7x- z1h4H;W_G?|)i`z??KNJVwgfuAM=7&Apd3vm#AT8uzQZ!NII}}@!j)eIfn53h{NmN7 zAKG6SnKP%^k&R~m5#@_4B@V?hYyHkm>0SQ@PPiw*@Tp@UhP-?w@jW?nxXuCipMW=L zH*5l*d@+jXm0tIMP_ec6Jcy6$w(gKK@xBX8@%oPaSyG;13qkFb*LuVx3{AgIyy&n3 z@R2_DcEn|75_?-v5_o~%xEt~ONB>M~tpL!nOVBLPN&e5bn5>+7o0?Nm|EGJ5 zmUbF{u|Qn?cu5}n4@9}g(G1JxtzkKv(tqwm_?1`?YSVA2IS4WI+*(2D*wh&6MIEhw z+B+2U<&E&|YA=3>?^i6)@n1&&;WGHF-pqi_sN&^C9xoxME5UgorQ_hh1__zzR#zVC zOQt4q6>ME^iPJ37*(kg4^=EFqyKH@6HEHXy79oLj{vFqZGY?sVjk!BX^h$SFJlJnv z5uw~2jLpA)|0=tp>qG*tuLru?-u`khGG2)o{+iDx&nC}eWj3^zx|T`xn5SuR;Aw8U z`p&>dJw`F17@J8YAuW4=;leBE%qagVTG5SZdh&d)(#ZhowZ|cvWvGMMrfVsbg>_~! z19fRz8CSJdrD|Rl)w!uznBF&2-dg{>y4l+6(L(vzbLA0Bk&`=;oQQ>(M8G=3kto_) zP8HD*n4?MySO2YrG6fwSrVmnesW+D&fxjfEmp=tPd?RKLZJcH&K(-S+x)2~QZ$c(> zru?MND7_HPZJVF%wX(49H)+~!7*!I8w72v&{b={#l9yz+S_aVPc_So%iF8>$XD1q1 zFtucO=rBj0Ctmi0{njN8l@}!LX}@dwl>3yMxZ;7 z0Ff2oh8L)YuaAGOuZ5`-p%Z4H@H$;_XRJQ|&(MhO78E|nyFa158gAxG^SP(vGi^+< zChY}o(_=ci3Wta#|K6MVljNe0T$%Q5ylx-v`R)r8;3+VUpp-)7T`-Y&{Zk z*)1*2MW+_eOJtF5tCMDV`}jg-R(_IzeE9|MBKl;a7&(pCLz}5<Zf+)T7bgNUQ_!gZtMlw=8doE}#W+`Xp~1DlE=d5SPT?ymu!r4z%&#A-@x^=QfvDkfx5-jz+h zoZ1OK)2|}_+UI)i9%8sJ9X<7AA?g&_Wd7g#rttHZE;J*7!e5B^zdb%jBj&dUDg4&B zMMYrJ$Z%t!5z6=pMGuO-VF~2dwjoXY+kvR>`N7UYfIBMZGP|C7*O=tU z2Tg_xi#Q3S=1|=WRfZD;HT<1D?GMR%5kI^KWwGrC@P2@R>mDT^3qsmbBiJc21kip~ zZp<7;^w{R;JqZ)C4z-^wL=&dBYj9WJBh&rd^A^n@07qM$c+kGv^f+~mU5_*|eePF| z3wDo-qaoRjmIw<2DjMTG4$HP{z54_te_{W^gu8$r=q0JgowzgQPct2JNtWPUsjF8R zvit&V8$(;7a_m%%9TqPkCXYUp&k*MRcwr*24>hR! z$4c#E=PVE=P4MLTUBM z7#*RDe0}=B)(3cvNpOmWa*eH#2HR?NVqXdJ=hq);MGD07JIQQ7Y0#iD!$C+mk7x&B zMwkS@H%>|fmSu#+ zI!}Sb(%o29Vkp_Th>&&!k7O>Ba#Om~B_J{pT7BHHd8(Ede(l`7O#`_}19hr_?~JP9 z`q(`<)y>%)x;O7)#-wfCP{?llFMoH!)ZomgsOYFvZ1DxrlYhkWRw#E-#Qf*z@Y-EQ z1~?_=c@M4DO@8AzZ2hKvw8CgitzI9yFd&N1-{|vP#4IqYb*#S0e3hrjsEGlnc4xwk z4o!0rxpUt8j&`mJ8?+P8G{m^jbk)bo_UPM+ifW*y-A*et`#_Ja_3nYyRa9fAG1Xr5 z>#AM_@PY|*u)DGRWJihZvgEh#{*joJN28uN7;i5{kJ*Gb-TERfN{ERe_~$Es~NJCpdKLRvdj4658uYYx{ng7I<6j~w@p%F<7a(Ssib|j z51;=Py(Nu*#hnLx@w&8X%=jrADn3TW>kplnb zYbFIWWVQXN7%Cwn6KnR)kYePEBmvM45I)UJb$)ninpdYg3a5N6pm_7Q+9>!_^xy?k za8@tJ@OOs-pRAAfT>Nc2x=>sZUs2!9Dwa%TTmDggH4fq(x^MW>mcRyJINlAqK$YQCMgR8`>6=Sg$ zFnJZsA8xUBXIN3i70Q%8px@yQPMgVP=>xcPI38jNJK<=6hC={a07+n@R|$bnhB)X$ z(Zc%tadp70vBTnW{OUIjTMe38F}JIH$#A}PB&RosPyFZMD}q}5W%$rh>5#U;m`z2K zc(&WRxx7DQLM-+--^w*EWAIS%bi>h587qkwu|H=hma3T^bGD&Z!`u(RKLeNZ&pI=q$|HOcji(0P1QC!YkAp*u z3%S$kumxR}jU<@6`;*-9=5-&LYRA<~uFrwO3U0k*4|xUTp4ZY7;Zbjx|uw&BWU$zK(w55pWa~#=f$c zNDW0O68N!xCy>G}(CX=;8hJLxAKn@Aj(dbZxO8a$+L$jK8$N-h@4$i8)WqD_%Snh4 zR?{O%k}>lr>w$b$g=VP8mckcCrjnp>uQl5F_6dPM8FWRqs}h`DpfCv20uZhyY~tr8 zkAYW4#yM;*je)n=EAb(q@5BWD8b1_--m$Q-3wbh1hM{8ihq7UUQfg@)l06}y+#=$( z$x>oVYJ47zAC^>HLRE-!HitjUixP6!R98WU+h>zct7g4eD;Mj#FL*a!VW!v-@b(Jv zj@@xM5noCp5%Vk3vY{tyI#oyDV7<$`KG`tktVyC&0DqxA#>V;-3oH%NW|Q&=UQ&zU zXNIT67J4D%5R1k#bW0F}TD`hlW7b)-=-%X4;UxQ*u4bK$mTAp%y&-(?{sXF%e_VH6 zTkt(X)SSN|;8q@8XX6qfR;*$r#HbIrvOj*-5ND8RCrcw4u8D$LXm5zlj@E5<3S0R# z??=E$p{tOk96$SloZ~ARe5`J=dB|Nj?u|zy2r(-*(q^@YwZiTF@QzQyPx_l=IDKa) zqD@0?IHJqSqZ_5`)81?4^~`yiGh6>7?|dKa8!e|}5@&qV!Iu9<@G?E}Vx9EzomB3t zEbMEm$TKGwkHDpirp;FZD#6P5qIlQJ8}rf;lHoz#h4TFFPYmS3+8(13_Mx2`?^=8S z|0)0&dQLJTU6{b%*yrpQe#OKKCrL8}YKw+<#|m`SkgeoN69TzIBQOl_Yg)W*w?NW) z*WxhEp$zQBBazJSE6ygu@O^!@Fr46j=|K`Mmb~xbggw7<)BuC@cT@Bwb^k?o-A zKX^9AyqR?zBtW5UA#siILztgOp?r4qgC`9jYJG_fxlsVSugGprremg-W(K0{O!Nw-DN%=FYCyfYA3&p*K>+|Q}s4rx#CQK zNj^U;sLM#q8}#|PeC$p&jAjqMu(lkp-_50Y&n=qF9`a3`Pr9f;b`-~YZ+Bb0r~c+V z*JJ&|^T{}IHkwjNAaM^V*IQ;rk^hnnA@~?YL}7~^St}XfHf6OMMCd9!vhk#gRA*{L zp?&63axj|Si%^NW05#87zpU_>QpFNb+I00v@cHwvdBn+Un)n2Egdt~LcWOeBW4Okm zD$-e~RD+W|UB;KQ;a7GOU&%p*efGu2$@wR74+&iP8|6#_fmnh^WcJLs)rtz{46);F z4v0OL{ZP9550>2%FE(;SbM*#sqMl*UXOb>ch`fJ|(*bOZ9=EB1+V4fkQ)hjsm3-u^Pk-4ji_uDDHdD>84tER!MvbH`*tG zzvbhBR@}Yd`azQGavooV=<WbvWLlO#x`hyO34mKcxrGv=`{ssnP=0Be5#1B;Co9 zh{TR>tjW2Ny$ZxJpYeg57#0`GP#jxDCU0!H15nL@@G*HLQcRdcsUO3sO9xvtmUcc{F*>FQZcZ5bgwaS^k-j5mmt zI7Z{Xnoml|A(&_{imAjK!kf5>g(oDqDI4C{;Bv162k8sFNr;!qPa2LPh>=1n z=^_9)TsLDvTqK7&*Vfm5k;VXjBW^qN3Tl&}K=X5)oXJs$z3gk0_+7`mJvz{pK|FVs zHw!k&7xVjvY;|(Py<;J{)b#Yjj*LZO7x|~pO4^MJ2LqK3X;Irb%nf}L|gck zE#55_BNsy6m+W{e zo!P59DDo*s@VIi+S|v93PwY6d?CE=S&!JLXwE9{i)DMO*_X90;n2*mPDrL%{iqN!?%-_95J^L z=l<*{em(6|h7DR4+4G3Wr;4*}yrBkbe3}=p7sOW1xj!EZVKSMSd;QPw>uhKK z#>MlS@RB@-`ULv|#zI5GytO{=zp*R__uK~R6&p$q{Y{iNkg61yAgB8C^oy&``{~FK z8hE}H&nIihSozKrOONe5Hu?0Zy04U#0$fB7C6y~?8{or}KNvP)an=QP&W80mj&8WL zEZQF&*FhoMMG6tOjeiCIV;T{I>jhi9hiUwz?bkX3NS-k5eWKy)Mo_orMEg4sV6R6X&i-Q%JG;Esl+kLpn@Bsls9O|i9z`tKB^~1D5)RIBB&J<6T@a4$pUvh$IR$%ubH)joi z!7>ON0DPwx=>0DA>Bb^c?L8N0BBrMl#oDB+GOXJh;Y&6I)#GRy$W5xK%a;KS8BrER zX)M>Rdoc*bqP*L9DDA3lF%U8Yzb6RyIsW@}IKq^i7v&{LeIc=*ZHIbO68x=d=+0T( zev=DT9f|x!IWZNTB#N7}V4;9#V$%Wo0%g>*!MdLOEU>My0^gni9ocID{$g9ytD!gy zKRWT`DVN(lcYjR|(}f0?zgBa3SwunLfAhx><%u0uFkrdyqlh8_g zDKt#R6rA2(Vm2LW_>3lBNYKG_F{TEnnKWGGC15y&OebIRhFL4TeMR*v9i0wPoK#H< zu4){s4K&K)K(9~jgGm;H7lS7y_RYfS;&!Oj5*eqbvEcW^a*i67nevzOZxN6F+K~A%TYEtsAVsR z@J=1hc#Dgs7J2^FL|qV&#WBFQyDtEQ2kPO7m2`)WFhqAob)Y>@{crkil6w9VoA?M6 zADGq*#-hyEVhDG5MQj677XmcWY1_-UO40QEP&+D)rZoYv^1B_^w7zAvWGw&pQyCyx zD|ga$w!ODOxxGf_Qq%V9Z7Q2pFiUOIK818AGeZ-~*R zI1O|SSc=3Z?#61Rd|AXx2)K|F@Z1@x!hBBMhAqiU)J=U|Y)T$h3D?ZPPQgkSosnN! zIqw-t$0fqsOlgw3TlHJF*t$Q@bg$9}A3X=cS@-yU3_vNG_!#9}7=q7!LZ?-%U26W4 z$d>_}*s1>Ac%3uFR;tnl*fNlylJ)}r2^Q3&@+is3BIv<}x>-^_ng;jhdaM}6Sg3?p z0jS|b%QyScy3OQ(V*~l~bK>VC{9@FMuW_JUZO?y(V?LKWD6(MXzh}M3r3{7b4eB(#`(q1m{>Be%_<9jw8HO!x#yF6vez$c#kR+}s zZO-_;25Sxngd(}){zv?ccbLqRAlo;yog>4LH&uZUK1n>x?u49C)Y&2evH5Zgt~666 z_2_z|H5AO5Iqxv_Bn~*y1qzRPcob<+Otod5Xd2&z=C;u+F}zBB@b^UdGdUz|s!H}M zXG%KiLzn3G?FZgdY&3pV$nSeY?ZbU^jhLz9!t0K?ep}EFNqR1@E!f*n>x*!uO*~JF zW9UXWrVgbX1n#76_;&0S7z}(5n-bqnII}_iDsNqfmye@)kRk`w~1 z6j4h4BxcPe6}v)xGm%=z2#tB#^KwbgMTl2I*$9eY|EWAHFc3tO48Xo5rW z5oHD!G4kb?MdrOHV=A+8ThlIqL8Uu+7{G@ zb)cGBm|S^Eh5= z^E^SZ=yeC;6nNCdztw&TdnIz}^Of@Ke*@vjt)0g>Y!4AJvWiL~e7+9#Ibhe)> ziNwh>gWZL@FlWc)wzihocz+%+@*euwXhW%Hb>l7tf8aJe5_ZSH1w-uG|B;9qpcBP0 zM`r1Hu#htOl)4Cl1c7oY^t0e4Jh$-I(}M5kzWqh{F=g&IM#JiC`NDSd@BCKX#y<P@Gwl$3a3w z6<(b|K(X5FIR22M)sy$4jY*F4tT{?wZRI+KkZFb<@j@_C316lu1hq2hA|1wCmR+S@ zRN)YNNE{}i_H`_h&VUT5=Y(lN%m?%QX;6$*1P}K-PcPx>*S55v)qZ@r&Vcic-sjkm z! z=nfW&X`}iAqa_H$H%z3Tyz5&P3%+;93_0b;zxLs)t#B|up}JyV$W4~`8E@+BHQ+!y zuIo-jW!~)MN$2eHwyx-{fyGjAWJ(l8TZtUp?wZWBZ%}krT{f*^fqUh+ywHifw)_F> zp76_kj_B&zFmv$FsPm|L7%x-j!WP>_P6dHnUTv!9ZWrrmAUteBa`rT7$2ixO;ga8U z3!91micm}{!Btk+I%pMgcKs?H4`i+=w0@Ws-CS&n^=2hFTQ#QeOmSz6ttIkzmh^`A zYPq)G1l3h(E$mkyr{mvz*MP`x+PULBn%CDhltKkNo6Uqg!vJ#DA@BIYr9TQ`18Un2 zv$}BYzOQuay9}w(?JV63F$H6WmlYPPpH=R|CPb%C@BCv|&Q|&IcW7*LX?Q%epS z`=CPx{1HnJ9_46^=0VmNb>8JvMw-@&+V8SDLRYsa>hZXEeRbtf5eJ>0@Ds47zIY{N z42EOP9J8G@MXXdeiPx#L}ge>W=%~1DgXcg2mk?xX#fNO00031000^Q000001E2u_0{{R30RRC20H6W@ z1ONa40RR91AfN*P1ONa40RR91AOHXW0IY^$^8f$?lu1NER9Fe^SItioK@|V(ZWmgL zZT;XwPgVuWM>O%^|Dc$VK;n&?9!&g5)aVsG8cjs5UbtxVVnQNOV~7Mrg3+jnU;rhE z6fhW6P)R>_eXrXo-RW*y6RQ_qcb^s1wTu$TwriZ`=JUws>vRi}5x}MW1MR#7p|gIWJlaLK;~xaN}b< z<-@=RX-%1mt`^O0o^~2=CD7pJ<<$Rp-oUL-7PuG>do^5W_Mk#unlP}6I@6NPxY`Q} zuXJF}!0l)vwPNAW;@5DjPRj?*rZxl zwn;A(cFV!xe^CUu+6SrN?xe#mz?&%N9QHf~=KyK%DoB8HKC)=w=3E?1Bqj9RMJs3U z5am3Uv`@+{jgqO^f}Lx_Jp~CoP3N4AMZr~4&d)T`R?`(M{W5WWJV^z~2B|-oih@h^ zD#DuzGbl(P5>()u*YGo*Och=oRr~3P1wOlKqI)udc$|)(bacG5>~p(y>?{JD7nQf_ z*`T^YL06-O>T(s$bi5v~_fWMfnE7Vn%2*tqV|?~m;wSJEVGkNMD>+xCu#um(7}0so zSEu7?_=Q64Q5D+fz~T=Rr=G_!L*P|(-iOK*@X8r{-?oBlnxMNNgCVCN9Y~ocu+?XA zjjovJ9F1W$Nf!{AEv%W~8oahwM}4Ruc+SLs>_I_*uBxdcn1gQ^2F8a*vGjgAXYyh? zWCE@c5R=tbD(F4nL9NS?$PN1V_2*WR?gjv3)4MQeizuH`;sqrhgykEzj z593&TGlm3h`sIXy_U<7(dpRXGgp0TB{>s?}D{fwLe>IV~exweOfH!qM@CV5kib!YA z6O0gvJi_0J8IdEvyP#;PtqP*=;$iI2t(xG2YI-e!)~kaUn~b{6(&n zp)?iJ`z2)Xh%sCV@BkU`XL%_|FnCA?cVv@h*-FOZhY5erbGh)%Q!Av#fJM3Csc_g zC2I6x%$)80`Tkz#KRA!h1FzY`?0es3t!rKDT5EjPe6B=BLPr7s0GW!if;Ip^!AmGW zL;$`Vdre+|FA!I4r6)keFvAx3M#1`}ijBHDzy)3t0gwjl|qC2YB`SSxFKHr(oY#H$)x{L$LL zBdLKTlsOrmb>T0wd=&6l3+_Te>1!j0OU8%b%N342^opKmT)gni(wV($s(>V-fUv@0p8!f`=>PxC|9=nu ze{ToBBj8b<{PLfXV$h8YPgA~E!_sF9bl;QOF{o6t&JdsX?}rW!_&d`#wlB6T_h;Xf zl{4Tz5>qjF4kZgjO7ZiLPRz_~U@k5%?=30+nxEh9?s78gZ07YHB`FV`4%hlQlMJe@J`+e(qzy+h(9yY^ckv_* zb_E6o4p)ZaWfraIoB2)U7_@l(J0O%jm+Or>8}zSSTkM$ASG^w3F|I? z$+eHt7T~04(_WfKh27zqS$6* zzyy-ZyqvSIZ0!kkSvHknm_P*{5TKLQs8S6M=ONuKAUJWtpxbL#2(_huvY(v~Y%%#~ zYgsq$JbLLprKkV)32`liIT$KKEqs$iYxjFlHiRNvBhxbDg*3@Qefw4UM$>i${R5uB zhvTgmqQsKA{vrKN;TSJU2$f9q=y{$oH{<)woSeV>fkIz6D8@KB zf4M%v%f5U2?<8B(xn}xV+gWP?t&oiapJhJbfa;agtz-YM7=hrSuxl8lAc3GgFna#7 zNjX7;`d?oD`#AK+fQ=ZXqfIZFEk{ApzjJF0=yO~Yj{7oQfXl+6v!wNnoqwEvrs81a zGC?yXeSD2NV!ejp{LdZGEtd1TJ)3g{P6j#2jLR`cpo;YX}~_gU&Gd<+~SUJVh+$7S%`zLy^QqndN<_9 zrLwnXrLvW+ew9zX2)5qw7)zIYawgMrh`{_|(nx%u-ur1B7YcLp&WFa24gAuw~& zKJD3~^`Vp_SR$WGGBaMnttT)#fCc^+P$@UHIyBu+TRJWbcw4`CYL@SVGh!X&y%!x~ zaO*m-bTadEcEL6V6*{>irB8qT5Tqd54TC4`h`PVcd^AM6^Qf=GS->x%N70SY-u?qr>o2*OV7LQ=j)pQGv%4~z zz?X;qv*l$QSNjOuQZ>&WZs2^@G^Qas`T8iM{b19dS>DaXX~=jd4B2u`P;B}JjRBi# z_a@&Z5ev1-VphmKlZEZZd2-Lsw!+1S60YwW6@>+NQ=E5PZ+OUEXjgUaXL-E0fo(E* zsjQ{s>n33o#VZm0e%H{`KJi@2ghl8g>a~`?mFjw+$zlt|VJhSU@Y%0TWs>cnD&61fW4e0vFSaXZa4-c}U{4QR8U z;GV3^@(?Dk5uc@RT|+5C8-24->1snH6-?(nwXSnPcLn#X_}y3XS)MI_?zQ$ZAuyg+ z-pjqsw}|hg{$~f0FzmmbZzFC0He_*Vx|_uLc!Ffeb8#+@m#Z^AYcWcZF(^Os8&Z4g zG)y{$_pgrv#=_rV^D|Y<_b@ICleUv>c<0HzJDOsgJb#Rd-Vt@+EBDPyq7dUM9O{Yp zuGUrO?ma2wpuJuwl1M=*+tb|qx7Doj?!F-3Z>Dq_ihFP=d@_JO;vF{iu-6MWYn#=2 zRX6W=`Q`q-+q@Db|6_a1#8B|#%hskH82lS|9`im0UOJn?N#S;Y0$%xZw3*jR(1h5s z?-7D1tnIafviko>q6$UyqVDq1o@cwyCb*})l~x<@s$5D6N=-Uo1yc49p)xMzxwnuZ zHt!(hu-Ek;Fv4MyNTgbW%rPF*dB=;@r3YnrlFV{#-*gKS_qA(G-~TAlZ@Ti~Yxw;k za1EYyX_Up|`rpbZ0&Iv#$;eC|c0r4XGaQ-1mw@M_4p3vKIIpKs49a8Ns#ni)G314Z z8$Ei?AhiT5dQGWUYdCS|IC7r z=-8ol>V?u!n%F*J^^PZ(ONT&$Ph;r6X;pj|03HlDY6r~0g~X#zuzVU%a&!fs_f|m?qYvg^Z{y?9Qh7Rn?T*F%7lUtA6U&={HzhYEzA`knx1VH> z{tqv?p@I(&ObD5L4|YJV$QM>Nh-X3cx{I&!$FoPC_2iIEJfPk-$;4wz>adRu@n`_y z_R6aN|MDHdK;+IJmyw(hMoDCFCQ(6?hCAG5&7p{y->0Uckv# zvooVuu04$+pqof777ftk<#42@KQ((5DPcSMQyzGOJ{e9H$a9<2Qi_oHjl{#=FUL9d z+~0^2`tcvmp0hENwfHR`Ce|<1S@p;MNGInXCtHnrDPXCKmMTZQ{HVm_cZ>@?Wa6}O zHsJc7wE)mc@1OR2DWY%ZIPK1J2p6XDO$ar`$RXkbW}=@rFZ(t85AS>>U0!yt9f49^ zA9@pc0P#k;>+o5bJfx0t)Lq#v4`OcQn~av__dZ-RYOYu}F#pdsl31C^+Qgro}$q~5A<*c|kypzd} ziYGZ~?}5o`S5lw^B{O@laad9M_DuJle- z*9C7o=CJh#QL=V^sFlJ0c?BaB#4bV^T(DS6&Ne&DBM_3E$S^S13qC$7_Z?GYXTpR@wqr70wu$7+qvf-SEUa5mdHvFbu^7ew!Z1a^ zo}xKOuT*gtGws-a{Tx}{#(>G~Y_h&5P@Q8&p!{*s37^QX_Ibx<6XU*AtDOIvk|^{~ zPlS}&DM5$Ffyu-T&0|KS;Wnaqw{9DB&B3}vcO14wn;)O_e@2*9B&0I_ zZz{}CMxx`hv-XouY>^$Y@J(_INeM>lIQI@I>dBAqq1)}?Xmx(qRuX^i4IV%=MF306 z9g)i*79pP%_7Ex?m6ag-4Tlm=Z;?DQDyC-NpUIb#_^~V_tsL<~5<&;Gf2N+p?(msn zzUD~g>OoW@O}y0@Z;RN)wjam`CipmT&O7a|YljZqU=U86 zedayEdY)2F#BJ6xvmW8K&ffdS*0!%N<%RB!2~PAT4AD*$W7yzHbX#Eja9%3aD+Ah2 zf#T;XJW-GMxpE=d4Y>}jE=#U`IqgSoWcuvgaWQ9j1CKzG zDkoMDDT)B;Byl3R2PtC`ip=yGybfzmVNEx{xi_1|Cbqj>=FxQc{g`xj6fIfy`D8fA z##!-H_e6o0>6Su&$H2kQTujtbtyNFeKc}2=|4IfLTnye#@$Au7Kv4)dnA;-fz@D_8 z)>irG$)dkBY~zX zC!ZXLy*L3xr6cb70QqfN#Q>lFIc<>}>la4@3%7#>a1$PU&O^&VszpxLC%*!m-cO{B z-Y}rQr4$84(hvy#R69H{H zJ*O#uJh)TF6fbXy;fZkk%X=CjsTK}o5N1a`d7kgYYZLPxsHx%9*_XN8VWXEkVJZ%A z1A+5(B;0^{T4aPYr8%i@i32h)_)|q?9vws)r+=5u)1YNftF5mknwfd*%jXA2TeP}Z zQ!m?xJ3?9LpPM?_A3$hQ1QxNbR&}^m z!F999s?p^ak#C4NM_x2p9FoXWJ$>r?lJ)2bG)sX{gExgLA2s5RwHV!h6!C~d_H||J z>9{E{mEv{Z1z~65Vix@dqM4ZqiU|!)eWX$mwS5mLSufxbpBqqS!jShq1bmwCR6 z4uBri7ezMeS6ycaXPVu(i2up$L; zjpMtB`k~WaNrdgM_R=e#SN?Oa*u%nQy01?()h4A(jyfeNfx;5o+kX?maO4#1A^L}0 zYNyIh@QVXIFiS0*tE}2SWTrWNP3pH}1Vz1;E{@JbbgDFM-_Mky^7gH}LEhl~Ve5PexgbIyZ(IN%PqcaV@*_`ZFb=`EjspSz%5m2E34BVT)d=LGyHVz@-e%9Ova*{5@RD;7=Ebkc2GP%pIP^P7KzKapnh`UpH?@h z$RBpD*{b?vhohOKf-JG3?A|AX|2pQ?(>dwIbWhZ38GbTm4AImRNdv_&<99ySX;kJ| zo|5YgbHZC#HYgjBZrvGAT4NZYbp}qkVSa;C-LGsR26Co+i_HM&{awuO9l)Ml{G8zD zs$M8R`r+>PT#Rg!J(K6T4xHq7+tscU(}N$HY;Yz*cUObX7J7h0#u)S7b~t^Oj}TBF zuzsugnst;F#^1jm>22*AC$heublWtaQyM6RuaquFd8V#hJ60Z3j7@bAs&?dD#*>H0SJaDwp%U~27>zdtn+ z|8sZzklZy$%S|+^ie&P6++>zbrq&?+{Yy11Y>@_ce@vU4ZulS@6yziG6;iu3Iu`M= zf3rcWG<+3F`K|*(`0mE<$89F@jSq;j=W#E>(R}2drCB7D*0-|D;S;(;TwzIJkGs|q z2qH{m_zZ+el`b;Bv-#bQ>}*VPYC|7`rgBFf2oivXS^>v<&HHTypvd4|-zn|=h=TG{ z05TH2+{T%EnADO>3i|CB zCu60#qk`}GW{n4l-E$VrqgZGbI zbQW690KgZt4U3F^5@bdO1!xu~p@7Y~*_FfWg2CdvED5P5#w#V46LH`<&V0{t&Ml~4 zHNi7lIa+#i+^Z6EnxO7KJQw)wD)4~&S-Ki8)3=jpqxmx6c&zU&<&h%*c$I(5{1HZT zc9WE}ijcWJiVa^Q^xC|WX0habl89qycOyeViIbi(LFsEY_8a|+X^+%Qv+W4vzj>`y zpuRnjc-eHNkvXvI_f{=*FX=OKQzT?bck#2*qoKTHmDe>CDb&3AngA1O)1b}QJ1Tun z_<@yVEM>qG7664Pa@dzL@;DEh`#?yM+M|_fQS<7yv|i*pw)|Z8)9IR+QB7N3v3K(wv4OY*TXnH&X0nQB}?|h2XQeGL^q~N7N zDFa@x0E(UyN7k9g%IFq7Sf+EAfE#K%%#`)!90_)Dmy3Bll&e1vHQyPA87TaF(xbqMpDntVp?;8*$87STop$!EAnGhZ?>mqPJ(X zFsr336p3P{PpZCGn&^LP(JjnBbl_3P3Kcq+m}xVFMVr1zdCPJMDIV_ki#c=vvTwbU z*gKtfic&{<5ozL6Vfpx>o2Tts?3fkhWnJD&^$&+Mh5WGGyO7fG@6WDE`tEe(8<;+q z@Ld~g08XDzF8xtmpIj`#q^(Ty{Hq>t*v`pedHnuj(0%L(%sjkwp%s}wMd!a<*L~9T z9MM@s)Km~ogxlqEhIw5(lc46gCPsSosUFsgGDr8H{mj%OzJz{N#;bQ;KkV+ZWA1(9 zu0PXzyh+C<4OBYQ0v3z~Lr;=C@qmt8===Ov2lJ1=DeLfq*#jgT{YQCuwz?j{&3o_6 zsqp2Z_q-YWJg?C6=!Or|b@(zxTlg$ng2eUQzuC<+o)k<6^9ju_Z*#x+oioZ5T8Z_L zz9^A1h2eFS0O5muq8;LuDKwOv4A9pxmOjgb6L*i!-(0`Ie^d5Fsgspon%X|7 zC{RRXEmYn!5zP9XjG*{pLa)!2;PJB2<-tH@R7+E1cRo=Wz_5Ko8h8bB$QU%t9#vol zAoq?C$~~AsYC|AQQ)>>7BJ@{Cal)ZpqE=gjT+Juf!RD-;U0mbV1ED5PbvFD6M=qj1 zZ{QERT5@(&LQ~1X9xSf&@%r|3`S#ZCE=sWD`D4YQZ`MR`G&s>lN{y2+HqCfvgcw3E z-}Kp(dfGG?V|97kAHQX+OcKCZS`Q%}HD6u*e$~Ki&Vx53&FC!x94xJd4F2l^qQeFO z?&JdmgrdVjroKNJx64C!H&Vncr^w zzR#XI}Dn&o8jB~_YlVM^+#0W(G1LZH5K^|uYT@KSR z^Y5>^*Bc45E1({~EJB(t@4n9gb-eT#s@@7)J^^<_VV`Pm!h7av8XH6^5zO zOcQBhTGr;|MbRsgxCW69w{bl4EW#A~);L?d4*y#j8Ne=Z@fmJP0k4{_cQ~KA|Y#_#BuUiYx8y*za3_6Y}c=GSe7(2|KAfhdzud!Zq&}j)=o4 z7R|&&oX7~e@~HmyOOsCCwy`AR+deNjZ3bf6ijI_*tKP*_5JP3;0d;L_p(c>W1b%sG zJ*$wcO$ng^aW0E(5ldckV9unU7}OB7s?Wx(761?1^&8tA5y0_(ieV>(x-e@}1`lWC z-YH~G$D>#ud!SxK2_Iw{K%92=+{4yb-_XC>ji&j7)1ofp(OGa4jjF;Hd*`6YQL+Jf zffg+6CPc8F@EDPN{Kn96yip;?g@)qgkPo^nVKFqY?8!=h$G$V=<>%5J&iVjwR!7H0 z$@QL|_Q81I;Bnq8-5JyNRv$Y>`sWl{qhq>u+X|)@cMlsG!{*lu?*H`Tp|!uv z9oEPU1jUEj@ueBr}%Y)7Luyi)REaJV>eQ{+uy4uh0ep0){t;OU8D*RZ& zE-Z-&=BrWQLAD^A&qut&4{ZfhqK1ZQB0fACP)=zgx(0(o-`U62EzTkBkG@mXqbjXm z>w`HNeQM?Is&4xq@BB(K;wv5nI6EXas)XXAkUuf}5uSrZLYxRCQPefn-1^#OCd4aO zzF=dQ*CREEyWf@n6h7(uXLNgJIwGp#Xrsj6S<^bzQ7N0B0N{XlT;`=m9Olg<>KL}9 zlp>EKTx-h|%d1Ncqa=wnQEuE;sIO-f#%Bs?g4}&xS?$9MG?n$isHky0caj za8W+B^ERK#&h?(x)7LLpOqApV5F>sqB`sntV%SV>Q1;ax67qs+WcssfFeF3Xk=e4^ zjR2^(%K1oBq%0%Rf!y&WT;lu2Co(rHi|r1_uW)n{<7fGc-c=ft7Z0Q}r4W$o$@tQF#i?jDBwZ8h+=SC}3?anUp3mtRVv9l#H?-UD;HjTF zQ*>|}e=6gDrgI9p%c&4iMUkQa4zziS$bO&i#DI$Wu$7dz7-}XLk%!US^XUIFf2obO zFCTjVEtkvYSKWB;<0C;_B{HHs~ax_48^Cml*mjfBC5*7^HJZiLDir(3k&BerVIZF8zF;0q80eX8c zPN4tc+Dc5DqEAq$Y3B3R&XPZ=AQfFMXv#!RQnGecJONe0H;+!f^h5x0wS<+%;D}MpUbTNUBA}S2n&U59-_5HKr{L^jPsV8B^%NaH|tUr)mq=qCBv_- ziZ1xUp(ZzxUYTCF@C}To;u60?RIfTGS?#JnB8S8@j`TKPkAa)$My+6ziGaBcA@){d z91)%+v2_ba7gNecdj^8*I4#<11l!{XKl6s0zkXfJPxhP+@b+5ev{a>p*W-3*25c&} zmCf{g9mPWVQ$?Sp*4V|lT@~>RR)9iNdN^7KT@>*MU3&v^3e?=NTbG9!h6C|9zO097 zN{Qs6YwR-5$)~ z`b~qs`a1Dbx8P>%V=1XGjBptMf%P~sl1qbHVm1HYpY|-Z^Dar8^HqjIw}xaeRlsYa zJ_@Apy-??`gxPmb`m`0`z`#G7*_C}qiSZe~l2z65tE~IwMw$1|-u&t|z-8SxliH00 zlh1#kuqB56s+E&PWQ7Nz17?c}pN+A@-c^xLqh(j;mS|?>(Pf7(?qd z5q@jkc^nA&!K-}-1P=Ry0yyze0W!+h^iW}7jzC1{?|rEFFWbE^Yu7Y}t?jmP-D$f+ zmqFT7nTl0HL|4jwGm7w@a>9 zKD)V~+g~ysmei$OT5}%$&LK8?ib|8aY|>W3;P+0B;=oD=?1rg+PxKcP(d;OEzq1CKA&y#boc51P^ZJPPS)z5 zAZ)dd2$glGQXFj$`XBBJyl2y-aoBA8121JC9&~|_nY>nkmW>TLi%mWdn-^Jks-Jv| zSR*wij;A3Fcy8KsDjQ15?Z9oOj|Qw2;jgJiq>dxG(2I2RE- z$As!#zSFIskebqU2bnoM^N<4VWD2#>!;saPSsY8OaCCQqkCMdje$C?Sp%V}f2~tG5 z0whMYk6tcaABwu*x)ak@n4sMElGPX1_lmv@bgdI2jPdD|2-<~Jf`L`@>Lj7{<-uLQ zE3S_#3e10q-ra=vaDQ42QUY^@edh>tnTtpBiiDVUk5+Po@%RmuTntOlE29I4MeJI?;`7;{3e4Qst#i-RH6s;>e(Sc+ubF2_gwf5Qi%P!aa89fx6^{~A*&B4Q zKTF|Kx^NkiWx=RDhe<{PWXMQ;2)=SC=yZC&mh?T&CvFVz?5cW~ritRjG2?I0Av_cI z)=s!@MXpXbarYm>Kj0wOxl=eFMgSMc?62U#2gM^li@wKPK9^;;0_h7B>F>0>I3P`{ zr^ygPYp~WVm?Qbp6O3*O2)(`y)x>%ZXtztz zMAcwKDr=TCMY!S-MJ8|2MJCVNUBI0BkJV6?(!~W!_dC{TS=eh}t#X+2D>Kp&)ZN~q zvg!ogxUXu^y(P*;Q+y_rDoGeSCYxkaGPldDDx)k;ocJvvGO#1YKoQLHUf2h_pjm&1 zqh&!_KFH03FcJvSdfgUYMp=5EpigZ*8}7N_W%Ms^WSQ4hH`9>3061OEcxmf~TcYn5_oHtscWn zo5!ayj<_fZ)vHu3!A!7M;4y1QIr8YGy$P2qDD_4+T8^=^dB6uNsz|D>p~4pF3Nrb6 zcpRK*($<~JUqOya#M1=#IhOZ zG)W+rJS-x(6EoVz)P zsSo>JtnChdj9^);su%SkFG~_7JPM zEDz3gk2T7Y%x>1tWyia|op(ilEzvAujW?Xwlw>J6d7yEi8E zv30riR|a_MM%ZZX&n!qm0{2agq(s?x9E@=*tyT$nND+{Djpm7Rsy!+c$j+wqMwTOF zZL8BQ|I`<^bGW)5apO{lh(Asqen?_U`$_n0-Ob~Yd%^89oEe%9yGumQ_8Be+l2k+n zCxT%s?bMpv|AdWP7M1LQwLm|x+igA~;+iK-*+tClF&ueX_V}>=4gvZ01xpubQWXD_ zi?Un>&3=$fu)dgk-Z;0Ll}HK5_YM->l^Czrd0^cJ))(DwL2g3aZuza7ga9^|mT_70 z))}A}r1#-(9cxtn<9jGRwOB4hb9kK@YCgjfOM-90I$8@l=H^`K$cyhe2mTM|FY9vW znH~h)I<_aa#V1xmhk?Ng@$Jw-s%a!$BI4Us+Df+?J&gKAF-M`v}j`OWKP3>6`X`tEmhe#y*(Xm$_^Ybbs=%;L7h zp7q^C*qM}Krqsinq|WolR99>_!GL#Z71Hhz|IwQQv<>Ds09B?Je(lhI1(FInO8mc} zl$RyKCUmfku+Cd^8s0|t+e}5g7M{ZPJQH=UB3(~U&(w#Bz#@DTDHy>_UaS~AtN>4O zJ-I#U@R($fgupHebcpuEBX`SZ>kN!rW$#9>s{^3`86ZRQRtYTY)hiFm_9wU3c`SC8 z-5M%g)h}3Pt|wyj#F%}pGC@VL`9&>9P+_UbudCkS%y2w&*o})hBplrB*@Z?gel5q+ z%|*59(sR9GMk3xME}wd%&k?7~J)OL`rK#4d-haC7uaU8-L@?$K6(r<0e<;y83rK&` z3Q!1rD9WkcB8WBQ|WT|$u^lkr0UL4WH4EQTJyk@5gzHb18cOte4w zS`fLv8q;PvAZyY;*Go3Qw1~5#gP0D0ERla6M6#{; zr1l?bR}Nh+OC7)4bfAs(0ZD(axaw6j9v`^jh5>*Eo&$dAnt?c|Y*ckEORIiJXfGcM zEo`bmIq6rJm`XhkXR-^3d8^RTK2;nmVetHfUNugJG(4XLOu>HJA;0EWb~?&|0abr6 zxqVp@p=b3MN^|~?djPe!=eex(u!x>RYFAj|*T$cTi*Sd3Bme7Pri1tkK9N`KtRmXf zZYNBNtik97ct1R^vamQBfo9ZUR@k*LhIg8OR9d_{iv#t)LQV91^5}K5u{eyxwOFoU zHMVq$C>tfa@uNDW^_>EmO~WYQd(@!nKmAvSSIb&hPO|}g-3985t?|R&WZXvxS}Kt2i^eRe>WHb_;-K5cM4=@AN1>E&1c$k!w4O*oscx(f=<1K6l#8Exi)U(ZiZ zdr#YTP6?m1e1dOKysUjQ^>-MR={OuD00g6+(a^cvcmn#A_%Fh3Of%(qP5nvjS1=(> z|Ld8{u%(J}%2SY~+$4pjy{()5HN2MYUjg1X9umxOMFFPdM+IwOVEs4Z(olynvT%G) zt9|#VR}%O2@f6=+6uvbZv{3U)l;C{tuc zZ{K$rut=eS%3_~fQv^@$HV6#9)K9>|0qD$EV2$G^XUNBLM|5-ZmFF!KV)$4l^KVj@ zZ4fI}Knv*K%zPqK77}B-h_V{66VrmoZP2>@^euu8Rc}#qwRwt5uEBWcJJE5*5rT2t zA4Jpx`QQ~1Sh_n_a9x%Il!t1&B~J6p54zxAJx`REov${jeuL8h8x-z=?qwMAmPK5i z_*ES)BW(NZluu#Bmn1-NUKQip_X&_WzJy~J`WYxEJQ&Gu7DD< z&F9urE;}8S{x4{yB zaq~1Zrz%8)<`prSQv$eu5@1RY2WLu=waPTrn`WK%;G5(jt^FeM;gOdvXQjYhax~_> z{bS_`;t#$RYMu-;_Dd&o+LD<5Afg6v{NK?0d8dD5ohAN?QoocETBj?y{MB)jQ%UQ}#t3j&iL!qr@#6JEajR3@^k5wgLfI9S9dT2^f`2wd z%I#Q*@Ctk@w=(u)@QC}yBvUP&fFRR-uYKJ){Wp3&$s(o~W7OzgsUIPx0|ph2L1(r*_Pa@T@mcH^JxBjh09#fgo|W#gG7}|)k&uD1iZxb0 z@|Y)W79SKj9sS&EhmTD;uI#)FE6VwQ*YAr&foK$RI5H8_ripb$^=;U%gWbrrk4!5P zXDcyscEZoSH~n6VJu8$^6LE6)>+=o#Q-~*jmob^@191+Ot1w454e3)WMliLtY6~^w zW|n#R@~{5K#P+(w+XC%(+UcOrk|yzkEes=!qW%imu6>zjdb!B#`efaliKtN}_c!Jp zfyZa`n+Nx8;*AquvMT2;c8fnYszdDA*0(R`bsof1W<#O{v%O!1IO4WZe=>XBu_D%d zOwWDaEtX%@B>4V%f1+dKqcXT>m2!|&?}(GK8e&R=&w?V`*Vj)sCetWp9lr@@{xe6a zE)JL&;p}OnOO}Nw?vFyoccXT*z*?r}E8{uPtd;4<(hmX;d$rqJhEF}I+kD+m(ke;J z7Cm$W*CSdcD=RYEBhedg>tuT{PHqwCdDP*NkHv4rvQTXkzEn*Mb0oJz&+WfWIOS4@ zzpPJ|e%a-PIwOaOC7uQcHQ-q(SE(e@fj+7oC@34wzaBNaP;cw&gm{Z8yYX?V(lIv5 zKbg*zo1m5aGA4^lwJ|bAU=j3*d8S{vp!~fLFcK8s6%Ng55_qW_d*3R%e=34aDZPfD z&Le39j|ahp6E7B0*9OVdeMNrTErFatiE+=Z!XZ^tv0y%zZKXRTBuPyP&C{5(H?t)S zKV24_-TKpOmCPzU&by8R1Q5HY^@IDoeDA9MbgizgQ*F1Er~HVmvSU>vx}pZVQ&tr| zOtZl8vfY2#L<)gZ=ba&wG~EI*Vd?}lRMCf+!b5CDz$8~be-HKMo5omk$w7p4`Mym*IR8WiTz4^kKcUo^8Hkcsu14u z`Pkg`#-Y^A%CqJ0O@UF|caAulf68@(zhqp~YjzInh7qSN7Ov%Aj(Qz%{3zW|xubJ- ztNE_u_MO7Q_585r;xD?e=Er}@U1G@BKW5v$UM((eByhH2p!^g9W}99OD8VV@7d{#H zv)Eam+^K(5>-Ot~U!R$Um3prQmM)7DyK=iM%vy>BRX4#aH7*oCMmz07YB(EL!^%F7?CA#>zXqiYDhS;e?LYPTf(bte6B ztrfvDXYG*T;ExK-w?Knt{jNv)>KMk*sM^ngZ-WiUN;=0Ev^GIDMs=AyLg2V@3R z7ugNc45;4!RPxvzoT}3NCMeK$7j#q3r_xV(@t@OPRyoKBzHJ#IepkDsm$EJRxL)A* zf{_GQYttu^OXr$jHQn}zs$Eh|s|Z!r?Yi+bS-bi+PE*lH zo|6ztu6$r_?|B~S#m>imI!kQP9`6X426uHRri!wGcK;J;`%sFM(D#*Le~W*t2uH`Q z(HEO9-c_`mhA@4QhbW+tgtt9Pzx=_*3Kh~TB$SKmU4yx-Ay&)n%PZPKg#rD4H{%Ke zdMY@rf5EAFfqtrf?Vmk&N(_d-<=bvfOdPrYwY*;5%j@O6@O#Qj7LJTk-x3LN+dEKy+X z>~U8j3Ql`exr1jR>+S4nEy+4c2f{-Q!3_9)yY758tLGg7k^=nt<6h$YE$ltA+13S<}uOg#XHe6 zZHKdNsAnMQ_RIuB;mdoZ%RWpandzLR-BnjN2j@lkBbBd+?i ze*!5mC}!Qj(Q!rTu`KrRRqp22c=hF6<^v&iCDB`n7mHl;vdclcer%;{;=kA(PwdGG zdX#BWoC!leBC4);^J^tPkPbIe<)~nYb6R3u{HvC!NOQa?DC^Q`|_@ zcz;rk`a!4rSLAS>_=b@g?Yab4%=J3Cc7pRv8?_rHMl_aK*HSPU%0pG2Fyhef_biA!aW|-(( z*RIdG&Lmk(=(nk28Q1k1Oa$8Oa-phG%Mc6dT3>JIylcMMIc{&FsBYBD^n@#~>C?HG z*1&FpYVvXOU@~r2(BUa+KZv;tZ15#RewooEM0LFb>guQN;Z0EBFMFMZ=-m$a3;gVD z)2EBD4+*=6ZF?+)P`z@DOT;azK0Q4p4>NfwDR#Pd;no|{q_qB!zk1O8QojE;>zhPu z1Q=1z^0MYHo1*``H3ex|bW-Zy==5J4fE2;g6sq6YcXMYK5i|S^9(OSw#v!3^!EB<% zZF~J~CleS`V-peStyf*I%1^R88D;+8{{qN6-t!@gTARDg^w2`uSzFZbPQ!)q^oC}m zPo8VOQxq2BaIN`pAVFGu8!{p3}(+iZ`f4ck2ygVpEZMQW38nLpj3NQx+&sAkb8`}P3- zc>N*k6AG?r}bfO6_vccTuKX+*- z7W4Q#2``P0jIHYs)F>uG#AM#I6W2)!Nu2nD5{CRV_PmkDS2ditmbd#pggqEgAo%5oC?|CP zGa0CV)wA*ko!xC7pZYkqo{10CN_e00FX5SjWkI3?@XG}}bze!(&+k2$C-C`6temSk z_YyYpB^wh3woo`B zrMSTd4T?(X-jh`FeO76C(3xsOm9s2BP_b%ospg^!#*2*o9N;tf4(X9$qc_d(()yz5 zDk@1}u_Xd+86vy5RBs?LQCuYKCGPS;E4uFOi@V%1JTK&|eRf~lp$AV#;*#O}iRI2=i3rFL8{ zA^ptDZ0l6k-mq=hUJ0x$Y@J>UNfz~I5l63H(`~*v;qX`Z{zwsQQD-!wp0D&hyB8&Z z7$R07gIKGJ^%AvQ{4KM0edM39iFRx=P^6`!<1(s0t|JbB2tXs_B_IH9#ajH0C=-n+ z`nz`fKMBKLlf?2AC+|83M+0rqR%uhNGD;uKA6jOjp7YDe^4%0fRB<^bcjlS2KF~F; zu09wh1x0&4pG&76M;x8$u`b134t=dEPBn6PV|X29<#T4F1mxGF*HOgiWU8tN@cguI z_F@o+XL7FJztR63wC|j4x_DANzcX94r7Iz-O2x$({&qd*mdLG=-Rv)uZ}UlMR+F&q zU}=lkfb0p1>1Ho){o$@}mSKIV;h*$AND7~Dl)QzpFBlSM99Kx+F7GsVK5xcR? z_4Q(Z%cgk8ST}U;;=!LwyZVu^S$>B-Waeik%wzcKTIqeX=0FP(TGQ=nxi=dsS5BYF zl@?}NT!Y!Iyos^@v7XWXA{_bV~1lxz7gC?xuXxy0_?GaN!AhRRM5>)^t%&ODd;@HN5L{MD3 zc>i2keQZVm#?NrDwbfd}_<*5^U&w0zv~n-y8=GGN-!=_`FU^cM8oVCWRFxw?BM^YD zi=Vxz4q|jwPTg+?q7_XI)-S@gQkh>w0ZUB}a{^ z_i;`Y(~fvpI!vmW*A^|P7(6+@C4UeL2WATf{P1?H5rk`5{TL zcf!CgP6Mi{MvjZS)rfo7JLDZK7M7ANd$3`{j9baD*7{#Zu-33fOYUzjvtKzR2)_T1I1s7fe&z|=)QkX;=`zX8!Byw-veM#yr;|wjO^II>!B*B z0+w%;0(=*G3V@88t!}~zx)&do(uF=073Yeh*fEhZb3Vn>t!m(9p~Y_FdV3IgR)9eT z)~e9xpI%2deTWyHlXA(7srrfc_`7ACm!R>SoIgkuF8 z!wkOhrixFy9y@)GdxAntd!!7@=L_tFD2T5OdSUO)I%yj02le`qeQ=yKq$g^h)NG;# za(0J@#VBi^5YI|QI=rq{KlxwGabZJ0dKmfWDROkcM}lUN$@DV`K7fU?8CP2H23QPi zG?YF*=Vn=kTK*#Y_{AQN&oLju|0#E=fx%YVh>S{puu&K$b;BN*jIo@VYhqPiJPzzM>#kxoy0vW9i;ne2_BIG0zyRFp<3M(iY(%*M_>q0ulV2K}Tg zkG{EWKS{i%4DUuHi%DVKy%e+Q!~Uf`>>F6NgD{{I8~nO4!VgOvtFOc7(O)X`|7n*f zxBa4CJ-v9fUUH+`7sPVvpM_C*udZ@OTGTzx56QM5y~OlrZc&w9=)B?nmd@keRn+^= zvm~4sa5987LFDnU{(N|N zJAR8H@}p1fC+H(yTI4n#%~TbImMpuqYn9cQ<0QQ%=PzZItLkC*ef9WJUvfITKWh#D zc#__8`4am9%#NslIUw+<82#SR8AYG|woLfBg#!-&dqq}@P>|I0%lbdy0lSMmNe+}o zj0zZuFr6Wb?Y{Qy-S=|r`bdrDmhnmvkRnkdn`YCleU>Q$=je}LGhh>_QAj6aa_0Oc z%Swsmui;IRx7bN*=AAS@5yW&Y2hy;3&|HAiA8}!HT6!Z!RVn~MZg`RmI6&%#tBZDx zfD+y@Z~NWlk*4l13vmt3AK2wP!fQlnBbECL>?p)F?T)<`w&QN>cP_V>r7UTcsTaaP zTOb$f!P@zf$6>890NVKbIkG8rE?9!Y97sMSZjfF?A zYR8lp`LMoz~O?iaZN;gcX;LC-%Ia*R%A&SLx!YIf29?P+=XAAojK8!^OU*@?R&DK!#G_lsn!#;S375uZ&B0HH1|BO0R90$U>qs zSvHv>H~mAgNCcjo-e+;RjY6B9NCbQrZ|BHjTkehaU<9CSkdd>Vl*ifA2LNOP&R2Qdy3k3-TQ+ zbq=#vI43x`s=%~cGyN&y4Y!FxhwgDe@i6uv8^BLL&3z*SO=D0aLjih?gY4-9uWp5or)H+v~w6n5X#F-I52z=Z_p4JB(;M| zeaVFhuR2|3UD2MzVc~^nSoD2(dD#uL_1PdnIxeA{V5n`#3xf1Zx@4lw(DsQ&H$h zw#%3O<1173hjg2_nhKi!d1ej=h7y`hVjCNB6|HTnx>SWuCE-kgTnfT+YGX4_Lun({ zDv2`>d3vrS)tTf7ps_vvh!Cx^e1BFuWnEAh0(7fkNk|-3oU|iRWdsC6U)?Raft~HN z;^$U}vZK5O8|LV$>6X5T(uYkblv{zwPxnQBh(BQ5tA~J!vGiAMYP^_ki~pkIxDfOZ zUJDwq%O~WueeV6%uN<54&u*c&E4y431cklBNrb06zGOOy4XNT~JS-q(s6@)F@ovbe ze`fial(O4(-su%6@@1+V0MsdLLMyE8;)nou(7}czU(5ASaZYDT(kUZ0L(&g$nF^n9 z9-Pi`ZZLX&)^*M6As4_2Mmc9S7OT)F8KkL2NJ)KJcnCuWU=Wy402A&45#Q9Id~BBH z0cY*xlv!uXzKrXLH!xQu(OtJvEj|0-DmRj1vjFz{c*I4$Pe(+_V|^b~S!0xm{8lq= zZv)@NlcyL3Xdz+*|L137F7y6L-2VsrKw=q^S>F6i%<{Fr8zk06$Ay-(!L$fY@7mcng!2}L0t zgi|KxfB63Xtk_Q8#ZPipQ@!zgjdpEIbK_?q17Hoi4Eiyun$hrc>T(7pOLVLQE=lgGwA+A308p& z7@=09(|$>eLy5gLe{*|3b(M;1n;C^~v?o88jYib48eR4$QGsBFzd}3QuwO^_XE(=B zq+hMi0UFC|dB{LCwch7;zYT=NK})O%sgi0k#yV;My@24^B1+CuZmYOh0^b)5Ba_)) zC%i#_Iev&nsu%I|1N5=MVc#PrlunKAs&hY|3s5;@}`>sB>}gzxuB zB=2vrRyB3uiyW(hkDUNe1@&(b`;>ZvGgw|@s{zVC#_`HXIN_^J@Etb zA7A+F?ot37T{<-vTy8h&b3e+WKHE1oh;pUQrN4yRRrx?mT_9jRa2i4l1fUnLW^Cbl z!I1>VzyFe?VELWWhM?@?t-YPZkD-Qjo@bC2(o#ZtZmr{KZsdFWItV`rs$gp{724@C zL8K5}E0+DHcWcL^{BGei4>@J-3%a#$y6;I}=upc};-NDv-z#kPX26ylOpH)Ov1uU{ zkLj6oiH6l_s+B~_z;|Jc2oi?naS7#3H63~~lWj4rUnd=fCnKdkik<@R&kch9q##G{ z4u!%=rlM~Yp3jk*t8}1B`Sv6<%Z^}~1e@aq zg|JQ`QO2pSjAm-g*?IrNc$^~sIrNBo2$m|Sxanr?Mfs>2@Auu49 zGXlsS<9XS1&8h(dD*Hl&5HBDG!^pJ*lkau_Ur+7`7z;rcs$hT4we?3bT=7Fe<>{5( z2m2(c+hUz2BTHM8dCe*Z3XX&Av;b~a=$6EF>&^E8%nyxO@m_n!q&XD^A{SRjRZQ0L~qDeC=j&0$j6=LNIz@`ni^>ch|sv}^6 zlm>?28yPl@WmDPR?Y-A9X{U9Dv_IsbXJnzKCjkRksLOg#42uG2mE_acbTQ4)J|1V>%U@K(FP3AYhL0U zdeOCPN1qLv!|#c=p!_+%VNV(GHt`RuLRV^vz<5tt-r)yOK**kUWPspVAf|}ZL{LS= z@k(@@!P&W!>wwe`x{+GrFSWhHov7hu?{KuuT%kl#WO@*WX$i_@retlhQBj++SVNCx z5$78LxP>Z=^aJ)D280r_jj=zFfMJFXCIe^B{~V@d1rl_F(qo&AB4bC-vYL>x2jSKX zpuTG-6kgp3e^T&+dtV*i6a~)v@n?n*MffN59y}<0djUX zt27R+SE#hp8bzc#;rk$jw3r4)Q@eI$*`_)=Pvge8@8|8>H3X)<9YX6cXa=ii#Le;(qKm@%0-7$>2ShnYc`j#zJ7gu_FE^?uAkL|H)UIH#gPu^40!6^J=^ zr`}iwa^!4tzW~vOMZAaKF>*8A{^8m$i(VK)>?=#l`xrVe>wseSvM_aF zATNkY>kM_P3?1kE`uIq#mvr-wuTgUH0N<&JhF=(E9%^NS*HLm!4GZ4_XI zL=R5tlG5Mk_1rPfg)sk^llFuKPMPBhuU|L5q#yP_mzxp1o&pAzi-X31sgFpIHn@($ z_>=`AB5(8tP6p2zS5VEvH5J$M` z_much3>S7t3Yo`Yx!>83-hW9LYzDKP?mKdkD#QAK8*M((sx{eBQdrR<^3ZhFP81+& zBnJMUefQyNBji~$5d88Wfw1Lv59aJN9t2!pABLg;ewJ#LXL-10;QcJl+Y4Mtngb)k6JZlCf)3uD_u)J3sYyN;NN5hNbg$%W!i-GK%e&!Us)2IExWSss$YG(hm3kJ-h%yD z>8q^n$+4I(_y_mbT{du4P%h1j3oSpjhY97{+IZ`aA4ug!vNJ6*p?<2H(2w+GD3j$I z1TUXGyNzdf>_yB3grP~FZUs<2Quw;eEi*7s(-MiIkQ%@J^+WGdQvYSUN+TRiD-xto zJ=OUU+kxGYc!HCLNbCvR4lGTp~#L;DFzGd-#gJe*xf(P3hDQz|y)?b9mwU3WUVnpcqXM<@w%r-k*Wr^gzAv)8T^sqA=Ye z!7qy&exJmAcAt~CwS#@yNmjr8*T*!A6w4~E*ibaLRs0CFo(;R3=ODhDt6zWNodmo0 zXx&bT$6&+5c>a|WJ)F4G-^GjY0H#*tY=UNyYr_q5fsrcjk(c^~e*7Lf`!Jd`)p412 zn|^*hV= zFI4UbwA%X@smDd$cQOiMC%jfitTxTb+#`9`G=2rJDfK!E=5ra|So>lc{X1$~w28i+ z4p&cTGwZ#5VueiXS9O8#;RR$yg7tL9!^)Sz&pZYIzlSh}0}V{LxL$Cu%B4U5_}k}- zm~|CsD<076x@<>m=6w6N?WaThIBP`!u{-;WF)xc=2otx*lwf|5+MkdJePjh(B z9SH+%cHGCMAXNxB{_3^otDWdsV7Ob6n{0 z+&!(;iaHOX__5z_$Qk{%xYV%Ig@7iokGBwR`3642ZP#H#v9QGbWl8<|MS*=@qO@Uj z6+SZ_v9`1paUe5tFN~v(b#J3a_Lx0+;r9giZIx-A5TxdbG>xi#AZ5_z1V}B^n)sxT zz49}eK7EWb6wR!6-qQOrHQHkUvshvq%=G2d&@(#XM*Am1;WbnJ{X_!a{ZkphD$^TQ z=Iskb&}=lBm(RHiwJoGg`*NiQ6#RB$T#LF+>#ef;Jne&MxKPX!#r`&TVEFsp2jnNx>dClzpcPy&G&13a_<0qaR3i+k212~hoQ z8nMk{JP-t04I{GW5gUBqcJW-jSMrlw}>p)ptx?WKuCUV77taMiV zHok9V=6yv+Uts@fMY&A}amC=!Yj}eL@=e%XJ#%?agkt1jWF+10{(E9mHLDa>Ll7Vj zG=3cp%ljIB-6pC}6&`xJ*6WCP|IlglLWJ^?yviI8Ve)?V_i4%n;olzny62_`-|IGi z^=}p_O>Z8M;c4|RExu70E7ePW(HWVS&E$+LL6xSQgB`QfMQJ|4pCTFowA39p5P-|$ zUtM_H2HnP8_RoS~Vwk(FhbG zH41licj%=0a;Ln2STFBvU}Ne&O&%8bYKj!h1FA#sNM`232fX|U3QPp#3C?mN2;hE9 z;)!@5ixSPl<89^7gwhHc2YAX1KJK$#*3`KOMIQ253q7-*RJ5k)zp9GBO|Ga~X*^}US5oN@aG&waHV%vi~r{t^`ptTxb zL}q1W8S7*>7oWwvgV4uFLZ(@k`R*=LO_|Gu`prs~!WQXj-NLIa^2(7IHg>BG^N zc|i{-^=&Cek9dkJFQys|sjG9i>LLz|;yCv{^1i%c*h>8zF91kLvS9HBQi~ZU!JL`B zK8N+U0fr1*6??Ium)AF!6tc1eGhXIYL6IRT7rmKp7+>?%5Pa6zC5)KY$ycF0ZJ`G5nEQDG100U-jLkH8^UE4g6wq?sg%pP=-$&G#bcN`^?w3a6 z((s$6eRKcSEIslW-kk5Qi|5Mg-(xdLF}PxxVh$PuO}#aR6pW1kV4Af!Bqh*btXNNZ z>-4(IUl+L4dw+3LcpGut=qB45O+W)Q5?*zZ2A6rJcg`qkSvWA!j^r2mqKuCm6`Py? z@^T#Ux04HemPGd!Hs7NkZdVn1}8_j`o?)*OKZGS!`ff)gF zG?v-lj$wWNWCcw2Mg2o18D~1?3_b0XzdiKBNkYSDpcv@&kp0POmweJE2ZkIQ3B!a! zIgIoE+Xv?;34kyo^QYjZk+tEqZvq^#QG(OzX4~X+KtsoQoddTWUR(yo8R+ObEF1j<-syWOb>)JQ&Zbdu(sctU%Mt zW&YR0{ttY2TTXYZ?~WNU&cES1Z2q(7SrWDh``!J(JM+Nk$!hu&Y;(7E`ZNKTe0w+% zJc?Qnw2B+%UR}0;cB0Rufa(7-3FF}?629@LgTiEC&2uyL6NxexOp?AKT^aAx3gi(W zao>r>MPw0eQ3>IV02uLsC@>yK_epX6GRg4{NEL2wPPF9=*L2RV3yyK8DhuEK>rmmV z`&Q~#c`lgR&93TdOCja|ewOXmPNRh7!&dMT(1ett#iDr8HZW~VqWW@7fe9B6;7S+? zbC`d4@MEau&mKlOPKd>*10q0c{~^baw6!a*w^sY#0Xim{oOsiXiDOhbG&kl3c$$n1 zMRrD83&QucDSEcV*7LIp8VTA@F<%qe+_c`L;6on(>SjAU^}5c9!BCffT>$VQhe=)z z8(=Ej{5>jhmjB3{xDfj2R@VmHQ!CqjlO4KnuOmvHy3K#po$yp_V;p_MKjh1`(rzj6 zHW956k1yvntz{_g?Xbs`avK(IjlTnsu%htO;D7 z?J#x^EzuvVn&NA=!MEj7cwe5A-Z$Zk2LBZH$~%E* zf`((xH0?`}hs|HA%mtwfOEsZJxxrennkTYcwP#FKO5%Lpc^JXhSpV|ZH$Wr;`}`_( zIP==gd3LYyVtwD|*ZJGi{7~x8{=^bGVqu0RJ`n_BZH9+}kz%-4ZRsImi@rx%=ZEKs zcPnUXo6hbJV>fH;@1|bAHIe0ijYI*&kdT|HkDS$9No9 zCHo=*HWb~U+Dtzxr+Esao}6@|;Pf+E$ay0$kQp#s{wlw+7aIKbMdf`OqhoG*;Tco0 zjrP}VQG#Y2cJuqoJg&5({)S(BA}q9T1lGeWRyu=Je|)I!6a+aj!IP^1({)ZYe&x6w zt3a)Dq^TB+A7CdB0-}#z2Ur$W&h3YVw8==!xONy$uQmDWh-@15iEOt!q2m&?ZLA|w z8loSb(0}7y6Xu0?M5Uf4>VZGluB`wMf2oh;m)ghxVda>3m}4%V)r^0nVQ5V6f3>*) z0&VN!N0~GC^P}vj$`EDMZEmVV;N&RISY2C;$0;2(<{Lt&PKzqRByQdiEHGAbwtbS zPj`Da5%U6k1oEtVzI}QNw;!hT6F+~|@=c@$C4NtO@=xgP?|5MyZAyuCzcvq4rdAv@C06%gZ`9%I);R6UGiGJobfux+<0DLS&|MSG4UH z_~o{^^9>ixMg~mY!-@Fai{xaE4^;qy9iZN15Gbn5ZqHWf>Jc5Rv6(#n8`1NcCsdmG zab*dSXVPaE?)wCalD;$ivF%@nB#7D`@YG04p6ed9m}4iJW|pfVMLE<-c{=-8$e?cH zUdU#mCj4gb zZKA^b9p*9S(}8@tw~1RNPHr7tQr;P+-)D8|sq=*o)G%RGqt> zzP5yf`pVxb)I51D_G~Xp^GNK zVI6sAX)a9s)e{8N3?35YA6aQTXuyszK3ah~CemzA&CII#8F&F#KN41~8I^&_%}6MCNb{W87qAF`zj_Y^szhb> z3p3}KbOxotY|(lD=;)`fYE_*{S}x;f^SW#)SU&5X#o|-R|trpa|L5PS5aa0 zTHw8%SDSVtU4?vyrhnq+^@dgFS)|(y{~(4j%3UEiO-rBM9%`)8(dh33pMLiuurNY# z#10AsQ7%*0Cu_DSAU}P;X(JwA64~Q_^R%d_zSm^6Aux?Pn70PM>9EvLeOX z&w9c)pGmcL22;MO3C_B>=NC0RJpMp8?#ZUf=GWRvy z6RHq3B}=MGVg?9@iKFBpsvnkVh3{Vpp=`CcD=u~@ql{my|6?3ssi3mCOPnjI&E}VC zc@X+Yl>;;DNo0W0`0th!X{?luDhOC{E8N=?!w}K1{V=)+1={m(f`Oc|N=07>}3;z{-(A zm{JL=j?Sro5iecmE2-pWlRf(r%|HEQ7kgwQ9+kt=NBhtQI7OwcZ#3%$Uf%^r2nhjY zoQ08MfC%_X{O9~WcirMZMhn#z^ux4Erx-tf-6bHD)9eH&^L>^jvAd^9A^DCDs?0;k zkm7LE*KjP6`2d17MrQaaLqd_Rka}J$csvUec#hw78<=s(hyR>065~YCVCA9+#Q+; za(*L0IEw!r5P|@-;x33L$Lv9 zcuN8YG&g{<(SeJG18~(b!5yywSqQiLAX0;---;}mF5&b4lg|T?LwKREa{9YX_-zL@ZE?Zqi@HxK^2KO1>0LATu{te=T zprmHtY)bDVfxI1S}KBE7V zznP7KQ8HekWU#W6mw`dr-boV}pMQR==&5=Q5T=_q091jfc;R*jX#&=MQ%~@E@9^?`$v48ks<>(fI(F6L(5ppKy|$HWng*bKOb(4|cMUB&z$#ob#XV z5-mg)gmFIybZf=znm3ZPyUO^GJfxt0kmHjaTZ|sthsxXw&}Y)fOUSg=JhRSR^UjZ- zhqqb}Wsyw4zdnj6@#BAJa#-PdI4_dgafFXh85DsEQ_cT+5)XpZq$fZlBA_9UsE9r6 zEFec5?uqN@QhJ^IzwZrwl-5J`CmVPv{(YDTqEqWR^dI;5hXc~cxP%B3v&~s0`Ct89 z@S`i~a^c%V^N81dDT*ItFS*&IN;@O$EgzX0e7x&}TD=!zS}hTpezBLS>mdX(5< z)8DEI(-o_D)c-UX@dA1MuJ*yc>Hf4|`*B2S_O>w*-tbUwtiu`;W(Ud{HTty@(&x(T(F&;M zJ=?H>6`B7nf-90e8V`WSVp|0oEKB-P2M{}4ZDawzvM&a!y>`Y#jCsD%T_l``@ah(I2nJs~Q|%uSKu@k!m~*8B*IoA{*TgtF<(5sHCGG;n@NE%~Xt(G$^&<87u;}Na zx-8cq0g`uA(&RBFo=-4Y1GUZ<``Zw{xL4jfHkZw~%~wvtGueszcXt)_QwH8g!; z%s&3kSa~R$dO$-%L-)c@_hi7&>{6L_M>OZFkUQu;{sL_bUMStNrt{{&O(Wn~*zPOk zB>dnfszb29NSTf2pqIs68k|p-UrSrxgLHqi?3N-UFa!LHy9n1)=s>`yS+J{MEzS@ zNlfGtpma7kG&LR3JE@wB%rFA*h~~KitlO=IP)ZjN6dQLM6qsry zHkB#cyNh#n`)}bCrN1My*;k)^@>e4gJ`LJK?2)Pwp?4Tl4)4FA0(tvY+#1jOUM)xw zlMz4x-f@g^+yKUN`?Vu)|AwujArnM~Pa@y*Q9S8eS(u{-S%(Z5=R~pRl5ZGDjdqH% zC8rW&{##wOpU_oTIG4WXMk4&%2t1;lWcW5&!yxmOT*!hBcKyTqEcNoO+R2;Q?Yj+W z1-Y4?59fijz4(MIDwGe4-baYf08UCs;r|YefD-Md2ST;=cxwpgW=tR76-dQVAhn^= zG9Wk5lQk%jIR@KNU!UMp6@BfU;r+;y4VQ)D2!Il9HX%yW-9nOzV+m$YKzVaO`B8S7t z$!S2Mz`xw>V(RjE`0>bQp<0y&h~Y=M#jpy!#=dE>`=e_AjSZq6u!Dy1xJf~-7|0F! zPR9|n`e_7D2DIV2H(CESQ}hA>U>n|6`%z?YKEA~)BOVY%y=jPV zT=44R!L?J)736X#csn|lfBJ)o8ixaZclguWgrGO<`TN2FMfO}7;5}d+BlK0yTSH3* z4!=;5rOh85&2|x=46hkNaz?)U8&=bcfh=N_#8BNpZ2v$aVBo;sk^*X`v;4-LU;D>! zM*h12MxXIQy)SfAqE4;jY)wgnppazZkdNNVVF;(PLf^qK$FgY9+VFyBKE7UC|f z`R|?&egV11K3s$rJ6!GvoeW=jV*!-e(wA;x(2=d0E_e_%0x--0o8#~m^H1%AH5Z^B zn!TNPn927*bvaf0pt}zhK0o^V@WlGwwKo(*nQ|Q~4_;>~-8y20`HP>@UJa)3nEnGG z5Hwhs|FcmFG16ZVNb5hL`2Gc1{zWIMM{_OiKewV!hCi}U!VuE?s9wU-QbZ!)+Y^tS zGzp5OSi5iq6hmEr$w}&9DFgoB+i*`q`8TBi^MVS{SKEb8Aw%@K7@XCo(De2A`6%mf&a2#~y1N)+kJLD$1HCP!22)(U}xo2|j?WRzt(11j8Z_*v;P$R+Ug*Gy3VxV4K; zGGUGabnW*`Z}~`ydXL-l9e=GC$pY#z|63vy>E*m=$=j}iWP{sRTh0%H54`t>2xYH% zsk+M&u&pNgMCM@3e)Xc?jBWX-TIR_cQ1Z!RW7!B zBjZX=+^3}?SE)B+$EP+0oi1Fp5blDT?*}nsP>filqXH{ms zxU<$hetC`u)Wi+x|EKL-`y^#aQX+sDYIa{M;V%LqLrOk~lR>u0Q!+pyQSU4zY`?E^ z|5@)C)w6G_=i5YYC5SE_u(7hDNYr}uKT|@DSqF%S++lTIbIk^$a>{~0IH8KNFEy%+ zW#$&!ynpgNJh>6uR~?2c)ZMW+h0OKu231(7L_vETPaR+(P)Zy%0~yGm>E9?@@x!Jy z3PYgS}Q@b}x}E#F27@F+j}0=&Ql4gES&f8acMrPAVlVs9$97`FR))R5wI zc&}KFI1UIewh>3PkhnB7u zS3AT8_*|nexznG|Z*DU0c!K@jsI4J)5#DyNi#|e#`l1Vv1`1)*NVcy0LZ``aL0n8B zecupJ(rhq3u8bW0NIRhKYq$v1li+jp*4hfAd&wxYDE8vn1TQ7S@bTM|I2Ob z8vMOIxA7&_j{AKmD+O@EyXT`|dElt0pED^@IV0m)RPBUs*5jW60>>w1!@_G3aBKzG z_f(KfAPBk}-jQtR*Sroq!*3rbQ_m27e+YdzQjUb<_*k8vc_C)y!@cj5E>NxUhPu&g z@Z2<~esU`)ih+4opWe+K7sbN9n*9@n>#@n3*o z?xoROgDuvhq>jJ;Ve{6i<3roQNfgo5^4Q4(|GNExO2Dr7GjgA2zWuKp_K)K0R(6lv z!l$!zW-+T6mb3gQaAFviTQi{|*t%>{(mhTdy+y;Re4qT@kccy#{b z&zWy~kLO@>*WPj2k#H)|7L&gAJ37DmHQAme#@m;(Y8Nu^`D5vf8sZFW#+lA2!HK=( zJ)#hO6JD*`o~&c*&46d}g=Qj@SsoB5ikC z^1V8E+&<-OzuS_C`p5<<(A6fB`LXT(!kV^0_~hL6PpW4={l%|#xgdh?5EIk~lu8{D z2hiyhv3Yxij_#$Wu>P@7SYsl`-~3;}Ktx{34_NL^Kwin&=?!HDv3elQDbcU*qyYpN z(#yw~f1vFGK-t%CC-qa-4FYHbA^h>bag-I&*qaxwn?Qv|idE$<>1H|Gr6JtUu(he2$eg!N z@HTF@dG1)*y;4fxe)4_ZkpaBHH9hXp9p4|gLrRQyuevRd@gSS}JhRnWqrvm|U@>qM z=yl7RQROTKwQtzP3!zUF)_6Ld#NGA6v~2{J9Dd`h6{%+XsU#qGLh%`fB1Hc?wfayK zN`H4BpDp)npVQuu$DVW1qsBS&AJ2eP%6Qw>;k{)Z$8%HL=Q4(a$Ng2_vHw&vA!1L+9zc8vaX2GtqJ{L-;gvF0IR$em zMQ8@{Qp3+3Quk)TJ$?I<8KmwzD*7#(q<@Mc`dchngW}cRG14(Z6K7{T|LhFXwhqUQ;BET;cYqPcAcMgt6M$V9$(?jHo@Sud$an$U&5F zZ1QNh^ztt)E*d#Ij;<43oSKKnd+WNr$_r}+s_O_x6DZSB10*5Q{ourqq>mTl| zx4y^(cy+9;t@R=*j>3_dmm_m)$k$#937V(sllby&5)Xex^UD-|m|q<(jEd#@DV(of zAd7sSdmS*zUDqJ9|K%O2J2OfdUiK{{b{PCy)pi<;hp~7v1CQj&4-10 zgO<3dqhYH1#-Fa}Q{pjql5>>P6gZH21zLfxZ4$SK4T@7b!|`nWF9b*84Bq8&Eht;9 z*P72x&NUCZ7*@B$`FtE=hz5b}S`|c6Ey+j@D1ZibjJaRlR;{cxAWv z?Nqa>QqV*H-*zzaPvpLMHt~nl(x6?vrPpR?zn7~wow?oj*1TKmx4j71>$hvtC$DLD zUrz0^tiP0792U&dxJxNv@r}Elsjn^aSLUu=9#mD{&9n8|ayIL$!H3s>%KEvbchBFW z%cd?VU83mGF#Dar9*s~w&AnmQRQIOvR+uWsuZ?+|a=TzApXO@q^(r%8=}iv#wCnFq z=K9}JbqU@k99Q%j-}NNk+qLCP)jXfmOO|)@?mHcnynd6({mJisP1_}u7k)|eYHXWK z63eQ)E$ufFi!3CWUY2gw%e>omCv}qEX66aH-k&35f9`Q@Us|NPetVqe8=dX*VxJdn ze`q7b=Dn(UA(2sf&g)cOmQFhNJ#<-aMELJZbA#@to>25@kbW<)&!X01 z%NMJt>1ST)tyX)h@?`DxhbgCHr>S4wv}WC&Nw-!{+Z7$2D}74QAcXTvip=M0%Tp_N zor=k`)t|ra^ySr-+(|R9mB(E=`MX#y(wSw)$!iymzB;^c*>%&^*7HxTnRga=soSZT zdDl+9s;r!v8hk6POtzBaig4pRp7eWF(<8gufvNHPu6xs-=e{;mnHzJyGKE+8L0j}; z@%8-e^UCL5HhMiR>sD3Rve&yVZ#{Q1*CO8c+qSr^Z#CN;)(X5>tGG5yUw3<+CfhaL z%bP;hZ?jvgJU67BWyiy74_)6r)_nSxttxn0`0?HE^5(uydHVgP+HE$V?Lv)Leti43 zWA|;f-RqX``95>)^P-fw!Vi{3KNsII-*5f){gdxqd%gVdB1sOBNe=nEW%;i~g_P8J w!5uhoe-Jcg1nPN%MiEAtgE$;km@@t6ukO)1^!cY^83Pb_y85}Sb4q9e0FIsP9{>OV literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..2f1632cfddf3d9dade342351e627a0a75609fb46 GIT binary patch literal 2218 zcmV;b2vzrqP)Px#L}ge>W=%~1DgXcg2mk?xX#fNO00031000^Q000001E2u_0{{R30RRC20H6W@ z1ONa40RR91K%fHv1ONa40RR91KmY&$07g+lumAuE6iGxuRCodHTWf3-RTMruyW6Fu zQYeUM04eX6D5c0FCjKKPrco1(K`<0SL=crI{PC3-^hZU0kQie$gh-5!7z6SH6Q0J% zqot*`H1q{R5fHFYS}dje@;kG=v$L0(yY0?wY2%*c?A&{2?!D*x?m71{of2gv!$5|C z3>qG_BW}7K_yUcT3A5C6QD<+{aq?x;MAUyAiJn#Jv8_zZtQ{P zTRzbL3U9!qVuZzS$xKU10KiW~Bgdcv1-!uAhQxf3a7q+dU6lj?yoO4Lq4TUN4}h{N z*fIM=SS8|C2$(T>w$`t@3Tka!(r!7W`x z-isCVgQD^mG-MJ;XtJuK3V{Vy72GQ83KRWsHU?e*wrhKk=ApIYeDqLi;JI1e zuvv}5^Dc=k7F7?nm3nIw$NVmU-+R>> zyqOR$-2SDpJ}Pt;^RkJytDVXNTsu|mI1`~G7yw`EJR?VkGfNdqK9^^8P`JdtTV&tX4CNcV4 z&N06nZa??Fw1AgQOUSE2AmPE@WO(Fvo`%m`cDgiv(fAeRA%3AGXUbsGw{7Q`cY;1BI#ac3iN$$Hw z0LT0;xc%=q)me?Y*$xI@GRAw?+}>=9D+KTk??-HJ4=A>`V&vKFS75@MKdSF1JTq{S zc1!^8?YA|t+uKigaq!sT;Z!&0F2=k7F0PIU;F$leJLaw2UI6FL^w}OG&!;+b%ya1c z1n+6-inU<0VM-Y_s5iTElq)ThyF?StVcebpGI znw#+zLx2@ah{$_2jn+@}(zJZ{+}_N9BM;z)0yr|gF-4=Iyu@hI*Lk=-A8f#bAzc9f z`Kd6K--x@t04swJVC3JK1cHY-Hq+=|PN-VO;?^_C#;coU6TDP7Bt`;{JTG;!+jj(` zw5cLQ-(Cz-Tlb`A^w7|R56Ce;Wmr0)$KWOUZ6ai0PhzPeHwdl0H(etP zUV`va_i0s-4#DkNM8lUlqI7>YQLf)(lz9Q3Uw`)nc(z3{m5ZE77Ul$V%m)E}3&8L0 z-XaU|eB~Is08eORPk;=<>!1w)Kf}FOVS2l&9~A+@R#koFJ$Czd%Y(ENTV&A~U(IPI z;UY+gf+&6ioZ=roly<0Yst8ck>(M=S?B-ys3mLdM&)ex!hbt+ol|T6CTS+Sc0jv(& z7ijdvFwBq;0a{%3GGwkDKTeG`b+lyj0jjS1OMkYnepCdoosNY`*zmBIo*981BU%%U z@~$z0V`OVtIbEx5pa|Tct|Lg#ZQf5OYMUMRD>Wdxm5SAqV2}3!ceE-M2 z@O~lQ0OiKQp}o9I;?uxCgYVV?FH|?Riri*U$Zi_`V2eiA>l zdSm6;SEm6#T+SpcE8Ro_f2AwxzI z44hfe^WE3!h@W3RDyA_H440cpmYkv*)6m1XazTqw%=E5Xv7^@^^T7Q2wxr+Z2kVYr + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 0000000000000000000000000000000000000000..8aaa46ac1ae21512746f852a42ba87e4165dfdd1 GIT binary patch literal 917 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|I14-?iy0X7 zltGxWVyS%@P(fs7NJL45ua8x7ey(0(N`6wRUPW#JP&EUCO@$SZnVVXYs8ErclUHn2 zVXFjIVFhG^g!Ppaz)DK8ZIvQ?0~DO|i&7O#^-S~(l1AfjnEK zjFOT9D}DX)@^Za$W4-*MbbUihOG|wNBYh(yU7!lx;>x^|#0uTKVr7USFmqf|i<65o z3raHc^AtelCMM;Vme?vOfh>Xph&xL%(-1c06+^uR^q@XSM&D4+Kp$>4P^%3{)XKjo zGZknv$b36P8?Z_gF{nK@`XI}Z90TzwSQO}0J1!f2c(B=V`5aP@1P1a|PZ!4!3&Gl8 zTYqUsf!gYFyJnXpu0!n&N*SYAX-%d(5gVjrHJWqXQshj@!Zm{!01WsQrH~9=kTxW#6SvuapgMqt>$=j#%eyGrQzr zP{L-3gsMA^$I1&gsBAEL+vxi1*Igl=8#8`5?A-T5=z-sk46WA1IUT)AIZHx1rdUrf zVJrJn<74DDw`j)Ki#gt}mIT-Q`XRa2-jQXQoI%w`nb|XblvzK${ZzlV)m-XcwC(od z71_OEC5Bt9GEXosOXaPTYOia#R4ID2TiU~`zVMl08TV_C%DnU4^+HE>9(CE4D6?Fz oujB08i7adh9xk7*FX66dWH6F5TM;?E2b5PlUHx3vIVCg!0Dx9vYXATM literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..b749bfef07473333cf1dd31e9eed89862a5d52aa GIT binary patch literal 5292 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 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..88cfd48dff1169879ba46840804b412fe02fefd6 GIT binary patch literal 8252 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 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..eb9b4d76e525556d5d89141648c724331630325d GIT binary patch literal 5594 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 X>c!)3PgKfL&lX^$Z>Cpu&6)6jvi^Z! literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..d69c56691fbdb0b7efa65097c7cc1edac12a6d3e GIT binary patch literal 20998 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 MPgg&ebxsLQ025IeI{*Lx literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..c04e20caf6370ebb9253ad831cc31de4a9c965f6 GIT binary patch literal 33772 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 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..64613c94adac62ff2f16bc964ddbfde97217cdb9 GIT binary patch literal 340798 zcmV($K;yqsNk&FCGX(%wMM6+kP&gneGX(%}aS)vWDgXxn1U`W>kVGXSp`$IAtI(hj z3C*h1EeCFos6Ri)zu5l8>P@kKYW-V}sVNY&;-~Ru_ zf8~Gcc#(PM`M>&};D5?Lr2n-3$;QRCUcle4fA0S0J=po3`zQY+s>l4_Ltm?X9Dmw+ zF8xvIFYAx}f9ie9U?g#Wqo)o>_}}>d)PC~&S8^|V-#q*m`XBs%=Kf~C)!!$rehe)g$^}{a^q7zTdrn6d%_A@_zDv_V>I0 z_5YXL1ONZGhdMutc?$U_^?&sLGyLiE%k~fAztnrXe+ifWbN@I0$NVo-zWl#`*2nn& z{D0YbAM`W+-%#&&f6ny*{J;Kx@W0;q9B<$8fB65r_8s@L@gMfT&HuFhulQ2@Fa00v zJ!bvm{lETy^`GniXgWQdMq&F$}aGwV+_9iqfG-?)B+U6l4MT$ZC>=PWsj--d{ zm~0LdW4T-z=&raVvy4e)LA;#1a)4@_ zU24JE(lpRvxnDu@=H)*q!+FhT$Ic*2D> zZ~q<@?NJ_u094q`Z(26&{9U;3QnKu>u|2n<6U8y^l zJy=5|7XLG1H7)aTe!U!on%ZCD$mFOSv!a%rH^$?W&{I2$G)6Zlzc$)h(uOj|L3<)| zIS-^ybd*m7Xf7j9fU^w*RH4VwnCO+ei-_EyTr<_GO@Yww0TUWySn2ONe!f@^on^My66t*ga<3YD6EoYig9TiJdOu;7y;r}x^=u;VL$ycVWk!d zEhJcgir35>MGp`&3BzjX?!!i}5d&F>9z5pj<^f?$%!psbOg~ctzZe|ZK~U{W`U0*O^=iq{OqVNQuROV_4<0L77DwB^uLnfwLHmTZm6We zBZU)Us#0j2sqnjVH(CfA96mYDJs+Te7|saAf<6pMtnh#{=nScIV8|D>1o$b9m8JhI z*i+TMw3+BD$cC(r<9yUE*!ZaVz4jbm3gj3B-^adRP}Rm9Kf!5lB&P`iawvw*NpjJI z;f#s6v%M9;e(JY3JDm~Lg<-?ZGQeSxp4_7oyx{limoo`uv0gkr>nTQ-{sbCAx z+*Fl=V>jcrcU*L0pZut7ldBU?P2n#p5%)sYqM}ff-KRl5uZxfW--q4Z-_~Ur8zWue zBGU@LToy<*S{-rXTnpe*iU&>yaAP2UuQ9>$-w%qpY5vCyg3uCvZ?}*Jqb$hbPFg6; z_e%-~0{FRB=R}>Lq~7!;yM8{e?MCu`ugd2P4IBs(cu^;I>OTIYde^HP2#MXtad}v7 zi_m4_lsIt-GpB}YxPq!j9Ic|{3Iab^%;QESHB~`Wvd4Dz^1}IRx3mA51bH;Tk1T`u z`ymc+4zx(!VD2^6$l~hOPpQzdp7e7_Vxv<$y{7arF8&zlEe^eQCaTAniHOwmYG6#4 zm(w8cwmuR#e4IcG8fo&1Q7n3uTx)*5r*_DW#!i96@Tu6$S0EsQ_xJtbRv=xn6iSG2#dd0Gs!zzgPvtREU_6^7u2c=xD zKJ#S$c<|rcEZ$PP1qWmjW{)E<7ke5@`9MKMZL^LYg?e&h100Gcpx| zP49jtI(=uJkAEhc2xCjTY}HOLGMrvcBHY^A45d;Go?uq*0UyFe7`w8$a$g!7-xyiW zk-A`pK7d63r>fZ>S(D6XvsVsvf8WfTryHzJ!o`;Lc@r1=9v-cqQIYje5tF13%d@aaK+KG0kXl>^%MQH zL67pGkPCsXJ9EtnxOJKVJHt8>BC{>Hr0y$yHuo|k2|hQ~`yKXx%RRi+Xm0mfq0!Qv zVIBJC-H6iuN00kF1kUEgWqruqB@XiUSRZMshUxP6kw_q$imPB?zu?~7y9y7{KtBAL z&Pj1?WU>9_BNf;8B~No_c|qXyuxBTu2)=pGEB`|?R?8oLYzv>~Q5UfaZa~M6ko;`# zBD>_cvT;~k#@4Ze5*L{QyYQOInDwoeD`A#)#1=m$P z2y1d%&{d*11@~}rPG0rSo4dqZZ2lGU^yxh zVzhh!yq6^qJ%ub=ELbz2X0?8d+GUf5n9NyNk7cAcIAc(F?XUtwMIwQefK~0T(D-GUP7)D zJ#+*h5mzHo}K1aiz){TJ=y{!pHbfMUPW#xe-~ z0PJFy6J#!c>2vp^Wlq$XXRbv~@t?w?nBthqY(6wVSP1?El`5q1M$~3F0_%${d34bT zwB!G36;|4>G#AZCVoHO5Rf9)-sfj~PSIFM%A@$S-3<}5;`ZnWnUfxBHSQ+iib&Hp_ zS>or4uP|2oc^bYe>Gl|ULyJ8?%qZpmM8<*KQVdW-(iMMVk5ODD;ooJ-dO{=`Ht#a;f9fXELH*4WJG#Ks_RdQJX~K=kP;m_!vTlvObumk3LFk zAzle&-$U{ed#oI*P>7Q#`}{Y-7nQ~1qHxi*_|;$EM<;pqU*7zCNt=oHL?VM4&h2xO zjE!t<+FbHVD9~i^r$F{>f3})V=o*5fZyR$?_?o#YaODwr9r0z-Ikai~7s5*L%C06L zKI6@2B#`)#xUgAw%C!yey>v)oyJzAYNQ<)qdhjJ6|Dv!*90ATnpLy$Y9Jx5!+=?)N zMOs*8HbPZ0MKT%9!FT5Awhc?UF)z3&POr|SLxaBqO#!OdBSsIz2DBkZUy0wZG7KYj8rulaCW zQ^51!5?UJn-*lR=BDqZ-`@z|=f##-b3(lsU@q7CW9Ef@ml^T_ecW*i7sv7pcPs}!% ztB0*TVgbvADOVG!_3#D0l$lMJ@)yU)0F(ly!2ZaR2FV{V$d?R&ELm_|_fcqKw|sEq z(si#)j259wun6{kk4%4rncbwA(sJ`!uG?~r-p{-s}5y_ikCh$@{!sEo9*SSi()Wa z3y(?lonc1S>_UuOM?-oeZ%56^?DBOA3VNM(XGD>{{R1$_I3w+*_v&KVp0$ymOG85J zAq{ovEt>IIlIP>1-x4#H#|_$M$NuYgk5sdty~>Y5XTk7nO=2u87=f0n;vMo&ot!mN z?Ymf_nVz5N_l(`bC#na5fZ?l`1KqQp!5k>bF>9pY#0kkxT&Uz_p}Ov-^dgOO57R3I z%KsBx`x!C6Ya#ShYaFIs5#h`Q9R5>YSdJS2aIeB9k;sSn`DaEaYc;X9ZpEdRt-jH6 zHsUU;y>I~u?Oz7>l9l@aqx8|1oa7l?8e^UERWy$WO%1tcWD$l*=j!lsMDF?KsJ5Q_ zxV41!_uFUI3&PP^0pXnBZL{U&TG!SXd=e8Uw-Ptb_H=D6`lc|CJ~vu@`%#>q*AuZZ zo2-G;#?IHcj-2_3X8JBLIGdQ@hLV2E2sTvtWybu;#7D$NfQA>>G9}rUOAo?1DLxDG zu-ul`)UV`#>+^TNbUwa4bP4y^|K}|0m0w-D>0r5NgaQR%t$CLYP&(ulUAQ?EIz2}; z%jy6rz;_}<9J|bzBoJ&|QqE=Fr9*06ptWVP5lVG%)BgB-x&%&jl9duKtGwf^nh+L? zO9gy4SE{j_*yt$Pi*ktU4io5H)AfK&Xr@yQN{jP(C<5?UmV^`ZK=a_LPiTJduHrvY z5sG18$4(lf-%*okZ|NHxIzOqT(HX0hyd|WfarZm(@g)MKIgn=gDttH#vb|yT+|M=h zR2;XvXEL}6i^4*u>a#3JzhAhlEM8&JFHs-kIl|JxOv2Frm$&-HFanITzhZd`;xli| zY@brm<9vWaw8%IEI(HF z$QD54U;_T6xxjsDRj=k3=%3~vrgV=~WW#vVW|;%G%a17Q2M{lop!^3gB~zP$acMTh z3S>((DX6PpQV2B{<=?>>3ms$y$p;>3`iLPwN>~}AK3b9{)^7aUhi_f5+fY&JIWP?8 z&H6-0AD!oe0^&h>uPnKG=0#d@`zHaOP@LS9G)2PPH7%$nDqScRge-A`bk%B z>xO>O&1;9?#e)%bQ`vBc#hU;FE>Yrm%Be__0`#zQKrc>cUtE42)T$y9*vl1rj^u+c z5I!62P#0KVWJ7JCAK3Nz?ANnlBNhp;rH|MbY9~&`=zS%so|(n_BNSklI|Elr9d6B> zK4|`PD{rUNwg)_TkjUrEzGG+LPw~|0Fu$O&bw-jp2FELy<5J>@&_XM!hi$k#oENVH zUY?FS2l{*I0}NU=+QM<#klTGhe_VwwA#{9(lQ+9_InNwGg?&!0-FV};m= z;rh@c7HT^S7`Ii90KWQPv3#caoE@NLLAozU z8Czc6iF_86Z2zm%7wRA+e5NPutwJ#wX;DoVtt2UPV8ybD5q2Y3e<7;<}FP9>^;@5hsb<^$Gdn0 zUIWv5W>}C}A2t6GGG@IOJ!ivP_Uc6fuB9nvhMb?yH#VdQ8$}*#&~V)Y`06OwIU1sb z%-?l;YdLJ>SP(?rBe73~XNcMVCQMa>{|^4mXtYPu#{cl#_MtMj6w zK3~+n`1Ins0}i^~My_C0*m9ggN-KdkYyw_?kGlvI-2Wsx#hY&(4iT-YBWcf8HkMefDt-BP~4Gv;=B%`5Oq zPn}MG=cU0%fMsv;I^f+FLhP1U4~DPjpm2KSAlxs-=3Z-7QSVz&Wyr9kE~s&JpEZj5 z?}fXRmg>f$Q78Q-5sCyf5~Bi+r*V7N4%L|VI2`H-zhWM1Z=Y}!mtDt*hX4u3!WDsV zKmKBPgUGY;64a;bDjl1yr$Gs7+$aCYRf+F^h)<{&cy&7b7YwzSlxv2R(- z(oL_^e@a>()ViEL2$D8NnaU-7=6sTv-wwQch zee3GhVekh>5+clSXCe9@dk58U@BI8IWxFam0HE~H%d>(|CWj!jg|I4k&hOtay!z13 zU#fLVzWIgron2eX_cEe{vw(WNZ!;;43rSExh%8nSsOH=CdSD+&#OwP$W1R-g+w8@v z4+`?{?N=8_@)g$>K^*o$K;4itY|XwrfwyzrI}&rT2hpY zT-s8FN=F8+yRd!BpY20Z&H=eU`W5Se!?1EVtAiHX9)Kf-lVVS5lUt-~2S3MFcRe3@ z?-lWP(KEG8rGf#cQXnCw#tgTb1d3PKcleb9gws;zJQeUo%1D9B^SLHj33Ho4XJL{k_>1I zR4Hw2zdS$RHSEcPzH=w1XWZk$yrvRlr^fmz8W&cKM`J-2i2UEq_PRx6)IlowoS9$| z@T({E>aXAfIGBmim>Jn)eaQKn zQt7^5vp5RUr6+LUjmg3rRmfv&nU&wASNASz4>Z{An99;nR66P^-eqhdS!EeL%UT66 zTkZ4udTVsy-%aume-0b?QD-d?#%`(&GoXSYm2q%FUUDIjr0GA=D;C2UWaVro!^rBL3hRsS{6NYuanx~y(XeJu06pWiFbY3W1p!TF@j92nNy}g_oW142Cr5<0s7#H zJ^}@$G)DVu=Z~JXs|Iw=e#SnmM>R)>sg26TngI)7@9>^q``m)LwXxl_g`etxyXh#` z*WrE5ttR%7y0FHZ%2mpyzT*(lq|0y71Iad6PQqKb2 ze${5Y*Y$UzNOy`HND#q6X~ahJmH7#A(DB%##<-auGrp|$?0YW7vp1W%K$p~T*78FwV>gzQF&JwgY zZjWP$WE=h5jDg~#O>LfK8^E#cVYNb`KiYl_Gu$!S0h?jQ_WgHaxTlH6Ral|AibD{H zY$6i25oslwwNU7d1!d_E-R|IIME7P2FfKxd1WJM&Pi7`U+t!$@g?lft;nHQ-Pj@OW zphl(tse%Cm@9OwpYsO9h>T)9U>7FC&{U%F8ka{Oy(ipgbhK z$11E5r5Zn`&VLA?<(tT-4dVgY0aOpAp|i=`iH6Unb5Dnv;+xAQ>MD~nB2MtHd-uRr zcDtFkWfP?Q#I;|(aeQNcDt0VPEYjGkO1W`Sb!AkX*;_HZNQqbwr(n^@SzW2Tjndlh zLaOGscDaqB-DXr7TgLjTf&p{cc{^q!clGbSZD+=5CfN?~iyGL~Y2*3Ju$(d+_UdF^ zl6le1)f$!IsCnprz&1=7_6PA(1w>z&v3LzWX(Ox;FK9L2a=$p1scIa>j~1B&#H|sR zFH`FVr3sXZ<~~ca9I&Q1Bxq4WwsL>3R8I0C0aD2P?pv>&&?5`)z!%u%>I|UT1GC{G z$~81I_uVVk#)gdSgK*M)SkhiW2(=bxlP5DoiImf^t1fmM%#6bvf+p^P=*~;6&#FJ9 zCBjoOG-(idbx0v(5_v#JQ9E~Et~>kDOZ3zEQB3$oZycICDiBGqxBZGc&F8#U0>|5v zOP1-@Ki<=UzFFSoV~=2w)X4xcOZJsLs6v%CEmKQ3Y?Q*e6G zmBaj@AwvSkw(d9~P-Llvw}|=z#eB;5hDRm=G#s+HL&3KZr`~kB}NI`eyOB)m@ltJ&R!kc*YmE55&*9()bH01>3;5eu@RlP}mQVmQ4D)MZP8 zZvAaE-i0jKof0>O%Kx(K!`*i_t!0i*KH_t0%LlVEC&hOUXjO-aR76&;V!pcBOFlTT z8+W%_y4!VM3CAx&BQJ=|oTqcw^#Asj@#S(4V%RP!Gz0~x=20TIg?1YwNs81Iqr0W% zbSW%grUulffM|a8FS+F%7#yZ3z`($LJwQ&C7B+ehuxDg&UcCj$;N(xmE)L-^;mRK( zEVmPifsL`ZQHW(`Gm&0Yip2%u-|Ir+St_z*#2sj+F%0C_0DAa4()gCJf z&e9`LVtgd;COv|cd>@Ws&x3`gUV%ISU?2(vFmYn?GV~7rcQP|ElLk)mJro+BmJF;L z1&fW;cf&=S%S$dRi~)4k70?tpKoo&0i;!RaorRh94p1yNm%~H(^0zspJJbXAQ=0@^ zK9`veYL*pi;hr zR|0<_yzKX312z^XVK7Qf{c_`0z!`Zah$RWzu0i~Bl0-fSP;nnB=(*L=)KU4oH?@x0 zieHR9oa7=_0(~QV7?hV2_((21Fg29#H}YOT-LajB+&PUkVP4!Fr9oAZoV&wHj<3a1 zNBdDzA!3=66)U+eAGGoYe+@*hR-i{84-L#RFdh+uF(gnm+3wv5fj0BwYuuSzPsqGh zjq761%t09Z3(g}oVyWL4$jnu%Ko6&nkRHVWOXn6R4#VgS?y@~Z= z)@F^hNns$TfOb4K;W2~=pvq~%L+wEiZkZegys-&BcQ-@{*83{Y>+h?k?kV z>prenG69@`L9gCG%2E6a^M-I`@FOuNLo0f!DbRE8uC210ft!_^vJl23W%c@|7m7rj;6hdaU%U_3llcB_+26}3I#ZpZJ6naIfP z7#3nUoB-unB(KTQs18+NX>En((3xS3>{reVdJ6nd{Ps_FmgkAQD&{*b2dTiPge(}# z!utQ^X6Pw&N%LS!;B9&S3*-bFdVsaw@a7;Pcxv)c`#Yrwpoy_^RZ{hjPHG_wHVM>$ zdx9Sd5dW2!u(ykd(Jp#Ka_TbqAzJD+hOPis6A0DP4lUDK zq661dd_v9kTZOsVlibuXj;rKW1E$~oHLNFIoNI3wF06aM_792SMSRPUWGH`Vrmv|v z^ofr*?Ud(8SM*m*MM@X$H7I-UWA2kE;NRBtvXR=i_t;#}aFCZ!;J;Gh1CviGYqaTH zmI@){pnG+OB-6!Qbhc!$tm+Tj&&%Fc+(v|%Py06--^37uQ=%xbK5A7IWh8sq00`hR zao?dV`9~fB7Z;dh{fanx>FTZM7tyi20~yo=_SsZ>cuXFxiQe9|rfeg2sR4l|eo6TH z%ZLx_jLp$3BT0x%0_H9JA3?M$wZ}87-yY4)6!CZ3mm4m42g#J5y{42>v}s*c5EP$45l9taR>{3?!{-?FkS`lhOU+LQW1LHJO5#k^p8YJ6w=k-!XV`UM<*W2s!(d-|!8;kd(+m21=LYzObF`o=5IeHr5{8<#Zw@_$ z^<8-9cG)~SJqqV`VM^URt_809XJlE<6}BGT&bI#(PdYXW9pxlp$8g+8sbf30FoRs) z%RCwz;)uZ%&t|7cV?lw%j&-F+9*q9O`M`~nj zBZ5Ei3;BIh_|py0E*zlXvu{F!Tzw08})0=5@(#ky`*r{>sk)8ACT@HkDSdkUWL<3mqGXq6p)buzW} zoc#U4Qkf`ydeARr$rQ)xM!g&#g)o>$Bmubh7#uF#6#y4{eTW9htTEWm&!UBdw;Jcf zNJN`9B*qAw+nJdR&IRzqjbv*DWV2f&J~BOKA=lid7!er7tW;CeXywI^D^*+as6$rS zGQp-x^J%WG7bDh45{2e;EGzS;X&K>HUB@#}T?N_gX`IYzq)Na4KOH+cs9x8$L^6>gqot^T?5!HV0~()nkd-uD9w z4q`V6W{c(m(`23f{%>frt%ZJ6*9~DgU8|b{ZJp+|AIi$UWwMsRSMA1&01GOA>llRB@%FdfmIRCrhWdfuU|{%(iCaqZi~gMMvJx(zSmA3Lg8AX$*@Q zW!B#5Uj9PI6xGXvMi1|BkQoQYx^Zmp3HdjV>LR--JZ0+T(j4P%AT!n!cpHdjo3+iY zrI=f5LWeF>5fA)%h=iNzU1TA^l4%S+My!ATeyCo*aCwIDB+!`Y`yQG-8KWD3Il5@U zy+Y5vYc{3M+()HXFK`F#YE3y6WG!+|2}e7!$dgZI$|+Re_D~>97RGl1{e*q=6$q*=;6EAlS!i0E?GjUNKX=!iv~S^O!(Ot!PsJIyRw}u)G?;GezyY&=3+u_Kb}`| zYbD@Y;`$l$ahkd-vjXbFG)dR)aMt8cCN2CAcq>=VD_(d5Ke!Pxs#EPGFYhr`jwNp8 zM1pjPHWqeJ{gDY!zKoQeo*dr$xGg~rx&5}sil%25D+4f{y%pS=R4%+^qtI?C&2vI5 z2j;)N8jrd0EmO3sgsAo>8q7sv0`W8n=eCqF`Ns(@LXLsLiT+29RAe2#0{9yitlZJb zy`Q<5ZhJMt)8gu2f0S-}fOgag*o2JEWX8>-rtl=my1wSQdNNxEPVnf@#itGy_!W$2D| z$=Aum(N^y(*O6P3<2v5{@9KXw29jYS_hmI zNj0g`TAT^|R7FFs{dcgV{U#el4ScSqEhV7{XX)@Pd1L0nsGE{HXGkt57`w6nEDDa%3B^vdC_`mOVrwt@) zL6_}to4^vDjrAUtE5Z_bHl9rVTgY+zwak`2>n0o8y4&EJ1=F*!ePLFyVqkr)tVZ>` zZ1@05alv=1*!#QRu#ym`i$=E#*Op;)qFOHxpDAKO`w(}MmyGz8IGcr{oXI{N-d2URJx2F!YKuSaHlt0XLUc4sxmrVaLEno8j0RR$wDGLj@%^+ zf)8>u^7vgkx;SFsJ1!E;?H9|?STJyO&tUf{+tG{7%oPdMbwN@{T6q7}$Ri#kAX}`o zNd|?*_x#ZTK+=3=1wcrD|v`pQ`)OcHtPkc-E+ljN(GU6p|w84EgLC(ODYE$yxRC}nFTnz zA71(Sw_Ec$E&uPhzMi0Q>g9}ba)lVj1mCqtl8^0~>yL%Mr`lSp`UN{Wk;-wOR~&B# zGog;2Rx!85KB%Kgh_jm7mo8o*E$fdDuAjYLyl}X-Rt{WeEPIs+!Yl9!=!9rj<3W0W zIIsG-F8%x1>Cx+V+~Gm6kbtdNn8NU-g>SKxcfiz?@2CT-B69*c)p zf=RXXe)_N^T)=@ul^|^63umRBS3B-A76Df3_DL{ZKTl&B0bM{^&Jt*KY<_R{X`ohf z6i=fbIWzD_^Qak6Pw3#!7`d;m@A^uuG`rU`RQSwu7QKN|%phYJ++;^&L=W*@fHPE| zYbZ=eTX(eTV`gb@t~W`bwnZLoDRx@lYChHWCt4{TJ4#g?f>l=18e}K*5d{a>I1E%E8{jgRZLo8!Z&&mKw+lE=8HXV zfNf{$8geBUs6y$`!`d!OBGFnlXs-d$1?Xou=`%sJ!pAk5Q>+i{c05wGXLk&#=Q86F zviN3=AA9|2Nxj!#Qcp5rR->w0cmn%RIG#2e{~@7P(>}fLb+ptLUWTX+Lw(*lh~Q#e%=mVo2Xj+aBv5DSL~BYrUa5dD3q%X= z?Dm-wRS&rr_IBCe*}5!#wKKIB{{J<6eoA-~hMN6S)A3p&jRb)oE!RwS=BHYp49<5a z2Il?VAAnRce+BtMKCUGe5)fq}-3TZh!jaRu0L9s?PgF?}dC#j~?(ru_)p*^leCLtK zqt(z)75OxspP+BFPjyO~ISb0WT=%&{ge^8@G~q^cpybgJSHhH7GQeUoV?AAo#u_mq znl9x);T8gQ5+(zAT=U+$eSAt`Kyr*zrZC$VLzSj_^fNp)^LZa=2%3e@sl{&+uDp}T zB1f5}Mhq>uG`EB~VqKQ9DA&uL#D~lFGBYjdqk?XdY@1IJqpih*gvMG76rvzrK{7=| z?~m(?Ldnr5p-ul~-vvq!(*(=Ehlxmh)5B1?>Z7DR73FnI-|zcHx(t#qGotwMUSK%o zZ4UMs==czFl<2)i&#}xY-E0zXio+rsn%IQ&sDP3O@!sKrN)`5o&&=6cL8721ch&ri zbMn=SBe;yHqgzAt=?lLB)`akTR=%i3FaT}#C;BIO)SQDEAV24t-Z1d%|Eu9ZiG1c? z94u-+jtFd;sNK7lZXi4QeRaHrGmz0F-SfOu=;bWgU|pY+$3$DrGMNtT>lL%!zTTeG zo94w1WX50n=eT=u%gMk&0p=R&?qb%#3y`v^r=q|cas9#-cHT_y_WW}()UxXrv&6MrfpV#M?#OOHB z=jI1g-3o6PDp!4~hNMEP%nnXHU?=$p^e=VeCln^0vqg#}dI7_@{O>Fs7Z}TRZ9O(IRuFnt2k{@rOT{m|2!pJ3zpsSe(7)==i_V4*OXXqnmrjtDG zjN0Q>Tcg^Ny0qjINLzE1h{U*Nu3%lC?`l`*1vY#|E1_Y5g%PPWataXg+OJP4i(iy9 zy6w}mXJ^*Uoakkg1&M6*F=#cqmhGj&J8^IDKAP5Y6g~f(?NgFV`}tzmPJ9YO%wi+N zZ!fo4rZB0DLb7yv*X`^}IuO%P>S>VZJEb1cJHi6!^_y7_Ktk!|(g|1XjmWYHaA?x% zQ&Lso6)lSf3gbHbDRI{^RLxs{YS{4(P<-2nrBA|7ecQMvq-D9MlJ7mY>JuOl+u5PJ zsS#eUjQZ(s-5h`&(s@b6a#QI`+ii55w2`Lb#a} zV7a?e6H7{4DzIzXv>kuC?h(mCRYxA3cj;$N@-wF2Il~_5Lv625^Hbhmdyf@l33HNW z&X>`H#UVZ)g9GJR-8MvBxjRs9~sO^9{}n+|lm;ibow$O1Y?z8164a;9>Mp z@ERHbAak^{7&;UU|8Z% zEDO;Ggd)$qBo5_dB_3jtOL&*dD{CR054q8X9Deugai^cJEZ30Mgg-)m^HAchKX6jU zqaBb2>eOpE!=<3cjNkeUP{$V-6g+xo$QF4zYi_mC!cx`Hfgg{y-uBa|=)&nNpy7c3kOR2e507^HdSz zunpG7Ip~j9IsYF4;Cd5tOldh$h`5k6lHAmCoM?8ol2sSnLd{wK9quc;ap%!-?F&4pE~Z?I`z14lSZj+(gL zpf`4FSY$>Zdmp#9Z4UpeBq&MFB2APR0bIO$!o{a-C1D#qi;KUGC}eHe4);`4A|CN= zOenP3J4f#m;t<@`Fa%n64(8j&Hy59^Av@9kW0HLmaYYCuzOE}-5{4cCZQ@9=>Hu9{ zIQzq-NZ5}l<*3@Df6JZ%1@LQn?T6_QB0yJ{zGSCWg=>`Un^T#%uE>1lPHsArisE;I z7mIBg+tdYSkos6eoQiN6KE!5m|13mNbFFnbXCANqDyPq1ZqRdD43a?amL--nsX&>n zL9YWo2P5IYFO*j_-xg+n4QrC?*^pg6u84bQtT+JMbN(zMqoZ^ls#uT4j6*9amWL#D z_=09I#qX$ekxMqmfYH)(mj=PmEI7J$ICccQUs$Ml>$G4cpi(K1tYF2Dmu!UA{uRn% z!zop3&n%KgJ91^#k6hDXu2*vVz}+KDFS7ATo5F$rpUlo@!n2Xy^5f5sEk@?0QPJbO zJkHW=8tvc^@M^m0fEEp;LYJVJk5@RP?C>^YI?<~E3Y`-x34uUG!MPeJZ z`1RDTiViW3pllNa;aH=lRsT2pC-v!n5r`_~13d&&R#P3tmM+Gc&N_VQnXoaWm3klo zjzB3s=kl|u>eceLJbZes#)`S6K9D@D)hs7YnD^Jw;>^&J#nU?oX*5;Od^<7Ib4^S7 zNQj1(!Uf9i`mIn==~(>v`hK2NL3`6ftTLH@J2y+^zQZiwMp+QFo?rT)nxX&v3UdGM zXt7#Z93wnSQTj>zp~&eg7ERgR7EFHWnU)JU_xv_s7@T*!>29uR8RKj+cN;6X8 zXhV%=ux~hCk<|fUxdW!Uk@xDCS(`Il;nOk9P6Irx5T#XKzw7B*u-;#%kO>OUd~nAI z=HBt9ubUXn=VZ1Y?-zul9bx}d>IW>$GrtS+<4Eo=E7latkcz+T%lIb{V$K`F?^6E7 zj79EM0xt&|Vi<4CB0^eBqmIy5VIn*Xc{tx(W8S)2ram&XIKMPX9=Ck8=_Y;iNdIFQ==|^N+wP=nD@mc`IV{~4ybU2Qk zE8*nCr0*Fpf~X0!`mUAiBe?%BIz5ivW2C4NT{yU;C)BA2rW0)R8Ri*5ZV_k2-3KGB z8_mKbfuHEFCY%BjT_KPuVQ-v<>GQVK%&e!n4(`m-uV|3yO^3QM7FHhYvX;FedzW>CKX zUZu3RRM-%(P(~;KjQ(OV-Gv@k+)!$RWs`~zoKQEXgOoYG5nyKyuIC=kjS zL7<5%)H3*Y!C^;6p$Q{useL2a=`e7TxpATS!%B5ByMVfbUk9t}g;quqguNf+bA!+| zCY(V(2Z9fudjI;C9kda$tfs>Bg^&3&t|qtAopp%W8L5}o9>Uhs$N!7ZJ&kM`RU370 zK8b6Pr+(Mwc+#O2{V>_qkQ`t}!=op#ziQR=zf&S{sc(N2a%NXGMorgn7w1~oVvx@kn)#slh3}-blB@#Q5FySE%IZg) z(n}yiezX-e5x4UzyyH^<&Gx~WMCucY2bc4)#9>GTN|bRUuNeOAVxwoLyR40VQ_g3x z9tTcnS<^Kq2*&r7<-rE=Sj*Y}lKz%;yBfjD?bLd;jo8_-Vsqi90XiHq4uu0pHi52o z=H2%n1huT7t^($iCTpGYbgQx4cohiyVky~Fq5_Qun!*i_dK{0Y-=)=-ysLj`oE1Wu z-PBtBHg5uE|8<(ZBUgG3FUrkvj!`%(EDmxHA7-}0@zB2lmK z1`@AB7%B}Eadqi|&_19{qtJsuQbh*ap zyDG4WEaj6d4OwsphHDlqJH-QZwY-ba4GE2G{fw&;^0^^Qf%E59@G2n0*ICWStvxYP zw0{%Hq)*}xyYH|75E+rp_CU=3o{zy`}q_bpiRn7BM{uh^vM$ zdA#ro-n1K0oyV4*A{pL#QwxbiU6%_LKJ0c8Y1(dGkn0yKbFMW2FF?@05ojpE6S6%r zT46a%I@?e5SkmdU)CUjJEDBxx9V4Gma*7-xefzdaH|l?Sc7zs1TVkF(*m)&0^iQpw zvMIss*sB&Nl#x;7H^YAPsld)#`Z^J8!`@xLrPQKgYFD=@K#B;=Tl#Qy=8ZN5Cba?% zI{%22(%XQLAVw(2iDOlFsyeZ8Vo4Lm-Ge(KuOa`;*07Ki0WZu*a($cRJclq$1>-qgri#&l@RFn_jFaI$ga_O~52%1oM5cneVtSgN2t&GxGJSoasEBd4F)|5Q;&V4vZz=u97=B`-5M;F^W;5u_hd1!%lR>h43{&(1=fbkKeYSc!5g10*}dUZq$ z_erub5b~*SL~C7~-sN_!P@j~EDy~+n84H^o_KEB_ffgJ9*zoYNcN<%Oh!C?4uH`@n zupFrM+ii4^w&v3~5S;tliHmSd2P!6O9B?-< z45pvG(5x6{V2XweV}Zwv$f?s7VO*)b8*1R3Krcp4gk0AOU97t(jZ#fYb4s+bW(q6- z9cjzp42!evhx6aOo249^$^#whIPHhOhDz$WJb{Lvr)Ssq8o_F~Yzv&*{-X|``>rIn z|ITe+F~#_ek#*W>@GNJ_9U#-#&XwZGI-bXpimfD8^O1J|kClbtEdi}Id15j=E~{T4 zs8_c3)_j8KWPuPq6fk`91F=RPRD(UbJTRE3h95?MqF7vg(Q5T)%8Wy%?ycb$Mn z&0nK$5b%%?NGzjzd(!l8&C;r4L`+~_B)E6X1RQc4`c*|wJ}#dohWJ$@BNSFYkHO** z?q=)(yW1%*9a>C}>i`1e>lkU6XK{RJB{7Ry9S-$JEkx|UWkmp10j`j3S8G`AD1v&u z_HH#_j=FOJ=TJhF`q&)f6h4rPrUz}QFjg>bn{NT|cg5=n*>etX>)#$9>ey<*^^8+Chw@jrjw1}_Z{Ah4g|lZzXd64h5Jm_kcq zUzu74KH>EX5p1_8$iMax>Ctjq(8nZ6R;hylT10)78qL@^^(O@#Yg?ZuZ@U68V^^!x zh2+h($U|=%GvmUN07>lGdas}@D-#`m{sa4aI{p6paeq<^UjR!^4vaNRTT2w_0CG9g zlX3!V#EgL7X^3fDZ*^BH+bDpUv)UdkFfmexSg&Ufz-Hib|lU@dF z$eXmLpOzP{3X4-i0mV@dKq<0>DSyS&#or;^8kh;i5O7Oi*`WCreRLxg?|&T}+!9Ci zp}VhY&Lhvb>nyZ=hUdB2ZahIux&EZEYdRdY0dEICdJ>b3`ssXJQU1nC{RhVQU`vN< z{%Wjna(DXq{w%V#h%|e0*XbCk&4|Flm61$+2f&&8QmWi;i*(`+hn4!K0Ga^sMrAlF zAQIn;-+Bc_f$m<@!W>mvQ2P&>3dGg{$E;I6vVApcw1_S)8YXS&@8-n#4^DFT63AZG zddAD1_tlwwB_>`4as@wkSu&^ald-qB`-T+&ZAatv$#Szp;+~`(M?0phF=wV(pDQZy zlBfNy?tA}6j@DE%c9)9%+S8+>hV|C%&|GM~{{WQh{K0DX(;W7~xvb(A%p6+YX8VcX z<`-~FexnssJ~3VHyWFDqKj~j&S?h!}nn*#Lx0s>L%-PdkgXSH~Yu`CLcVW-DYIH#t=sR#mq@=Zr%72waAVcJj> zq|Be?cX$E}Ba{qZQc8s?)@R;iB&ENZS`XZT$g7=VKkVPsNBY<~Tf^>r+MNar0|~g@ zFpI`WPtZY+|NfACU1fC(YV&vU`&oCT+=gd*|@>qdVTjtiGTbn|M@{b=`;fD zq^b)$I*;29pId*NeB{MH{xcj`Rpw>(pI6A?3;FCa_D^r{UJQB6TaVjhuAv!(G`{<~ zfXX*!3ha&1GJ!Gfbi^at(UPu%K59EiiVxGvMF`y|?y5}*rs`{R?q;#o+|m<72qA-V z3OsHqQMr&to%9mzy*Ef72@YW7Rb4`?4#;>@oTH z(u9s!)B2d|-Eg1la)m=0U-so6np6)@FP^B?@QnDNe;DA4OhVR&&C0Za3)&zsNQA#q z8R*9YPCb$~v{`*dr?p{&j&9-cU*_8EOr>o&R)p_n)VbI)hawvJO5*H+QA)7cUVn+V zt+`(E-=DsA0Q(vz&)DkuGZPip(V!R8)=HZ&{YLO^N(ESZ_7pTY_TWrHjLR`-@nlZr zb6w8&fkqf__#M#ZfU$=s>!#X=OdzvV)g;JpT*kPt9pz@7ykvi{WP8hJy^uqdV1 zNpA#ITAjJhKIaUMy35>VjS~;GRq?rC_NQ;VpZiSn=~;Gf<)6y`Ve_Y$F~4-pKI8K6 zXd^UJkZn~*nhIM{5OmlYJ$H4I3~i6=5w-zDq*R4+xe@>Fx6YwrrZ;^+|23Hs;8 zGS`2Yv5EI6DgwZLj&_PH4<9F?!2UcuIZ`}&mtWBBe@7Qv;AWM)=h6VC-wS`#t|Ar5 z3;&sfIhF2vJnFknyFYEzul^An?x!*+QHXv0SK|D-wHI7MO1o}&r5U=%ljwVHQ!FOu z=d#6Rv9Q0AIMps1dP`wL4PKj2)!<;HAW|cl(Jr7a%zZ~9Ev)3BD!gv0K#gTZoI;9d zjIOtwkYDNo;Z%<#S}?gSY756T+sUsc4xCms+`Ip$6uy^QD*k$Do7foeljXM4e}&-? zJr}sX1%Y}aiw|4_7w|@srW_4hmAVlMdxeCJ)N_{ejE*2lMm7d7+!oN~N{ik0-;Kmjr+mOMWBw>%MIsZRsZp0 z$MY&Ho+Sty9TF5Y6Yl^LDLLTv4TiP?jZ7>LDHJ=wNx>jR3fIvO{$Q|kvPhf%h*5Cs zz-DgY&s2&(g|6jXlY(nK4WQMaew^2XU5f`$k%2iE=kZ%04Z}LI5k>m5x-Of81lM<9KbbXFXtFc17+*Jh7Z|F) z{Eza6?B}HCb*He*?$emCWasZ^De9A}JSpR8qHIb|v2=Lr+`zs+hKU6DgF`w36sG(( z?CV41|I%fzR&3W84AkE^C?6UOasT{EF~6P7Ooh`-7(O8NlJ+wOpdI_q{KU3yQN=3} z1-1*@I&Q>1DD@2q8!3&_|MrMWpPHaM50UP}U7!-S+wZi^W&c^aupH_K|B_37ReM~gmWkptL;G(LfRe|fUNGE4^n zwL2NCV(L6(H36a|Daa;n_V{MBGY}sc%eMC3N!9ma0xFdy5Urci4VKbu{sWxE;uK?G z&E^1ut`=xdcG{YqTE)azHk$JZNu49$pHRY?dQl0yG66k8W=iwlY$=*b&>#4E0a_`$ zFLH{+SI!#E!)fJp&`tPt;%v>tT)sL1AkhfQTF(CcJ(C;@_NYzNfB>>H4Oj>v8Sqr? zI7`Pp5TQo>dDM&7O)j!L-J!%kO{fl4z57NxE!lhr( z+Ta+d8&(Uf6pH_b8(YErjsd-Y{^Q)%g=V5^%Rn($wM$O#o}w#oux!uc#dDE4ND(9`6`=b zr=JHf_Lo|7Ox%DH)P#p;j^nge(t2Hm@+>G+#)uG;EywB6slnfgjqRf^jVnVx|30<{ zv+1Pa)_J=t?RGV`t^-Y9U<+DmXJZ2BVX`VF&&t{$-}~K{QGdaHGM`yNHi-5Am&S8V zFkFp|x8N}?4R`tTtgdYcYw`Vm{@3rocQfDiCv+amrg!!o`z&YtQ4crCDhQ{=qWp)0 z9H|$QF;Th4*IfpiDC0TDZGrC416rY{FRP=68tP7te#a;eKh-BQxM)#oka=w`0f}~? zq^D&46NR?-o%7oGX)Y9Kp=-rFYfk=n{u*;4A4jw+&4F!xXk9@mWd z#O>uElz?vwmQY_%pVDE!`@v69I>8@6BtFA-N+eNqr!^JECxfqMN)o01;G2;s%;wD; z5Txwd*sXerkl#hrQoC69NwZ0T4I08F!CpJa%< zRqx8C+O9La=}GC8xHqZj5?x?3`ZPhhX##^_`!n%qic_}R%l1eM&sUeWd0j)Nn)|0s zKmY5%rlCwDc+J=cawStm-v_Y5IL|gE41k#2EzcSAW(fla0$>lRps6v~&>pg00T9$_ zk210=Nj4ozXR*Pt?6BpAs~@DvP;|S0iOd zBLN!eTC4}-oR1t`#}DHLCx^YLpZlya`dJb{NQZ3?_1&|5oMOLGK6A7|{<%>{7@p@r z|B0jWKxKja8Bo zup>$M%OQr9qn=EaZ3-%B&@9R7aC1mvI=WyH01u&877EnzkwUjK8`sc9BuUuSdQB8; zAX$hGPZEoLi&F^Ui!89pV@x}BR!baJJPOdO$Z#4VMq@IQs%rrHT4!ia1DVw33n&f? zez3w+s!=1qRrD`!O{c|2L0oc5)1pci7#^lBnV{kvvh=`+jwO|6(Mt^31V)4C7EAZ% zZ32GrXus>>cJ3WeH0kmuRd4tDi})F=;Nzzn@gRAVC#pPUjC!UEa{q4RdT=y!>N;Hl z#%pXsOrc2sgv+DFXWof(Jh9e)6ga1$#P4&Ypd>0f4DHX+(Ia27m)yX6GoA#jf0(a} zje#3h3{Ww+V~#ISfnq5OD<~T7pwA{p`GwmjH$Ux>w;TFVrnmxb3P3ikGbu8Jy5jC}(?N{@`_GlzTfB)JRQ9Cf6 zy1Z=AYfSoN_lZjqj?kB)4V{+^=>c*;G<|9bgR%xZ|cDxeLHT73^;c{%47$y^Ju1B zh&=Tv&tMVo4PmZFQI=acwaGKL_!QRPmf6)Y&Vfbse{Qo}(9@oPBSJ@O{ed6Ub$Y^9 z#-4K;wCSd58~Y(4H+=rFeIWqg)BmL7zR&%RXLixU1rhKSvw|`}^vS1nLucR~#Gq}; zmPPNW?1|}Fpm541C_R7)@lwDGuM42an7<@|<>BN|27w?@S5#4cYvEZVsY?lk;zK*=+R|MA!9)JD0(lm|CBi zs$NFHN?oFw1F3kx5lrwU#-=(eUBz*-6S(dmejIUj7V6E46&qGoTn?q|J^Au(tcYe* z#5HfSjxnIXGgfR-+z_^E0;1fE=4cF;rC<8Qx!%cY3Vx!1@z$#>d}TUf z-=1^%STtTg*m4ZitDPGf8WXY#{GNdque)9JaZvcuid?Kv`2uxYIqb9-q2$Mgr?gS? zYQN(|!)Yw4Z?&oB|9aj{!zu3YBFK)1ho!r2vp;geLG*kI70tZu{v-*iD(BS`c3K2G zfXreWNII9&aBJkH^?6p#s5E(WsDBe37$fu0bXSr}48^$z57MuC1b;_At8C!$ff@{n zr8`T8@qXjygh`AXX0P}}gL zm(Iqp%&Qm26sbyb?5`M=v;RHs}_L_cV0eHMht4PCCthbR<%V(62KE)hxs-Xp!e!V=0UqQ z%*#%G0htF~yU%wH>8k6w3lOj$GZ_O!g#~WoNpRb41m4rbyKhJ6>Zo*#+i+Cn&lo`< zsnx*NWivqx+&#aLfmHaLS;ZI+xKPPKB$gB|-wKR<6fKek>^@t-N5rEt3a+%brg6|= zZ&{^ozEc9*bFcv{9~M;uvrHiCPe|*^#9r;sB&iExH^RZte`eyhq$dCVwJ7SVg4ay;v@Z57##P|fj zR@M$DxoxOIBqS|buQri2f^^i%AipkRIt&))ND1_-05Aq^6hFRevm9w41O#9V+01oS zB3V9H?QNj@qTh#yP)(`9AoE(i26l zZeeg1z%MuC(s!_b>aj2V^JA01IP%kC>7v2T{;lYR{t1$IUh&ChMvySB*UUSa744Bd z5d<5y!bO8$-1WgXv*z4;s#IE2SvFHU^j7zA=*W9~O?1H-c5~z;=$nU$Tt}##o_>dL zbJsu*`lNJxG*vB2Jd?9io+^3#lu(wIvRlEHZhac@X)^TbGAw^1aE#AiwOQ-n10aGN zk(~cmm9Q8s^j<=$sAl@tcHI3h*Ue@N0C?OaaZ;#_738?oui-<-)+_)V+5_b`}MgwVTB9_$j97+E^*v=jpmYJtd%ofAgB z=*}RC80=(I05GS29Q=p-nKpBU-pb!ihHk5eh$4Y$id0^B+YYTKE-;RVJzqaq@)5O_E5T6ZT?tiicBJZ^ktk?SIdqMZ1Mm zd5)mRDAg=N`KfKJwPAMaFG%|4mx36kuEfh${Wn=p{NNuxH(XJ*m_=@`Ebs$O8oOJV zt^kBmGQc2>Qfxf^kBR)_|GTEZd~xwuT7%8(HB**+>GJz*tmibI^=Yh-S=r&SGlKln z5|%h}{5W$FC)-r1>UyxtzxRYeG|zdn$VvAol8d;{p4Wq?4{R2gm?4oeo$Y;^3brOT`wF_u@A_;S-6YU%$R+@mKte2$nJWNQ zW`-UEz>LEy{FNLk{B6;w7jC~S8lh6o#psFnxW*wZ-Wsl7uwrSVqnZ;g;s`Wxs?c%n zvEiEgAU*<82Q+xwvkJY&@VKEzPt}4dTOo1LPpweJ6q;NLY4-`?5Umb)_pjbZp;q6v zKJ_N-*a}ro7RA4HxDz>5Kl7~eFY{=95R`YXbUFK(6*7h@gjR3dKfha;2S9%(=DZB? zRp#@=Ttb~hk^|yPFlliKt&?edqiDB*e+Ks&_~_QOj$pQO1z>8!gB6%7!*ZXtd;tQk z8wY_k)a>{ZC3qPVJDWZ>#h|HD1b~&`l5qkN3Q?nYidj{Lkxkl=nJ_}beU!Q8)u0KO>u&I5sUUxLY z#yF!83SPr?7j;5$Bf(q0I8^cT>50X%vkd2Yh`Fe16iK%sEwC>ulTJtqB{4+&R>}%b zpJn4W=WR0Aqv3Ki;^q#+XAuP^0|z=`Vk$mPSVvM6q)d47yO(8V&(3C9=?j`-<-tXZ z1G~kES7uW2m))K3F~ry?$^RjYy83k8@PAeccIU-7tMr;kfYqQ8(4;6#U}&@nYP|L4?0dsIID2_7h;7TM@`paAlN4~grrLno3H(iD*= zs}q^n`a$tZkU=Pw8OSQdNBy4`CobkS8+d$Ua+61nF3bzd)KrP7-2USC7OYrQi4BNN z!O$UwhveQV)3JU^sK6|#xk-Qv)zv&^Ota+Jb=5DWavYmaDCJV1W6Z_lg-Bp2vsDsz z2N``lkawxzuPesN^m&phx$RZ9R=>0l(8LGYI3T#tQDHOLb{ex*@Vp{tY~dGj#=iT0 zj>IJ)47pDFsDttofjs!(gBxERWvz~!WK3SPRWxeOBc)=)lbdh;4BwET;|lw{c#}GhM#CV~-gt*2 z(^n_%PLgl`1vWF$vCd53Wa6~#2|AYHC&CX&)u|Id+e;JFyUz*-I2e0!Ka*&x1wHIM zRGs2EBWzE!sqWF%>bmy)He?bHd&{6@@1FD;&r!6fY<3p|=v>Iwst9V*kdIe0C}y%r zRUd}bK^y=99>~LG}jT`zTr+*qYSU6%;VWBQJ)VfncZNrxjTKoLndz ze}f<-wD`CKJq!V_Nb@(ULds9COq{5LOw7yvl7RgdI?-uzDUs%#E8wKv8SfnN)(ouHYrU9u18rq%2Nk0Ti8_LJ} zLsI(fek0xLt#73z0zuANNf86<52MF#)S^?N(U~WHpJIc#cNepb;ax2-`YvP4EScP2 zgj;49Y^(QE$oOVtvrdRqYVBm;gY`U-g?TrY>f6Rlehk{-fei5J_S3~baSct@w|rZM z&14tPM{5|NBU6)Kcf20|zB8$!FA>;6M^$E~I`8tRo2p8^-w%sfe;M_ed9Em~GGp>L zBI-e_*gZ|Z+MRrX)|hYp;c>?>k>U($8?>9!E2G-TX^-*|@Fw4TKN{Gft9z|EB!)US z#ypOP$RZgzeCGbmZoye`nQ=nsFJHUjnUU<5ePVR}MrqYWbrFE%EU(%N}~4ggT7hcbptQ2hCP z=XT;wOayI+eIUtIP_&MqA^ge?VS$|bwUFO6q&oCC%+ZAJy$aLD5zj>r4KB@^K?$+i z7}`gG2cs_js5ZgL_@6C%8tXNOqFm{2PbA<@>l)`eSGLW{adqXM-^z&%WunukVvch3 z*1)G>0MW0*AyvkP3B0wZFLv|rEth3y{B{d#*nWhZX1`kyi%tG>v);Sn*@_;ZawWc0 zOCz>j-T3jRM^R%?SH}!;-&_O+TsWPIkRvEj5`#Bzu^q6)SfTG_D3ys9G^ojDbiK0w zF!`2>SupP`61iReESZaS9F8}kVJuvfwjY&BexHHM?4n8GejQ>ke)T~^b>t=h&R7LTmmXW*; z@@yI*q4P3GT-y@5p*SQkz= z%9GgyP6Oo8v;IZUD~PMEN{$=%$6y$(mhn1&l9T)Xw8H$o{nqYdnx4aVN0{U5S$q0RmdYZspj+C(HmjNVd<|bjAEV}TbxAO6?!WA} zrc6`B{dmy*J1TUFMT&p^`RFDOp+4CWq*z2aKFXS%IZl?~9xfPo?`eP%6%>-79Cx8a?lt=;d|y%1g>Y4g_y9VN>nwKhn$;TWFI*pynMbLO>Jpf z)`!X}>RJf5JU^I!Kno;_d|>viDc?UCJEK3fvfXG#Kvm|EmqBi|qG#>sl|1yKiqOu~ z}F-39(z5Ro}fh|DklZBfD#}~OaQ}T9L)AFdF zpC{VHZ){LgZDo+aP+D*I8k_sg#BLd(s& z#y88w=og1ff&xeK00&ix3=ZVa1S(2JdbQjn#Sg6UjUB_>vu3hC7$~Qft?1 z#3k%aMZR%Yyu_bABo`mjzTFK&M%39A@)2|48}J_xZSPvh**jXWgM26$Twp5+XGdTG zEM4++s4|i=g_#(P%)J(fw_AC(yApV{5ya_(xFMb9GpQco@Ne$>{l&U*3D=zTHJWx7 zUcz^Gs;lLWMKa&D=(sO2+%-y!Av$UnJ!1Zq&~p;o#&Ke^)X4YsW0q!wP(rE&w+9#mwU zH~1|ZGnG924EOrx+(6c?grX6%zwXvKW@HZDCQn+lwj=dPG_{xKql=mjElAV0)2`_o zA^(=>lGZUdfz^md8pSkC>7Q%s9cB87PUc8r>yBTwrU3 z7R!0FYXvxbj~mm5xJLho_wzsgkC_$+J$ygaQqa=7fVwj6X-2`K$wfOJs)m(UDq?l9I_wzS2>&Pa`P<$!o3ju=y1Ob8dyt~Hjb@tIY)3ic~=bFxx!8a3c_4tZU zs*CG$rZ9#WMa5{$r~{W;nP3f9n9lJk&)T9j1U=BiW$2iF32~Q64cJ&sY~tnZ0#l3K zmu%XSvk%#~?oMCS`B|e)vNU;Mn%q&AeqOWbH+HVz8>rI7v-D+A04z=B^0#1HRli)s z2wcg+_g>>quhSyx$tfB5?S)Yl(Nl-&rds8o=wzcWi4XZz9CZ`F=0$T+;^^yU6DD!# ze6>?_zY6?${*A?O*#3%OcF+?g9%Z^N$YXCwwC@JT(iti{v}*6}g$ zH%=v-*0M#wV?@&^A1$(JRFKHERoMo7IcBcqOBdZN?SGZ1sxbxsp^Jb2B&zP0{qw;K zInO;S{^>l~K{EdEJJqW+3~!A)tRnltD*1HwkWX5Bcla|d9~VDBff!Ct6nFJLzW=u7 zw!dv<{ShLtwDuI1{HhJJ_>4h3Z8Z<|moc5KiQ{!T8qJX@TV~R#BsTEa4 z59R;v3~$A~#pJ6pi68TC{_=bOLEhA*HJUS9?_Xjh7^Nv9a)gfpQEi5QXbTEoreMzh0li@+1)V-Nw2*8i* z&32W%YH!b*9`!Joi~>e1fR*=o4a6Y=e|)rbOH9i8M7p92oxBn@s>2MFVH9fA#NA<) z4r)K$3`TQhu&ZiJ=V)FdI<}6lvFp)RS?DU{#)U|9xlUdiNth&VT}Wal5p!VSz3ciO zt_#%Ff`NN_UYRKg9k~kkuFSUS&e-`_ij14#=9PmSr)hGzh>l>$jd@dbOkMtw>1kw_ z-&4`_;Kn7<{1vX8Yo&7|)_wH^$+1hVOrIR9@0InC(VF=@H^L6gnJ~B;y$4d`i~d3@ z#s~!L()8ck&GvGE*tEVaAL2=WuIuhDxnKYFDy6#cy$c0zfLjtJ#K+zLdA*3F+e9XsgFAQL!Usy>V^ZU$#|ch~`k?7nJ>n=yNwYG|byOGZ9aMM+cp}jlmBw zpBbAD{T_`xA8)?OE$`iFjJ)uQGvcIcQ5xdnRDJ}C#?X$_M>oLQc@ft`&|H~!pH4Wf zX%DT3ah@co_?H8N{%Qgd@a6mgW@?zKi#Cw6O1mcRw)2ozZ2rP`jKLaUJ4(aJ1QOQ3 z9AxXXbQcVX6GEgnQA~Lj0k;=@fWn!&7E%FNv6uKLo#*^>lDqRd-t;Yc$a5MTdW>PE zETPz9rwe189qp5M>EWn0sHpn>b>CCxQ@u9NL#aI9QdHBEF{qgFFm}Pb6ghw@Y{vDD8FJ!%os##QTT4UlGu?$Y_XHbLT4^8X6POrPZ9yl+x`qyz8o5-gdq_g|IU z?3hBY|LHZ}W*?EM%!o+t;Z~3fyZI6C-fEZ9WmVH>GYzvHm|vXtAFT&k3dki(WQL;J9l6>BJ7TKz#d4g5VRBaz?F%>(J-c}<4oV?z@+L$Z}a@h z3&@*6<2!(#x3bOk5-W`e1thLw)vFBuE=+K^@EO*T%zUqCBf^I4j(LbJd}&SkKP3T< zNBhzI&Om1vLc&hV3tP1ySl!NuDNQZFYmkFkM@*}OjP`6%MzV@}hA{PFqnTC)+Hl6E zY5MGi<{6tiUpbd<3(j|uRxFtpBoQz=u624;fw>)T@+%YzkG;yXjQ{!-T`6JuZ}_%} z%rgk+s26&kdK>}_Kh}s}!2yLYyUA&>=)qYLyxw|bG+QZQ$DC^ad>;Gf|D_-M#>#Hb zz5iy$ypGxXxu>E1#(8VfXxZp>%@5>VpqJe~DjrB_%9X&>i+BrOI*_3SM#tBfXbLFu zNVyPa|Lwa(oB?wi=ri40d|&^kXvVrMWvEXvNn5N7QBl*tbuZtbgDx^s$?*}%1Jxs- z>g%yWPMT1?vMERS)6rau6Kb4{W30e?M1^EVFrxn^4L?KgX_JyX;lrv}lp2$rA~DYY z{QTlvD;=OgVI$A1nL#(CVn#ol3ke2YsgqR5djiqF9Er>Sp}K^BiH_J8ize&(Lwi3o z5lYQSR(s7qYjj63K7)zaxN)CE(QGRH8^-zKuo-y@fy3?XoP&di7!kAhq-clrQxZwd ztuy&c9S_-&HF@&a;$M>qS88yCKCJ3JE3D>_MO6BsN4(D$k^0!6YeR-Z0xoGE6pXL( zZ+;pM1TK}6dAIBy_nugH;0#ql?1JuAF6baFJ<_g^g!!<4CeAyNKL6jfMFwZltMA*; zy=wi20e=6Jdlvhrul}mV@&-A_d$kZXpU}-V3`p>3`WCe72F8lgWoJwrW zIDHRh&5>Us${Oa082w#&)7VuT&JN!%_Pw~T+qB=zUHR5+>v*_fQNssv(y;|+&Ghn% z5*A43V*2qCbUK))()hk?MM%exE$5Bp~~G z?)^=g;hDzYlm1MQh(?;f8&^?if75+O(I=G5J}?LSY>r*tansdtI-lw`D=jR}bfdZR zJu#Qh6#s-g(0|t}DWhse?EemR@0KbI)D;%bE8{|6^O7LW3*PmM->mML?$rWQ-MEuYd@i1{+0>>A7pG#=+ytEv!=A&%ep;=<*)-c-Lp~5RgV` zBbO(=fr;z%oMTDonb@!j$*^P8+!xSmSC;PiW$s+hLR4Y{Fn1kOdY0rzmmVg%sQkpG zIWBG}29g`nnk4=&%(JfiAZx{P7??skz(j5pLpM}v_cAKjDBi-l>AD?EpNeW#HFhn; zxaapLNU_>*xI*-DCC9hKLHyKj-(!{ZKlplM8)`oux8A5&tXMq0o<)B=5RA0d@%iHe zxsPFR$^m-rn{lB7i9UPF9I!nJQ-BBdjgL5O1%Ryjkd^!T>pwBl0mKEB>Hp*V*siBQ zMRm1<{)rV<`jzjR*6DmqmC2VG!EE*V`banDp3jUo_`Vgb|NamE{<@k$MgQ15E&rhY zcF+g?ReaO%%oe`-JX-|80u-NJqLGRWAHL@%`;FD?a4X&m5lGIM=laebYbI!f5(fvA zD)>J`ANw%4d4UKtg7GD~>R`~g^lBoCOd?%#QT z`gpTP-keNSePNonHr_7L6Q}W@x*K16mik&1Z)^vU^Bn7WrG%7EYk3H+wtoeW@|nlv zLFyc|lf8RSdbmCLqFFQtnt}EZiDq31V}fu-G%pKyL*kx&+j=yn+@l0Do#|a_efN%g z3pa4m_3nwyAG(r0F8hZkhlGXT#onyPd^7IHkd!6iW4@q9Sy&3uyT0$i#@PJR-tXCs zG;COmBb<{hzZMTm$WRlPnWSw@g6SlAyO)5y#}tPgInzZK{}@Y3TY$1$*zK*EL)vU zv?!y|*-!SYx8bA3Yqp-qx9PdX&Pb5 z3#-gUKf~XuKiR+j;mAW2RH^SHw8zL-i7Sx>ZOL{&3u!;xBWAuko=@GE!mb^E?O3H> z{=P}*rlicojm{|}`8rMPUu90^LN2k-=GrzFQ`SR$qVaxVdyeHHJVD;)*W!{B@jK~< z2k8Jb{b^cQ(Y#?4cLPiB=Y{b3X?x%e?|6Usg-aeWj-HAI_OGr)j{2-7ZVFAG8Z(IP zYJh;Dl_y`!i~8J|O0F_VIrxKqeKr8@p@>ibDmq%U4w3Gdr+kePT44@5`kMf5|Fr-s zSU328wzE^4d%iki2He$?9fYBMk=)azwkB1vk_)_{{7{QFYzCe55V-1}6)x)abw+a9 zrk=bB5Cl+E-3D_Jc>(>DIPBku{$@HJu`x>~Ln)o1B%m4?dZ?fi^T?Kl+rbT)QV+;r zN2d*uKnZ}$a_I^)br;uT>BW}%j8*b6N66*-7dWO-|1ZIdj0~io$j(A6p|~_z8nl!> z(?}N4)$ME+qqiV`n*8jd$L`yvd?K?)oc7b~Nho!0vp9O)AwPSyaErT| zU2YT!f9`LtK!4&o^k=dEY1u#j_Yq~8V4qlk_a>eByDIw$%JXqcr07lm z(#_$NtCjZ=@?H(2KlTejukk*p3i=p>`rLBOlRl8ypcmxjKmY3l@;-=@X&c~y{Rs(x z1VLuzeQ51W~dk4TndTv7_oH0wTH# zgYLcE?ZwTRGSCW_^6z4%+N+^eT&06B z2czi8l{(%}rsRU`R=hzMDdYT4y%>H$-9t~f!-gH) zcQ=DkL3cBB?H7BCL00^}?k~R8kMMS2ANa0!y!O9m8L=+^Vc#0^zo-f9x&d)5-$l zfsQqr+ezf0y-763c8<*RJ5(!~Du+FVzt+n6B9#}-T(dBtlA*7@B?(*i>#4^6oBSPH zKHFRW1;a*nrxmp z%Ialz!+*o3iuHXdol`;tZB>!DS+%<24Ok&N5UjBBRYlb_y07~`t?>mGr&3|MveZlTgA+Se>LH8Mx(t& zPeVewl2N`}NzOiL-~>bl>co z@A}lNF&%E+Kl+qaaBM!5HMd%Tw~9(^|GO%{3(C9Z=kAZPTlWvl07M)G7EE3pF2PHr z2&ejI3hzZX%9m0|O$h!eyZ-4`31Tqo{q&{Kip)$DZ{X85M+*2)h((Iks%f1<>sPdh zSwRaq69D&U{n%(0w1ysuA0gasT+kJ|#Gt+B7o|U|Ll^cJQ#IG5>1@lh0h3UG&7RmH zCBuQ_VjG^rbV+ScHs|D@lLvc2Jid;9jbSidEAxd?XhAop2f)#ROdt3_uY+{{;-F+ zC!boo-uq=;QeVZ0%clm}4))|6>)CwKM^eT^-AV2N?Uxsv0@Kmm{xs+=e9&jGy^4K>^1xszTm*0>vp58 z8%%6IR86;eRVn9P<)b7*-^Y6(vQ4a+Z-Zx4C1!w=t~xCy+}W>6EKJR@28m>F zhPcGNDjq$4{`)b8qHdeAi^EHfXQ-G)a>HI!V#L`3jO3|7sJl#>%75n93| zQ_dpFfMnNd$K7u8&wfjnbCKOzl8T^CldUd@PTnuo;pdG_kEb;d!AvdarT@*NfLT^poBR83O@upHEfY zWB=U5eQ0$)?$T#@ ze7fj*CT>~&T^SmDX}KcLoPEPZm_Tp7@^us|Xmmf#yl-Tq2TGvL6Q7f*R7(0+Kmpx! z9TVRO-U)2#=||2VZ1|y+>ixF$QqNp{$|^IzE``<^@bS6N$R+c(#$8+f=T1}eg1L`0R3G2{ss7t@)7AcA8c0zD zC}6hQbLTtV{+d+Bq@7h{EaY4!?fOr0EeWsA>R}S0G#7=KVy_@TDU$)7KdAo+dFwRG z?BA@a^zw6;uw@k4i7=E#LE?f}U`e}Gbv-Gyl3F8q_%&R58$7ut2U13fkWG zrL-i-m$FJ>SAT=FdZx#?!~1Ob96}uujU4Kep1q%~#LvR3;L&oev)#Cn77Ybz=>x9e z^O5>ZBmd?&+DNSmam}rs;HTyY-oS@KAQ0#Qhcv={+@D|-)}%DL9&=IvH$ce0z7_y( zC9|0dre3>$ov`VJkMwmByAPsXRa)RCFU~7S{k#7z?pb}Ypc5uZCAuLZ6NybA7?YH$ z1ISOjarr|Lho1#>`-Re*`euo<)!!q!1?yZh{}S6_QmRkh~@^O!f9 z`Vsai^0pmp7c%%u>F6YpSvil>MOqvo6vGGS>bVso2=jf`lGFr5{yof!JHPioJ%o%T zjDmabf-nE~j)_MVx|Q1TuT;)??mvL>W`UAd`|{SU?sxqPDK~1AL1r$1HRvPEWAxB!pI4K)%65RHOjc3CGPW+ew7fvCT{WEV>1H! z?IoQ%&cZ_Pck;E(os{CG$P~Gu(NecI9L^Mv2nCPu73G>be7C# zf57PBWR<~SM(J~v<$(eGPL~jWp}V2#S7__35c@_jc(tEEyAx2tgV#1O`5h|C@~13I z|KhttK3EwN&4{8yp0*Gr&C2SguPX0l=@oEygx|(o^q3E$hs=PYI#zUL`mqyztZ|;z zrRiF|optbJv^ezcyoaNu)!(gDj@+ZCg1dPC2!%}l_z_8k?@G5XCY9eYXQwbl1qQ7f z?kj&&9J%s(H~f)GCCDarc+>Y~G-(&iLQ!Es^#XvRr>Cc34#IyX4+=3O7x_1n(?Czf<-n!!I*rnP<;JekR+&BrdUk4%)W?k`mER)R?qp@8B3ZCH3Jn+lr5zP5apoD>DTFlYJ! z3bJZllS}w)*SxphoC&rbYuXC90puQSnh|i6)^}RmX-1D&=4ZIJO!*hsnma z*8x5q(MmApLQ-EJQv0Nry5;&I+H8}E^V6TZP^#8P$R{cWH#Ejv$j08pu}sV~fcwpr zs+S(z1BO+9kASV5Jeg;;O&JAet5x*e0091i%@&)(TUGXL~Xzu`Xq zuiL-+!-w35qG(YN9D15FK<9Cd>~|RyD$E2|iT$4LC^69lrJnJ2P?>T&@ac~6Fx#LR zBP#ohzhe-(DuYVvfojj?g(j66$vGIi@>g8G0a=je(*c%d^{lL(q&oo2cIF87pae3c zcbs!+DYlI?<`RdM{e-NRl3y54K3^4|ieu|1-7jvVyS0gT&^(sdGB_R7kW@* zhy|9esU>6e0D$?$nM@*7n9;ODhfNLNwKSk~aizX3y`qqk`n*tBfzi>(0!*@b8Pw`T zET^t_kF`QWRW|;vx`*@8Ds_AvWV|lEQU#&9oy?jSzSKx=Ez#Sb&Cn^I)?E78)4EnD zF3+ukEeL|I0OjkBMcw)$Qz3DO$0tZ1v zNu12tmPk~+H7sPlNyjaOUG~wcm z5a*JkPdUTUI=|0;wtbu(+oKmAbXMttn7WBr@oWvg4yX#b#2;T5iW$q?QAGqu9P`21 z;#66Td_xCwHs+e&*)HjiBAvkRLXPv7zn2a+SaJ))*di;f}4h}btf<@nRtMT1zu?^yC_ zoUDFQdJe`KBUX*StplJ5K~c0D$_U*Q`l#fizDT9qCg2Y&ct0zJQ7oEHGj0COFrg&p z4n&qn)X3L!RKgelXaY09w2rkp^ta3p^4GU%R{tKow3AGMi+ib}x+NlslmAq#r(w(! z@yJPxDY#4(fo#$Lo|5-yrre6>CrW94o&4Hl4bJ@21TQ4Lz zn)!e#)zhCuMvs~3G41o-974kc6iIW!O@%$`?HaDTFty7iu6jJjW&fHIq~Rs}xCNN6 z2;aKWK3^Z?Q7Wp(poyur2425Pmj|B#*VDVwF(qaI9>p1cQjN6&88d zND25{ZhuP_&nW2+gg9m~Q4-bU^n~q|GZ?SmFi9?wwbPMfm1oI1Ix8XKrAt^XO8*?a zV1fD9k2=CV&!?#@5d(z?UL5)&#A)qI2@T@hK-gZ*9noOrn_wv6LXV+1&@hu(1^$8= zfDRX>w6E#SREXuiNDn;`khjpSK=xZc-6*t$lV*=lylwN7Nb`ub)yGqGENp{|(1kAx zdz5pZ`1(>uh{tB*9(}JpCK{X7onMSOY)x_)YhjWi@5S>5^UGhbav8?9XD3JWL1qPSQrE~{# ztyLmKvb5%Dval6onX0c(5!$(?p(DcG$1~mtBatWQbqZRmp%;M)@P+En;YDUw6Q>nn zhz7BmE9AqW&oZMnLtc&tyq-ywJLv5axqX}$)XB|F2rkMx>b(v}c&j^wgoMn$d@&vD zov$mL+?2Tgj6(srHN)hejWB}=^6;v!SM1(M48GXj)b5uz?2m{Zn>WNVExK|L>h2Pm zpfQpqWoEo2*id+W5$%RZ*>cUu6y*oYDQ`&rVPv(K!=C=mr6^Clrz+trY-voH0SQ$rCQ=&CYZD{WAT>uPfxheix)_z z2F+DJwdfP)h?|Hat4QXHTU5m6VOUg@2wjICMM;nbyutw?A;~aBzdqx9OYRTuAl!%L zEp7bH>TNx8GMB;L0wWE1leTU5Af=KY5Jcz%Ou2`sSd>B9<<>NWJ=7={qE%B6$;R|+ zf>*~dBc8|P)J8s4WlSRX$f^*=Ce?xE4E7$cXu~Nv9nRII=^h6?0&?dU(+?ra^zi&2 zLH?jqTn#D-YJyI?R9D^?O&1XQyDr-h@gPeR22)UHdgcY7ut`uMHldghs1DeZyEf7u zF5a2--e$}R#YSg6Dk__jhg$*pzpM>rh)7SYfoR^%C&&XVXp~~OIp`{@rEXyWk^N2RI^$t@MU;pu!=W8i>Ye~ ztC*dbR4~JK@2_+f>7?Yw|guC1y)n9j6@kdsi5(6 z3fF`ba}Aby<$BdJcwf(tfy}e)Xm^t<)>*LD5Twiv%>x&mBQjhfM4CNiBgCM|?=*E% zh@I6Mu8<^y*j>FgB30gcTJI~jA1B7+|2Z_9UhuDcRe}M~*{`Mtz&dUI=h#EPQt^@O zzF6YIjUt)_BIPhiHvDWsfd92*m-6(E`N}0dhNY|r7s&wdLwPZ)B3#L5kTa}46FQ_d ze!@+fS0OpY?Ul$|kd3~(z^({%FgRJO*Yw-)j-pjGPUJ`C`cO`Rwb}N41dcTc3KAsE zoPD2wXEQ4iB(}Dd;rjbb3BTV}*k9ZVvnpF#5KMgpvwlw;^zvR656-D zyWV@fZ9+ZuhmdVYxgV9;4}?f(q(0`yqo`-NaI+#Gf5`SFvB{=XYpk=qP-(~)T0;to z58YRV*Mt1&g3LP&D95+kd|>4(l>%^+xlhu~6MQlY9_lL=GdD%rW8C1e)9xnR`e`3K;vk1pkKr$BzWZs{1$Z?a@+VMCTM zULWQ`47hDT(&DfV(oUug0nz~t&talesf0jcOFDczaJ72WQP7Q1geeBF&H!Y__E@X? zy`;wZhVrxt)b@Df3a z(GIUp@*YdoxV(SaJNA3Wp8A@2Q=65)P1hhlSb9)roRo3VfO=3W7^X4aWR!r&`I{Y! zl1YXuP=1+BfA$a0R|$R_ElEi^KT@C1IGn!C*}n$fYBmjq1`>H>7hH{#T1)Ti0PhYu z5L%@gQhg%=?d#$wcgAf!LC4IyV*J)UC(gqII5RBno;InOn8#9eV#e`z1THs=9?##Q zZF2c5)Nmf?fO|ZT#BN%L=kjn7SMI@do3F6)p{WGx=zfCT5Jw@UkrKygG?|FyluD9P zmJ)prgaYr7)a1{pO;Gqqr&d8M6O-~f)RwyZ9aNOl)VsS|M*+k_TV3N}UES+n<`F($ zQ+XN}&AV-k9U+rFu#Jj)XqU=hg}X8Gz2h1FGN@1Y#3#q5!N>;9MrQ$*F0!-{7pL%K()oo{Yi(3rrQ8 zfc5ksD9J;}Sd{sEUc8V2cM?nz=7zUGAaFrHTV1);wLT$>MFnQ*@*|Dg67w&=!WvGN z9m(DT3Y7f+q15d;R!zNs9xnk_HZ+K&fDJW@L&Yz}jcJSI#p`;x!ye4-f%Ljo@jie` z)%%6dF23~-!yZjN!>2et6T`I3NH0^cS5OwoO^8Z6S=aoZz3B6|MnaQG*GiNUgw?%c z@>99K^CNK!GcSBgXWrAgIVs@+LkxZ*B07Ra(4RQ>Y<4@?-B0wH^6DJ|AluzCFC&Eo z37_s)F(4hk^oAvyZ}_*8cA!k>s0wWotfL)Utg=olUtOlzMOeah;%ny5xkcG=B5~58 zy`!Xd4&kZ9tX&7 zv2%a~FE86IHiY!o6Oo$D_c8W|DJkK!Wil|E{!6M|^HSW|lYFvENnGX7RCP$G(Ey^> z&;925xaPAa?LvOVK}JzKt-}`$Y0(P7`~AAi#D_d<++9mlM2Hr) zWZR>chD_T8*%XMa!sg1bG+*TFAYl{}UpaB^B>y694neSv3$+Rc_c+MBz4*?E+Luyz zx=`avkb)lx0BLat{&fd}5`XC0y(Gynp zvZ;~6DVW3Hx zNnILrwr$4XZ{=Q1^7o#CzHIT}Zi8pBj6H$XYgf$7+h@%`RACqG_Xb2iPtr9btE1Y0 zgKqo}gyKo_Djal7pSLnLy4v90(SOnWE+S~$-el-hWMSV*WI2tVA)b40+=FQp=FqoW zZL0UAAjIX%7fSnvfWsos)s`}PN(E8pRNMyr3wqA^bzeue(wj&A8up(e%_U7-8omtc zGT3*TO)-)3-MV7O2e(L>!$I`~KC=?arYcsMGgflCei|`klM(?zb$2wxEo(?QRz4C@ zT8O=z3$(LC=jT zWHv$1w<{y`0}?Caky6iz^APey?3vBJB?d)7kA!vhm^VjKT$zEPt!Eeod^osby zo+=dBllW)7I0q&fN;JV@3ZS~d*U8=WmquK9Pl$-0&@Ex>`h!7##W^$)3K4rR@&I1k zx4gJ+8rqRDj#~YJzGiNy$bsoXch+gxefz?`4HCDQk_K^QnW2hw6yx8pLd-gt)Nu%0 zY}Ke$SlFcfX=A}W>7Y$CG52u){XoemOS*-XY>-Jdzr4ktz&#r%VF(`8!?EqpLA=er zxydLHN3rwO$t9Tx-VF(erp8%7C&w}std^LJ6MP1eto%MVY{x3`ZKlvXA@{26A=hji z*Ls+?#N$K~MU*V+4KN@nul=kV;F2)+K{DC6?cWneWYuu(3}JjVSbUI+N|mx1YBti5 zni*;(b#WdRct-PM>{LD|#T@R6>kVW=!?Nd{=*`Vhy zWNgCqBZBU!Qf$bt85Nq!{~+&Q)q*CS@2K7e`Tn8-QivOak;_D95PLNbV2Vkpa@&hI z{PPuJzILdSNXdd$X>;AH0K^P?DnPSh-lpZ*SMwES!kLaRn7G9cm?<5H5zf0gMP;x~ zfozF87t$r57^!AL-9U^;D&Vysoct)#NZ;+LeUQBZ`<~=y)!@;+F4l0wU>XD+9KiU1-tK) zlLy8f7SPTZvk&qV;s9JAhr|5ak z3ZJq2{Z8gGROBV|e>18B(jJ~j5l`J>u%p>XY~9rRO&eC8Etqnz?&BKPoX<&DR|<1f zuiPKlIB4Q9o#Rc|05Y3nIars;+0}txj!Hr&7-dhQ`(spI zK4A>=CN9}q7}oklo6nOPvP|EN1V}s;jwWqk3k@^s6S|!*l_O{Z7BlPyQMF%~1+oG>2P6|h^mMaoaLveEz9#yKV9`)fb zPa!^pDD?v-=c>JdkaOJz1OydfJ+lI;s&jM1LkjoDYVghj*tQu3-HoQSq7+4;Jix(? z={QRLy_*g!S{#2Hr_Y{j9rWg1Gs-OD(n?8i9+o^CLfcPRXvp0XVzapix}O1Z*``>* zE3A-ED?IqPHgMLfsCrA!pn_|~VtlSZSL!ScdYnXO1>;hOS{k9pzXU1Z^jsxns@LrH z#FfjpXjc&@%#-ZJNOUjthR8Fh&#HkW%}h_|6|GxoMd(1zIU~WAWf4ATG%gLv%rCkI z@`g*HiCddG#nA5ir!JjFSO_hN55Co`Sb%)SdS5A;`WfYfK&xS0k^{Ezh?X#1eLU`1 zAu@M%lXT|B5Q6x18p^-v<3o_ryD^pX&XpFffr#6Gnoz$DdOMQNTh`q3ByxXaWZ4Cn zwu+G>Um?)@6%&v&52mmYOoU*1h;mS~VgZvL0Nkeruu;@3wr*O2K6bD;X7eqFr3pU1 zD$-Z7QEFyf0tOosf9uB3A%eGpX7HdC^(@#kNj$=%))Fa&L zX0#Rl+wBMUgP|1H6EuzMqrIqcXfaa&Veej{%oI_?%) zfFt(6-Y@|-O*XcslnG;S&aWwgMFHYfhrkSj?3K&{>52T*Ol3k9F3J0+JiL6=g2E)h zzr5th7O+&?Tc!7v(w&P-1&}T9uc0XN+6LSKIPv4esjHOsqLbz%jh>F+$i*GhzVA>k_pNJmF#_cov~Ixg!dWl#DPb^YcU!yYU|ZN&k(e8$!9PR?0H z&X8gtFCFv$Y?+Thu3+6lJ9Q|Wh((fv+>AjPZ%@&Ub4yVObKi?s#t2{3qpAW~q!@^6 zYQnN(#ZSaL4@mF>U%K9M`EG7E;*?mmV`Khw!eb2D{ek*rD?DZDT93X0-U)Fg;=dUU zHZ-M|Jgfd?Wx}}HFp{O+idUE*7gyHO>_xbA?txF?4P4$X?&b+~gx>a1z$SAc!nU(I z3rp}bxG=N|)hA^kSGsd(Dvk&b%A2@e!~hq(EAqTVvk=$v&8P<}C#z$gX^4eX%qi#P z|2-#QHil0T38q;a7QHk?EPQ5?~hN6lBQue7a!B$}0od`)w(OY4uDmeJ(y!Hzj4SwybWMj932n1wE)qS;!07otmG zk9x4Bt$T-k1V(;C3stC^3#vr+(wge_coIqM=4kqunH}SDdg$7N-hc|<6;rh&I3g?- zUcuFYjy}ezG5td9&ae0YHEeUV>Nh7RFEcaVhNS_2Yt|v@DERu(6p*mWTW}j4FHaUi zSz;3SxIxlFT#Q)EDm8C9p9cFa(O*R(WYw@=PcD|gXut%bIfxke)kxzVDX0JYYtzTE zHw?w*m(G09TXgB@)NVBH)aW36c@ z(uCS>|ASD?m+2j> zd(+nXST#uOx&Wtp@9>8*Jv=ZcSD<{MnbB<^Hz}4?>JC3lW|k(w+jQa9B7X5?KCTJq zs8IvbM8!1nt1@c2O5ck)#}|a;V`ZKU`Jnx>LQ^qP+@$_fI(0{b>Yx3fDPNb2LVEW0 z@QFt5xwg9uZd9YR^{&Bv%<`&WQkQ6uF#<-;5a4@E%4r=!3`TDTY5{0i6Tp|WwCgYN z22EWGrB{+Se4msIx8c27PM~=x?p#*Sh;$%|X&k`jS6UN9<6QFHv3|cc{>Fqc5Jtlx zhslH&a$^t%>+eH|@F^W0l|aI=r@KGLL0|<`55msJDL(J2^J5FMGek?UQ&W_5=z644 zLGwA85V$~u=Ji^)B5hrnM?!Wag;`=44h5S4R0K-bsWIYwOX z>2N{_Qe>#tm9R}=AMJe`&iG()cri_P1_B}Sj}u)exxPC3P;8>3)6S$_{oEg)Lx0sG z+#}g(;c@Fx{Wl98XG+duIqSX&H4T>;`#JIKz$F_bqKPkisJG9nUd9(W=~op&;wDIf z&~k(j3)t4$O2U>=AxKx#&cELZ;gq;f z0DAzzu!2k#hdq0*o5OssS<^oSj-nxmEYU9pJ#W{bKxEA8-LsCN&=P0mEZ4@^&_#=N z@gH+eaY7^nn}uFZ=5+=@eItmHp)9gfJ2v^(ez={7n1B@lQn(dK}L!^tBI$bSpx- z&OTgA_RKntj;3>m|Dx37_cr*crb4JXuQ-bHn+z>YsOH~#Q|5p@24SazgI<>}^zbal z4sgER0U)!u+5UV*VwpBFFxrG0ZcLfx6R=S5p{Zew21vcyF}Q1r+=wQ6le*@@4Qx#8 z%q6LmJaHZ{Gil?;uB`~mvdffnhIRj7M;u1v@dzDjbR zx~WXip*yv{mszZTtuO`Ts_ySm3}01bsle5$DR*d=-(>oB6t1RGdPPtd5Q?fL9s8WI zeuEydS1*JRL86^2B(spdS@7T!A*XD-xc6R))ULB|+qqSYFe1Q)JOqYpP+635hDwAQ ziP=ow5&+EzFsr88vC+-swKJ7XCw7eB#h6>Jz;S9EgMXn#+@#KslN@m1=c`Tskhj8e}b;{6;$3)C; zw8!I$Q*1nMb&$p>`U3-$!N(7^BOUtiO8Z58za;mPhP@ew0zB!0#?jFl3P5fE(Mz;5gIc(N4iN?j_o6nx zLWh#q&Yy8@ijhg%LKC@r8XEq0T>~&Z1mn%+(2ep*3VW~#A^TFxMxBw5dUAU4=4)eO zi9zk)z@@z#euOuIJ?(57ig~UobcQ%y`5u011=&A?RKCwB>QN6rmY$&MAl0a33_=&0FroNEM!NA>yc z-~$EPGIHYuOMUhAd*_`l?PO2Cs4}=U)E{)wMf6k7s*C9=AY*H#IW1p-(yXw+c!gtV zRFKJs@BHo$L~>R5$gfS-O63{AR1r$#IL2q@w|1W9y?k(kLJa*ck)2pM2FgHXpnKQi z%*cG!lP5#!irn~93uq)Z)o~ikmgkCUxP@y2sa07kV}sE}h&-P$-6DT0IFwLJ%oNje zccl7yg9ua-ItKe#yO z<8DxsyFY;dK$7mUR+~G!$9cWRny)XlyhM@;CzS(!eMo}dD}}Kw8186&j2YF-t~{CMbfY7 zvAEi@w*;_$)!-e4uIaWnW-pgZ9QG-r=fJt+RgPATSE3@;2hMVuiX|l%TczucE-^#% zQiuFnpF}p>EdF_CILaggRGFdcA{M3|>*k{+ihTTSljCqBsLeamnW%bC0vffWq4Lir zHXAuaBZ(k87#nF=ea9-YMyQz4=K{hO3)g@2HlZ3iDEFfhpzwLr;Bshay|hkQ&iv4Y zQ`k95Ee*2HC;&N7CSRV!XZ9k@upruVV?j*)CVmmm&~%OOwh`%Ffmho%Eldesx_d3L zkvdk<Mp}yNp!h1*BH(E!NyOf>@ z1F@kQrH9HG0|E!AvXxK&}tUkL#?Yhp~+rE_`<$9IZzf)Ppk`G`oQBHlsCNjO}FLAs&@ zLg!tyiWYy>v{{2G8>JFp^G2rmkoIXGI0VAp-KdYxl-HVGFvHrfUBgbjoZ&6g!ulS# z379Uvt3rVXLqMS|WWh794#mgeV!H4hFaLt^t?Qb>LJFnDm=u1~N%~1YCJus9qoMY6{}L1Z!|V(m`F1sJ!sg>w)2- zXC$B|X`1OM+%X!tcN^3V{kAAjwQJ+o$R3%rvCLs2T+?DMK?HLtu)Yl)V?g2bg3-p( z;Rv371I+)tdk1J;D{XGFeU@|Ul@WIGH7&QSG(@qNC@K$gp}ZAuu7^;&c}@<@T7}Jy7CGmfp{l2Es@94|@Hq{F z_^8*IY)1?9Y<2YVNLahEm`onYUDFcVE?W~4vl9)j>mLgtX*@eGwEL6`8$ zFr?*E8Lzk?`}Jl3^?JBd5+Y@qzVpcFO&moZjXKOBh$)?OY2aO$w8R<~d9AnPpzS^} z$A$3~LL)D1zAQA67_m`C10{HM+;Wz! zqPfr50HWa*KebaiaT23pHejxvzmTJ9%Amgq;#$&+(erdLg^ihiK?B zPXFDy1$jk#TmHxGrhW}IB}FvuXZKAV?gS3u$wdZ7p>LHKGBxAyDskm4RGFqBo5VvV zrWH@VC=_9-6(aQCOD{p1MN7e?_i;NKL_8~N$FLE^_N`*SbTI9FNCcC)pugKXD>)^=rqzYZ)JeF z&KQ7TPmSW3ZrQEYfOB64H$sgSZn`;X50AlT67m2M}JY~Vu;vKv4QCJXe^OHr$VYA1UvUpv&QrI>ldKUsf_!yiO`t4y4atV&J0o8o=@la77SxL>HtaP zrm@tHfT_+r^O+>{9EjMw*Sw#BupAz=W+5WmLyuiKGq4xf!&z*As6rsOpK@+iq&EQJ`$wZo^(;y)#ftREiBPYr59Z6Oi*xTABK2gU-+Ifx1dS* z396o*;_{_A-E2J$*!fL%!GVZi0D4=G7T$^>U-V`LI$>BYi{Ka%l_*gJ@AfQ_W}FL4 zNd+ir6t@<#XQ^d5lTNajfGT-g^GpOws`lm0DScoIl1<_5I+*1Wq!$KFZ{-vT*m3m% zU*>_F6$b-ehPP^_zjUBtxfV?BqK%P848ahUV8I!hR$!$dFh^0XSqf+~?wtH{JIOGd zl1Ld_$3Xt_!aYWn-%XPFe*XK-)9!Uk*Cco!abU$lT_0b9M1`!Z<8{6@|+ z@htDSGa)@KOt|#7Msg~;*T~%6;gIJVa~c4{hE%4akLM=ntpD5Ro2=;-38#yP3H?pC zqS9c7piyua8 z)zR4$8mW6DxAyUg%_}oxzW9$!1g*51i?Z8X_qjwP;HSXJG2rBLXA1aqb8tcS!pH#0 zZZhcsYNZdx5iJEf#bwQ;;3twW?=BOKO{1Je0)YpH!ttvX^;)kJ=-=^+)fyZyu5_?u zUZcxijYMD8ZDgY@W!SNBr4^4eWYZdy|w4AMkZDQTF?k z*0mo78m&ZcT;~4_^6-sQJ8Li$)JKTnf>Fny#&2* z!2-LW0e&)`fzf90^SwM2X4zS%BE!wGzX5`F4ktJOS6ih{zJ=|}G!wdCV@x=S8Ie6b z5@h2pP|Z2JpjE3!LD)y+Dzt4z?rQ`D%_P8Q*T+*dbNWpH12U@{torHDF8}rLvw1+P z5jXYknE?;#Zp1r|s16t(5z1Wn0gcOcTqyOy1<`6hb9*@l_mC2`qH@gd80c5ft}8Aq zyLoV*&cWI5%3FO6!i*&H36(mX?$A<|@wxuXOdx!^tc+RVB=w@Dy#Oks$L~^+@nG+S zxmKl=LMk$UNXL{_x{W}kwyxEd{d=P|tJ5(s2t{g8rAW|Q39Q%W&gH?qB6CKcq0okK zP|`&cNcAZGa%@8n>up}VA|%(CFi$Q8$>|$}G}70^)-SPwmz8a)tU&!HqTp~y%9g~$ z2R!0(V9qt#q8XHabGeUFoIpli=Sph*4KAB){0tCd#vzEQG2OF=hIMT9KrO`;heFPW z#US0u3Vw+fk8eF4Pucwb^$VkB*j|M`u%`#)&L8vSW;Gp_np$;=f)?QeT#a&!Gshc` z3De}Z4rE;(U_&^p7@I|EdU1C%qEaUk&l3@N9zK6#t$9z4P=j{kDALDW(~>t`ctNZv z6iGhUbJpRk1e+gx&2gDYr5tVbMpMPs!Wp53O08@Y_tcGX3U6{ zFwG{ByOJ|FYRR!Mka+;jEOUIBg~mO{X(G0 z`mUK23>HB**Dl082eP~{N@%Ih5 z>Nps$zN~h5kiR06$t`h$TQf=EbZKh@I6U@4z;ZOFxdMVi*zwcy$Yfh-Zc8VQdR(=d zW8W!c?K}14kSYu%ceb{U%{~syTTiymV))^3^Fr6l2M&l4yWte+Y?NWEdx#M1(7f=W zctceow*f=8{})j(I0n%=_V$2EHSEl|mal5W9MoUz;Y;)#C)|H=@81a^ah-K9N49T_ zD1jX^E-*`Uii}2f7gDdxo5Zng*IG(IigU9>&}c@bb%HP803dtQ<$ea#Y z(jc>YmcN(_Gp2BP*4h*NR$|jHzxT+x#v=-7?*4<82AmmQ$BSc9?{A1?loKkB-kmgn z7T5M>b=tIvPg+(R3pcz2HsrLfa_ovps0*Kot2M;83`)FYIUwNNz|s`XtoRtGkaiu+ zhW9+-Nqk#istvi)l{&;*;lzs3(_LtY^?BernRfVK#x9HD=Au-%1sx8?Z+*x%fz3jK zBb$VW`-#uyn^WHk=|R$JwPi)02LwPbZ=V9zP|SpWibc!SjG7y)Vjp_ouu~h!f#P5v?Mgdtqp5Q3|o_lDV_>^Xzp;IKg|lK)Bx)z!D|FcQ(~R;7bfcj zihV7~Dzyz$I$l9(Z8xKnN+{J%03MQ}bcq0f#p>r=;#ok9ETkOO*`CE=EIXtC0N)55 zWJ%EAH(GEACM9DU?$HK5#Oz6TPWox?tJK)WZa8qrlvOof|l&6jI&?%Z~#s7sHd|`CcrrveQ`9Mci zdb2}aJuCLF%f9X(`rPDsbFzD_^P83RNL$j;Q9-pCw~hQqp3{P#Vx)D?L5-KEqw*A7 zc2m+$-61Xm0U21Ss8r}?b=f??EtK&HJy3}H!*$KH;dijUkVeVrXj5!DT7 zZ+|Z#5MOyvv%r_1r?KK(okhi*unHh(flHykh<~u?5}sd*bu}d`y*a`*?716Czbe(m zTdcdEA8e>>3R*sF4~*)6>e?e+Y*{iANjVVy{e(Yowq`5X!5J450qBi9nZ$r9h(v{a zSXZICWr;D*7z}78#kkqAWK9H>#e0A;XhhNH{I}Osyc}8Cj%)fW4iL-T9=4 zTbBY1kY#WSv|0FDSP<=;iVg$cXLogG5H?7xg{sIfJ&)#Uo91FaS7IjkQBVedxTE{& z8s~1%oE|>^YghfGX&zt*-OHo6>v1>`Y<>b1Oc< zOM0hxx*RMK7}*=~3r|~nzaU;bFx0H{2u~Vn901Cqk3BxI#e--5?NT|3buGM1$1u!5DF+HNqX-i!wqPT zQW4lX7Exp}5#fn0%t_a;6oORSnPS~hUT+HTukOZjkR=TQ)a;e0+krr!(qlQBPjbot#y1}-p-T`ulq zs9k9zv|!3N>OG^25?^`r-?FDMUUCmY^^GEyUWLGcgfU4Tje>F6kq27?(SVb@K;Lou^b_jU^D<%SXm63mbB^^IY@T z?ABWc%9OEhVbd1zA%7DV+Q25lD~T15euGP_XBo8?X-(INoDAFu*q1e*1-cOT!u*or zrh>5Qq1DTqEM4huDX|(alBWtFGpH}L3P?^-6d7?j;Wyd~D^j9_Ak+g`+ib&j=rLu= z)ZxU+wQM|z_1)CTL_MFC`__%fK-q~enGnmpOYkuW%7WKCwPc|JYH+@9w}x^a&L;R7 zOp6PATekqb|E@co(ng;zI(YU|%V9H}Q4Ib1ftOcW^+TY{k=UabzJioehvpfMtjx+u7&v3Qlu7=_5N5N5~4!nn>NBTxJ1k=n8r6?I{&cq*&*n$+G4t-NBbXEG0p-0EbBH`@ zIdH-;#Y6&$n-gii96fYCsHwS758iGCe=u{23! zAFvZ{5ttN&%2B79ub64I)}Z2@DQ4LDkC|S$NsTAMC;Mei3-g?xB<1!gEC5|8s`Xaj zpK($khQ@nYPyYA{Lml*+oesW6vF7XthzYROHv!v&_BK0^~w(Q~#R$pLSUhj4!0R&mU)CZ{svC zSJlWjsD$Tnu7zr|FxfkXHPazXw#o$$il_8@Ws7G(X~2h7T86{Xv!LHU_{#iyfYbi6 z@36k0X3qG|YIromh_|UhU|J%5JE%Ma`SHtQ&&*9m-%D3e=2&Q`4o@Wqh41}{q>@Mr zRknE|8B~AU5MivLzS|v`qywjK0f9uQfIQpieO&_fF?*tLFZB4;V;^j7mL$fl0x1@-cauhW z8S>!lSODX0M6T3HBKwc0o?uzb7c)!NrfC~tCde$khfzHv2vX4io!0_4d+6dD55Hz5Iq8yR4Hj4irjLWZK>08XropV3-kjpAV;o07 zz?x(^t)q++UQ*=_C2}|?u8Xtu4>!@?Qe`$oo55updnhpL5BwZ_eh%_Qb(O+^@7Adx zR;WHhjsh#fP@>6|tO+NAfmeQ++3H&M-1Bv?p3!xh)<}V4CIh~;)+{n0wAYM<9YIcl zmG(*3Cmt`5xs$u7i>oL298A*(dxBV4iR~4Bpf_?RsK$Y!g6ww_)@(HUkf>P7N@{6- z4EqB7^JaYxKDSTA{8iG)HD^3%aA_8#^=<<}v|ewCy?o_+jo)KSBdx4m5FIw^j0yIHl=@puK_k1C1gHxhxTu%?PL7V9P6AT92y%jWoUfYu0?3a z**1fP1WtG&hgGxc);7&-f#c$U&0f1+YQTuLt3m)q(?0I)0Y?xOq~D@TW+qqR@ha4Z z4{y`}JwU?0c;vK9lv|u~ghUTLeL08kuSQSDOe|8bIIb<`sW@6I;aF-m=GX#PPzldf z7Y2sNM5Q!aBwkxof!Xg|Lj3!JC3uOQQ$VuDM+ixTQV%L@v=?XxKWJxf&55d?8hKC^ zC@&7Lb33#rg7x~f8a09kYsvu%j+pY0ANjuAZc~-ws;CNM{HzVbvwT zuP)tZ_@d;7NeuQQve?{79wx(s5_As1$ZogD63t{i%pfqk*$I5eARASKsq$6qcb%7X%ChYGNluf>+`_;7P{J?mA*?@1IBZb#QZf}V*`1-In zF8#fCGhjntfmF5B|ETLF0gRw2?=?Ko%o$kMyN?QYvC=bUpJ+(+mKI$}AAOC^E7Q62 zph~fOE<{cnJBy2I@BcprRlFfg^IK)Mmb{149{!^pk)i$u%lyKR{vufN(JmBAZga~b;vJhrSa^4HP{sE?X1S}+IS&kIXrwt~Vu}*zqx6E@?&s_1c z6NA=AzvV$fhNx*4ITxV+^(e^XY?zJx(Tg$gI5`+3rZ??}LN=ETo`_lFJr6R^DT*hU=Z$VXyAyw{Rz}bjbqk4qRw(x>+3I zO=UluZ+57+8lRwZ+TSt#WWlMudDdxe#bJ-ZCV%t0n?IL)-rpVcTvhqhpeJ5zJfz#9 zdM}4AMgvs#Ua%gB>hV?hbK)I#_#32P&=m3(U^d0*I|*M#gA=*E?af>yF<^l^?hCve z7%^kk96}o>;r5nP2wTXUci!>cPQ6Q%S{sU`?#H+gX28$KMsgC-m1RP&ATPI|aythX zvcC}1G=gApwf3*ELhPusCqRExu%F}wMSG+mjz6HVv zT@cY$&N)CS@mD5{tqM&0ORPN{2fG$EP+^Bf8lYlt6(9gc=}eo@f+`gKV$FaTgCPpJ zg;JB2ad~d0l{7Kj*8Qf~4K^2g)ZCw4SBtHroOx#x2^E5%z^cYt4a47v-eUFR7w^6z zTI;$&Q~M5uAzqMS-9RTsUK_1t4y4g3iTfZBMgqK$`%Vdske7r=qsH#xUcLHSB-6a^mHU;(( zP;#AXvlBb?eEK2=gnIc$wcT|x6Hdi`lQ{K{-2-Njrk9g))R4_pHHYgp`a5jv3|@_r zQg%{NF=PNvjo8J6ehZ%2cuD7)aB@4^)4htJE+T!Pc_&Wr_sNqqNz1UTX>j8+!#z^I zkBx%L0f?$nI>~EcJSgfh1b!5w5zYl|L)IDA_A=FFWJy;DFUwLK321wU5-rH@)BGa_a*kUe@*JI6f`A3^I zZl*yBB?jBpGdwop=G0Cf0dMlw22YfBnrKn927vRZeb79OHO#7ZwL}26a$d0QkO0hh zQuYILcwpzAUW66$tjzplZx6}ZJ&)CO7JEI%beBd;hYr&>N*2tC-AgS~e3;ehIAz1+ zS3zIZg8EDDh8DQc3!(4n{#tsIW#}LB)3rA?l_LTn!@IRo{$T74_xaaHT*FYl$F>9fB&{G!QCehmMk0tbXdNIpZ`>eb* z)d6(U(c6fxSANX-L>`t0xnykaerd>#{CGnCMN;eKYSW#K@h2YGq3wN`@LfK@U7>k8 z%T>4KnKCd38VM1Zrv#q%fibhw7TpC+019evSGS6v6A$D`<;@8>rF^t4(tmg-#{jL? zW|=)Wc%EJA&LY6#BtLj3%G9wwa)d*xie2f>ZN&w=$A_hSx;-3QCQG*&^T(yOy#VZr zB_R7hZ&K>s)9QgFr=4=?cHUxSp0Abd8H($9kuH7VEeqipwR{Pjy?E2yq;*oOyz2de z!xERh346K&*hAubBpM4*+j1V7{#jOazj_FMB0lQvJ4{z2^i;kxXe-&OV4-yEEVZF7&RIAu$ry%# zDX8En&wfuSzi|@3^p(+?5%&)nIE`)fFoUluGuOqSy%6A6rBrWP^^~$oZb=KvIK{R( zex5E<5AR3nFiZ~wj$zz#Rmm`tZ5+A6CHQiiC`JP5t<=)|eu$tb0x)Ft6{RWIN6+Skk7E-KnRvL*#!pm=a$lT*J*pN98^*$9pC{kA3KOQZ#(yaSw2S{e^d zR;#JZvO9OgSeM+rTl@J3nOKG#J?iUADF5-RUPMgFGh70_Lg}5iFOpQ-1bhht1^VTxz(F( ztsz)8C&CX^?qm?j2C@dLBo;?Xgcu|Ju&k4TN0auG81aLiD{)j0jW*K1<|KH=SrHnt z7_*)g*HC983PFY0sTM6-t<}DGWHFK3bJgX0N@}a=kse@tn6fbQsFpA6(MJNMG_N$@ zcW1Qyq}WxuCr)K^r*Z}w4hQiL?#yClTxJ{IQM5?+@cJ;zk#;JvS9y70*p} z%+lGEo`^eu;Wn`pXC;(J!LZkcU%_gzL_v@%J<@h_5;aoD>|j(e@t4QJp&oA&n0(V6 z^;>VLX@8`%o2FHmSC-XR2KF=OS9|KlP#!^IUhoGk~942uFxfcl#J|sX~fI>aI@ioaZ%ZPYogvSK~>@ z9>g&vPq>Y9*tRvNHUXTZoMVK9&=6)n6TC#ZOQ#-a+bF&1JKiv~*Acb3#6Lh_D00fS z1f82(LW3ytvwFi0nc;}2D`u2^MXlNc=%-=KR6YmTn7?g)jVMLslYifm&(KHh+7Qt9 zwwGhOHH4cBeHnX;1uB@eJr@q%)aKq%A_jSD0y~6brED->0_7Tv&GQ(v(ScRgFr)IN zy%z4Q!Gv?s<8xe4oxjflwq0b*u)L=5EL->><~5+f-?7sN8hIYO^Q+WKF`(;3$Dc=A z{PmoNu=Ra~n$A?RH;c$|o_n{y+g7oXb4Y8U4pK}wEiqmOEQIBB`%BM@2Gzc(BAgy) zk>v}3HLkeRR{}u>_JY>JIKWVP>AX{^Y^-ttb(JuPr#-@djtMR;RS__}9;rO^!v2R% zqz<-}ywL45vfUEWb*zNzj12P&9>QI{jR0=4pm{_`FsebFnxODtZy^TT!LYQEGL{#= z+I%0CA23lvUd!5D+6Wc=UZ*ydHJGG4R#UtteZ8wB+?DmckM;)}gTf*=q7@3c&hbpf zGDuX_u@5Spo~#$Chcg>3K!rgpb=a$8He^^%m4G=(ZqaSD{)G;{#_s7DqZu^F$F=5= zg8?Y>sBCmqt#Jql3doPOF!Cx)0sm$89W^I?)c(4ts4@sw*v4J&p3~wqUgF(hUPeu3 zUsf0Xg)C#ya%vwlJw};P)BEMo78ArFP}05athCA~%%d0#V#An+ZfB-NXthNAa&cm& z*hfbj=rbG}JIW2m{zZ2(j239ys~9bB^T7QRM}MchZnA2|pl0r|F(|MrERv%%@`ruU z5tM%*cf&T)7Hir}om!mhZ3hwD|kfivw7oIAAqFyg$2E4aOSR`qS zjO7|BIH}#cg@(@a6;zDmYq)II5xprzQ?*2u!G(Tt#=H`?v#9MV7DwTqS{v zQkaE0;AUBwMSkZ662t@*5V@x_m)SCmQLhLSof9wMJ-5SjUMCx>tA|mX+g`%EAmP)3 zB0TGWN1k^5Q{h9MYc`LY?7P#%JkJQ^hiAKQG!n9PsB}}>Uhsqu?#f_m3+}P3|JH|< z8?;2HJ;^ooGZV}jh-egu*MFvs^3^2mlo*>+ygnIInzfmTB->Y6+j`a|2l!yg zMsC}fLFP(ud+U!uqQ{id_XXIB{Tm*^&II3+g5aQ-cZH1I8HmAkOFc z%5qSOY%D|d4#jO9lGnQ2GGr@{JkqL>Xm>Le1G z%}w|rHyaIGi~t!utKhjjVHzZiMjcjPudF^04?NOVBhP`(Glm`v%mjX;uW9Xy|0l{U zd`Mu|3hD1!cOaXNrMHBv$Rcgl#I97&_uYq_aw8vjvHTi=^W>C=C>)&!U9*Lfnnd=v zA~0)Q4Di)2j_OG&9&iL8ZH0R7mWuMF@@~&mZ3Ud~4FCN$^r6lhD;AzGi50x4KA%`KW%@N&YcCn9Y44{KEAmLN+*!MNvYL(uIW_tBOg988W1qrYdHZ#T18Z2V4FfHEvMM=+-7{V_~g66W$y#3}D>3vfn-K10;)WZaQ6#0Sp^2zAn@I76kM$;$i@ zrqNwRfdF(XqZ$$q<6{)q5dus}8uNkpzc?Wa9f`o*0%;Xz5FJq@|ILSWGJ_2+bUyy5 z=k~#rb(vn$Ph4VTWJ8j4(FuohwaCAx%C8g%*%633PmHrlZf#jU5SdSpgI)y7y#@g9 zAg5USlgEt@qR++e1^mP9i}I!BqPRbl?IP zKJaEiMRxp(Ns9Oi4398Ea;}KjizI}Tb`k}<$#T3opIP|S)EI=q7R=ZY8#B#;6Z`qI z{5vmo4D{+^)Q|$GR?0K$;@u0R4yy2*GyuhP*kDq{MB9k(T@VjBE_kcAX%smJT%Ael zlZ{bTmna7W`xb>{c)LMSrxVvu?p1(C$!y@G6mtMT{do|Tnf=9b%-FsFjLkw1(hGi@ysZKb{Gas;s_Q-i4+W4UimUMNz6JlV zQ)ZATqb@?O$GIX6 zYS8xUG|2L#*S&sj=MvF?V_`_o>Qk?62<*yAJHs-%!*8AD-EW=9C}8FghC3fZ+^lc4 zyntGkq2`AT+PPmw8i~_0}J0>EhENw$s*f&yOSQ78Q-1 z`g|dag}kx%d}=ZaBdQxYHgv(w=bZ^?mzg7=QoFWT)_kz+Z}&`%H(& zR>Q;$u4({}t&v|c*YK84oK!cHAq_(O=yNDvr%T#K`2o|(CVkS!%<`tdMWx!Nz@!@| zKV}5H5J3`Wi7Wc0Ozuij6t-u>LI`C74ZM(@$UVyDCp~JBuk{pB$%gWxlzt*5%^^Mf zW~fH=#MA0Lf48~M*&yml$9ZI%+U%&mI=UNN;q~^~CQ54h^tBTy5RpXTE3(Mbcbbbb zjNQrUss{^!daJC@+0kSPELb8@c@3mKn|LQ!O0FgE!RN{G;5VPmaYaE+{j30?R;~Cg zwFPEt*O(ZxWX{Ue{0*aG{(mD7_2cH>vUhMem>62ENb4l&v9M24nl#bVVcc6K!4=e( z;+}VJb_?ipEy>XJBYN4(>vw?Zra9^OEbrzT(y^fEK>Xo_xvdGp zC&e_-R8@6}A&sC5Ic!Som(mC8hd_^={ zSe^ymA*p-6ZPJ5&z+v*TRi+W07B0B;{6@Ri;lqzwr+yv@8WNj>SNfr{TUH)`z$nki z1aZGao{1o9N0+F>Hqa*&!a2!T$-99715{c+o>lTsSyD`H!1dq69ZM;>Dv8ybz`hc~ zfwvrAVZN@E{S=(sBRMoJ+f_>wH_>{3+r_O(=Kwnb#EsaJVzb6Dk?PX^1z+O7PGPzp zu)axINOO<6NqjS8ykQW>)yNneeSiQO45H{4YZyDNBD}=kF7?zDj5M*f8%Npm1AM= zbcP0~v*c1&ChJgXujH$0vp|7f*-M+5SH{1bE^yJrvE&b>j`qNLPF?$xnWbjf2sZE- zx#2UXlW;QM3%_bspca1||1_jefKrWvV^JgP2Umj^dXN{WSK5TBXJ);)ly6CE!C~=( zr^082UUBal7aIc(vUn8EpiXV*}!cadY*eZ35fksB_B7F_iV% za7dF!4~%R;xkq|ilSSrOs}8d!Wly;~i~SS4O(r+$D!M$$1-xS$4F0{wZ{Z9JaD} z9WuGFNZwall?`P^xC&Tk%t6G{>D0l4%wk7$5!v1l5J!l2fChU|_`y;r=B;>q)Jk#2 zJ8+mj1k>fAhuMi~Nn-=q@?8?8=;d0xt*7cS8boy2gl^$bER!sDP%xI3TEVZ9XXM|x zqR=I3tYbA;>+68j@QaR9Ap16aoy;r)8|oa}I?im&O}dYe*9df0o5+0YVM|+B!D#P% zX#oN1=Gka9+dF)~u!N7xD<~GR+m%gMQS0Z^)VL0qHI>jbz@R z?+gP!ALRlJ1fP@W17rue{l$n1$aM?D`zq=LmV4>6eXOmV)`%jmk7emnf-stB-F@u1 zyI9LufOkA9t|vuL^IDf&pnp!w`3~2zWg7pfPk5# zhZ4n*HMHX=8*Wg+hhge5Y*QG{geuWbZp&FjX&QKt)4a51J=$j#2x=dT??9FTs9s;n zX0!Rb+bNmj|3jEyvq3WTc0e{RRHbG11TA}|tC8-apwej1a`_+-nupR9WLHgIDft{R zg`(7Pn`s^iq*<)nknF*3yQ%oIflVp|pOYp`t>@No@@moTCXiN_Mblzw#88{2+aqfA z{;ZaD65f!z)sqLn4=1TbwUOyZL)WQgxxs!^cJ2wM(WUG2 zbPrmaok)IdaD|+A3_8oth%L@#iXn%SBf}6~O1d4n&FTl32lB20!#xDDiXR+qoh55M zdUZrty$|=gNDpm{MAV$ToX{=TjS{_Xpy@r-P!pya`uu?62cAoo9u06^YPU9PG@5Xj@jLT2$sqG9#qSTq6tdGxQ`V8K|*ak_|J$0Nx5E|)W| z_1kEw(c+9J_1J7B+3EBsgcBTWJ6_HT1jsx-HI8 zJN&uqg<>Tw-9Fo0RZ0xnw}j-JdNIhUZ^UUo1~>fFGxIj!H1(jLr&mmCr;e)UZY{iF7xgYVT3_sD1ETjx9pm2)-eM5VIJ5EYLITv z_CjWCSQF+2@jNoTyJX}POy2Y>}`vafeIbgHxY!rU5(Z9y+#-6CVtL~4PbtP-! zpeCPHG^ndk8svfM7f&RDmq)7`vLHzbkTOVc;{O*xJKP4n7$6l=rx_11Ja-Ete}gQZ zCQJ1Jh=0-1sY{~%wF#z)yxHPkfJRC(w>i|RXe5Qd*rYj2{jEDK z+SWxFW~!qp5&z4TiR6MSLDl>*f{G%}hzx}(wat{P_2rWmL2^vXfc-5wCI*-~|6YTY$=7H5- zbd_`JZC0S`a}rpIkdL*n7BAb102RhSn%PM1Bp~)G>T^UYs8W8ILw?G@cV^OG_^Gtd z_ijp4bT5H3bAi*nn)r*7^mc%TGAoy*xy6EjkjCLK2sS7jWJN=CT{@g(&LUlC0{vj` z!-Y}D>Wb@RbzM~W4hGVI#bX65V;q@wcmKk@Uhz~VZz;=Px{^v_Nl$hQL|%O#RaUI0#hib*t_MkDg+Bi{7`UV<*XU!$!E$JLSFZ zI1lo{$neo7>vGL|QpmFHe^eisy282r{Xc1^qFh#|@VA$95I6xKf{@-coSiR3*g++F z7os{Mdqb-c_g~}F<`V=#)^w>d(cxtl>HUbqs{pO20drbYR+Lb|m9SfkzJ;yusFW$$ zbZDyp#sWL)?OzM6<_OzFc=ERuBEKz|!_K#qg%fl}E2ToK{r%D!znh>wfb3>GWuXk1 zf}KH=z&?0^`8REbOsNrGbK1_K-c>riGU-f!rsFgil}C3U<&rQ z@p>a2|8p2yG5KMacY44L?rMDT1;Co~YcLEL7P#J#At*{OPt0Gb#I0kv1# zt`&PuHn_yMB$N>~8Hpp{95<*S;_$j631Kp~eK_`b{J2WX#VaWZ7hZcAOC5PIOBfKn z@|#W3X^|s_OgupvA6av|q~M=b{QCy>h1KEtfuI{xsw~&xEZp@@)S;#@MLhDIKBNco zuFsGJE6RoX8oq4Uy#-{TjQZ?8%;SW@Ddyn=H}bWK+Bwd(egfK7PXH{>DY2}&W;Z3D z2XzD&Xn`+0*$DX9vvoIUiRZ8?F=$;1jM-kCDp~+3(Wg9!pN7jK2okg1uaQ^HOMP^? zJ36Bbba7mtrA3#SnZ9qiFCZUoOakBkOml7N&~Ch_bvFS<6QGzB_@p^D%sU~P+6HW&>qPeI*tb??6vmgWZtqzK66p} z_&A{UbL+(`grKt?6HSyV@lVqL=VAPIM=w_!vmbYuAgdFF%|2tPc7g-eD^ax5Q51|7 zeKYK@hL_qa>5|4K)mB7+9Ypgrz7XC}0-5?bLg;{{6raHoNlAGY%tB(UQg)U&h-xm< z)y;UW`hbg+w6Zhx(=&wnk{cI|jp>2X>h3A}0VA*kZk3$x`T?j=+wB~{lPw1~(vGOO zSU%jxwJ;sP_W8y>^CUg;Yn7aJ-V*N78%93)1FpICC_zohTRte9h+2l=k z3~z6L%Kj5&3|<==&&Cs=jO<&}(jmsd_=KJPfNXNpC;i{ils~_+(Vmcc2<^?uZwROF z87fok@)Aa3Xa&A2{OQo8)|M{ElE2K#tBvFa_jy3>jD2Z~jRd9V>2gZpOZno-Cbm=e z`!CWnn@SL?r+VX2Fn}RA?ey&k5AbS(RgrTuXaC!Fccs(qxxI7A+RI-tlk;?Q3$CfI z$j|2a{MAMg!Jf9{;b=jeC0Z9W_sIB4E`bDIc~#il^uP@2b03(G#?E9&)|Vb2|Iwee z_nyt6I=ei&(#xaHs@1UWBA!@LcUK+L`#n5gJo}wBUJqyu*EbwFh^Zx+L`I*VxaI+Q z-)FR#b#-pC1Y-;nD7fAO^ycE&CZ0vrjs%hoU;C?{N*@Bx>Nf^9GPUu8)`1Y zz|a0OfUY{O@-6|b@;v**dGb=4J_bBmjWr2$*B)i5>14}QG+dp1X&Y-7#7$506tp6> zy^DrkCdTsR1(r!iBW;4s+}bTs%j))(W{OIJtCRr>Q)hbXGtQL)wifkujmOdjt@(8Z z#Pjh4QvxvL?Kai@h+D^_`5-?2iNYpxVvs@oEA{W6nIySx!68w^z%ZFdlR- zV4(3C8-Dy!i!H;#-tN8esLTI%0)sVFKpIi{5*W$j=)KNDl*xcpJ{41H($>e9QfeAl z?R+h^lk)%nOh-JTVyCv?h`%GoyiYhq1-}bbFnW{^b4}uG(wlUKa+l}PqcPJ5V$1z}Bz@)K}GPO0rsN#eexHt&-)GT z5iB+Lu!!o}-`^K3GETL_T3s$^)+#W_xWo=g?@4@QeX?fHr(R(1r@GxKwzLuq@ zqOho~e`26n;juSjrTTb88)Ehxf$cF+k*BE_7}>@6k|c5ZFC8(fdl<*0d9U(Xp-YE~ z$239dLow&rnT}D|1&Q#;vyk30<}GJpwGU!&*SX%r;nHz%{!i%)eE=E`5P0P|5oCC# zz_h41=V)uCH0e{yuUhv}i@?BW>1p5qB%oT+_DXyj&S;E1eVe|Nd{NkXseP}k20Mm>(v!K zHzmZUs|EUUCvB#7Jp41`Ul&Qz35uxAI%pPuKVI1DaKXbOM;CITJPO7#ZJj{EmaM+^ z&m60r>Mfl!o^dkn&=}#H+)?(L(|Zt#7Gsi74R;z{vqT}D14WNqMJ%(s`U5iWdf4m6 zqJe3-3zD(ajNj2F9My&}NG9h+r{rdB@c2C(7zXm2ftn_|hcQ1y1id!F*>M}+CYAeg z(0WrM8zCgI6M`_X)|PLpA=af6*BSC$(>r-iS?U$QXCpy3(pWaUv8g8Ag;rxC;xv8D zV#SoZesYE#Y@sET}@ioEnue234%IS`>MOv)dMR^2Kg%lP4I-aFfb*6wg_qAi7JjRo4n? zm-Nl)482^t{u3y`v2MJ>rO9Qm ze$RZ4bCiHuIm$*ba`5M{0%Q-?+0YbPOj{czgShTA(fC!VvIYl4lED>}BhDbV@M>;$ zQok+L46EKI7xVtwIBrdTFj9kIP;&bskzCAN^S9drYG0pZ{^h9)kiLiJ5ZV_Ou`Ki{ z$Vqi35f4f;$@EO2`Tg5bIZ{?&>!7Wgai_KRJnC3PH# z9K)yY$q;HyZ0Ne}3BK)v2e#o3IB3VZn926ld}Y;O-IHi7M#~i@M}`Kj&D<28ad>b| zL)WwCqiCi+UCypeg{L(&TKG(O_+pq_dVH7Y+yq~&9Q&q=fia^XGB(2v1{bHP;wI84 zRc~X{j3dT!CNS~tcw#6$n6k7~xR9M`{Y%T@*MRZBO_M)_wz7Bgdya`XKaZ}4gc}nD zw}+%e6aDWbwgvj%Gm!-*92wO0acz1_lv}Kxc$&3a0FAw4C-B@c7;;DPo{*~UKJsN( ztV`ojNc(7G?cPg~h`P^m*C=5sbziT7ru91ArPKU-Ltg4|v)3>=xAf;o>+t z5d>zu1}iPB-4as_O)$h(2zObfPvd-{Vz&joN^G4J0OD1R*20pr)Fs$~W-$OpM6=dU z?K&r0sU5?VYt&&(;s&rhB4#+B6h6rJy;1b#KwQXYZTL5@Z6_aP(*XT)SKwIt2#M1v zQC?>^F)zn3&GNop+ZAsIj|^WXcNc;RN_K)_Iy^p5&8E+c?c`-~aSrO_sGMInOZ~Kt zH+B!ETM?ai#O6T!dtF_|Im+v#m0LUuno>?J{LZJZ?(yc0;qZ@a+&9ZZ z`a;}SpUTff#d1Jie;;Am}r? zU7_M>hXr$`BSL(cL#RkDPfOb%H@ zbJoiJ%gb{%4?*T5Z9#vPPCZc*kEqnVWi$QiO{lblNkRXrU)t+Vg zYfap#r8cwFGAw#?8bi@J6yLX>k6Yw9x&hTI)PmzIN63w$ zFDC>gDpy>db(~$i^5HCxwEJ|&=3bizMGFdl2#}w)_}L!0@*x7vKtXb0y??6{s6zz* zgt=3yO>^zhC%LA+bllI0ffGx<|9`!FIfqd|qJ?YVSv*=7_&XQJg#Zl%nmRS)pDb=( zK76Lxa5a%=FdAA?cN#Pn7%4lwG1^rge(qyV=hZ`ZdU78qW#V4+6;wF5T|!vGpm6yRVhenfg9&Poet-68V6X<=-w zD>`^l;@8C~^8`VQ4L**cW`sRyuViKhdg9riB6z9wf1FyuGKX1!l@lCnzCrl?G#HOX zbwJX)IHDky;_7E+HGX|nk-dx@NwMt5k=b=T1$4CB649U}BsRaaZf=1Zm1<0(R2}3M zwc{Xy9Z}A)*2%+M98IO)m|AVQhoL=z1i>pH9i5OJE^yC1sxN2oLNq)?7<;DIokHi} zam|9jk_V)BOu*3~5xWRvTi6IeeC!-VEm1%rV%TR6hD>p$bU#$uP4Nzo*wNi`pIGQAF^t*}hrq4?-3sUdo-!@NoKBPt z6ok>HCS8MAyx-tAUyJbi$)8pAsOXF(y|R3IG>TqBj+N}g#lx-`&OF3U$3}B=V)nCq z|1%JS_YOSxY(GuqsjL8%_x>1O%2>k?@jtoHgBUX{ch|fX7JgZ>Snvsnk;+gNIa=tk z@1NX@9d*Wk`N|b6QomYrM zyN!%yC2m#8+tU8vQUg z%?0T7EXhL4IR%pGCLg`Bf_N`G&6f1ev0w^Rt`4F4*Q=ExPIb;=vHW=0ieEv$${BCu z)c+vv_4Eg;$C5+g%~CjT%GvtjZX-fngl&u1dDVH+lPJ==vMMQ(N?HvExDfS12P;vO@C8-Z5tT!M6*BN*dp9WWka;Y_6n4Hf30d< zK!=5RukzsYQk^yxL}5R6n_W;DiwB zf2J#*J|{_0HjQ>qEA#U24o{!iYlIi0kINu~m9i@r^HrAWq%M=G;zcGNvzDXGz&pww z_cnj~mpqrJ;Aph-lSf7nU0B* zOes{wOCcdIwLCAF6P#E#2?Og18I0!iGND2Z%XRDqDDVIlE5$a5qD`wc^T#?r>FpyO zSBqP(R1m!53gy*TJ+$Ezbtc`_IJhrWO*56`W~adbZv*-kjPfrgu+WFVfe5ui?YgG2 z0=IkA!t&Laa5A1aK7MaDYZv!G@4xn;&iXhv$veS{xI$(jr~X_sJzz>~?RxvHH`Xv% zlMk>cZ$5tI?OIMsv z5B1Bh9M5v^;_xSZim-LmF^+$m;Ls1soYHoJH(94eI?#{kXvEh?C`g+SZhrsT zls->8)Z%=@zGMG;-V)qv2HDU}AC7gzl6S$W_NRS3=chZEX^Oz%OrJX0Kl$Ih#sN4a zDzKUP=v1@DTq39mnYZ(u&~n0n!$I&-;|xQc_ja}euT%1PzF15gtC*n->5Yu;<^Cy$ zA1geAamT#W>q1I^%`|4FCK|T$8sxTUXzn$xKaX3Yqb!v-S0+T8=u2M znn;vjp`})g=)ixkWgSQki#Y6VYCL;n?V-~y=$H>+*B6j|b)yxgi(czgCS>Tk?aA$F z;Uc06rVYOcED2VY@>A!~)r|egMW%2Cdt2!Oi$5c-PosZy5)^Jd=*!YGieoeKNyffN zTmV-I$D6jt)Nmt(UE3O9#sdC??%PjqKmCM_VZDk(qNDY`SQZd*@0?uSanEv#J3zj^ zOiRf*-++G`v_Joj>&k*n&P|w(=G=igp<`fj=DWuk4M(puPS*v}LWA{s{_2LUfw4^O z9l9mk{?yXC7yU)iaV^3OqwnwS6IK`jqhsPqEFqn0+xE{4T|S)?&5?U2P~FcmhtU^> zHG;j}ho@+$HrdURg z`6`^82W4!?9pb@fFp09Fg~y*-%yVS7=3{DWAwB(?Ir-Xeg?FU-l5f= zV61!08sVYPPfSNHBNu*iD0jjY8^s)w{8w$*rqVQ--UEk4U?DqVyjcwpB%tRuC(lRjo~ndL$x;`6msyYLJ~Ve$+FgZL zC6=vQVm*?nWPF%AChF-}%OzT+>{K4QIQjp&zof}?*t@TXZx&2OV>b zn!#j)Vz?Vju+Rlew=GILmwwO(5$bK$2aV=*uJH|=b~W1`Il6Rf%-}$v+qa)ISHx#4 zvH`UhoWtQN&Bu4zcRP#{bU|zEdAL@2b(Hn!fOeWa+g?{OgUUVDp2Z$|M(Zv;6UrJD z?nx56f)(=b<-P11q8b!rKu1pZimwy*;L3n^v0vF9Iz~=5f3bVmOi1-tGGRe>2!t*L z0aFe6-=?vVD>D!{>np%wDO4^u&9pwL`Mv+tvBux5dptpwgnXf_(hWe&5<9#xb-BA5 z6EUFT1TH zsD}flL@8>!nb1vgMK)Re3*dnbHv)mZvyD~FXpZG_wdDa?15dX} zJ2;YtFgLQ*lo-ck))y=)%ywu)w26_$s4K*BY7NWgK?n!IuCIL8c2g}&B{K4tpB`Sj0rH)3YS7V zMJ?`ntnlOO-4o)0yHD~vUCO;bhYP_Y7N(nZ`Z3g4VrSv205MxZ1r%J*SVp{w%8Ak6 zXGoC~Ol?3pQj|_%NLvya9fh1<0RT8a$G`v7ex{DDAwSVnr;R`U{Um9?d==?+4IBy^ zc;DTiQICD7B6>7jgxe6+spe12Taq?W^H!wyGo_K9e*%zJGL5LiG*OZC%m?v5QYc2= zqq~kHemKX+7$v!0;)8DDP|FqazVQBe9^WXX8p=|7smn!$RiPyFrVT@z$(>_TlV%Jh zQXf45EDr(DgxtR9PSZ$j1A%xaIGkm7rKkMbv*-X(eLtbJy#3u*y|+%ce_DMxin+k) z=bQrX=Y#rhxUYkJGh?R6H;wB47I1H{?@IRe)11GYsl|kr3iC3&aD< z&Lii&w|`GHw$(pBq{+KbsX&tE+97??x4>F$ettr5r|0(-RPmiY=O1K85XzydWFq6h z(D1hI?I*>&OBj8JbFO=OiSbTp*==_o~$YbJ!io^9vP34xwDi5xECE zO~=)+2?&R)wmXtcJOjOaCmrGFJ+^!d?0-;MoY$2ns>6dfC90L_@Hb{ffN_+V^16DV z$HVP_cFm)R_;f2G9vqgAkS3}^Z{$bCWmOvhh=WhXoKYe2!!`TOc^K*<%o+`umU>Pv zC(W^>gM}to_77^(NM$x_nU;BO2E6Vct8SU!Zx&9J!RZ0P7atsSPfID{527A#z0&S~ z^ozuAzXH%xBOi<$gnUb_X0(o)WT(n89t!&m^nX|oJ_m6NIL>s%-$EOe(n^n&_> z6LwhM2Z)S(a}!5OBImnN*nb8|dp@g_%nSlC3~;XlzMR}NP`{+%+Pe~m#juUgq%Y6z z92gvyi05apMYIr`GX`Nr&&kH1TYE{<6OFubp1#G-(}Y3cM_l4Y9Xq;!6cFmzddCx? ze@JkLySrC(sl4#+ul>3`O6xEpI4ci>WZabQ1LLdjAS*fTrHQNj@?U}|wyNZxJ&UI& zLCn{$*edy<%8;C!xb1(HrCuqGpS5s6eZ?e0rIti{dNQi09|k3wv68!4&=)jP(z$SQ zX|Y$^lb-FPj#{jM$&)*&6qKj=nc=KiQ(C&y1g!(5crV!XuTRpv?lhFy#mZ?(ou$mF;utLG>F zBMa$fA<#xKkmOO+?i^A)NYeG+r{NFbp7CW8T_U@4C4+fj65 z7_JL{R!9rC;;x&AV+~n^{mBhrs@Bibb%h-8Zl7Oc&hYaS=i>wo7BMPnhTdMEn4orF zH#nxQ1P!~|K8d5`hT2N&<|BV5N zpQ<8u#k;c3Q$eb1Q7RKcm=mO*x;L-5yh7Xm@t9+GcmS#s+ej6UG29;S*vs0Z1f9aD z9pfU;Z=K+oI+P2P#-}r5Ngm$tJW~!$6`B`Zu=)g>3b0cN4@^Gbyyu=r7R^-Mc52xh z-Bw53WI9V%su2@0ImZSng&l<2KDv(SK16h#{`&as?Lf7Yzv}UI3s0qLBZBX1lJ_}j z?6^Hso=ZWa=%xt16OQd3R7W}{H!ZUvcHp0ZlWivgB6(7NZK?}`-CZ1* zWvI?J@i^wc@rMwEc-;&J)+TPrsLDVbZrg{`{7kFS3e6Sbq2wR^q zpz0k<8_iJnw&Tj3H1{UzH^$hlG?Ar5^qR<9^+$3*F&)pbEx?C7u#5owZHr9)~Q zh#mJF#9;CndKEM-ChXeb45h;LUtc%jc$^G))pn^W^G(}$I<2?G;%YOr%O>DsN1-L^LADte8*U1$Q3(I1GHE3z0>7-i`NS zZ6#qah*;6|Ex+SrvJ9y<7s7S-05C7rXvTUR&TV$=}B2)(=$EX2Z`$T4PE)A5z<6-Lwceqtu1|4lh(sRk>i0yO>nh5Ry=%uH zu`;*1(6woW2uQTnBo8J4bBP z?GQ1ALs@d#lxNXhMiu!pc8wgpLf{Mx3@X@V+HuVu(DS{sk$xipy=JJpU$FO1tfux6 z3tP>{VT5vV`-y%^>3LPGU)d}6Md*;lO-elgyT0YPwKIRl8T((?{*W4Q2N^MBSBHX0 zw21M;jD$nF=u8? z=-qkb(PNxK`gN=xXFr9ukf~}zI8yfQ%In1-Sr*XE`PoK@NoKcMsFxjP{M)zTXO}?H zCCU`?JUJ2{jkzu8-wW?R4|%I`eVCDbnPPoz)X)d~JawEN<~6<-WHvGstJaC@_9Xu1 z7f-tT<4{a$>%<^R1Ns%e(+V?aj3P_r;N5XN;{a;TNs;~7_M}TAcAM_MEe6#I7Oj?d z3N=3ZP>AX@@ZMR%u2hcAmAt(5Z-`336}vmiEE##Q0$9gS>j(Et=)l{60IcwgU5#~D z(8+cxCY@Ui4JmYPz(fYGf`W*vo_7UgKgd}cq=If%B-N8r^9VFHm|D8sCn7~%fsk(nw$cOH!48QTBnhab zE5)ZSx*tMt^xep|6b7D5z;DJLIMjR-CVCIeg{5_(QJNN^^JC8AkW9^Gv_;p-P+0?)LRKt7@=!UG^ph z=K$K&wUHbg6X@(&X_`K-&-K8W&3$b1A|GQsE~;y9BadjVd9FfU_JP572e zhQRPKmEfJc^PV^w2GOUmwp*m~aWW&I^k+r`13u_H+jh_THjCT<#c%+O;C; zW#8Q$l3Rl+?Y>`x<%4^(S-7KiAW4z8RKGwoEWQZxr2WiGB{sBMwlQO3kH2L8SNB8h-Bz4Rt*B7!3Bw)amqR zEbUhIjG6IzpN@(7EvcQ{2CJhM^KlJE_N=KrAupD{dts4d$pf(Sqe%k{36?UsJ?S9R zu6eitV0a+K|Mwc!Onn73f9GhZ$XdF{uxbUP`GRh5A}(ki_VksTxs1V6?JqcWKX|EBFU)$F;Fw_9I7Qh4NfHt zhAZOIGZQhpv*SJZg1oHwMlrTW?vXAa3T`dc#%l8-p8L(8_S~@Au&PG6otPE-N!b8V zIe6$Xtw}KCv8EaLv-EKe zQtQ?b17xr(1VrzRTV$~&2zy*?9lOrs`;#r|ZGw!`Clun@q7z7=8fc^ps^Bi6AsXJ? zfsLk--I_=`bo1JSi)Qr=&KO8}v(t(eS)+yd+2e&9!(E&j;*8jj+FaSCe{O$;xt_dfdSf6)yjSxQ z)2n7X0ydhJ>ri=S?gi^ea9uUy@_H0z_HWJk`MqqoY{@H7e(gDQt>aZ5Xf1_PM$nqstDU@F_>o$$d>+-2@-8Ed3xU=ctI*~ zE#X{56wN}OX$9SU#=~5%GFMqfL_{#kpE{Lm$O;V8d*M7rNW!(lAC{XchQAzl%Kw4J z_y(@JeqgvH$cu}z7(=&;g)pH0UI?E-{G^;>es=iVV^HBnDHr9Mj*z{S|2?i1Y<9Z4 zUOP*GFlC;}Ci`VCKGc~q*Qq>(?-|=LnKb?sW8+{uzl$-={n?=HYD-|K6*@t6H=GR9*t8U z!CtUs!7Hk3ue;apj~sT|E7zP?=GJJ^vNr#KK|`g@R?(AHoIxe~cVWlYuh6hje_hEH z87UJ6AlNK^;!AK%j>G^U1=Cg&DBU}T?t2v6pO1}97xY|7o|5~Ep)025W z|97uWdnMtm0}=VGX{5$%@g48S7PNdv+Py$$93E!7#_rYfta_EFvo(T{*e9Z)hjzH) z097?_$-*%tWKyLJy8yCpaXh8Q(ytQIY>Qu_0(m^We^-UOp;X~^=yKxUQjqbyEj;L0 z&?Nki55X&HsXYjp7`MqI+}So`Nu7Mj8xObGRP;EXUq9@rEm7PP?G)5}rsIc#PkK~} zj)PZD_F-3}Mw+P-@;9D5*llLRa2~*famDSn&yNl8B#@VtG;;IO^+*7+M*lVJRm1_C z^Un}m9tUjNBNQoYA83b6K^xrLYHk;Qt;k3Z*{9%PaFEF3y5FwE#qW1?vdVNrY*2iJ ziG=bUUS$Y2}*4`mo3!RKzu|mu-2~R}*-H|YH9E+a?)#!MOx8Vdryj|v`Z?`U- z>{n9Wn+m)&7x0ynCGnGSNu@eT;@QH$6-Mf$L@@IkgrC4f0=3*rc(WXH-}l!X3Doxf z3wE?qbR-_bb7@DugjL_Tygdiu1`oK1up#<@hqF$C{%U5YH`rnOv#DubMBk748F(%A zUC_r6`Dw~9+*BuOiHXuU1G}Aa?MvH5u1$VYbizq!C5$OeDr%O1ej%rX_6^_wSw@`G z8X^#b{ajP;FHr40EX1wIK7?;p8!ljnP-H6>;+9p8Pym9EbhR;tG+q!(!Ng`u8p@D* z7KbW>Z43GuzV9xXpPomd2Tn0=+>i(z6TAkU5f$fA=2E*FsuOdY9kVDxG>?pDC)muX zNsY2FE!!L4ua>BB5Ws}TN`n_N6#X*{T24_tyUN|T#OE{e5K^BA5G~yFM_khq(~F0v zHvt5IU4!bfB#z-v3{}H+V~vzFQVPME01-+h^8uO7E9GN0sQ`SS*FNz^o3tD|{%RMu zD_D2kJ%oxb6g-oKnenfq{&w8$;9m^-JTOtGyE?V13@O4Ygee;uTy(p0u z7_D$9EQ$V|4z&u0q!j+K1r4`X`ih#6u+C63#3_Oh4iyaX43CP8ub|{0rMcxk%SHsR`?2_by zxu?vihE_U};Q>*rj^%app)1=wvhEW$ry1hpOaj07>h6Vj56=)?wpNl?=nv72CEZ@- z3va%I$Gc95v@%c@LV+vn@TlL0M~1famS@W%M=Iuu2-%wL)SW`0IG3tlgYo2(c#9Q5 z?q?A5Xc(;q$m*?Z`UR7aau+3_ZW!Z7l;7PY-HW!qtrbt0$pJL{OCb&TZT8F7EPu&h z!cBizT&q9_s#p^9*EL0ztpzg}p|(5w%V{XDNYS1}^U{~-QJ(A)AD~O~0ia(Eeo*7U zUIAt)e>-BnK)F@TLqW&J#f=d8k5V z8OAEdzTu3yhn9D+vt=7^y8LX%g)=@)Bh#t#qoD@|(_0)rk-9E#I`Pv@ZkR9m>jz_2 zxzjU@!&Z1<%Iy3slBRlH#S)ULk{?(O^0aBU($LnQZ7!mZ4HdlP(}1?!kQ0X)+8{V> z0r~p{VMBMitEs9n0GX!=*RG$6v-%Aoy zql?9UwUzH;2LOsr1Db2-k>W^_#iQkIdnBtftLB}^hiTk%zZspkA+n%?_?j|7y~GTZOKv#6)qf914o>gLF9!KGO2|eQM^8-V@a6gj0O|}) zVdXBI1J5S3Z;Y(v)-xH>kPzj(?D3^%ri`#s5tX}bw&m!APg>Bx!eRMqdpUxcn;=v2!_(2mMswvKrV7 zAw^6tqUS_usF+Q2lKjiY1D%aiAcIWuM0JL9>;Wl$$1*Q-_**i1TOEO&&)k(b87hPP`-oBpPLpb)sX3WJgH%U&P?z+wue z8>-Zjm35)jFEH}TlV-W9wv1*Bs45n&D{VOFaHvu3Z<62+v3WupR2N*jq}%uw29@%0 z?|TRgNEcg4vd`k>jp1U_-I265nIvy{-kGYWL(f>PUq@(HO(PS>loqrfUs|7bCz#3y5^f675%=H zjQWn)d>`>9?jiAa`(AaJyS(bqa~@Nzv%K%GmkwoJk*sdo($4Cd00mF9 zt;sD{80`LxU-d~~s5My&LSU+hgHMPhp)1Vq`C|}((Rtc6>CBOEJg3oSGCx~S?_R>8 zQku+G7>vYs)3c@lIL6LzR;4~h=AdzWJy)^9MmmdJJIauj#J>s%B0;%u#r8x7BB=hP z_0AA_?!K6fL1VrC=e3X%WLU%I_y833J!(*L$H?5;)bTg%u}4Zx30Hi)WNtP;-vkx8 ziqQyuDwH;QH!d3S3X&OoEFFyzuZxztzMfc`)9adB_R%g2TjLZ3H|j4vTW?wHXlcyjcHh}e3n zC)Z{e2$l&16iUxW3rkH@hdyFCkgIJi3_q$k^NYfouBNSG4OT>ex`wRaWSY91X%grY5m6&>64zE^x>vFj*)36#ChG ze!mVCTXx8`Iu$Fu)rRxWeXEetEX2UhP5X+eWW%rUk4{BL0n<|w_Kc2&aorXdUyY+EkVgUYF8)9oTyYWi zHEm6EJvJpqzu!W{%BUd=lyVlIC^&SrpY2=l(NBzHcW0W!9=9AjPP}!u{IUGDsaH9C zqjZ8TIXH$PnNn)woV0let>7M9J`tY8iAq_^E#HgYK6xY4sVhg!+0&jFLrtZ{3->Q3 z@(s2sGBb)tBB_BL^Va;Z&fB!M;jH)cN!Ts@jwbP|sZ!=U>G7k0p5~5gkmB>!Tr(KskJz|dkMS;!BaD0uza)JvUxdg3siLaPe{| z7*1zGiD1|c)^x`86`X{rL3zyg|2PKEPH}ena{c6^`^GtRI&>_y*rBQK8Y6t);^|oV z?YXQ&W7;wn5f?IC# z)Tbc-L1{Uuh^ASIn1**%C2pm=Lbp=3K(r_V1YeGAkNP;iKNWU$lwI~9>roy$FmxMI z-fo*7Yd$P7>Vkcxzt*ze{`S61mn5Mab{4VBZpkb{HD~6GpVyFaj~Mq)(>)S8Oeec#(K9xbg z?@w69*ya>oW__%JNI;?D^T6m@MT zaQ$;mRag!{w8^qGqH6fDGn}~VGYJ@n=Z3F47QO}?C1AUgDpDQJ7_mqy)vlS;-?EZi zy5ng*{uINrjf0p)uD;&F3MjCeW$RLhR8%x|Vc2~SG?)sR@Q;Ly%hTSerTYcYg{Q}o zdavs`5Wu{O(WTOp@;gs)8Jkaw-hE}RGGJrJpfS9O3_635g zg*(e8kAedStx6M`=4e+u7mZ!Q|1e7|s6^P+4T`;5L-NRikf_A|4kWToSChmkirN?#N{QVz~5#Yclm$fb0 z3nr2GUwc^3rhf$mhr4u3E#SjbgUi1LnJ}}uRc9B)e|<4j7?hhVk;;=mr!mL1)hP`U z3~&F@ty0ZVZ%UG z;fS(b$bXdW4AaNLPQem^2~>zc%6nEYFI%KxI!xjG?36%H{S4HOMTnxO?A-(9}0DV+y^ckN4RvTzl1WSGiGfQd?R2bAifQ5hp{_ zha6N!)^;^S9Wbe1pH0BE?rMtZtF1BjMuC9@=@4p^0PrbWyi**+P}aa8Ch<-`7Ra;P z_l4nEkIFE!8Jv0x#^y@xoFK1gs_fk3fJU3&nU(9Zs6|2kn_z*SH~DR|L}acKFr&dE z*xD|h?@jK`)SB*A9n_Ez^WQ3*rrWhNdF@8Y@EDne>*6nkj*EjatP5Nn<6V3gqHevAUkKO?Fg)X_R3|~I|7cz4i85hy>4r;@pcA{S zY$XA^EW0-O_AS}#C{OGf;hsC@XVlO3^URBNi}HOS)4s70qL%8ATT&sT`-@8-b9!kto zx^I9-Za>dxxkq^ppntO{McyB-l6Ll{LP3=$oUI4(gKWC%ijUm!8i=iYHIe%WqoRp? zL=BoQp5DW-fVhPm`jRyB+etn6Gyy8$+g%}E%&ua7hZG3-DY=)y+4}e&R-k+fu5DD` zM*bu-YM#i0*@0FjT-4eqOpt2fuE2f(S^VVXnJSR2p>-OrqbzV0hw&0rWKG4|a@HWt z=En5>+ufdFM+c-_qRlZsYC+$(@4DEgcr&TSbn}`XxQmt@v_4%YrZuKO$HkNwEMhTUzYQ^rWCpKnDjvfMgYfpY!hwB~tDAi> z084=~<8ZV{fiY-=0{0lwZ{UHee2o*+Ua=sHo>s9P;Ke`;a8@ySr2+C

w(<3vV!& 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

TN=CFmBMJg+03izLzkQQ&GbJDvpw=@U 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 literal 0 HcmV?d00001 diff --git a/images/screenshots/zeplin_palette.webp b/images/screenshots/zeplin_palette.webp new file mode 100644 index 0000000000000000000000000000000000000000..30c16bc77a268bea58decbc3ab4b1044620e7aca GIT binary patch literal 389134 zcmZsCV{~Ofv-XK?+qSIZ-11 z*M6#3_u8s5Qc}>jPyj8-Z_1j=yz*~1PyiO55iM{u-4y$9q*8vIkSl&G5CZfhHf{D> z+#e8Rqx%8oc%2qP`G{@CaTS!{2Z<_H`GOb)Z*oWxbJ7Uq51SI|5S&T>DoqAWF0nRb zt7XWZi$H0ODpVh3F(@}Lj5N`rr5bly)rO+65mXvF$&`^1T#D#oiTJ4KI|Mp5{1j!* z5i|*;nvo`DNfp6d+Z3n8)P9TgpBh~kZG82MMagxmb5c^7wykQqhcV#ip6>`7lK8C* z&X6)r)Uf9xMy)GZbC4Pmn3(fuDoP#SY_*KRNlS}pX@9qP5N+VKPpxWM*{9zS;NaIc z8JRgGn3Y3ckt1!~!nLtHZtlo=jWrvUckh0n&8Src(GE>B&nafIGiK>{5NTQ-b zV#1(~PK7{hg5(It1BBY1XMI?z(_!k&`(;6wFBRQ|-q`)lTv$``uygu|%F2{+^kB|p zqqNYa5K$(R!G+T`FLfWdH=jP|wT>&kGRJVX>pwMxKkoiBkUdjPB{E2Hgu@^-1fCR6 z9UQy_eQ^sCe`JplH?k=1oXAgrbm9!Iu65t+@zck!p-<JBqoA@s>pA4_!a2lE82h}lPAWWnm9=S5-9 zhC^>=4}W)iiqd)!m#*zqnCCyBe{+B|?Gn15CsIo1yyYcIkgK8hA24`Zl)_G ztngg)9$8)P$R_;P#67HV#DPS=3thI1BL_e1KGC@W_ z%;DP4$N%;3HBfq~b$0y{0QrDPf3UX)WdN7XRuUItdATEU%WPXvsp{qpg(a69jLmm*_ z_3}H|5rY@Eb3YKj$smLvk9~x4I5pMJ=8@wt}5sLb6^@#Xjvc#lgM4!QD!ZdV+x{@ z1!4hby`jH@%bb!?PCN7$JqT~nmth0wj=z~=^U$is>K}Ws(BTz_u>ff)bXmvSZexkj zWbwY9MaIOZB5Uu`(^Nq*Nlg>1X}Y54I)VpsbhYADEag2z*~{W3UzJsxqXa^aNq6r= z^9P`1&H2Lz)W;+rq7ua2lg+q)PhQyb&*)QLSm;gCLXVQPPm)zIiC!2DWnaE89A?oC zWx^q-<#AMq=CtKYdaun`s>PCuZIE;d<#it+ti+bFaj?U$b|>V^M`vYe_kMxWX{cii z?m`HM7*!ePo2%_h2)(~xP$N{&HE<)|X_q*dnn9Z)HQ?X47DayWD$IIOiJceTB`=AO zRW3vPz%3jr{Lz!bE*yiBL0S}tLOJm&!7}r`Ckkg-jYRsBiCB$1>M;;Bw!S5WH-}7G zPJHL-%^!|PCL9%bw%!l=Ds&9&o?w4$`KdHC`xdQ792Heqz2noYpxhW4!mt+>jRw%vOVc13hP=3EEB{xt4>S{0-$(qCrd8b;*UYjkhf^fg}qK)Z`w z*NKwbE24|*>{`~Fvdxt$Z#mvwteQmNS+qkud%)o?;gk}SI6>S~iF|$c9`OWexy(Dg zv!m=<(9)jBJyuo=C~bT5>(6Df&W(9T@4w%(Uq4sfSnv!3F1L3Eb_U|bm`=~3-AV-y zHc7B1^1t)FAS%y{#toKli8yu08}q%eD$319zsZUYQ(0uO9e@M8iuzD;dXZ>P;cvGS zr^?^oT_<}P>3`&C1l1z&8g;6(WsPA4{58eCJO(j?4gZW7>qNSzhCT?OwOZF1jF>5F zWL9lFPj??CKDcoHYn&P)wQPWY{E37+0LkeqHVj0fpUxeflQ7v8Wn|^bX9fGfRlx&u z=rGWn8L~e5$;!SjVa2cer*!nP^ls___wHuQwh+rT=b`UH9@cJ~6_-=Wg+zKP=-B5j`XCzJVw? z$*;4`i|EX$F#(dDn@nGx>wdw4uDe#x(sd0C&Y52KW#k2umrkgyz$Ih?!+7yv(St~) z2S)*`>>*qbp=FjCmPXEK{H(tVeC6u&X%n~D@|7(daHSUq%AO-MAnw6b@~=qFR?NgJ7?c2k)8 zG~*J)6F$~*j56P)*!O-T#*=2cRYx3<^@;7}{iRv)c|p8Z_n_kk6!r7z1gFuyMjj0qQQCmFwYPBdDp4ybj4tYQTx8`){Nxf-v9vM#KZjrw-y`Z_WLlgg8fCm zB{=npg^Tg~s!6lM`(ui-sFtOmT%z2Fk6FDyw2Ru*qrWQCs+|k4jFb3id$szjq0@+? z)5z681$v;s; z+OPP@FVIQ_P8){z(R+HmO1N1SM$1wD7fbyByL=< zG@6$SK5Xun%483KER5i_#M>%hXBWi_^us+n$&7r`0(dF*FiEk~1FZ1n*`OX^houoh zrIUxGV^nA}H!(?^5w zNmPMpMoz<#Pi1h4tqxe6mRy#$7%Ic3N~JEbq`Xu`Cz(imRDN1sTU#5+&e9rZ$BPz* z)UC*Vtf6X-923A;MPOx3kbI_-GdWFqy*USGiQwr6(OL%AutZS!gLK*xAt$2rZ zSd%yamo*SwZyh-kz7~d+RlA0%7akiCw&>Wis`hV@R^!_`zwrPPyj^-bG@x5Y@U_j& z%G2g-vroIRSd;aan->+>?JYn|1Wzf#ehs>`zwWpvB{?fGZ1fDXtGSa7C?uMll_M<7 zdVkiM$M}5wgU=f1#cnrb($-(s@286<`15o4xO|!=ar!3Elh4z8WY=N!^vXsb3Gtf5 zfhm&C3YYZvp%diV;hjm-3x<*)-lLr4#n_)Q{wfHejKjD46m+o=s6$mTNx0bh|4&3MyEY{kWaWKicLQcDBR_-GXAR=QVu8U!4vR)d@u<6|<5CAjMa>MwzZ= z!Ltr1&xyxEF1=2ZL`Xp8B|iOpVih9Elyl-ES?&HQDni2Ju;tQMnE3J5@j&U}jstK3 zSD_b$ua-)OhkN;u#gxX}b<2)#6eMYXa6SzXz83hv1eb<8M{lz#wjBg;;+~r2C1NrE zyP@EDNmfw`c}cV&&8FTwCZ>uj4g66Dis;xvHNYIYec|nz*sSvSp+A@bw#~#qHQSsY z0+oTz;2nXy+9(7c>)B4Z`zkfKlRl`MIL!c97d;4EK-LrfBYg;VJed%<*ec?F%GbeNTpc;&RuEGbJ_~hozKSH&ux^C zj~maNbzwgn3l4&-;mVDAtjpu!%5QJC)q(}^X|8jbc#6AoB*L?+?*S|f7Ft;*9xV{8 z*+>PPEjd{99tD`bO_^eJr;Pm{{do6pen@FHR3`74jdJe7?=n1_R6BwFgON&4pDzrE zQ*X4-?6irMrYy&K(|kB@qwZhVpcBVHPNP%Lh!b1@i^(BH&{pj}D_EQqo$@daV zn5mdG6u>ILHogJb2pW6= zrIOr5ZA}Ud-(Cs&35e|7jaO&IR2PZlfBasT^%V9zb^XAI#p9^>2w$I3gzzn0&+P?w zle=PhDhJ=DbvSzXODi(fdAfCqa2o`pPh0Wj7H}7H?bqBKssq-dbZ2V){CvN3iNuUp zLvXA=-Kl(Ue#UYf37XpdH1e2!6Fe<&wX6|TRX$TXEq!?ES0y3_D;i*oaK!7&k8}*4 z7sU+{S=fK}LjU0@-#&iFfSR!D4x`oGjoTWqecN5lsh}9q4$5Qc`#k$X5pLcee^G)f zJO|voX4rQ-*lqAwq(E&hT~Fd)l!#*ewksrPP3a6v(!cCA9)l8$C^?Bl$qHz5@L#N+~Yd_-Dyo_2g!cv5|4R^Hs}XB0G&zduP3P#6m50nz&9 z6k{8JZCewWw)M-kb!s)u$o0!zu;4MxIG6*vGWyDz$=4)n?QEt-&NJ2oXm8{crUm7f z<>0WQ$mR9n6Nb<5J3s1oE~aYFn}0TF_P;-AFcbf*HPSLz-PQQ+PNYRZv19Q=V#NIp zvohN`aBV(gbzbkL|Gf95E{~6ap|++%qr9zMxDdsw@L-znRQ*1cKESmrIfLRE&sWUc z!4a)9b|MaTgn%bJqu_Agen+@)HZPauUuFyI=w$0;r$1$-YiQ`aS?3pGOUzU31~0ov z#6?BLo%*2~1KAGvILNL(0m4})*ToI zZnzuqTpo35fVs}xQzfcc}FSC;HnDT z-@cCA6P#crFFS}8FQ$tE;3`yIqEJgoNnuH0sOW$4d~bYj{CE44MDL~gA4i_k(%LXA z4$ig<4h-gq6{ptIqEjb%4>_C#bGKWmCL>1H?^xrlcb#`cB)ofb(=Ipuuo~{@;*#%GpI#?# zq2IDPRp6Q$Eq8X6aC5|aJY&#=k*Jpb11is>m0EM4Ph$teQgLib)8!|`@6O}J{{$&w z{Uq3MBjQUV3JwcbG&AKA{7l>GzDT@bvt1hLpyhc{)ACy=u}$x)aeA373SxnNcuJjA zY*LgIjsha(FUMD5CbZq=E=Z>3qD!QI&lIIz5?D_J?qFX_8NBg{?HLIX<)O=DRVkYi zI3NV*#zEyL(y;X;5?xsBE%KOlBc}+4O#0hjC?L21%x$j++JAJ#Oyj6>?}@;MlwC?W z*C2caiUaMfS9EQCZ_Ef*|AFW6Uj*$p$J*?7do3m6cR?VM?6#jz7vlm_QgIei%N;&B zwT{51>)}6tD(C#FEJo`WSK=ms&2Oy->M%^w%?g{EFWUbxXZSysasz=^ALb&Pz$?$r zrW|Cu%?kV4#7>lg|Guh~c6)*|@#m|kZ2R17`#hoV+C}zMNtBc8!_no_%-~{Z$*e6k zU6!o1K<@7wc@w+-yYYUYcI!M;AN7%z!~P%+1~0=wf#$rsF2{owE>86qc_yq8Mp7di zZO9d54pBXCKiPP z-QFoCmbVPb$rQ>-V3amRjUxz@{_?@49~D9=6GJ&U^N@x21)9BTOaiQH{#M2%nXjEE zB~_p-yN$Jf0THg+dt|6<`P|Is^Guc=A#M4pP{IB)e6_ zK!U8m7!>*3n;9*mAqVH5?cF?uTu8sF14P(wMik$JCiR%MH>kx^4q|C%H-Pp=AMHX0hLm0mQ#BKBE>#qXvOQXPv`=&M5V?xr$g8Q_oUVL{++l==FBNkR8N zY@D+HN7k_u_XuT9rSV&i!K_>F<1TA4RNg);pUyfzKHGb8v(Y-&RMMR@+7;!;C9kf+ z^>@-mmMR4}crvRAd)=Bc&m?GvwEkrWr3`Rc*ND92L~#H_dRZl)(SY1{U`lBLxl!$r1n}d6wbyIQr+R@Iu8itH&YitP57&zUcH#mYe`S*=5Ch3$R z>E>q$y;@)UG6}h|loHy-kAS}&poWcqQ<#6~v#_WFa9CVMoI&OoY z@iUx7I)zat<%g{>A-LU&@vMf1M79pGg@ev1SXa3{kNsu__CK2Xfd2KrWdAQy;_Wwm zfgn)d4NLuvp#EXvM2o7Fgu;q;{g#;AVHM%3&q69wNqUsvR1|TGfoOLS5gWyx@ur8J zcfq6Hdc1=DN+OfJM~l58(0C^26tgmP$ zq^&o3_x~}8T*{Bl7?ke=2*TABC@Lyku1c|WdEhyTwwwPtJcQk4y`kEn^4jl#jUQrnHzq=5BDAlyvo9+aHmlRrU8WNxurGD7d@1y*_~lrkxl zdJ}iU&YZYWs9<};FruQA=sMPU!1?4YsdsZE)<#NN>-mol5QyyNhE@pyoFnUJ+{MqI zljnm47aY5~kQ@wIwsQHCeSDSYXZ(4svH9N~&KbFcF!WAg1IOk@fYDl z8kuH|e??(>#+E>EOgGiCFxEsIwiNS3&`HYUmj|>*T6Xpe@mfqIBtWzTx+Gj;owIOZ zNq=5wAE30^G4jE(6L|OK+nzNS8krZO?3Aemh91gHCyu{Rd`jsl{mM7Vjz%j-jma~M z@;sey1}pTPpNrtHAfL2N_F7Dobn9ev>i^t)i|h zq+3I03=QNr%Bm24+~4E0lydIK8B<2r$y$e`ehQZ!iKn{N&3`|Yyh{E)SY4zaoUA@i zaUTox)-5rK^R!RFQvoI*Uy6_A*-=N*=$B`$ugf#X7%Hi*2R*DWlS#87%_PKEK~Ue{ znmC4JUBD~^1SD`xV1AANPUE6X;#_tllsKUL^2qTs&mrH@`Vy=AbGl(DK;1n;+zENf z8Vfa>bl+@|6oc*Vlgu zsaSxV05eF}&JY}6Kr7CIqA@@MoGc6qtNyxY9Fcidg9|_bkbr($Y2pH`Lh*9rkBW06 z=M=BOSj7XsNll23t}VmcX*x^=yHz7kVMDPO1Dw%7x+Qjtj8wEkIU!_JfLn+$k5mKL zAUrtnztjUbA!1nnAR`tA#3=8KDCoP=k_QVkNVV(YLG7)Feh3GtQFihk9! ziWB%yze=EJf0lG+_eZTv5KyGm(`TV`g;fG@i^Gh;f-K)uRs39l0QHLY1ICT&3=>KE z(mt9ox|7^Z$qp>ZLiUo#R^e1%$Q~}pKx%NFR&2jLa7#ip&WECb~85Xg0EYldc0VYQW7QlTHsfVQ{JpNe<;r zZi(-mLZdvv%lpv`ZajHHU9GyU|K}UP;cs;jbkbK09Q?3B-e~mFCu#&qKi&hP2!3rC zM4CB5@{ekVO$q=@Z)VO#@4_60<=tjrrO{h`V4`;f2kXiMI;MqOs$2EXi_%s^vI#su zP{S}O465awo=pVqpBFLKIe+N;My#_gx9X$f)Z&7Ux^S2x2wQ1qO08Ru84mp*nQKh& z3M(#I*b=qTZGFYyTSPIoc_-fpfe=yX){J7}btQot7$%LpIk}F%Sv?W|Fw+YCcw~m$ zdnbh9e4EG$JN?{Kzsq~L2UR^#KuX@q;Poz3nc<0()HRZ5C6HI<)AVR!!QkMzrXD6!6*r0 zC!=7Z>LR6g$;PA`fieTtPj9Lt@D#8{ohqFmae{epv2!(^TJ^ahabaY7QI2;byS~@# zwl8{y$CBJz=pjU??{wTh%PT0oM-7AdUvo-Hp-zp0X`Hh0&mF|>p)E=lBRXY$jTm(& zm!{dRbV@zgUj!?}b55w5_FQ|Ru2TW5-}3fg>HD# zi{g%Y)}s-L%{CpkiX0fvLAZ2;5swdBQ$Z9ket};9@4XedeHlb7W|qVBgsCf?>~iMp z7J9o9yH7fH9wZDcAkqvyUBUuSew%`VlKg%`^EatBiN8v4-IAzcrFGHqxuxw4E!th} zI%1WQyIAiu6o)tZg;6DT$q{5_yzwnAlF{aBlcrK0E-0eD&uZ!jk8Vdr@mkfBshLJL zBkjsckf=^Mwq3JExjSh$O#pzE22ZV8ysCb3ULVi-y+q?4W_`0wA&C2o4^04o+F-`fecS=H~(=gv_efd&*QG@32H&?`NF zJcmvX@80ix|3HXNU}ga>?C3iKcj96Q%9chNE#Bt{ zye#0mXpiXMq-&_keh%MCMjuF1pex2O9J1V~kt-~ksfF4>8O_~28S;V>!_d?V?9PwM z6zERV`dq&8A)Wpy`D@0$82r*t%wSUUYa54s%EKDlIFVhvMIH`Q+p z0)}L!jk78!w{Jy-BowQi1OoZ_w}v6E;0_Mn4SZL8MFfi@DaM}^DBa+XLv*K&?Kh*j zk_PX>Ap#CU`5^=W%&mE-K`*1!^lpIiwjv3!ZrKJ(?nVEt7kBo>#A8&T-HisewI+k1 zsFbppTnyh4#`)h{hm6~A>@Cyw5WEwJbyNk)q%X^w6ml7U6h$lprf)DX>4=r{f?;Yq zDTK$yl{1TsS`$7#^_=Q=sTk?uI#0i=Z@^u-Ll#S&q{bdSS;iVeqC}i4& zLB}N31Pf1*}_5Y$CieL_);8kRw7mu=m_sbQ#y|1d9H*Azq+!jI>M0WQ z;sd9cD7_qpw(u3O(blQdMnKz^D$i~pHSP^;S3}r>ChdHqvz`twbIhMkguQ&5o1@EW zTEbAU+sN~eLJM<4uw)y8{}p3z{n3SJmu5k%xp*dGX;Zto=gpbB-{8=sY7yKtn2&Et z#mg+8KYQVYUs7F-#()yi7Qr200BIPxI?P_FDG@N0y02JuHVr|B)6?Rn;Z`@(p!wzu zd5TosWWhH>Gd3q<;}G{_&xq)U%MfU-VC2xV}3tRQ$6G z_$?QG{h*Myx0I3h+KKiS1)J@grPF_IJ}TwatNHi2!57aBT%*b6ym>AThq3Llk6epLh*J^6UNf2b_^2 z1H)SHO6hqSl`gNjN8iwN1#m#0yvVFH14V8({JrvSnka`Vc~Gg?s$PBF5p>#=NtZRC zsK&hDX>H2)_w9#c0&~9>N{4UWEIAzs)-3VZW3V; zg99j{j0YNKu0bPZ^lAk+J_M3MUv=qz_QuL5ftzC@fijMX`=W|D{}EyurgD(+k5vAN zhgg7d=}h~MT$HWy40gjVD`6RLzjq#*6H;F`T6par)fFhzvxEj#3hRnA27u@!l+?Hu z=~0RU99%aX;Hb1U_D{r1qF5~;2;_XR%QfMB2@4S27IA0!y%x>#S@;Fl{rWnE2atw6 zt4_aK2S(F;bmA-GJb3+pQj;MykIU9j(w4Eh7Vkhj(;gdK>-Af z7igOp_ylQr8FtYH(1ef>bKgm&-F#9+#allcp7!{hg8%dmu@+GPg^X`<{@MZ_W7GKy zKqcv4v6tM)=wK%w)CU$=5vvtEf)BXxG4_v1TOx*rT7V6VI!L!!OOhf`{K4SFa%*1B zp`oF}21{y0O`SU@y!f>WG~@sP)NGIbVtxA>Z?(8p3%o{)z^?NU4qP)lv(1q2yq?L4kGI#qpLU=D+B+h)5#g&becQKm zqIL(iP0cP~O>DJ{H%B-g*J8Y8Jp6P9<9m1S#)=M1EaObiKSOD8EPlI-(99GEd6>v~ z-@;E=ScxK*UY41K!Kn_B3WNYcAyAT7W3Ca}2FJh^`TJrP;wb0(0YPy$xH@4Ls&v(n z6R0RD7$?xZ%;j>d!kRC9*5K>j5;cSO_R0PqbD}e`)4-$N?7sP_l zP17HiC1mw|t%Q9gnhZk+E1OO&7h2gTOoQLAmu9HTmY#ZX3QV$K`&K8C(<<(?jw%Z8 zr}CM3i-}apN8E$g2GGqfhkCPSu=PX%FseZ7l#`YGnakI(5l*}U3mO(7C;AKK0Sc6z zfx0XY&0b*dvvq1=gqy2-qh@M)+gkF!+QKY$%cLP62})uI&zZWg0Mf1wW)~WNEyT> zMP%w`!BWggo^EWr;%M4=8w08KkOw^qQkbQSZArjwJ~hQAi~gp zcLiR@YoU0@MEu@%#uv?5_m2G{mWODTxRz~+)RbRDQZW?e_7BrHdJrLIbOx`nr+Dne z9;wPNR*8>KVg)aSS!jHSVWcswg-*KH)Li|R)2iwAZ}F?B24EVWu@_PDl_c4V>R3sPSL{JAW4 z!7W2vhf$15_t-5FZa3l6^%qtGUxWqBN>0Y-*ga1?tW+3*@CTQ ze#!}Y5^t#6%oBQ~6~fWa*xCGS#2__YVewK5KsPxBK{4GOwKjy1f~w|b*_`qq9<}`^ zSi*1dQmqkDaG+=!-JqHZiA@sctQln{ z5b#PgyRJs2E?s+%0ocpG?=PF*<$LXw-yXrwZ`C1#-ygC!ePal+is5F(>xsghSK8k% zL_(dlSq^}*;{W6B!gf{tmt87Z0b-8$`4ZTZc{Ol(ZEa@nEnP5jfj;ns`U zhdj1W<|M_K8h=Lo6IW?aH;Cvga(;cf!Y^y_GyFJO*8CT*6poG{0Ajkh+nYCB3~4~B#uk<5toh~H)Y9`QjrAPb=4n6@4lpu z-Omeck{C8O8*BkjI#VdREa)k;?=AGEhGP_e1m#Qpyv+&(jNs(TUe&QOhYx3c&(gJC z0(_b0KDctY$Jz1QroM)_$QhAxpkB*mO?i&71(@cnt=&wC^dy_B`=Y@6S-EU5w?_rg zwnX2I)}IB_xl1Y*>olf!)x0kj9h27zNURBl^*N*-$pszre4_#@Lprk1efkbd0}udv zcU%3B0`HrITg|$kEnbDtQFk0u$jKCKUFqf0X|R~0$bjeA&hKN)+ljR7xtQ&4%RG!X z@V$Ah*Wfm-knAKMv3`?WAfN4Q()-@v?mDBm&SbBX|5K|Gz*!FzqtCm(?b}HzbTb9 zuET<9k4-}^sa2XdZ}nHp z{+$J7|LxezZlv|J>BZ^b)uv^f!%9Vovb&8seTILO{I+DZz(mG;OMtdhXg406=gM{2 zWEK2<5K0f1sse2dwn2qMiePlp<*PN|_V4!BndZ~PkY*HSXN0A0z3Z%Bx=Ru|6*A=M zhFEO%?L?HdrS<@yZ$?C9ulkszHyd#${}YR!fG8whG}R z763?0_uClY2%KrY-vlc=?vW}7TbhP({pv(5ue;<4YVGL~q0%VLq*-o}N}Veu8tyH=WhrOCJ%et|p}dB#ae!INuy>-BVbWX{JsM$K4r zuZIoTD{e&q82jW3m@CW(KUklLxdcPAR!U0DPyl! zG|R|gtYaO$ZI|GR=8GS{sj2y!eb!ZZkmj~F(!~xx>qEBD^f2-BQje@ld$+^gjjQbW zRd$`t-NSdXl}?>V8%y99@` z$1z9^g@<9lxlcOA$Rdo+Lczt(o&gpW;k=3IfYyi;CBWnkrAsFD>0ddNh``rM`Bh0- zyQizeEFRZB;o*^Cy*Ldv(nwXhG!cV>w6J$qqvNhqVZhNrdT+RY)sHUv(`13 zE0IGYg6Lo)Mk0FOByVcUj8mdCS4K@z?ps`{S^@y%elLCq>)8*tM{szbe6rh&o2hN7 zW${zR-~duGn3cqiX;O@-w538Pu1-#b+R=%k4OLh(L+~8l4rQ!;3M|o{ZDiuI95vgX z6uK0X3?|lrUrGqT(++>FTW|(z=;*!u`;xP=_u-{(y)1ZVIKB`Wc!GXh>bDe6gr`S+ zywe~OH@u%$ROxrE6oiKynYw`g!%v)3bR?}u9xe=^alcqUCh-t#`t;SL$vG` zwObG-G~*iNz*@8rox{DN)!0sY9Hr!;_#u{xZIwS)P+%vHcFPNvtp9^pF(j>r4jF5S zKDJF#jG)9D(?TP)Rf>|KrjwtMdH*F;Q?o&C`8ybyjPvRYx;VypH5kBZ#G_Fm(5mxB z{(^vvJ4E*{KAv#b3E9Y5y((b)_&apw9ME}C_pdi*37p}A&w3D{KE9w~f?;Hzx{{!P zYu=EO#0)5Y`7n7<_}u2~K4Ac@T-$5^a3*FbYp;S4=hf00-xtgyapKo(a$l4yedTa* zuC|xYHA(u&^Q7?cFNXCnX=To@1xNICR-#D5Tat9l|Rj2@EV{@R?Mq z#ZoWyWq-SXfy1Xq=cL`@oIel4tM8DNgtEA$+8;wSmPS83*^AcM*tBalQiQKI-dJjI z5&9G00YOkoFao-wq?*M1W?P<^7b7++RfsfWU|Zp@^WTZW!M7;OeqQVaqB}OUGwR)iF0w&7)WZ4KW1j zy)c7Y{iVAEIhd!v@%r{Oe}V?>VN4U@>#gM%*4OfKt4ARKiPVLWH-wW>%sE%GIPtOH zcw=4WnJwu@xWa1(MVkyZY_~MD!?n9~z?jn0^aqjY=3>yMg&W_KcoE!jj0iTpPF}+| z0+5;vlFIXPw#O`MLdJa4PE7=|U{pEvi-T4HFzXd{O?;mXu&o1GU=S``8kKgE?2(Q4Wm;solGQfv$7Xsj648r4%GtOS4U)(D8~b)UOkPQD}LSMA zglz3fuoM;P8q}M}zuaXv|2F4`lQ(zhLhuAw8O>F5o0SNg}*+sto}_-ySJUYI#b`Wxg9FZscd65953j6D=gOX)GNV z^QS|f3)$0XkYE39k3j{4EtugEkZ_t3FkyjL|D@pu(znXZn~v9be;+!u78ANYC+XDL7I7w;g1a~?OXUNLUak=|GGEGtRIlxg^iKF7j!BS|~EgqgE?>D6{QQLJF z#W$D+SZhKBtbc1j3uCj}aDL+UNBL=K!4gU4xW`4IC`;s+5R1&$tIIl-YlB%2hu`Ve zn`2Q9VYM>X!#x%QCoIoXI$^~dV(|5v)r3^BX>z}UO}yc#P`Baj95e}!;~7lALkM#! zQ{a_D8yu9eR;$(ASSPIXkhwfpES-1Oqg?1{8nh}I|Jw0FVM`^)Xk3Tg>n=i=8iPAEo6cz`` zX0Azj^s6U)Ga`0&rFdtl zMrLa&S+iAIQT3Hn9r=;*9iFl02YRwvKHX$MoMPtLh+4!?wHr*K4qq#{%<-^hb|J4I zqGKQXi+LSM%fa7dyt?0*qNt=nPJ*aDRdqLiPCTy%e-0+*BZWOp+006z3F9}vXxPcd z&Kv(ST*|^GY8BoX^WaBUWh!3l!2UYN#8dmJmRDJ|B`b0zm93CILI7E7fhAA%2x_Vb zjmJ#%fFvFpHc(0fWU-VePLFGY~`;p{5X=!<}3EWeG z2J2mst*eqeQQXZx!lJ9NY8}k0HxWPrq@84!gc}8k$;)fBg8yF1i4J>s{;QtBq~M8L ze6BqX^WxM`7?$0VVD7g-K)9~3P6w=nc`+?K#veRyAx;-%>iCWE;O&s!tlc7mrtIB3 z`ZeyiGbvCP6K+sS;t>eecTx?hnnf8#Sp?OkFx2u2kmjixw{~)g z*?qc3Z1ORL*Z(4ZUQcbkFcM``} z`gsyxjXLZ8F&vPrBlr&9#t&&iwo8pm=-*Xg+ z+U=Gcx|Ea~@1jOdLbt*6#_$!2a%bv*?wrYL;a%caL#xx6UPWsQ?l}0HoB8hR|2U8R zKUKTSr8|8Y^sho`v*3&1wnmWvz!p`7>D8e5M&xq2ty*mIoA4{r2;<1ufFo-b52_=+ zRqFuW7S>UE)>I}pT&a97$7L>TGfH|*U)G@c+SApk*Y#)klDiS5WxuDq@?Ol4As=Hc zOz!SZ4^U@4b~q0@Kk;%0kzb1sF4mBFfe5p~u17tG@Q8l&{wDK62XFQS9!O4u2-;bg>rG1T^JQPn#uch;gK<3?&OVgs2)6P>&h005Qc zq|~B)#|NdU1r1ASN{K1VgTz#bxO^T;R3}2*1^NLA%tKspNx{TY2@tzuoz4h?y;@NAxEe?_}dn!Izhi#9p&~E)OFR;EqCCoRe0n` z5;5ChKR2ieAkg@DBJx|4ZFgSio<-Q^VI4^ihQzg6&O;>1p`a0ES%u-y*R&_b;O|&5 zj5$!UetdHkSxj+-|2cbb$-9aEi^BH$y0}pf^i%yvB{AGHzV#+L<;JTY4|yVB##^Fmr`K@HwUpIx!Q2U)y!zJ%H%MC*KCdVDE;4CfRPS zM%futq9lp|IpXyK{kgX+i*)BdE;$=W#AetK(om8>BPm&Z?ptEf>j`lsg^rERv81J8 zyAa<0Jo%1Pk3V0kdr(bEPcQG;D4&!u&_VR?H#}ta9#wMraIE9jswX=?kpVJ9;@_x5 zapv|4kU{-9_c|3MnXjhlGxQ@dRGY8+eba~7muR5894^i~6|taoz(@hqygq4AL>Io4(x8cRZsy3@;h7o| zfE7uvr$5KQ-f-QwB>A++Dj5%dbAQJu$%vHckqBo6$A)iUWoOQvFu}F1D9U;a?3y01 z`P2OV#L#s7aO1hs#Na~nMu6Lar3`}=;!2#B@6Z6cacaQ3)TSa;C@syOf+Knj-UG_M zBNm<|Q53|5umKvv1iHRG7@q6%AT);b%)B(q&wVL&)^F}I$h?*Fl24`~{||CNjlU!m z6e+o+L8a=8;nUy-e#%RUKno1mZ^%>-99Pb;fr2sUSjdx>VFLMAX{tMQa31yrDouLX*bl@@mA zaB#yRrL-@K43B~hh-hV@K6JK#@GW3AVyp64vg#n68Ley_4Upb3<>)9tC;kkj0xGlB zx#{zY4wg9~fb4-qC`7EV zDVjyfZSrlgu5Y^(DtdR@c4e++rE-f*(Ad`s?>^y|SbP0Qh@`=^*8)Sr>P?@{5RTa2Rwi*&r zCJZoiFFcNO0lD}#Lr-zIpkJ$m0owMM;cp_R zAlMrSHlFDs%;2cD_2eTbU^%At(4zO@$7kBuu16wm8o^rY(1OrHuKC`cffgV>SeBG=ayiA zRZ`v4&EpS}7EcfZ!N?dlLWCh4q(!)z`tn1>abJ^xduCz9(7JKAi7!iE4#09q`YRiR zGP_?WH9gmzK;$Gks4YTGJwFy-CTrhgb!$#;DJ?`-P4Vzrqlj*n4))N)*Fi-%qnqTT zf-bKg2DjzvN3QkVQB&x(PLGUJcphGn&U0@N&1#t6t*n5!0Wd`5>wP+J0Hminc7W}y zU`dF<5C!Cf21MAc^w!XOqOm-6wlbDB-d@vP|I2Y&LYTpKXU1hKwj=!($A2HO4lU5X zU^Wax=@yEGN=;upH6Mb&BBishTZ}GSa$D0LyM|sLdTr8U>nXfIwCPqSU-K1e3a3@- zW-X7Mp>yAn#%Gq}52z_ZujqSVb*!|)t`o-;}Q>Y9P^2c9Oh{M zU@HNg&mj(T)Y!5%jR-Zy6Vfouvr-C1f}ojaqfle4Qd;|nIv#od=+uiCzkQ*{*sD|y zuN4a2a%t&dRP9UU!fU-Eb`n=fYxj!SHN^oD8CwA(hZofMHPc6|r<7*CZc`_+Y00(m zwNN>HrF_=4zH?Y1yHsz32RQxU2OK@Z2dY-$5IL5GFWEFC0MN~Dp4Ay*S&Y?SSyjaL zeB~@pCoSd<=yBZX8R~4&=6c4&VuTufkmbF&%q7n9ZdzW+?~ASZ5Op)O@+C+hhmss7 zwDyGwIEIz1OPw}==u%Z*#C4mn$-qxJ07MM$KUiHFD!0vQY`xrfAo@|`{?D2+S;T$L zYi;{7xF!}iO4sBS=|rjLA^NV)NRpr)$PtuS-uv+*?i5hJKOmcjh`X{OTYxmxgy2hC zHDq5KjQ0^^Q0y9BJb>k(bd0*{2lj}YN^IVr5tQhBYArA&+z^p~6UZX~3iQt)jAGQK z>J=a=iG+De!r&gc|<)1EjQW6yG>0P!C z6?h5}W$^WKQYr%f-Pto(k_fSy!f<*o>+=Ah3Y#Ce_5)$(5e8+#f;^&!7qhb3bV)r4 zTZO0%U6^InCCbpfN@i36n0{)q4m>HJ&AGF2T~i`~({wcpIXamY$A5m5$TYK1>UpI<7?*0pU4 zZ=q+YN!7Q03IKpreRFVbD9&HiF7LvFc0FAR?IIJ3d#Tg+a34oWJll?Vf#RJZM9gU>89X1K#R7Q5oX{ z05HZjvkzxfOX*&8+XY=}XOwlMb-8t0&`wrj0caC4Meei=`y^78)c8RUks0jc<{<0=DL?3Q;43`fG?N^9F2kjW7FsPt- zslZmOJ$O;8UAT@Yypst2utIu!ZUMjqg_y(#(Py4{=9w*4V1IllRuA^b;Q&%)T^i>c z!d`1kP->qyCir#6>AYuh@2KuLHr)?W#{X4SeKGs@f2j&3?e3!15S)Yy1ueJ$rlzc&HP0M&&uq zCXo0$0ErkfvF&*BvH0%tv-z&SLi85JM5}OH>C764A@^t66mHH>;nuF3yR=z-IE2UQ zv~D&*C-K`q8!_lKY)7QU10**pdpSI@prfev>G|+ZMmUzm3v+(53Zgy)w3jkns|DhOOeC#IxfGpii zsCAQFd#hQaop3tW-T(l7GS?r8+vz{TT9C*aFsEnQy6*$P5@ZVqO;_-vrwlv5_H%+5 z&sOydeew1pgxjg@I)w|6$MbhBx-Qu4UB~B`O7x|=v}GB7NBdG2en|XAZ>tgrmfYKi z(DO~`-v(((;0;p%WS!<6rr{_5+5Wu`0)Q;T-+MxErvw06&td4%3fl}BU+=Q+cin>} z<{zn{5iPJ1J#BB}`GAy#^x6pXVd4goK}~kNZDKXVUg0+K%yL;607%!*xa+sUtB4Ru z5}65YORRVS??(zSb%LFu&XqI`*BX zUI+kaR5d5LCS3_)I4@T{JKnzofKfi2(KB``UNJkl1H)+ryQI)<8e&e};x5`u1zhxX zuoJ+OCjz*y%__Wz8Frsw3pa!AlzI*?qK^v{M@dKLxA*A)Qty%u2~8A_NRg(Cb{#qs zRVh~hI5fuK4dE7iF`XGe@{Ta1ShZ>)QY0t90^2XK=G}S|R9b>jfxXpK_;Ef~ef?FFX2{$6O!zHR?gr?M)z_XBM7yD2~ zDLD>ESr78BE9@i$Nv(c0_M-qmKALEyY&8u+aAyWDY?V{#MElGGJb>&27X?^O{qmjT zuLA&$n$I=*(x&WriiFm_7Ad&1nHa`bJNiut6MSp9A-Xx`DUs4RL)q_hKU>X;$2+Jn z(AF`=UJU@KJl&zkHZc&3G=pv9N7+;#!3Kv#a!A2TeM16TsxVa=7|rt{-tw|S;h)6& zshWlOZZ;L;h?JQV0Lb-zo=iEkE&^(7o7jycPD!?(ZDB<#LMPkB!VB5;G2tg##cogl zX;Zu{il79v?WEy@;GV1DlChZM*f>zB^YJM~~U(HXoZN^eVOe^8BH*6{9}vl z7?X>)2~2Oe@RpRe`CGS1X-6nDExhq~OB#Sx^3u4UHW&z;V4uq^o;%2&9DFc8W)4?_#@4wv^ zJBeZh!KlO_rRSWgn?mii0PK)Q94p(jy;~+=%6=UHT$e<^b3?GHr4*c1itszhH=fU4 zr~}=9mrs_i#pb_}OApWsV5dTiL^a`w;$17<%2xs9lb-OC#d5?8=mz;BdcTL)EDa#- zY^woKTm}oz9sz)DL5W5+Cze~18URo&qjO>@13-~&YDB{0&5aK4BGaT=0im%PJJ{bUD-?%2NELzmh4$x>N(S06XI1Rpl6qsXbz2L0{=8I8d znY_(xe37SGC-5W@>KS^7!a($?gB>E6drh;V3nOC{Uth-On&7nTZFoLe=a2Ids?AU< z4APNpY^1bnbQ~u`ilgHKK;sWN!XRtZX<(|>}=+81X zV%sSI5O@}q`Qk%QRg1;;iK|Gbz7=SUP@=cmIbDV)q83)=%BDvt%L4##$cL~^aaQp2 zb3vk~dXUA-=LeNNir7gMgJaK`Hj8;P;?Vb;5*@mG?o3$eO?@p_kc+};dA9{fk%jhxv7-2Vw zqYQ;nz{|6408IApeQ?;de?}_h{-$cVXP_IW^zntbtP7QV6gq7vhT`##lXU1iF;$7^ z6IM>A#C;7U-w#dQ9Ah&Oe)jf23A;3als9rfCl3}lM5_q?NmOOTe$$R}?;;5jQJS$p zl?(?9&WV6d3s{vb{c`#|Bc?j=j%c}RG==aPR+AC^)HJwN?umcU z0=R+v2BFxXboK>UB9zks0;Ckr>vV6H_aObOmV~YE7p(XKK&RVD@x74Hiw=H?iB|LF zmw8@v&3}hsW;tD|L{J~m{zbJkqPGo6j{iS^+&lOHok2&~@dc4=8gjA3o>Y-;^6@;S zj{7K}TZJ?T7jk?}L`*?`gE=|LE1veK3;`a(Z-}w{^A9WK;ov?I-0yvFe>;Rt2-l)X zUY6JpBHbiP)_h$QO&-SFAG>&qK)yML7_SjDDNwa?B$=`rYvGRFWy!$q`Nme6SoWE6XJSfE#$m z@3W7?)FSEMit#I0sfz6`0KooF%0#PqvrkA?^TNhv1-~6(eZ&YCLDP^Ui(yI2);}AK zf0mCbJq|mwuaePYINUs{IKnZ_Q8`2Y%IjkD5=~W7*Y9^2I)qsR_^~Bn+uyM3_Iw>| zX94mmMk0^qxGCPnJNC_Tc#)$ka(uOblg=C! za0+4)Ua}~`dqhCLi-z$ft|@t~R?AL-S`~?-!forxcsLya zQQz=f;JOANxknXP(hY_k{4!jA<2ig2+Vx0Y^L>wJYyq_Th%qiMX~Al3zknvkzpp#B zuP&k=wn&?Ht zJ#b2ZgUh0C!D{9IB~PB93lV{sZv?4P?tX9+U#2LzQVwBg|2j&56@P zi{8nUHrEqy0)R^Cwof2tl_E0@3XqGUO+3P0E^f=+&=-;dI8Zh#C1<%2-Pf$2TBg)( zLNs*eulbCx<$1|#{`@5!60@v1N_}MgFqz*KL;RKRA>4U_&P2N4DJ($$meSn`<~~P7 zs<^=y@dr9D5;}jWT*P-iUm-8?WM!uS58qus%bhgnTtrYNqCs|)6NnH^RJjEU(bkG% z<0KJDmJ7UdTGkqamT#hn#3cBe}Xky5j&bQA)n@W#S z&Dx!NoC1h8BCv6gd5r)-`zNGnM$|NxLw}LJ(%w32>Q9qF&HwxONW*T2QXd-Cl-ZO9AhP5E49KL zRe@-#Y621B3_>-f+Q4?7k&|WM974i2(}i%&5}3{rQ;T!PlPv#rYccR zm|*fT<@OF|FSV)&@r)rmmme7vn-L`d;C*@beZ(kL(y~=9)&vm&=xSTGrKT9CX_;f& z{GL^HW;`wEEJ}<_{WOnh@nsT55|L3c*5eU-O!C%FM%jn@7LQvl#-a=`8UWmuwOVM_Ebm|w=>uld9Y zWK#34KbKw~nFeV7c#E&{cC=3^PS`Cn4<3S2H@|?fi zL7+w1)Vw@Jj3x@;!~npH-{ACB^yAh|?jMPZkog;hyGL9)I6&`UhVZq zHL8j3=`^YH+8_?|ZnZ=-uB&hI(l={M$6sjAy*GPk@I$yJ+toIzISG6O>*%L(?vWwk zL3R13nI4qMb;JEDzfx&q`4!Ruyb)*z0(^8*U)6d3*C7sLKV7ZjGjr&REkdXe8xW%$ zbrj?OP`RiO7ASmAmQcN^zvgt5ybaQy>HE z))(%yzT1{E=-I=%b-u6?6IA>OZv_Ans7gECKO?qsL?yHid>m`L1j|bmA$CY?4$68| zUW8*Rv6?C~>%90#vqpA0@kGfN!rrHh@vp%0Nx1kIYo?8lKY6-bWa zmqgz2?_0{_83%4#ZcE?~`_rS3B#gjGm%)xA(sEWX1Dq)5DW#Dwq>JqaEO!@~Wn~;x z0I&O9N#Y+?MS)fjw4+(x^j=yx6QB^ad)^o0)s4g`sWUh+hNAO#jT<@01W zjoAnvhuPG_J&Aqx1s~-#r+RgomDlNg?i+p~nR|5k8=K|W_g{u(diUM=*08f;@KxCb zH>>8|1lN3iL;<9d0CLdSprZu8#N7n>f;vR+?#1a?IYXD{RE$Yd|ACz-vj9i~|68CifV0Vb`4e1(GZ&$&(8J@Zhq`aTWmB z@cwPk3d4r3Z-Qn2zYpV^h5|A|Ar4Mu*p899=3j3@AKfDWw+>2Pir$%`#g`903Bl%p zmGs!2(+FK8Ec1nB>Rpm=W+mN9su0r$CJ!EO+3S^InNb>S7Mj~Bk8jEN{gKCBUw}M# zxaQyEuK?^xISXQ!ZRvcGRSIT8QE#=PfM57OG_y0fwSd0XUf2TwHK~^s%gGWaA)jnz z%oOHnh%*4m%tiPSAdbPNF7JncEdR?gV+0u+D1lOwjP~iL!RNq`hTGB(-U|RSeW*xU z1RAj%eK7Z^&GazHV#pTYXAF4=87C)IZq7@zh=b%9=@Cb_^8>YR1sQUx<+Bh6;th)o z(m8%Nyj(iZ%|EoP$;%+h#h=Xg6Xb+CzBrywE+O-@#MZp^*)=9I$k?L0#Ntwa6hm>V zNM8n`cWJ3|R`z@j09uu3t0ysLLSou}uutT$1?&O0qA~j#iFkRxlUq>PeHBshOUypl z#0tFjU~u0iY5Ay>EK4N9kU*I3Ct~-})P!AdPU%96Gu+ZL zcyHp}DZ+5`n3|qpSgWCXQt)2n0;~=i_3j8`Jl0xBJDz5CsCEhf2)?V!^O7OC2mnkE zNmHT*&;fRb5KmDg#Cas%5w#^tHOc334WcNLa9@)qPYphwTC+-3 zC{meCu^bRh|E6L@1wB*f!IQH|!kZreT$1pr`H z#hQ&rt^IWxgYf#{B@h+W9&!QgHM9r#1xUr6)XO6ow1F+|G$RuB^FqgePOIBXl!D`A z?GyYDdtJ}P+Z2nSao?Ug`z0-BV4jq~A4@Q%;vCIw323B>C<*CTn51m*a6e}w9z zcm>yrySA0~;3GP0_AaCR84P?bjh%MuG z5(FZwXb%5H_TjP(LvwUyCq9Ch^pIfyGDOS#wYYr%pwh`^gaxz$|nA z82Bh6Gkm&gkc{kfJJg!D))HOw`^KmI#)W9rwW7;TkyPdfzarZI$nk~WNwrgUjfB56 z>Ou3*L}_3iNbtBOZFsfuC8`}&>+l+BI~ywyjC2bZaYT&efdVP#$YRU8=81Z#wXXu} zhNNrk^8N!M_;NXYuldb`$6MZ22d3vus--KmcdGyHvYMBESQ=El?=sM;{ zJfnjCh*AN=6m)Q2MPgJyn{b^5%JH(zec>7Bmx{7c@s7~f*KgtzTa4o^+(de}ZRndw zHH+Y=L32xHIw<%y1_seY1-ziC$6dwC=4Durj2aMU>!Y3k{sHz6@e{#J+or7G6?dkJ zwJ&n7a0JMMEMy_PwfF;N*}k?_fimyIJ8U&2Gb>s|o;{zKhAgWM-$3S%b?tDTmk}p* zF0w<2jZYo|B3!&_QdIDG`fW?$yg-APg_|Tcim!YO(y=AXS6%oMZu7|bwvXPzXU^Rt zKCF4d69K9FaGP{{Yu;)24NISc3a`?G&a9a6To?d+@<#?)f24pXv4CwJb(uePBeO4~-&9D+XkHhG2*e`ePkemM% z(Eiqs5ohSGYiglJL~L=`jtp`5{L4j%aY*=PsO;Bb<=eQ0*>9|tUOvRD8g#U+3Q^HH zF!zO*z%`(=?cyw+V_$%``-M3Uc#mT%9w4cpeXSM4+{QUNSqm|*;X+y~eLOyZ7q|Pe z61FzGlZB8^T6@rsOYjQWOuUF+w{h~;+@;v>CV<;#V2fs^B0PJ=-LJ}Ik-4q4b_nnZ zHk#Nj#1h5e4YL$tk*T(wL?GrPA9DI&!fyBL-urWSQZ~H;pRoYIxQ9_^k7{|+H$8BX zFgmZi?yPC08SQQpOJ*XE-#juKeohAGrP=)%;xkO-f6&spY%+sC$!bMcGe1a}YDV&O zEjD<(JfF8!c<%kM@=@>@3#vc2&C%ZmB;&w$ZBy}CMRXr*#qc6(zLV`jMAZCRrH>D; zc_pMTtBi=6>Wu?a`^>`QWf`c6??N-HoPem0Su(@}NNp1Xd@Eb8d08V1*&saoa2fk0 zMeRo9^Vrbs?;*~+;)4W`$Of8yeaS;EHVu5tNA@w~heas;+i7M60mY)Mj+AKc|77C; z=rt9PE$AFt%(FST6?q8p!2b-< z{Pvv4roalKP0dJ0&J^>qZ@+n#oP?b9WoGNz0TEUXiWL_vL!p)WuCI18AUP+cqAyy8 z)FgUm>Y-^R#&evgbB(lkELPic`2qK}Hok#)nC1Kro2&|c1-SIUUW)7k zt5rwHWhXb<+V35S2s+JQWpK_PtCoF65z{bVY3qxu`TJOH0xu`1d7GeOYkt6$8HpjT z>38#vt8Pz{$A6@Hv3ptU7TjB(xOSjt2u-BP--8xmbhZdp{OU@hj$|0fr zWCmtLE@#=RUT~R&;o4YxS|5FOv0ETVqB1Q1qBJuodtEm-4Yx907N{kQ7Ha~4_97jH z*xt6I>Zel5LF)Qqy+qU7!>sg=jgGCf@O+ZB=rYn;m_SOEC^<^LK;vfuA(F@-FLu)~ zUZ&+c!);H|Y*6q_Uq%JinjNT&cFZJMU`()+fHZ-VKhyRvw9>gK6d~K1DoF+;KAB+M z%WIpbS`*~RJ;CsEOJYixCdSbzf)rjhS7cR7#MSN92=6TAs$2y^@snvmU>37n@=A0Dx>6bNHt~xtQxi(>4{{eN`Qh}gHI0DakS zaC8xFE!s6AgK}rv;83M%tjjZ7w*Oz5+_1oEX`%Z}W9v=ULTq848NvM%YKjJIb30M@ zKIe`M^jWA-Rk3tnS+9Y6R2|^62B=C;AOw`sdK`vy08 zVwAla8IgyM>{HT9<1Tdd*`~IoSXKe3mis1j z^{J^<10aUDd~IHhS<dc4j>vaw}~5S5?_`s-z#)(ja^P{8pp`aNk{zJ#^}YdkPX3V!pzP?#KG!nV&lL z;|XS74@^|?*A^O&)$#TntplyP4D)n1hO{WCIZC=mp>OWm@J<#ak8QgMj=ar1wiWlC zGMlMBU0Juk;=se95ZvY4?pp3N&al9CGR+wXZpzTGz1pA4KqxJ3NW~21|;M;RG zE0i!GmtsnjC7X-bM|(uV2AQYW%58E6Q3|yPQUJX!^%Q-1zBLE2Z|{gQ1+&;g-i`9H z)p<&=Z-E&P-e$HDWVgVv()xcFYJ{&A^`%N^S=*v#r7Fd%o+w%Q=ryTcXBpp<`NJB$ zO=bt>D1ka8B|Xu#TJwyu)6}E^iBi66h==}ezG(zfJ+Hzsm2+y;6+6}WE0%W3+~?P> zaY!1~pQrr(U$H#%#~J#)qxflvgbm6(jjbZ6`BGpJcvcRPWU7O5WBaOw&(GEmB5V=; z`LfpN`>dm zh?DrkS%BnVi1NJhyk>G+Ql2)JnE?lP&L#>R@m~`?t>`Ay@iPl>eTSr?5Sce8?S$73!PxCil z-Vt=F_1|pF_@K6SzQ;-!oEzsQ_1c!;T%cCI>J=HioD|6wQBtW}a$S1!a}5fRkLU}o z5DqS?JMz0Ps(>2kqG=eu8G#~HV!?-8JpmLX3ZMnXq=~WujkC{XsB3S{xDVLjr`eK# zYe0&+4FPBHM1my}elIl`kt)i&E%JnT!AtibNzj`{3_F!wP_`s^7)R5sd+CkULI2#w zI>8)!cmaS~6sl?XJzh$Wg|6ac&6rmt->Vw;m|P_{>io#Zya-d5@s5`PB2KvkoV)XB0YZcU#71IJW!|RPgQ}@wqREjE-Ici3XwS$yUkSdV{ zTMW`OAHAZBTuVL-(f#GR34F$aD$?JkVPfV-P4cAX{6d*c;AtC|c>l%wFRsRCU4zEp z`rF6C(>5;g{)_ity#M|$|Nr}Z|I7br^?w%i#g)G6mJRI(mgsZukJP(qQ2{F$+zv}d zu+jhn!#f6Cjhn#I&@Ih_q?ILhpNeU2RzVWgo%5Z`!xrAlY1iD#!N&fuOYU6r<67ugx!Jo7r*Mqg($w)VIR%Sgvw<9Yww}}W z0Hj_Ih@JEiUdwTL#T(0^!4Z3%-pkjeMz`{{p}Zl5;Hv9#lH2*dn;Pjp^ zF=!*afl0s=iRtc~^dKQ=-HCJ(mUDC~=jewhMX})H!^VV_55z@p3yPg{HF7p{cN&;y zu`XouGoPuyA>COQtvk2|B$5Qi!((k&-!@+$JNN>hUKftT%uyEsSt zjK0d~_V?`c`|R+0H2f767c}=KTm!ww>$x&<#AYI}jz@^&yR`k_eM~hkD)A7~NQ8$d zKTxehB0Ln_Inw3}F{F&Y0Olh|t#O4j$J#N`7&Y$4RAWzDm%jk8TB%;0|4Q*z=Ev?v z&IRN<%C~;}9{z*#B?b~NAEI&&jXycx5JQ0L%CF}c_^%LeDLCtR1DwV2mR1%T6nCuu zgJAdzvSV8L7-_I~go0FA?qHis(3xTVg#hq%$?wrGRNMSzSHpZ*V0lCH=v*_LN7riR zkpPG89oR+nBf&2S+_E*qbRks+2iwk24})1@kcb*~_qll`l z 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� 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%0A8`_)5V*zS>&=vUbO26R4_4$x4Y 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 z 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%0Dn?c`m~^d2xS*r&k{*A1H@SFb8JXzl}3au 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%0A*p1h7LHP;75Ly0Zf&{ZmH3Tpj)VZ0c~ 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[ + 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: Перлиновий темно-сірий

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