@colijnit/homedecorator 255.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_variables.scss +1 -0
- package/app/app.component.scss +30 -0
- package/app/app.version.d.ts +5 -0
- package/app/bundle/threedselector-bundle/threedselector-bundle.component.scss +24 -0
- package/app/bundle/threedselector-bundle/threedselector-selections-bundle.component.scss +4 -0
- package/app/core/components/debug/debug.component.d.ts +17 -0
- package/app/core/components/debug/debug.component.scss +27 -0
- package/app/core/components/error/error-message.component.d.ts +14 -0
- package/app/core/components/error/error-message.component.scss +18 -0
- package/app/core/components/tooltip/tooltip.component.d.ts +17 -0
- package/app/core/components/tooltip/tooltip.component.scss +34 -0
- package/app/core/const/dimensioning.d.ts +24 -0
- package/app/core/core.module.d.ts +27 -0
- package/app/core/directive/autofocus.directive.d.ts +11 -0
- package/app/core/directive/tooltip.directive.d.ts +21 -0
- package/app/core/directive/visibility-observer-master.directive.d.ts +12 -0
- package/app/core/directive/visibility-observer.directive.d.ts +16 -0
- package/app/core/enum/configuration-key.enum.d.ts +35 -0
- package/app/core/enum/export-type.enum.d.ts +5 -0
- package/app/core/enum/google-tag-manager-event.enum.d.ts +12 -0
- package/app/core/enum/icon-name.enum.d.ts +15 -0
- package/app/core/enum/icon.enum.d.ts +33 -0
- package/app/core/enum/light.enum.d.ts +7 -0
- package/app/core/enum/message-type.enum.d.ts +69 -0
- package/app/core/enum/model-type.enum.d.ts +6 -0
- package/app/core/enum/output-encoding.enum.d.ts +4 -0
- package/app/core/enum/shadow-map-type.enum.d.ts +6 -0
- package/app/core/enum/user-role-type.enum.d.ts +18 -0
- package/app/core/enum/view-mode.enum.d.ts +9 -0
- package/app/core/enum/xr-mode.enum.d.ts +4 -0
- package/app/core/interface/adjustable-element.interface.d.ts +5 -0
- package/app/core/interface/category.interface.d.ts +9 -0
- package/app/core/interface/changes.interface.d.ts +9 -0
- package/app/core/interface/child-params.interface.d.ts +3 -0
- package/app/core/interface/configuration-data.interface.d.ts +36 -0
- package/app/core/interface/external-settings.interface.d.ts +6 -0
- package/app/core/interface/info-dialog-data.interface.d.ts +4 -0
- package/app/core/interface/light-preset.interface.d.ts +18 -0
- package/app/core/interface/loading-overlay-data.interface.d.ts +4 -0
- package/app/core/interface/media-resource.interface.d.ts +6 -0
- package/app/core/interface/message-with-payload.interface.d.ts +81 -0
- package/app/core/interface/message-without-payload.interface.d.ts +35 -0
- package/app/core/interface/preset.interface.d.ts +8 -0
- package/app/core/interface/selected-floor-event.interface.d.ts +5 -0
- package/app/core/interface/selected-wall-event.interface.d.ts +6 -0
- package/app/core/interface/texture.interface.d.ts +37 -0
- package/app/core/interface/toolbar-icon.interface.d.ts +8 -0
- package/app/core/model/ar-position-indicator.d.ts +4 -0
- package/app/core/model/camera-settings.d.ts +12 -0
- package/app/core/model/category.d.ts +12 -0
- package/app/core/model/custom-button.d.ts +10 -0
- package/app/core/model/error-message.d.ts +8 -0
- package/app/core/model/export-object.d.ts +5 -0
- package/app/core/model/from-intersection-observer.d.ts +7 -0
- package/app/core/model/homedecorator-settings-options.d.ts +46 -0
- package/app/core/model/homedecorator-settings.d.ts +54 -0
- package/app/core/model/icon.d.ts +4 -0
- package/app/core/model/light-preset.d.ts +27 -0
- package/app/core/model/light-properties.d.ts +25 -0
- package/app/core/model/media-resource.d.ts +7 -0
- package/app/core/model/preset.d.ts +10 -0
- package/app/core/model/ral-color.d.ts +19 -0
- package/app/core/model/shadow-properties.d.ts +7 -0
- package/app/core/model/texture-type.d.ts +6 -0
- package/app/core/model/texture.d.ts +43 -0
- package/app/core/model/three-object.d.ts +1 -0
- package/app/core/model/toast-type.d.ts +5 -0
- package/app/core/model/toast.d.ts +5 -0
- package/app/core/model/xr-reticle.d.ts +17 -0
- package/app/core/pipe/append.pipe.d.ts +7 -0
- package/app/core/pipe/cm-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/filter.pipe.d.ts +7 -0
- package/app/core/pipe/keys.pipe.d.ts +7 -0
- package/app/core/pipe/localize.pipe.d.ts +10 -0
- package/app/core/pipe/m-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/prepend.pipe.d.ts +7 -0
- package/app/core/pipe/scm-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/sm-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/strip-html.pipe.d.ts +7 -0
- package/app/core/service/3dm-api.d.ts +65 -0
- package/app/core/service/app-state.service.d.ts +49 -0
- package/app/core/service/configuration.service.d.ts +15 -0
- package/app/core/service/debug.service.d.ts +16 -0
- package/app/core/service/dimensioning.service.d.ts +14 -0
- package/app/core/service/dynamic-camera.service.d.ts +23 -0
- package/app/core/service/environment.service.d.ts +8 -0
- package/app/core/service/error.service.d.ts +11 -0
- package/app/core/service/export.service.d.ts +18 -0
- package/app/core/service/file.service.d.ts +9 -0
- package/app/core/service/homedecorator-app-event.service.d.ts +23 -0
- package/app/core/service/homedecorator-app.service.d.ts +58 -0
- package/app/core/service/homedecorator-connector-adapter.service.d.ts +90 -0
- package/app/core/service/homedecorator-connector.service.d.ts +127 -0
- package/app/core/service/homedecorator-dictionary.service.d.ts +15 -0
- package/app/core/service/homedecorator-icon-cache.service.d.ts +21 -0
- package/app/core/service/homedecorator-settings.service.d.ts +23 -0
- package/app/core/service/homedecorator.service.d.ts +14 -0
- package/app/core/service/integration.service.d.ts +16 -0
- package/app/core/service/item-serialization.service.d.ts +78 -0
- package/app/core/service/json-utils.service.d.ts +7 -0
- package/app/core/service/message-bus.service.d.ts +21 -0
- package/app/core/service/permanent-store.service.d.ts +37 -0
- package/app/core/service/presets.service.d.ts +50 -0
- package/app/core/service/progress.service.d.ts +17 -0
- package/app/core/service/ral.service.d.ts +17 -0
- package/app/core/service/skip-button-info.service.d.ts +19 -0
- package/app/core/service/toast.service.d.ts +12 -0
- package/app/core/service/utils.service.d.ts +68 -0
- package/app/core/service/view-mode.service.d.ts +27 -0
- package/app/core/service/web-worker.service.d.ts +18 -0
- package/app/core/utils/clone-utils.d.ts +5 -0
- package/app/core/utils/color.utils.d.ts +7 -0
- package/app/core/utils/file.utils.d.ts +36 -0
- package/app/core/utils/function/is-empty.function.d.ts +1 -0
- package/app/core/utils/function/is-nill.function.d.ts +1 -0
- package/app/core/utils/material.utils.d.ts +33 -0
- package/app/core/utils/object.utils.d.ts +14 -0
- package/app/core/utils/relative-position.utils.d.ts +12 -0
- package/app/core/utils/variation-utils.d.ts +12 -0
- package/app/core/workers/enum/web-worker-message.enum.d.ts +4 -0
- package/app/core/workers/enum/web-worker-type.enum.d.ts +3 -0
- package/app/development/components/selected-child-material-texture.component.d.ts +58 -0
- package/app/development/components/selected-child-material-texture.component.scss +122 -0
- package/app/development/components/selected-child-material.component.d.ts +73 -0
- package/app/development/components/selected-child-material.component.scss +45 -0
- package/app/development/components/selected-child.component.d.ts +8 -0
- package/app/development/components/selected-child.component.scss +40 -0
- package/app/development/components/selected-object-base.d.ts +32 -0
- package/app/development/components/selected-object.component.d.ts +20 -0
- package/app/development/components/selected-object.component.scss +13 -0
- package/app/development/development.module.d.ts +19 -0
- package/app/development/directive/development.directive.d.ts +19 -0
- package/app/development/service/development.service.d.ts +49 -0
- package/app/homedecorator.component.d.ts +42 -0
- package/app/homedecorator.component.scss +34 -0
- package/app/homedecorator.module.d.ts +18 -0
- package/app/plugins/core3d/collision-manager/collision-manager.service.d.ts +23 -0
- package/app/plugins/core3d/collision-manager/floorplan-collision-detection.d.ts +9 -0
- package/app/plugins/core3d/collision-manager/snapping-collision.service.d.ts +47 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-buttons/ar-gui-buttons.component.d.ts +17 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-buttons/ar-gui-buttons.component.scss +30 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-configurator/ar-gui-configurator.component.d.ts +25 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-configurator/ar-gui-configurator.component.scss +13 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-context-menu/ar-gui-context-menu.component.d.ts +21 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-context-menu/ar-gui-context-menu.component.scss +6 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-notifications/ar-gui-notifications.component.d.ts +11 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-notifications/ar-gui-notifications.component.scss +19 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-root.component.d.ts +16 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-root.component.scss +23 -0
- package/app/plugins/core3d/components/lightplan/edit-light/edit-light.component.d.ts +46 -0
- package/app/plugins/core3d/components/lightplan/edit-light/edit-light.component.scss +93 -0
- package/app/plugins/core3d/components/lightplan/edit-lightplan/edit-lightplan.component.d.ts +24 -0
- package/app/plugins/core3d/components/lightplan/edit-lightplan/edit-lightplan.component.scss +93 -0
- package/app/plugins/core3d/components/lightplan/lightplan.component.d.ts +60 -0
- package/app/plugins/core3d/components/lightplan/lightplan.component.scss +102 -0
- package/app/plugins/core3d/components/scene-options/scene-options.component.d.ts +17 -0
- package/app/plugins/core3d/components/scene-options/scene-options.component.scss +54 -0
- package/app/plugins/core3d/core/angles.d.ts +8 -0
- package/app/plugins/core3d/core/corner-utils.d.ts +8 -0
- package/app/plugins/core3d/core/dimensioning.d.ts +19 -0
- package/app/plugins/core3d/core/utils.d.ts +147 -0
- package/app/plugins/core3d/core3d/components/scenecontrol/scene-control.component.d.ts +49 -0
- package/app/plugins/core3d/core3d/components/scenecontrol/scene-control.component.scss +3 -0
- package/app/plugins/core3d/core3d/core3d.component.d.ts +76 -0
- package/app/plugins/core3d/core3d/core3d.component.scss +27 -0
- package/app/plugins/core3d/core3d.module.d.ts +38 -0
- package/app/plugins/core3d/directive/scene.directive.d.ts +26 -0
- package/app/plugins/core3d/enum/ar-feature.enum.d.ts +12 -0
- package/app/plugins/core3d/enum/direction.enum.d.ts +8 -0
- package/app/plugins/core3d/enum/result-type.enum.d.ts +19 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/bounding-box-measurement.d.ts +28 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/box-measurement.d.ts +17 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/door-or-window-box-measurement.d.ts +29 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/measurable.d.ts +8 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/measurement-utils.d.ts +9 -0
- package/app/plugins/core3d/hud/custom-shape-name-label.d.ts +15 -0
- package/app/plugins/core3d/hud/floor-indicator.d.ts +20 -0
- package/app/plugins/core3d/hud/furniture-measurements.d.ts +12 -0
- package/app/plugins/core3d/hud/indicator-factory.d.ts +7 -0
- package/app/plugins/core3d/hud/measurements.d.ts +46 -0
- package/app/plugins/core3d/hud/on-wall-measurements.d.ts +18 -0
- package/app/plugins/core3d/hud/opening-symbol.d.ts +11 -0
- package/app/plugins/core3d/hud/rotation-helper.d.ts +44 -0
- package/app/plugins/core3d/hud/utils.d.ts +3 -0
- package/app/plugins/core3d/interface/dragged-data.interface.d.ts +10 -0
- package/app/plugins/core3d/interface/edge-visibility-changes.d.ts +5 -0
- package/app/plugins/core3d/interface/model.interface.d.ts +42 -0
- package/app/plugins/core3d/interface/opening.interface.d.ts +6 -0
- package/app/plugins/core3d/interface/scene-option-button.interface.d.ts +17 -0
- package/app/plugins/core3d/interface/scene-update.interface.d.ts +5 -0
- package/app/plugins/core3d/items/base-item.d.ts +97 -0
- package/app/plugins/core3d/items/custom-cylinder-floor-item.d.ts +12 -0
- package/app/plugins/core3d/items/custom-cylinder-wall-item.d.ts +13 -0
- package/app/plugins/core3d/items/custom-floor-item.d.ts +9 -0
- package/app/plugins/core3d/items/custom-objects.d.ts +55 -0
- package/app/plugins/core3d/items/custom-shape-floor-item.d.ts +9 -0
- package/app/plugins/core3d/items/custom-shape-wall-item.d.ts +10 -0
- package/app/plugins/core3d/items/custom-wall-floor-item.d.ts +19 -0
- package/app/plugins/core3d/items/custom-wall-item.d.ts +9 -0
- package/app/plugins/core3d/items/factory.d.ts +24 -0
- package/app/plugins/core3d/items/floor-item.d.ts +13 -0
- package/app/plugins/core3d/items/floor-pin.d.ts +11 -0
- package/app/plugins/core3d/items/floor-plane-item.d.ts +30 -0
- package/app/plugins/core3d/items/furniture.d.ts +3 -0
- package/app/plugins/core3d/items/in-wall-floor-item.d.ts +9 -0
- package/app/plugins/core3d/items/item-group.d.ts +51 -0
- package/app/plugins/core3d/items/item-type.d.ts +21 -0
- package/app/plugins/core3d/items/item.d.ts +84 -0
- package/app/plugins/core3d/items/metadata.d.ts +74 -0
- package/app/plugins/core3d/items/on-floor-item.d.ts +8 -0
- package/app/plugins/core3d/items/pin.d.ts +5 -0
- package/app/plugins/core3d/items/three-mesh.d.ts +8 -0
- package/app/plugins/core3d/items/wall-floor-item.d.ts +8 -0
- package/app/plugins/core3d/items/wall-objects.d.ts +512 -0
- package/app/plugins/core3d/items/wall-pin.d.ts +8 -0
- package/app/plugins/core3d/model/ar-parameters.d.ts +9 -0
- package/app/plugins/core3d/model/box-skin-default.d.ts +5 -0
- package/app/plugins/core3d/model/collision-info.d.ts +6 -0
- package/app/plugins/core3d/model/custom-floor-group-result.d.ts +18 -0
- package/app/plugins/core3d/model/cylinder-skin-default.d.ts +4 -0
- package/app/plugins/core3d/model/dragged-status.d.ts +18 -0
- package/app/plugins/core3d/model/face.d.ts +11 -0
- package/app/plugins/core3d/model/geometry.d.ts +11 -0
- package/app/plugins/core3d/model/scene-event.enum.d.ts +10 -0
- package/app/plugins/core3d/model/skin.d.ts +15 -0
- package/app/plugins/core3d/model/threed-model.d.ts +47 -0
- package/app/plugins/core3d/service/ar.service.d.ts +121 -0
- package/app/plugins/core3d/service/camera.service.d.ts +70 -0
- package/app/plugins/core3d/service/ceiling.service.d.ts +25 -0
- package/app/plugins/core3d/service/controls.d.ts +11 -0
- package/app/plugins/core3d/service/drag-and-drop.service.d.ts +73 -0
- package/app/plugins/core3d/service/error-glow.service.d.ts +18 -0
- package/app/plugins/core3d/service/floor.service.d.ts +43 -0
- package/app/plugins/core3d/service/font.service.d.ts +10 -0
- package/app/plugins/core3d/service/hud.service.d.ts +79 -0
- package/app/plugins/core3d/service/intersection.service.d.ts +10 -0
- package/app/plugins/core3d/service/item-group.service.d.ts +33 -0
- package/app/plugins/core3d/service/item.service.d.ts +37 -0
- package/app/plugins/core3d/service/light-presets.service.d.ts +46 -0
- package/app/plugins/core3d/service/lights.service.d.ts +38 -0
- package/app/plugins/core3d/service/message-board.service.d.ts +18 -0
- package/app/plugins/core3d/service/models.service.d.ts +37 -0
- package/app/plugins/core3d/service/outline.service.d.ts +40 -0
- package/app/plugins/core3d/service/rotation.service.d.ts +57 -0
- package/app/plugins/core3d/service/scene-event.service.d.ts +131 -0
- package/app/plugins/core3d/service/scene-options.service.d.ts +11 -0
- package/app/plugins/core3d/service/scene.service.d.ts +74 -0
- package/app/plugins/core3d/service/vr.service.d.ts +44 -0
- package/app/plugins/core3d/service/wall-measurements.service.d.ts +23 -0
- package/app/plugins/core3d/service/xr.service.d.ts +56 -0
- package/app/plugins/core3d/textures/DepthDataTexture.d.ts +5 -0
- package/app/plugins/core3d/walkthrough-camera-controls/walkthrough-camera-controls.component.d.ts +19 -0
- package/app/plugins/core3d/walkthrough-camera-controls/walkthrough-camera-controls.component.scss +7 -0
- package/app/plugins/furniture-manager/furniture-library/furniture-library.component.d.ts +27 -0
- package/app/plugins/furniture-manager/furniture-library/furniture-library.component.scss +20 -0
- package/app/plugins/furniture-manager/furniture-manager/furniture-manager.component.d.ts +91 -0
- package/app/plugins/furniture-manager/furniture-manager/furniture-manager.component.scss +57 -0
- package/app/plugins/furniture-manager/furniture-manager.module.d.ts +23 -0
- package/app/plugins/help/help/help.component.d.ts +21 -0
- package/app/plugins/help/help/help.component.scss +0 -0
- package/app/plugins/help/help-dialog/help-dialog.component.d.ts +20 -0
- package/app/plugins/help/help-dialog/help-dialog.component.scss +28 -0
- package/app/plugins/help/help.module.d.ts +12 -0
- package/app/plugins/lite-selector/lite-selector/component/animation/animation.component.d.ts +19 -0
- package/app/plugins/lite-selector/lite-selector/component/animation/animation.component.scss +0 -0
- package/app/plugins/lite-selector/lite-selector/component/answer-card/answer-card.component.d.ts +41 -0
- package/app/plugins/lite-selector/lite-selector/component/answer-card/answer-card.component.scss +25 -0
- package/app/plugins/lite-selector/lite-selector/component/answers-slideout/answers-slideout.component.d.ts +72 -0
- package/app/plugins/lite-selector/lite-selector/component/answers-slideout/answers-slideout.component.scss +146 -0
- package/app/plugins/lite-selector/lite-selector/component/color-filter/color-filter.component.d.ts +19 -0
- package/app/plugins/lite-selector/lite-selector/component/color-filter/color-filter.component.scss +37 -0
- package/app/plugins/lite-selector/lite-selector/component/customizer/customizer.component.d.ts +28 -0
- package/app/plugins/lite-selector/lite-selector/component/customizer/customizer.component.scss +127 -0
- package/app/plugins/lite-selector/lite-selector/component/image-zoom/image-zoom.component.d.ts +9 -0
- package/app/plugins/lite-selector/lite-selector/component/image-zoom/image-zoom.component.scss +47 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary-line.component.d.ts +31 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary-line.component.scss +11 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary.component.d.ts +38 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary.component.scss +80 -0
- package/app/plugins/lite-selector/lite-selector/component/tag-filter/tag-filter.component.d.ts +8 -0
- package/app/plugins/lite-selector/lite-selector/component/tag-filter/tag-filter.component.scss +10 -0
- package/app/plugins/lite-selector/lite-selector/lite-selector.component.d.ts +40 -0
- package/app/plugins/lite-selector/lite-selector/lite-selector.component.scss +10 -0
- package/app/plugins/lite-selector/lite-selector/service/customizer.service.d.ts +44 -0
- package/app/plugins/lite-selector/lite-selector.module.d.ts +22 -0
- package/app/plugins/model-uploader/model-previewer/model-preview.component.d.ts +57 -0
- package/app/plugins/model-uploader/model-previewer/model-preview.component.scss +75 -0
- package/app/plugins/model-uploader/model-uploader/model-upload.component.scss +34 -0
- package/app/plugins/model-uploader/model-uploader/model-uploader.component.d.ts +23 -0
- package/app/plugins/model-uploader/model-uploader.module.d.ts +16 -0
- package/app/plugins/plugin-interface.d.ts +5 -0
- package/app/plugins/plugins.module.d.ts +15 -0
- package/app/plugins/presets/presets/presets.component.d.ts +22 -0
- package/app/plugins/presets/presets/presets.component.scss +0 -0
- package/app/plugins/presets/presets.module.d.ts +10 -0
- package/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.d.ts +19 -0
- package/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.scss +4 -0
- package/app/plugins/product-catalog/own-collection-catalog/product-own-collection.module.d.ts +10 -0
- package/app/plugins/product-catalog/product-catalog/product-catalog.component.d.ts +70 -0
- package/app/plugins/product-catalog/product-catalog/product-catalog.component.scss +128 -0
- package/app/plugins/product-catalog/product-catalog.module.d.ts +16 -0
- package/app/plugins/render/enum/connection-status.d.ts +6 -0
- package/app/plugins/render/enum/render-modes.d.ts +5 -0
- package/app/plugins/render/enum/render-status.d.ts +7 -0
- package/app/plugins/render/model/camera-position.d.ts +7 -0
- package/app/plugins/render/model/image-size.d.ts +6 -0
- package/app/plugins/render/model/lightning.d.ts +5 -0
- package/app/plugins/render/model/render-data.d.ts +15 -0
- package/app/plugins/render/model/render-environment.d.ts +6 -0
- package/app/plugins/render/model/render-parameters.d.ts +15 -0
- package/app/plugins/render/model/render-queue-item.d.ts +14 -0
- package/app/plugins/render/model/render-settings.d.ts +9 -0
- package/app/plugins/render/model/render.d.ts +14 -0
- package/app/plugins/render/render-controls/render-controls.component.d.ts +27 -0
- package/app/plugins/render/render-controls/render-controls.component.scss +51 -0
- package/app/plugins/render/render-dialog/render-dialog.component.d.ts +59 -0
- package/app/plugins/render/render-dialog/render-dialog.component.scss +320 -0
- package/app/plugins/render/render.module.d.ts +20 -0
- package/app/plugins/render/service/new-render.service.d.ts +65 -0
- package/app/plugins/render/service/render.service.d.ts +104 -0
- package/app/plugins/room-planner/components/appearance-section/appearance-section.component.d.ts +43 -0
- package/app/plugins/room-planner/components/appearance-section/appearance-section.component.scss +14 -0
- package/app/plugins/room-planner/components/color-picker/color-picker.component.d.ts +11 -0
- package/app/plugins/room-planner/components/color-picker/color-picker.component.scss +0 -0
- package/app/plugins/room-planner/components/custom-cylinder-creator/custom-cylinder-creator.component.d.ts +49 -0
- package/app/plugins/room-planner/components/custom-cylinder-creator/custom-cylinder-creator.component.scss +19 -0
- package/app/plugins/room-planner/components/custome-shape-creator/custom-shape-creator.component.d.ts +49 -0
- package/app/plugins/room-planner/components/custome-shape-creator/custom-shape-creator.component.scss +24 -0
- package/app/plugins/room-planner/components/dimension-input/dimension-input.component.d.ts +22 -0
- package/app/plugins/room-planner/components/dimension-input/dimension-input.component.scss +14 -0
- package/app/plugins/room-planner/components/edit-apply/edit-apply.component.d.ts +19 -0
- package/app/plugins/room-planner/components/edit-apply/edit-apply.component.scss +0 -0
- package/app/plugins/room-planner/components/edit-parameter/edit-parameter.component.d.ts +28 -0
- package/app/plugins/room-planner/components/edit-parameter/edit-parameter.component.scss +23 -0
- package/app/plugins/room-planner/components/file-drop/file-drop.component.d.ts +21 -0
- package/app/plugins/room-planner/components/file-drop/file-drop.component.scss +31 -0
- package/app/plugins/room-planner/components/floorplanner/const/defaults.d.ts +48 -0
- package/app/plugins/room-planner/components/floorplanner/floorplanner-mode.d.ts +9 -0
- package/app/plugins/room-planner/components/floorplanner/floorplanner.component.d.ts +172 -0
- package/app/plugins/room-planner/components/floorplanner/floorplanner.component.scss +48 -0
- package/app/plugins/room-planner/components/floorplanner/service/floorplan.service.d.ts +103 -0
- package/app/plugins/room-planner/components/floorplanner/service/room.service.d.ts +75 -0
- package/app/plugins/room-planner/components/floorplanner/snap-indicator-mode.d.ts +5 -0
- package/app/plugins/room-planner/components/floorplanner/utils/context.utils.d.ts +5 -0
- package/app/plugins/room-planner/components/object-library/object-library.component.d.ts +23 -0
- package/app/plugins/room-planner/components/object-library/object-library.component.scss +43 -0
- package/app/plugins/room-planner/components/ral-color-picker/ral-color-picker.component.d.ts +22 -0
- package/app/plugins/room-planner/components/ral-color-picker/ral-color-picker.component.scss +55 -0
- package/app/plugins/room-planner/components/rgb-color-picker/rgb-color-picker.component.d.ts +11 -0
- package/app/plugins/room-planner/components/rgb-color-picker/rgb-color-picker.component.scss +10 -0
- package/app/plugins/room-planner/components/selected-floor/selected-floor.component.d.ts +16 -0
- package/app/plugins/room-planner/components/selected-floor/selected-floor.component.scss +16 -0
- package/app/plugins/room-planner/components/selected-object/selected-object.component.d.ts +44 -0
- package/app/plugins/room-planner/components/selected-object/selected-object.component.scss +21 -0
- package/app/plugins/room-planner/components/selected-threed-object/selected-threed-object.component.d.ts +57 -0
- package/app/plugins/room-planner/components/selected-threed-object/selected-threed-object.component.scss +35 -0
- package/app/plugins/room-planner/components/selected-wall/selected-wall.component.d.ts +45 -0
- package/app/plugins/room-planner/components/selected-wall/selected-wall.component.scss +31 -0
- package/app/plugins/room-planner/components/settings/settings-options.component.d.ts +18 -0
- package/app/plugins/room-planner/components/settings/settings-options.component.scss +46 -0
- package/app/plugins/room-planner/components/settings/settings.component.d.ts +63 -0
- package/app/plugins/room-planner/components/settings/settings.component.scss +42 -0
- package/app/plugins/room-planner/components/texture-editor/texture-editor.component.d.ts +125 -0
- package/app/plugins/room-planner/components/texture-editor/texture-editor.component.scss +38 -0
- package/app/plugins/room-planner/components/texture-picker/texture-picker.component.d.ts +25 -0
- package/app/plugins/room-planner/components/texture-picker/texture-picker.component.scss +49 -0
- package/app/plugins/room-planner/components/wall-length-input/wall-length-input.component.d.ts +16 -0
- package/app/plugins/room-planner/components/wall-length-input/wall-length-input.component.scss +5 -0
- package/app/plugins/room-planner/const/key.d.ts +10 -0
- package/app/plugins/room-planner/room-planner/room-planner.component.d.ts +236 -0
- package/app/plugins/room-planner/room-planner/room-planner.component.scss +167 -0
- package/app/plugins/room-planner/room-planner.module.d.ts +59 -0
- package/app/plugins/threed-in-photo/components/threed-in-photo-scene/threed-in-photo-scene.component.d.ts +18 -0
- package/app/plugins/threed-in-photo/components/threed-in-photo-scene/threed-in-photo-scene.component.scss +7 -0
- package/app/plugins/threed-in-photo/components/upload-image/upload-image.component.d.ts +18 -0
- package/app/plugins/threed-in-photo/components/upload-image/upload-image.component.scss +7 -0
- package/app/plugins/threed-in-photo/components/view-control/view-control.component.d.ts +30 -0
- package/app/plugins/threed-in-photo/components/view-control/view-control.component.scss +40 -0
- package/app/plugins/threed-in-photo/models/model-output.d.ts +14 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-build.service.d.ts +37 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-connection.service.d.ts +8 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-control.service.d.ts +14 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-event-listeners.service.d.ts +15 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-event.service.d.ts +9 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-initializer.service.d.ts +27 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-render.service.d.ts +20 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-scene.service.d.ts +12 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-view.service.d.ts +8 -0
- package/app/plugins/threed-in-photo/threed-in-photo.module.d.ts +17 -0
- package/app/plugins/threed-in-photo/utils/utils.d.ts +6 -0
- package/app/plugins/threedselector/element-buttons/element-buttons.component.d.ts +31 -0
- package/app/plugins/threedselector/element-buttons/element-buttons.component.scss +61 -0
- package/app/plugins/threedselector/element-slider/element-slider.component.d.ts +14 -0
- package/app/plugins/threedselector/element-slider/element-slider.component.scss +47 -0
- package/app/plugins/threedselector/element-toolbar/element-toolbar.component.d.ts +26 -0
- package/app/plugins/threedselector/element-toolbar/element-toolbar.component.scss +142 -0
- package/app/plugins/threedselector/threedselector/model/furniture-connected-part-integration.d.ts +7 -0
- package/app/plugins/threedselector/threedselector/model/furniture-integration.d.ts +12 -0
- package/app/plugins/threedselector/threedselector/model/furniture-part-integration.d.ts +14 -0
- package/app/plugins/threedselector/threedselector/model/furniture-part-variation.d.ts +7 -0
- package/app/plugins/threedselector/threedselector/model/material.d.ts +41 -0
- package/app/plugins/threedselector/threedselector/model/variation-settings.d.ts +53 -0
- package/app/plugins/threedselector/threedselector/model/variation.d.ts +11 -0
- package/app/plugins/threedselector/threedselector/service/animation.service.d.ts +22 -0
- package/app/plugins/threedselector/threedselector/service/build-furniture.service.d.ts +186 -0
- package/app/plugins/threedselector/threedselector/service/dimensions.service.d.ts +33 -0
- package/app/plugins/threedselector/threedselector/service/element.service.d.ts +45 -0
- package/app/plugins/threedselector/threedselector/service/light-creation.service.d.ts +9 -0
- package/app/plugins/threedselector/threedselector/service/load-furniture.service.d.ts +74 -0
- package/app/plugins/threedselector/threedselector/service/resize.service.d.ts +13 -0
- package/app/plugins/threedselector/threedselector/service/third-party-model.service.d.ts +66 -0
- package/app/plugins/threedselector/threedselector/service/threedselector.service.d.ts +22 -0
- package/app/plugins/threedselector/threedselector/service/variation-cache.service.d.ts +23 -0
- package/app/plugins/threedselector/threedselector/service/variation.service.d.ts +23 -0
- package/app/plugins/threedselector/threedselector/threedselector.component.d.ts +188 -0
- package/app/plugins/threedselector/threedselector/threedselector.component.scss +82 -0
- package/app/plugins/threedselector/threedselector/utils/asset.utils.d.ts +19 -0
- package/app/plugins/threedselector/threedselector/utils/image.utils.d.ts +6 -0
- package/app/plugins/threedselector/threedselector/utils/json-parser.utils.d.ts +9 -0
- package/app/plugins/threedselector/threedselector/utils/scene-3d.utils.d.ts +10 -0
- package/app/plugins/threedselector/threedselector.module.d.ts +31 -0
- package/app/plugins/toolbar/download-dialog/download-dialog.component.d.ts +14 -0
- package/app/plugins/toolbar/download-dialog/download-dialog.component.scss +22 -0
- package/app/plugins/toolbar/draw-dialog/draw-dialog.component.d.ts +66 -0
- package/app/plugins/toolbar/draw-dialog/draw-dialog.component.scss +97 -0
- package/app/plugins/toolbar/edit-preset-dialog/edit-preset-dialog.component.d.ts +8 -0
- package/app/plugins/toolbar/edit-preset-dialog/edit-preset-dialog.component.scss +0 -0
- package/app/plugins/toolbar/landing-screen-modal/landing-screen-modal.component.d.ts +36 -0
- package/app/plugins/toolbar/landing-screen-modal/landing-screen-modal.component.scss +71 -0
- package/app/plugins/toolbar/load-from-cloud-dialog/load-from-cloud-dialog.component.d.ts +36 -0
- package/app/plugins/toolbar/load-from-cloud-dialog/load-from-cloud-dialog.component.scss +3 -0
- package/app/plugins/toolbar/open-dialog/open-dialog.component.d.ts +23 -0
- package/app/plugins/toolbar/open-dialog/open-dialog.component.scss +0 -0
- package/app/plugins/toolbar/pdf-crop-dialog/pdf-crop-dialog.component.d.ts +34 -0
- package/app/plugins/toolbar/pdf-crop-dialog/pdf-crop-dialog.component.scss +17 -0
- package/app/plugins/toolbar/save-dialog/save-dialog.component.d.ts +38 -0
- package/app/plugins/toolbar/save-dialog/save-dialog.component.scss +33 -0
- package/app/plugins/toolbar/saved-dialog/saved-dialog.component.d.ts +24 -0
- package/app/plugins/toolbar/saved-dialog/saved-dialog.component.scss +7 -0
- package/app/plugins/toolbar/toolbar/limited-mode-message-component/limited-mode-message.component.d.ts +9 -0
- package/app/plugins/toolbar/toolbar/limited-mode-message-component/limited-mode-message.component.scss +10 -0
- package/app/plugins/toolbar/toolbar/toolbar.component.d.ts +101 -0
- package/app/plugins/toolbar/toolbar/toolbar.component.scss +251 -0
- package/app/plugins/toolbar/toolbar.module.d.ts +44 -0
- package/app/root/root.component.scss +0 -0
- package/app/service/dynamic-script.service.d.ts +8 -0
- package/app/service/google-tag-manager.service.d.ts +19 -0
- package/app/service/local-storage.service.d.ts +18 -0
- package/app/service/service-locator.service.d.ts +4 -0
- package/app/shared/base64-images.d.ts +4 -0
- package/app/shared/button-elevation/button-elevation.component.d.ts +40 -0
- package/app/shared/button-elevation/button-elevation.component.scss +109 -0
- package/app/shared/button-elevation/button-elevation.module.d.ts +16 -0
- package/app/shared/camera-settings-dialog/camera-settings-dialog.component.d.ts +24 -0
- package/app/shared/camera-settings-dialog/camera-settings-dialog.component.scss +30 -0
- package/app/shared/camera-settings-dialog/camera-settings-dialog.module.d.ts +16 -0
- package/app/shared/category-library/category-library.component.d.ts +10 -0
- package/app/shared/category-library/category-library.component.scss +16 -0
- package/app/shared/category-library/category-library.module.d.ts +11 -0
- package/app/shared/context-menu/context-menu.component.d.ts +12 -0
- package/app/shared/context-menu/context-menu.component.scss +25 -0
- package/app/shared/context-menu/context-menu.module.d.ts +14 -0
- package/app/shared/context-menu/item-context-menu/item-context-menu.component.d.ts +30 -0
- package/app/shared/context-menu/item-context-menu/item-context-menu.component.scss +32 -0
- package/app/shared/dialog/dialog.component.d.ts +26 -0
- package/app/shared/dialog/dialog.component.scss +25 -0
- package/app/shared/dialog/dialog.module.d.ts +12 -0
- package/app/shared/dialog/enum/dialog-type.enum.d.ts +6 -0
- package/app/shared/dialog/interface/dialog-config.interface.d.ts +7 -0
- package/app/shared/dialog/service/dialog.service.d.ts +11 -0
- package/app/shared/error-dialog/error-dialog.component.d.ts +11 -0
- package/app/shared/error-dialog/error-dialog.component.scss +0 -0
- package/app/shared/error-dialog/error-dialog.module.d.ts +10 -0
- package/app/shared/export-dialog/export-dialog.component.d.ts +11 -0
- package/app/shared/export-dialog/export-dialog.component.scss +19 -0
- package/app/shared/export-dialog/export-dialog.module.d.ts +11 -0
- package/app/shared/info-dialog/info-dialog.component.d.ts +9 -0
- package/app/shared/info-dialog/info-dialog.component.scss +15 -0
- package/app/shared/info-dialog/info-dialog.module.d.ts +12 -0
- package/app/shared/loader/hd-loader.component.d.ts +6 -0
- package/app/shared/loader/hd-loader.component.scss +44 -0
- package/app/shared/loader/hd-loader.module.d.ts +9 -0
- package/app/shared/loader/loader.component.scss +42 -0
- package/app/shared/loading-overlay/dialog/loading-overlay-dialog.component.d.ts +8 -0
- package/app/shared/loading-overlay/dialog/loading-overlay-dialog.component.scss +3 -0
- package/app/shared/loading-overlay/loading-overlay.component.d.ts +19 -0
- package/app/shared/loading-overlay/loading-overlay.component.scss +9 -0
- package/app/shared/loading-overlay/loading-overlay.module.d.ts +11 -0
- package/app/shared/model-dialog/model-dialog-furniture-list.component.d.ts +35 -0
- package/app/shared/model-dialog/model-dialog-furniture-list.component.scss +221 -0
- package/app/shared/model-dialog/model-dialog.component.d.ts +31 -0
- package/app/shared/model-dialog/model-dialog.component.scss +22 -0
- package/app/shared/model-dialog/model-dialog.module.d.ts +16 -0
- package/app/shared/progress-bar/progress-bar.component.d.ts +9 -0
- package/app/shared/progress-bar/progress-bar.component.scss +11 -0
- package/app/shared/progress-bar/progress-bar.module.d.ts +9 -0
- package/app/shared/register-dialog/register-dialog.component.d.ts +26 -0
- package/app/shared/register-dialog/register-dialog.component.scss +21 -0
- package/app/shared/screen-size-analysis/device-size-type.d.ts +5 -0
- package/app/shared/screen-size-analysis/navigator-type.enum.d.ts +4 -0
- package/app/shared/screen-size-analysis/screen-size-analysis.service.d.ts +27 -0
- package/app/shared/screen-size-analysis/screen-size-config.d.ts +5 -0
- package/app/shared/screen-size-analysis/screen-size-info.d.ts +10 -0
- package/app/shared/slider-input/slider-input.component.d.ts +13 -0
- package/app/shared/slider-input/slider-input.component.scss +12 -0
- package/app/shared/slider-input/slider-input.module.d.ts +13 -0
- package/app/shared/toolbar-icon/toolbar-icon.component.d.ts +12 -0
- package/app/shared/toolbar-icon/toolbar-icon.component.scss +8 -0
- package/app/shared/toolbar-icon/toolbar-icon.module.d.ts +11 -0
- package/app/shared/zoom-controls/zoom-controls.component.d.ts +16 -0
- package/app/shared/zoom-controls/zoom-controls.component.scss +0 -0
- package/app/shared/zoom-controls/zoom-controls.module.d.ts +10 -0
- package/assets/.gitkeep +0 -0
- package/assets/3d-models/pin.mtl +12 -0
- package/assets/3d-models/pin.obj +1083 -0
- package/assets/colors/ral.json +2345 -0
- package/assets/cursors/pencil.png +0 -0
- package/assets/cursors/pencil.svg +1 -0
- package/assets/fonts/helvetiker_regular.ttf +0 -0
- package/assets/fonts/helvetiker_regular.typeface.json +1 -0
- package/assets/fonts/helvetiker_regular.woff +0 -0
- package/assets/fonts/optimer_regular.typeface.json +1 -0
- package/assets/hdri/TSStudio3Point.hdr +135 -0
- package/assets/hdri/ground_MASK.jpg +0 -0
- package/assets/hdri/std_env_v2_A.hdr +0 -0
- package/assets/hdri/std_env_v2_B.hdr +0 -0
- package/assets/hdri/std_env_v2_C.hdr +0 -0
- package/assets/hdri/std_env_v2_D.hdr +0 -0
- package/assets/hdri/std_env_v2_E.hdr +46 -0
- package/assets/icons/add-button.svg +10 -0
- package/assets/icons/ar_circle.svg +7 -0
- package/assets/icons/arrow_point_down.svg +6 -0
- package/assets/icons/brush.svg +1 -0
- package/assets/icons/cart-shopping-regular.svg +1 -0
- package/assets/icons/check.svg +6 -0
- package/assets/icons/cit_powered_white.svg +92 -0
- package/assets/icons/conf_frame.svg +1 -0
- package/assets/icons/conf_plane.svg +1 -0
- package/assets/icons/cross.svg +1 -0
- package/assets/icons/cube-outline.svg +1 -0
- package/assets/icons/cube-unfolded.svg +1 -0
- package/assets/icons/delete-button.svg +16 -0
- package/assets/icons/download.svg +4 -0
- package/assets/icons/edit-button.svg +18 -0
- package/assets/icons/google-cardboard-orange.svg +1 -0
- package/assets/icons/google-cardboard.svg +1 -0
- package/assets/icons/hand-pointer.svg +1 -0
- package/assets/icons/height_adjust.svg +1 -0
- package/assets/icons/magic-wand.svg +57 -0
- package/assets/icons/magnifier.svg +12 -0
- package/assets/icons/measurements.svg +1 -0
- package/assets/icons/move-phone-ar.svg +4 -0
- package/assets/icons/qrcode.svg +1 -0
- package/assets/icons/street-view-orange.svg +5 -0
- package/assets/icons/street-view.svg +6 -0
- package/assets/icons/swap-button.svg +12 -0
- package/assets/icons/tilt-phone.svg +29 -0
- package/assets/icons/triangle_down.svg +1 -0
- package/assets/icons/triangle_up.svg +1 -0
- package/assets/images/colijn-logo.webp +0 -0
- package/assets/images/favicon.ico +0 -0
- package/assets/images/favicon.png +0 -0
- package/assets/images/ione360-logo.webp +0 -0
- package/assets/images/logo.svg +35 -0
- package/assets/workers/indexedDB-web-worker.js +74 -0
- package/bundle-styles.scss +267 -0
- package/bundles/colijnit-homedecorator.umd.js +47374 -0
- package/bundles/colijnit-homedecorator.umd.js.map +1 -0
- package/colijnit-homedecorator.d.ts +5 -0
- package/environments/environment.d.ts +11 -0
- package/esm2015/app/app.version.js +9 -0
- package/esm2015/app/core/components/debug/debug.component.js +57 -0
- package/esm2015/app/core/components/error/error-message.component.js +55 -0
- package/esm2015/app/core/components/tooltip/tooltip.component.js +73 -0
- package/esm2015/app/core/const/dimensioning.js +28 -0
- package/esm2015/app/core/core.module.js +159 -0
- package/esm2015/app/core/directive/autofocus.directive.js +26 -0
- package/esm2015/app/core/directive/tooltip.directive.js +64 -0
- package/esm2015/app/core/directive/visibility-observer-master.directive.js +53 -0
- package/esm2015/app/core/directive/visibility-observer.directive.js +54 -0
- package/esm2015/app/core/enum/configuration-key.enum.js +37 -0
- package/esm2015/app/core/enum/export-type.enum.js +7 -0
- package/esm2015/app/core/enum/google-tag-manager-event.enum.js +14 -0
- package/esm2015/app/core/enum/icon-name.enum.js +17 -0
- package/esm2015/app/core/enum/icon.enum.js +35 -0
- package/esm2015/app/core/enum/light.enum.js +9 -0
- package/esm2015/app/core/enum/message-type.enum.js +71 -0
- package/esm2015/app/core/enum/model-type.enum.js +8 -0
- package/esm2015/app/core/enum/output-encoding.enum.js +6 -0
- package/esm2015/app/core/enum/shadow-map-type.enum.js +8 -0
- package/esm2015/app/core/enum/user-role-type.enum.js +22 -0
- package/esm2015/app/core/enum/view-mode.enum.js +11 -0
- package/esm2015/app/core/enum/xr-mode.enum.js +6 -0
- package/esm2015/app/core/interface/adjustable-element.interface.js +2 -0
- package/esm2015/app/core/interface/category.interface.js +2 -0
- package/esm2015/app/core/interface/changes.interface.js +2 -0
- package/esm2015/app/core/interface/child-params.interface.js +2 -0
- package/esm2015/app/core/interface/configuration-data.interface.js +2 -0
- package/esm2015/app/core/interface/external-settings.interface.js +2 -0
- package/esm2015/app/core/interface/info-dialog-data.interface.js +2 -0
- package/esm2015/app/core/interface/light-preset.interface.js +2 -0
- package/esm2015/app/core/interface/loading-overlay-data.interface.js +2 -0
- package/esm2015/app/core/interface/media-resource.interface.js +2 -0
- package/esm2015/app/core/interface/message-with-payload.interface.js +2 -0
- package/esm2015/app/core/interface/message-without-payload.interface.js +2 -0
- package/esm2015/app/core/interface/preset.interface.js +2 -0
- package/esm2015/app/core/interface/selected-floor-event.interface.js +2 -0
- package/esm2015/app/core/interface/selected-wall-event.interface.js +2 -0
- package/esm2015/app/core/interface/texture.interface.js +2 -0
- package/esm2015/app/core/interface/toolbar-icon.interface.js +2 -0
- package/esm2015/app/core/model/ar-position-indicator.js +21 -0
- package/esm2015/app/core/model/camera-settings.js +14 -0
- package/esm2015/app/core/model/category.js +15 -0
- package/esm2015/app/core/model/custom-button.js +16 -0
- package/esm2015/app/core/model/error-message.js +9 -0
- package/esm2015/app/core/model/export-object.js +3 -0
- package/esm2015/app/core/model/from-intersection-observer.js +64 -0
- package/esm2015/app/core/model/homedecorator-settings-options.js +49 -0
- package/esm2015/app/core/model/homedecorator-settings.js +22 -0
- package/esm2015/app/core/model/icon.js +34 -0
- package/esm2015/app/core/model/light-preset.js +59 -0
- package/esm2015/app/core/model/light-properties.js +45 -0
- package/esm2015/app/core/model/media-resource.js +10 -0
- package/esm2015/app/core/model/preset.js +15 -0
- package/esm2015/app/core/model/ral-color.js +2 -0
- package/esm2015/app/core/model/shadow-properties.js +10 -0
- package/esm2015/app/core/model/texture-type.js +8 -0
- package/esm2015/app/core/model/texture.js +58 -0
- package/esm2015/app/core/model/three-object.js +2 -0
- package/esm2015/app/core/model/toast-type.js +7 -0
- package/esm2015/app/core/model/toast.js +7 -0
- package/esm2015/app/core/model/xr-reticle.js +87 -0
- package/esm2015/app/core/pipe/append.pipe.js +21 -0
- package/esm2015/app/core/pipe/cm-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/filter.pipe.js +20 -0
- package/esm2015/app/core/pipe/keys.pipe.js +22 -0
- package/esm2015/app/core/pipe/localize.pipe.js +28 -0
- package/esm2015/app/core/pipe/m-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/prepend.pipe.js +21 -0
- package/esm2015/app/core/pipe/scm-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/sm-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/strip-html.pipe.js +17 -0
- package/esm2015/app/core/service/3dm-api.js +246 -0
- package/esm2015/app/core/service/app-state.service.js +128 -0
- package/esm2015/app/core/service/configuration.service.js +72 -0
- package/esm2015/app/core/service/debug.service.js +45 -0
- package/esm2015/app/core/service/dimensioning.service.js +45 -0
- package/esm2015/app/core/service/dynamic-camera.service.js +107 -0
- package/esm2015/app/core/service/environment.service.js +17 -0
- package/esm2015/app/core/service/error.service.js +30 -0
- package/esm2015/app/core/service/export.service.js +97 -0
- package/esm2015/app/core/service/file.service.js +44 -0
- package/esm2015/app/core/service/homedecorator-app-event.service.js +27 -0
- package/esm2015/app/core/service/homedecorator-app.service.js +201 -0
- package/esm2015/app/core/service/homedecorator-connector-adapter.service.js +455 -0
- package/esm2015/app/core/service/homedecorator-connector.service.js +604 -0
- package/esm2015/app/core/service/homedecorator-dictionary.service.js +73 -0
- package/esm2015/app/core/service/homedecorator-icon-cache.service.js +43 -0
- package/esm2015/app/core/service/homedecorator-settings.service.js +146 -0
- package/esm2015/app/core/service/homedecorator.service.js +37 -0
- package/esm2015/app/core/service/integration.service.js +56 -0
- package/esm2015/app/core/service/item-serialization.service.js +188 -0
- package/esm2015/app/core/service/json-utils.service.js +56 -0
- package/esm2015/app/core/service/message-bus.service.js +28 -0
- package/esm2015/app/core/service/permanent-store.service.js +135 -0
- package/esm2015/app/core/service/presets.service.js +297 -0
- package/esm2015/app/core/service/progress.service.js +74 -0
- package/esm2015/app/core/service/ral.service.js +98 -0
- package/esm2015/app/core/service/skip-button-info.service.js +60 -0
- package/esm2015/app/core/service/toast.service.js +23 -0
- package/esm2015/app/core/service/utils.service.js +566 -0
- package/esm2015/app/core/service/view-mode.service.js +61 -0
- package/esm2015/app/core/service/web-worker.service.js +44 -0
- package/esm2015/app/core/utils/clone-utils.js +41 -0
- package/esm2015/app/core/utils/color.utils.js +20 -0
- package/esm2015/app/core/utils/file.utils.js +234 -0
- package/esm2015/app/core/utils/function/is-empty.function.js +5 -0
- package/esm2015/app/core/utils/function/is-nill.function.js +5 -0
- package/esm2015/app/core/utils/material.utils.js +407 -0
- package/esm2015/app/core/utils/object.utils.js +191 -0
- package/esm2015/app/core/utils/relative-position.utils.js +74 -0
- package/esm2015/app/core/utils/variation-utils.js +314 -0
- package/esm2015/app/core/workers/enum/web-worker-message.enum.js +6 -0
- package/esm2015/app/core/workers/enum/web-worker-type.enum.js +5 -0
- package/esm2015/app/development/components/selected-child-material-texture.component.js +467 -0
- package/esm2015/app/development/components/selected-child-material.component.js +863 -0
- package/esm2015/app/development/components/selected-child.component.js +64 -0
- package/esm2015/app/development/components/selected-object-base.js +127 -0
- package/esm2015/app/development/components/selected-object.component.js +98 -0
- package/esm2015/app/development/development.module.js +74 -0
- package/esm2015/app/development/directive/development.directive.js +92 -0
- package/esm2015/app/development/service/development.service.js +212 -0
- package/esm2015/app/homedecorator.component.js +285 -0
- package/esm2015/app/homedecorator.module.js +60 -0
- package/esm2015/app/plugins/core3d/collision-manager/collision-manager.service.js +119 -0
- package/esm2015/app/plugins/core3d/collision-manager/floorplan-collision-detection.js +158 -0
- package/esm2015/app/plugins/core3d/collision-manager/snapping-collision.service.js +234 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-buttons/ar-gui-buttons.component.js +36 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-configurator/ar-gui-configurator.component.js +49 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-context-menu/ar-gui-context-menu.component.js +77 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-notifications/ar-gui-notifications.component.js +26 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-root.component.js +46 -0
- package/esm2015/app/plugins/core3d/components/lightplan/edit-light/edit-light.component.js +197 -0
- package/esm2015/app/plugins/core3d/components/lightplan/edit-lightplan/edit-lightplan.component.js +197 -0
- package/esm2015/app/plugins/core3d/components/lightplan/lightplan.component.js +512 -0
- package/esm2015/app/plugins/core3d/components/scene-options/scene-options.component.js +88 -0
- package/esm2015/app/plugins/core3d/core/angles.js +19 -0
- package/esm2015/app/plugins/core3d/core/corner-utils.js +9 -0
- package/esm2015/app/plugins/core3d/core/dimensioning.js +79 -0
- package/esm2015/app/plugins/core3d/core/utils.js +606 -0
- package/esm2015/app/plugins/core3d/core3d/components/scenecontrol/scene-control.component.js +289 -0
- package/esm2015/app/plugins/core3d/core3d/core3d.component.js +243 -0
- package/esm2015/app/plugins/core3d/core3d.module.js +201 -0
- package/esm2015/app/plugins/core3d/directive/scene.directive.js +41 -0
- package/esm2015/app/plugins/core3d/enum/ar-feature.enum.js +14 -0
- package/esm2015/app/plugins/core3d/enum/direction.enum.js +10 -0
- package/esm2015/app/plugins/core3d/enum/result-type.enum.js +21 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/bounding-box-measurement.js +99 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/box-measurement.js +35 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/door-or-window-box-measurement.js +95 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/measurable.js +2 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/measurement-utils.js +22 -0
- package/esm2015/app/plugins/core3d/hud/custom-shape-name-label.js +31 -0
- package/esm2015/app/plugins/core3d/hud/floor-indicator.js +80 -0
- package/esm2015/app/plugins/core3d/hud/furniture-measurements.js +44 -0
- package/esm2015/app/plugins/core3d/hud/indicator-factory.js +49 -0
- package/esm2015/app/plugins/core3d/hud/measurements.js +165 -0
- package/esm2015/app/plugins/core3d/hud/on-wall-measurements.js +80 -0
- package/esm2015/app/plugins/core3d/hud/opening-symbol.js +74 -0
- package/esm2015/app/plugins/core3d/hud/rotation-helper.js +263 -0
- package/esm2015/app/plugins/core3d/hud/utils.js +30 -0
- package/esm2015/app/plugins/core3d/interface/dragged-data.interface.js +2 -0
- package/esm2015/app/plugins/core3d/interface/edge-visibility-changes.js +2 -0
- package/esm2015/app/plugins/core3d/interface/model.interface.js +2 -0
- package/esm2015/app/plugins/core3d/interface/opening.interface.js +2 -0
- package/esm2015/app/plugins/core3d/interface/scene-option-button.interface.js +6 -0
- package/esm2015/app/plugins/core3d/interface/scene-update.interface.js +2 -0
- package/esm2015/app/plugins/core3d/items/base-item.js +233 -0
- package/esm2015/app/plugins/core3d/items/custom-cylinder-floor-item.js +41 -0
- package/esm2015/app/plugins/core3d/items/custom-cylinder-wall-item.js +45 -0
- package/esm2015/app/plugins/core3d/items/custom-floor-item.js +11 -0
- package/esm2015/app/plugins/core3d/items/custom-objects.js +295 -0
- package/esm2015/app/plugins/core3d/items/custom-shape-floor-item.js +45 -0
- package/esm2015/app/plugins/core3d/items/custom-shape-wall-item.js +37 -0
- package/esm2015/app/plugins/core3d/items/custom-wall-floor-item.js +84 -0
- package/esm2015/app/plugins/core3d/items/custom-wall-item.js +11 -0
- package/esm2015/app/plugins/core3d/items/factory.js +130 -0
- package/esm2015/app/plugins/core3d/items/floor-item.js +29 -0
- package/esm2015/app/plugins/core3d/items/floor-pin.js +31 -0
- package/esm2015/app/plugins/core3d/items/floor-plane-item.js +95 -0
- package/esm2015/app/plugins/core3d/items/furniture.js +2 -0
- package/esm2015/app/plugins/core3d/items/in-wall-floor-item.js +14 -0
- package/esm2015/app/plugins/core3d/items/item-group.js +160 -0
- package/esm2015/app/plugins/core3d/items/item-type.js +23 -0
- package/esm2015/app/plugins/core3d/items/item.js +388 -0
- package/esm2015/app/plugins/core3d/items/metadata.js +2 -0
- package/esm2015/app/plugins/core3d/items/on-floor-item.js +10 -0
- package/esm2015/app/plugins/core3d/items/pin.js +2 -0
- package/esm2015/app/plugins/core3d/items/three-mesh.js +17 -0
- package/esm2015/app/plugins/core3d/items/wall-floor-item.js +9 -0
- package/esm2015/app/plugins/core3d/items/wall-objects.js +2381 -0
- package/esm2015/app/plugins/core3d/items/wall-pin.js +25 -0
- package/esm2015/app/plugins/core3d/model/ar-parameters.js +12 -0
- package/esm2015/app/plugins/core3d/model/box-skin-default.js +17 -0
- package/esm2015/app/plugins/core3d/model/collision-info.js +2 -0
- package/esm2015/app/plugins/core3d/model/custom-floor-group-result.js +13 -0
- package/esm2015/app/plugins/core3d/model/cylinder-skin-default.js +14 -0
- package/esm2015/app/plugins/core3d/model/dragged-status.js +51 -0
- package/esm2015/app/plugins/core3d/model/face.js +18 -0
- package/esm2015/app/plugins/core3d/model/geometry.js +52 -0
- package/esm2015/app/plugins/core3d/model/scene-event.enum.js +12 -0
- package/esm2015/app/plugins/core3d/model/skin.js +2 -0
- package/esm2015/app/plugins/core3d/model/threed-model.js +49 -0
- package/esm2015/app/plugins/core3d/service/ar.service.js +844 -0
- package/esm2015/app/plugins/core3d/service/camera.service.js +340 -0
- package/esm2015/app/plugins/core3d/service/ceiling.service.js +104 -0
- package/esm2015/app/plugins/core3d/service/controls.js +763 -0
- package/esm2015/app/plugins/core3d/service/drag-and-drop.service.js +369 -0
- package/esm2015/app/plugins/core3d/service/error-glow.service.js +131 -0
- package/esm2015/app/plugins/core3d/service/floor.service.js +229 -0
- package/esm2015/app/plugins/core3d/service/font.service.js +27 -0
- package/esm2015/app/plugins/core3d/service/hud.service.js +404 -0
- package/esm2015/app/plugins/core3d/service/intersection.service.js +55 -0
- package/esm2015/app/plugins/core3d/service/item-group.service.js +117 -0
- package/esm2015/app/plugins/core3d/service/item.service.js +205 -0
- package/esm2015/app/plugins/core3d/service/light-presets.service.js +296 -0
- package/esm2015/app/plugins/core3d/service/lights.service.js +190 -0
- package/esm2015/app/plugins/core3d/service/message-board.service.js +60 -0
- package/esm2015/app/plugins/core3d/service/models.service.js +146 -0
- package/esm2015/app/plugins/core3d/service/outline.service.js +150 -0
- package/esm2015/app/plugins/core3d/service/rotation.service.js +183 -0
- package/esm2015/app/plugins/core3d/service/scene-event.service.js +1000 -0
- package/esm2015/app/plugins/core3d/service/scene-options.service.js +24 -0
- package/esm2015/app/plugins/core3d/service/scene.service.js +351 -0
- package/esm2015/app/plugins/core3d/service/vr.service.js +198 -0
- package/esm2015/app/plugins/core3d/service/wall-measurements.service.js +79 -0
- package/esm2015/app/plugins/core3d/service/xr.service.js +397 -0
- package/esm2015/app/plugins/core3d/textures/DepthDataTexture.js +17 -0
- package/esm2015/app/plugins/core3d/walkthrough-camera-controls/walkthrough-camera-controls.component.js +54 -0
- package/esm2015/app/plugins/furniture-manager/furniture-library/furniture-library.component.js +92 -0
- package/esm2015/app/plugins/furniture-manager/furniture-manager/furniture-manager.component.js +458 -0
- package/esm2015/app/plugins/furniture-manager/furniture-manager.module.js +100 -0
- package/esm2015/app/plugins/help/help/help.component.js +71 -0
- package/esm2015/app/plugins/help/help-dialog/help-dialog.component.js +83 -0
- package/esm2015/app/plugins/help/help.module.js +35 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/animation/animation.component.js +36 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/answer-card/answer-card.component.js +187 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/answers-slideout/answers-slideout.component.js +417 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/color-filter/color-filter.component.js +44 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/customizer/customizer.component.js +82 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/image-zoom/image-zoom.component.js +27 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary-line.component.js +148 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary.component.js +167 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/tag-filter/tag-filter.component.js +25 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/lite-selector.component.js +150 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/service/customizer.service.js +222 -0
- package/esm2015/app/plugins/lite-selector/lite-selector.module.js +108 -0
- package/esm2015/app/plugins/model-uploader/model-previewer/model-preview.component.js +470 -0
- package/esm2015/app/plugins/model-uploader/model-uploader/model-uploader.component.js +132 -0
- package/esm2015/app/plugins/model-uploader/model-uploader.module.js +60 -0
- package/esm2015/app/plugins/plugin-interface.js +2 -0
- package/esm2015/app/plugins/plugins.module.js +80 -0
- package/esm2015/app/plugins/presets/presets/presets.component.js +72 -0
- package/esm2015/app/plugins/presets/presets.module.js +33 -0
- package/esm2015/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.js +57 -0
- package/esm2015/app/plugins/product-catalog/own-collection-catalog/product-own-collection.module.js +34 -0
- package/esm2015/app/plugins/product-catalog/product-catalog/product-catalog.component.js +428 -0
- package/esm2015/app/plugins/product-catalog/product-catalog.module.js +61 -0
- package/esm2015/app/plugins/render/enum/connection-status.js +8 -0
- package/esm2015/app/plugins/render/enum/render-modes.js +7 -0
- package/esm2015/app/plugins/render/enum/render-status.js +9 -0
- package/esm2015/app/plugins/render/model/camera-position.js +6 -0
- package/esm2015/app/plugins/render/model/image-size.js +3 -0
- package/esm2015/app/plugins/render/model/lightning.js +3 -0
- package/esm2015/app/plugins/render/model/render-data.js +6 -0
- package/esm2015/app/plugins/render/model/render-environment.js +3 -0
- package/esm2015/app/plugins/render/model/render-parameters.js +15 -0
- package/esm2015/app/plugins/render/model/render-queue-item.js +11 -0
- package/esm2015/app/plugins/render/model/render-settings.js +12 -0
- package/esm2015/app/plugins/render/model/render.js +10 -0
- package/esm2015/app/plugins/render/render-controls/render-controls.component.js +89 -0
- package/esm2015/app/plugins/render/render-dialog/render-dialog.component.js +318 -0
- package/esm2015/app/plugins/render/render.module.js +85 -0
- package/esm2015/app/plugins/render/service/new-render.service.js +302 -0
- package/esm2015/app/plugins/render/service/render.service.js +650 -0
- package/esm2015/app/plugins/room-planner/components/appearance-section/appearance-section.component.js +190 -0
- package/esm2015/app/plugins/room-planner/components/color-picker/color-picker.component.js +32 -0
- package/esm2015/app/plugins/room-planner/components/custom-cylinder-creator/custom-cylinder-creator.component.js +219 -0
- package/esm2015/app/plugins/room-planner/components/custome-shape-creator/custom-shape-creator.component.js +257 -0
- package/esm2015/app/plugins/room-planner/components/dimension-input/dimension-input.component.js +66 -0
- package/esm2015/app/plugins/room-planner/components/edit-apply/edit-apply.component.js +57 -0
- package/esm2015/app/plugins/room-planner/components/edit-parameter/edit-parameter.component.js +79 -0
- package/esm2015/app/plugins/room-planner/components/file-drop/file-drop.component.js +107 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/const/defaults.js +57 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/floorplanner-mode.js +11 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/floorplanner.component.js +1303 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/service/floorplan.service.js +536 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/service/room.service.js +330 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/snap-indicator-mode.js +7 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/utils/context.utils.js +53 -0
- package/esm2015/app/plugins/room-planner/components/object-library/object-library.component.js +63 -0
- package/esm2015/app/plugins/room-planner/components/ral-color-picker/ral-color-picker.component.js +128 -0
- package/esm2015/app/plugins/room-planner/components/rgb-color-picker/rgb-color-picker.component.js +37 -0
- package/esm2015/app/plugins/room-planner/components/selected-floor/selected-floor.component.js +36 -0
- package/esm2015/app/plugins/room-planner/components/selected-object/selected-object.component.js +203 -0
- package/esm2015/app/plugins/room-planner/components/selected-threed-object/selected-threed-object.component.js +139 -0
- package/esm2015/app/plugins/room-planner/components/selected-wall/selected-wall.component.js +102 -0
- package/esm2015/app/plugins/room-planner/components/settings/settings-options.component.js +152 -0
- package/esm2015/app/plugins/room-planner/components/settings/settings.component.js +188 -0
- package/esm2015/app/plugins/room-planner/components/texture-editor/texture-editor.component.js +617 -0
- package/esm2015/app/plugins/room-planner/components/texture-picker/texture-picker.component.js +74 -0
- package/esm2015/app/plugins/room-planner/components/wall-length-input/wall-length-input.component.js +48 -0
- package/esm2015/app/plugins/room-planner/const/key.js +12 -0
- package/esm2015/app/plugins/room-planner/room-planner/room-planner.component.js +1681 -0
- package/esm2015/app/plugins/room-planner/room-planner.module.js +233 -0
- package/esm2015/app/plugins/threed-in-photo/components/threed-in-photo-scene/threed-in-photo-scene.component.js +43 -0
- package/esm2015/app/plugins/threed-in-photo/components/upload-image/upload-image.component.js +61 -0
- package/esm2015/app/plugins/threed-in-photo/components/view-control/view-control.component.js +164 -0
- package/esm2015/app/plugins/threed-in-photo/models/model-output.js +18 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-build.service.js +243 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-connection.service.js +50 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-control.service.js +33 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-event-listeners.service.js +36 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-event.service.js +19 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-initializer.service.js +53 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-render.service.js +61 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-scene.service.js +37 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-view.service.js +21 -0
- package/esm2015/app/plugins/threed-in-photo/threed-in-photo.module.js +67 -0
- package/esm2015/app/plugins/threed-in-photo/utils/utils.js +21 -0
- package/esm2015/app/plugins/threedselector/element-buttons/element-buttons.component.js +95 -0
- package/esm2015/app/plugins/threedselector/element-slider/element-slider.component.js +28 -0
- package/esm2015/app/plugins/threedselector/element-toolbar/element-toolbar.component.js +80 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-connected-part-integration.js +3 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-integration.js +13 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-part-integration.js +6 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-part-variation.js +3 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/material.js +11 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/variation-settings.js +11 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/variation.js +3 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/animation.service.js +65 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/build-furniture.service.js +1343 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/dimensions.service.js +183 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/element.service.js +373 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/light-creation.service.js +35 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/load-furniture.service.js +291 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/resize.service.js +70 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/third-party-model.service.js +156 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/threedselector.service.js +101 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/variation-cache.service.js +133 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/variation.service.js +436 -0
- package/esm2015/app/plugins/threedselector/threedselector/threedselector.component.js +1116 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/asset.utils.js +128 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/image.utils.js +33 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/json-parser.utils.js +188 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/scene-3d.utils.js +159 -0
- package/esm2015/app/plugins/threedselector/threedselector.module.js +129 -0
- package/esm2015/app/plugins/toolbar/download-dialog/download-dialog.component.js +33 -0
- package/esm2015/app/plugins/toolbar/draw-dialog/draw-dialog.component.js +279 -0
- package/esm2015/app/plugins/toolbar/edit-preset-dialog/edit-preset-dialog.component.js +22 -0
- package/esm2015/app/plugins/toolbar/landing-screen-modal/landing-screen-modal.component.js +123 -0
- package/esm2015/app/plugins/toolbar/load-from-cloud-dialog/load-from-cloud-dialog.component.js +140 -0
- package/esm2015/app/plugins/toolbar/open-dialog/open-dialog.component.js +83 -0
- package/esm2015/app/plugins/toolbar/pdf-crop-dialog/pdf-crop-dialog.component.js +92 -0
- package/esm2015/app/plugins/toolbar/save-dialog/save-dialog.component.js +146 -0
- package/esm2015/app/plugins/toolbar/saved-dialog/saved-dialog.component.js +66 -0
- package/esm2015/app/plugins/toolbar/toolbar/limited-mode-message-component/limited-mode-message.component.js +26 -0
- package/esm2015/app/plugins/toolbar/toolbar/toolbar.component.js +676 -0
- package/esm2015/app/plugins/toolbar/toolbar.module.js +177 -0
- package/esm2015/app/service/dynamic-script.service.js +56 -0
- package/esm2015/app/service/google-tag-manager.service.js +89 -0
- package/esm2015/app/service/local-storage.service.js +93 -0
- package/esm2015/app/service/service-locator.service.js +4 -0
- package/esm2015/app/shared/base64-images.js +6 -0
- package/esm2015/app/shared/button-elevation/button-elevation.component.js +279 -0
- package/esm2015/app/shared/button-elevation/button-elevation.module.js +60 -0
- package/esm2015/app/shared/camera-settings-dialog/camera-settings-dialog.component.js +197 -0
- package/esm2015/app/shared/camera-settings-dialog/camera-settings-dialog.module.js +58 -0
- package/esm2015/app/shared/category-library/category-library.component.js +27 -0
- package/esm2015/app/shared/category-library/category-library.module.js +39 -0
- package/esm2015/app/shared/context-menu/context-menu.component.js +35 -0
- package/esm2015/app/shared/context-menu/context-menu.module.js +49 -0
- package/esm2015/app/shared/context-menu/item-context-menu/item-context-menu.component.js +93 -0
- package/esm2015/app/shared/dialog/dialog.component.js +119 -0
- package/esm2015/app/shared/dialog/dialog.module.js +45 -0
- package/esm2015/app/shared/dialog/enum/dialog-type.enum.js +8 -0
- package/esm2015/app/shared/dialog/interface/dialog-config.interface.js +2 -0
- package/esm2015/app/shared/dialog/service/dialog.service.js +21 -0
- package/esm2015/app/shared/error-dialog/error-dialog.component.js +24 -0
- package/esm2015/app/shared/error-dialog/error-dialog.module.js +30 -0
- package/esm2015/app/shared/export-dialog/export-dialog.component.js +68 -0
- package/esm2015/app/shared/export-dialog/export-dialog.module.js +35 -0
- package/esm2015/app/shared/info-dialog/info-dialog.component.js +54 -0
- package/esm2015/app/shared/info-dialog/info-dialog.module.js +37 -0
- package/esm2015/app/shared/loader/hd-loader.component.js +24 -0
- package/esm2015/app/shared/loader/hd-loader.module.js +33 -0
- package/esm2015/app/shared/loading-overlay/dialog/loading-overlay-dialog.component.js +26 -0
- package/esm2015/app/shared/loading-overlay/loading-overlay.component.js +55 -0
- package/esm2015/app/shared/loading-overlay/loading-overlay.module.js +42 -0
- package/esm2015/app/shared/model-dialog/model-dialog-furniture-list.component.js +325 -0
- package/esm2015/app/shared/model-dialog/model-dialog.component.js +104 -0
- package/esm2015/app/shared/model-dialog/model-dialog.module.js +64 -0
- package/esm2015/app/shared/progress-bar/progress-bar.component.js +39 -0
- package/esm2015/app/shared/progress-bar/progress-bar.module.js +33 -0
- package/esm2015/app/shared/register-dialog/register-dialog.component.js +112 -0
- package/esm2015/app/shared/screen-size-analysis/device-size-type.js +7 -0
- package/esm2015/app/shared/screen-size-analysis/navigator-type.enum.js +6 -0
- package/esm2015/app/shared/screen-size-analysis/screen-size-analysis.service.js +93 -0
- package/esm2015/app/shared/screen-size-analysis/screen-size-config.js +7 -0
- package/esm2015/app/shared/screen-size-analysis/screen-size-info.js +2 -0
- package/esm2015/app/shared/slider-input/slider-input.component.js +35 -0
- package/esm2015/app/shared/slider-input/slider-input.module.js +46 -0
- package/esm2015/app/shared/toolbar-icon/toolbar-icon.component.js +95 -0
- package/esm2015/app/shared/toolbar-icon/toolbar-icon.module.js +38 -0
- package/esm2015/app/shared/zoom-controls/zoom-controls.component.js +47 -0
- package/esm2015/app/shared/zoom-controls/zoom-controls.module.js +34 -0
- package/esm2015/colijnit-homedecorator.js +5 -0
- package/esm2015/environments/environment.js +17 -0
- package/esm2015/public_api.js +4 -0
- package/fesm2015/colijnit-homedecorator.js +45086 -0
- package/fesm2015/colijnit-homedecorator.js.map +1 -0
- package/homedecorator-globals.scss +361 -0
- package/package.json +48 -0
- package/palette.scss +32 -0
- package/public_api.d.ts +3 -0
- package/styles.scss +377 -0
|
@@ -0,0 +1,2345 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"RAL": "RAL 1000",
|
|
4
|
+
"RGB": "190-189-127",
|
|
5
|
+
"HEX": "#BEBD7F",
|
|
6
|
+
"German": "Grünbeige",
|
|
7
|
+
"English": "Green beige",
|
|
8
|
+
"French": "Beige vert",
|
|
9
|
+
"Spanish": "Beige verdoso",
|
|
10
|
+
"Italian": "Beige verdastro",
|
|
11
|
+
"Nederlands": "Groenbeige"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"RAL": "RAL 1001",
|
|
15
|
+
"RGB": "194-176-120",
|
|
16
|
+
"HEX": "#C2B078",
|
|
17
|
+
"German": "Beige",
|
|
18
|
+
"English": "Beige",
|
|
19
|
+
"French": "Beige",
|
|
20
|
+
"Spanish": "Beige",
|
|
21
|
+
"Italian": "Beige",
|
|
22
|
+
"Nederlands": "Beige"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"RAL": "RAL 1002",
|
|
26
|
+
"RGB": "198-166-100",
|
|
27
|
+
"HEX": "#C6A664",
|
|
28
|
+
"German": "Sandgelb",
|
|
29
|
+
"English": "Sand yellow",
|
|
30
|
+
"French": "Jaune sable",
|
|
31
|
+
"Spanish": "Amarillo arena",
|
|
32
|
+
"Italian": "Giallo sabbia",
|
|
33
|
+
"Nederlands": "Zandgeel"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"RAL": "RAL 1003",
|
|
37
|
+
"RGB": "229-190-001",
|
|
38
|
+
"HEX": "#E5BE01",
|
|
39
|
+
"German": "Signalgelb",
|
|
40
|
+
"English": "Signal yellow",
|
|
41
|
+
"French": "Jaune de sécurité",
|
|
42
|
+
"Spanish": "Amarillo señales",
|
|
43
|
+
"Italian": "Giallo segnale",
|
|
44
|
+
"Nederlands": "Signaalgeel"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"RAL": "RAL 1004",
|
|
48
|
+
"RGB": "205-164-052",
|
|
49
|
+
"HEX": "#CDA434",
|
|
50
|
+
"German": "Goldgelb",
|
|
51
|
+
"English": "Golden yellow",
|
|
52
|
+
"French": "Jaune or",
|
|
53
|
+
"Spanish": "Amarillo oro",
|
|
54
|
+
"Italian": "Giallo oro",
|
|
55
|
+
"Nederlands": "Goudgeel"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"RAL": "RAL 1005",
|
|
59
|
+
"RGB": "169-131-007",
|
|
60
|
+
"HEX": "#A98307",
|
|
61
|
+
"German": "Honiggelb",
|
|
62
|
+
"English": "Honey yellow",
|
|
63
|
+
"French": "Jaune miel",
|
|
64
|
+
"Spanish": "Amarillo miel",
|
|
65
|
+
"Italian": "Giallo miele",
|
|
66
|
+
"Nederlands": "Honinggeel"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"RAL": "RAL 1006",
|
|
70
|
+
"RGB": "228-160-016",
|
|
71
|
+
"HEX": "#E4A010",
|
|
72
|
+
"German": "Maisgelb",
|
|
73
|
+
"English": "Maize yellow",
|
|
74
|
+
"French": "Jaune maïs",
|
|
75
|
+
"Spanish": "Amarillo maiz",
|
|
76
|
+
"Italian": "Giallo polenta",
|
|
77
|
+
"Nederlands": "Maisgeel"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"RAL": "RAL 1007",
|
|
81
|
+
"RGB": "220-156-000",
|
|
82
|
+
"HEX": "#DC9D00",
|
|
83
|
+
"German": "Narzissengelb",
|
|
84
|
+
"English": "Daffodil yellow",
|
|
85
|
+
"French": "Jaune narcisse",
|
|
86
|
+
"Spanish": "Amarillo narciso",
|
|
87
|
+
"Italian": "Giallo narciso",
|
|
88
|
+
"Nederlands": "Narcissengeel"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"RAL": "RAL 1011",
|
|
92
|
+
"RGB": "138-102-066",
|
|
93
|
+
"HEX": "#8A6642",
|
|
94
|
+
"German": "Braunbeige",
|
|
95
|
+
"English": "Brown beige",
|
|
96
|
+
"French": "Beige brun",
|
|
97
|
+
"Spanish": "Beige pardo",
|
|
98
|
+
"Italian": "Beige marrone",
|
|
99
|
+
"Nederlands": "Bruinbeige"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"RAL": "RAL 1012",
|
|
103
|
+
"RGB": "199-180-070",
|
|
104
|
+
"HEX": "#C7B446",
|
|
105
|
+
"German": "Zitronengelb",
|
|
106
|
+
"English": "Lemon yellow",
|
|
107
|
+
"French": "Jaune citron",
|
|
108
|
+
"Spanish": "Amarillo limón",
|
|
109
|
+
"Italian": "Giallo limone",
|
|
110
|
+
"Nederlands": "Citroengeel"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"RAL": "RAL 1013",
|
|
114
|
+
"RGB": "234-230-202",
|
|
115
|
+
"HEX": "#EAE6CA",
|
|
116
|
+
"German": "Perlweiß",
|
|
117
|
+
"English": "Oyster white",
|
|
118
|
+
"French": "Blanc perlé",
|
|
119
|
+
"Spanish": "Blanco perla",
|
|
120
|
+
"Italian": "Bianco perla",
|
|
121
|
+
"Nederlands": "Parelwit"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"RAL": "RAL 1014",
|
|
125
|
+
"RGB": "225-204-079",
|
|
126
|
+
"HEX": "#E1CC4F",
|
|
127
|
+
"German": "Elfenbein",
|
|
128
|
+
"English": "Ivory",
|
|
129
|
+
"French": "Ivoire",
|
|
130
|
+
"Spanish": "Marfil",
|
|
131
|
+
"Italian": "Avorio",
|
|
132
|
+
"Nederlands": "Ivoorkleurig"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"RAL": "RAL 1015",
|
|
136
|
+
"RGB": "230-214-144",
|
|
137
|
+
"HEX": "#E6D690",
|
|
138
|
+
"German": "Hellelfenbein",
|
|
139
|
+
"English": "Light ivory",
|
|
140
|
+
"French": "Ivoire clair",
|
|
141
|
+
"Spanish": "Marfil claro",
|
|
142
|
+
"Italian": "Avorio chiaro",
|
|
143
|
+
"Nederlands": "Licht ivoorkleurig"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"RAL": "RAL 1016",
|
|
147
|
+
"RGB": "237-255-033",
|
|
148
|
+
"HEX": "#EDFF21",
|
|
149
|
+
"German": "Schwefelgelb",
|
|
150
|
+
"English": "Sulfur yellow",
|
|
151
|
+
"French": "Jaune soufre",
|
|
152
|
+
"Spanish": "Amarillo azufre",
|
|
153
|
+
"Italian": "Giallo zolfo",
|
|
154
|
+
"Nederlands": "Zwavelgeel"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"RAL": "RAL 1017",
|
|
158
|
+
"RGB": "245-208-051",
|
|
159
|
+
"HEX": "#F5D033",
|
|
160
|
+
"German": "Safrangelb",
|
|
161
|
+
"English": "Saffron yellow",
|
|
162
|
+
"French": "Jaune safran",
|
|
163
|
+
"Spanish": "Amarillo azafrán",
|
|
164
|
+
"Italian": "Giallo zafferano",
|
|
165
|
+
"Nederlands": "Saffraangeel"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"RAL": "RAL 1018",
|
|
169
|
+
"RGB": "248-243-053",
|
|
170
|
+
"HEX": "#F8F32B",
|
|
171
|
+
"German": "Zinkgelb",
|
|
172
|
+
"English": "Zinc yellow",
|
|
173
|
+
"French": "Jaune zinc",
|
|
174
|
+
"Spanish": "Amarillo de zinc",
|
|
175
|
+
"Italian": "Giallo zinco",
|
|
176
|
+
"Nederlands": "Zinkgeel"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"RAL": "RAL 1019",
|
|
180
|
+
"RGB": "158-151-100",
|
|
181
|
+
"HEX": "#9E9764",
|
|
182
|
+
"German": "Graubeige",
|
|
183
|
+
"English": "Grey beige",
|
|
184
|
+
"French": "Beige gris",
|
|
185
|
+
"Spanish": "Beige agrisado",
|
|
186
|
+
"Italian": "Beige grigiastro",
|
|
187
|
+
"Nederlands": "Grijsbeige"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"RAL": "RAL 1020",
|
|
191
|
+
"RGB": "153-153-080",
|
|
192
|
+
"HEX": "#999950",
|
|
193
|
+
"German": "Olivgelb",
|
|
194
|
+
"English": "Olive yellow",
|
|
195
|
+
"French": "Jaune olive",
|
|
196
|
+
"Spanish": "Amarillo oliva",
|
|
197
|
+
"Italian": "Giallo olivastro",
|
|
198
|
+
"Nederlands": "Olijfgeel"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"RAL": "RAL 1021",
|
|
202
|
+
"RGB": "243-218-011",
|
|
203
|
+
"HEX": "#F3DA0B",
|
|
204
|
+
"German": "Rapsgelb",
|
|
205
|
+
"English": "Rape yellow",
|
|
206
|
+
"French": "Jaune colza",
|
|
207
|
+
"Spanish": "Amarillo colza",
|
|
208
|
+
"Italian": "Giallo navone",
|
|
209
|
+
"Nederlands": "Koolzaadgeel"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"RAL": "RAL 1023",
|
|
213
|
+
"RGB": "250-210-001",
|
|
214
|
+
"HEX": "#FAD201",
|
|
215
|
+
"German": "Verkehrsgelb",
|
|
216
|
+
"English": "Traffic yellow",
|
|
217
|
+
"French": "Jaune signalisation",
|
|
218
|
+
"Spanish": "Amarillo tráfico",
|
|
219
|
+
"Italian": "Giallo traffico",
|
|
220
|
+
"Nederlands": "Verkeersgeel"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"RAL": "RAL 1024",
|
|
224
|
+
"RGB": "174-160-075",
|
|
225
|
+
"HEX": "#AEA04B",
|
|
226
|
+
"German": "Ockergelb",
|
|
227
|
+
"English": "Ochre yellow",
|
|
228
|
+
"French": "Jaune ocre",
|
|
229
|
+
"Spanish": "Amarillo ocre",
|
|
230
|
+
"Italian": "Giallo ocra",
|
|
231
|
+
"Nederlands": "Okergeel"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"RAL": "RAL 1026",
|
|
235
|
+
"RGB": "255-255-000",
|
|
236
|
+
"HEX": "#FFFF00",
|
|
237
|
+
"German": "Leuchtgelb",
|
|
238
|
+
"English": "Luminous yellow",
|
|
239
|
+
"French": "Jaune brillant",
|
|
240
|
+
"Spanish": "Amarillo brillante",
|
|
241
|
+
"Italian": "Giallo brillante",
|
|
242
|
+
"Nederlands": "Briljantgeel"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"RAL": "RAL 1027",
|
|
246
|
+
"RGB": "157-145-001",
|
|
247
|
+
"HEX": "#9D9101",
|
|
248
|
+
"German": "Currygelb",
|
|
249
|
+
"English": "Curry",
|
|
250
|
+
"French": "Jaune curry",
|
|
251
|
+
"Spanish": "Amarillo curry",
|
|
252
|
+
"Italian": "Giallo curry",
|
|
253
|
+
"Nederlands": "Kerriegeel"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"RAL": "RAL 1028",
|
|
257
|
+
"RGB": "244-169-000",
|
|
258
|
+
"HEX": "#F4A900",
|
|
259
|
+
"German": "Melonengelb",
|
|
260
|
+
"English": "Melon yellow",
|
|
261
|
+
"French": "Jaune melon",
|
|
262
|
+
"Spanish": "Amarillo melón",
|
|
263
|
+
"Italian": "Giallo melone",
|
|
264
|
+
"Nederlands": "Meloengeel"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"RAL": "RAL 1032",
|
|
268
|
+
"RGB": "214-174-001",
|
|
269
|
+
"HEX": "#D6AE01",
|
|
270
|
+
"German": "Ginstergelb",
|
|
271
|
+
"English": "Broom yellow",
|
|
272
|
+
"French": "Jaune genêt",
|
|
273
|
+
"Spanish": "Amarillo retama",
|
|
274
|
+
"Italian": "Giallo scopa",
|
|
275
|
+
"Nederlands": "Bremgeel"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"RAL": "RAL 1033",
|
|
279
|
+
"RGB": "243-165-005",
|
|
280
|
+
"HEX": "#F3A505",
|
|
281
|
+
"German": "Dahliengelb",
|
|
282
|
+
"English": "Dahlia yellow",
|
|
283
|
+
"French": "Jaune dahlia",
|
|
284
|
+
"Spanish": "Amarillo dalia",
|
|
285
|
+
"Italian": "Giallo dahlien",
|
|
286
|
+
"Nederlands": "Dahliageel"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"RAL": "RAL 1034",
|
|
290
|
+
"RGB": "239-169-074",
|
|
291
|
+
"HEX": "#EFA94A",
|
|
292
|
+
"German": "Pastellgelb",
|
|
293
|
+
"English": "Pastel yellow",
|
|
294
|
+
"French": "Jaune pastel",
|
|
295
|
+
"Spanish": "Amarillo pastel",
|
|
296
|
+
"Italian": "Giallo pastello",
|
|
297
|
+
"Nederlands": "Pastelgeel"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"RAL": "RAL 1035",
|
|
301
|
+
"RGB": "106-093-077",
|
|
302
|
+
"HEX": "#6A5D4D",
|
|
303
|
+
"German": "Perlbeige",
|
|
304
|
+
"English": "Pearl beige",
|
|
305
|
+
"French": "Beige nacré",
|
|
306
|
+
"Spanish": "Beige perlado",
|
|
307
|
+
"Italian": "Beige perlato",
|
|
308
|
+
"Nederlands": "Parelmoergrijs"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"RAL": "RAL 1036",
|
|
312
|
+
"RGB": "112-083-053",
|
|
313
|
+
"HEX": "#705335",
|
|
314
|
+
"German": "Perlgold",
|
|
315
|
+
"English": "Pearl gold",
|
|
316
|
+
"French": "Or nacré",
|
|
317
|
+
"Spanish": "Oro perlado",
|
|
318
|
+
"Italian": "Oro perlato",
|
|
319
|
+
"Nederlands": "Parelmoergoud"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"RAL": "RAL 1037",
|
|
323
|
+
"RGB": "243-159-024",
|
|
324
|
+
"HEX": "#F39F18",
|
|
325
|
+
"German": "Sonnengelb",
|
|
326
|
+
"English": "Sun yellow",
|
|
327
|
+
"French": "Jaune soleil",
|
|
328
|
+
"Spanish": "Amarillo sol",
|
|
329
|
+
"Italian": "Giallo sole",
|
|
330
|
+
"Nederlands": "Zonnegeel"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"RAL": "RAL 2000",
|
|
334
|
+
"RGB": "237-118-014",
|
|
335
|
+
"HEX": "#ED760E",
|
|
336
|
+
"German": "Gelborange",
|
|
337
|
+
"English": "Yellow orange",
|
|
338
|
+
"French": "Orangé jaune",
|
|
339
|
+
"Spanish": "Amarillo naranja",
|
|
340
|
+
"Italian": "Arancio giallastro",
|
|
341
|
+
"Nederlands": "Geeloranje"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"RAL": "RAL 2001",
|
|
345
|
+
"RGB": "201-060-032",
|
|
346
|
+
"HEX": "#C93C20",
|
|
347
|
+
"German": "Rotorange",
|
|
348
|
+
"English": "Red orange",
|
|
349
|
+
"French": "Orangé rouge",
|
|
350
|
+
"Spanish": "Rojo anaranjado",
|
|
351
|
+
"Italian": "Arancio rossastro",
|
|
352
|
+
"Nederlands": "Roodoranje"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"RAL": "RAL 2002",
|
|
356
|
+
"RGB": "203-040-033",
|
|
357
|
+
"HEX": "#CB2821",
|
|
358
|
+
"German": "Blutorange",
|
|
359
|
+
"English": "Vermilion",
|
|
360
|
+
"French": "Orangé sang",
|
|
361
|
+
"Spanish": "Naranja sanguineo",
|
|
362
|
+
"Italian": "Arancio sanguigno",
|
|
363
|
+
"Nederlands": "Vermiljoen"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"RAL": "RAL 2003",
|
|
367
|
+
"RGB": "255-117-020",
|
|
368
|
+
"HEX": "#FF7514",
|
|
369
|
+
"German": "Pastellorange",
|
|
370
|
+
"English": "Pastel orange",
|
|
371
|
+
"French": "Orangé pastel",
|
|
372
|
+
"Spanish": "Naranja pálido",
|
|
373
|
+
"Italian": "Arancio pastello",
|
|
374
|
+
"Nederlands": "Pasteloranje"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"RAL": "RAL 2004",
|
|
378
|
+
"RGB": "244-070-017",
|
|
379
|
+
"HEX": "#F44611",
|
|
380
|
+
"German": "Reinorange",
|
|
381
|
+
"English": "Pure orange",
|
|
382
|
+
"French": "Orangé pur",
|
|
383
|
+
"Spanish": "Naranja puro",
|
|
384
|
+
"Italian": "Arancio puro",
|
|
385
|
+
"Nederlands": "Zuiver oranje"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"RAL": "RAL 2005",
|
|
389
|
+
"RGB": "255-035-001",
|
|
390
|
+
"HEX": "#FF2301",
|
|
391
|
+
"German": "Leuchtorange",
|
|
392
|
+
"English": "Luminous orange",
|
|
393
|
+
"French": "Orangé brillant",
|
|
394
|
+
"Spanish": "Naranja brillante",
|
|
395
|
+
"Italian": "Arancio brillante",
|
|
396
|
+
"Nederlands": "Briljant oranje"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"RAL": "RAL 2007",
|
|
400
|
+
"RGB": "255-164-032",
|
|
401
|
+
"HEX": "#FFA420",
|
|
402
|
+
"German": "Leuchthellorange",
|
|
403
|
+
"English": "Luminous bright orange",
|
|
404
|
+
"French": "Orangé clair rillant",
|
|
405
|
+
"Spanish": "Naranja claro brillante",
|
|
406
|
+
"Italian": "Arancio chiaro brillante",
|
|
407
|
+
"Nederlands": "Briljant lichtoranje"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"RAL": "RAL 2008",
|
|
411
|
+
"RGB": "247-094-037",
|
|
412
|
+
"HEX": "#F75E25",
|
|
413
|
+
"German": "Hellrotorange",
|
|
414
|
+
"English": "Bright red orange",
|
|
415
|
+
"French": "Orangé rouge clair",
|
|
416
|
+
"Spanish": "Rojo claro anaranjado",
|
|
417
|
+
"Italian": "Rosso arancio chiaro",
|
|
418
|
+
"Nederlands": "Licht roodoranje"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"RAL": "RAL 2009",
|
|
422
|
+
"RGB": "245-064-033",
|
|
423
|
+
"HEX": "#F54021",
|
|
424
|
+
"German": "Verkehrsorange",
|
|
425
|
+
"English": "Traffic orange",
|
|
426
|
+
"French": "Orangé signalisation",
|
|
427
|
+
"Spanish": "Naranja tráfico",
|
|
428
|
+
"Italian": "Arancio traffico",
|
|
429
|
+
"Nederlands": "Verkeersoranje"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"RAL": "RAL 2010",
|
|
433
|
+
"RGB": "216-075-032",
|
|
434
|
+
"HEX": "#D84B20",
|
|
435
|
+
"German": "Signalorange",
|
|
436
|
+
"English": "Signal orange",
|
|
437
|
+
"French": "Orangé de sécurité",
|
|
438
|
+
"Spanish": "Naranja señales",
|
|
439
|
+
"Italian": "Arancio segnale",
|
|
440
|
+
"Nederlands": "Signaaloranje"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"RAL": "RAL 2011",
|
|
444
|
+
"RGB": "236-124-038",
|
|
445
|
+
"HEX": "#EC7C26",
|
|
446
|
+
"German": "Tieforange",
|
|
447
|
+
"English": "Deep orange",
|
|
448
|
+
"French": "Orangé foncé",
|
|
449
|
+
"Spanish": "Naranja intenso",
|
|
450
|
+
"Italian": "Arancio profondo",
|
|
451
|
+
"Nederlands": "Dieporanje"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"RAL": "RAL 2012",
|
|
455
|
+
"RGB": "235-106-014",
|
|
456
|
+
"HEX": "#E55137",
|
|
457
|
+
"German": "Lachsorange",
|
|
458
|
+
"English": "Salmon range",
|
|
459
|
+
"French": "Orangé saumon",
|
|
460
|
+
"Spanish": "Naranja salmón",
|
|
461
|
+
"Italian": "Arancio salmone",
|
|
462
|
+
"Nederlands": "Zalmoranje"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"RAL": "RAL 2013",
|
|
466
|
+
"RGB": "195-088-049",
|
|
467
|
+
"HEX": "#C35831",
|
|
468
|
+
"German": "Perlorange",
|
|
469
|
+
"English": "Pearl orange",
|
|
470
|
+
"French": "Orangé nacré",
|
|
471
|
+
"Spanish": "Naranja perlado",
|
|
472
|
+
"Italian": "Arancio perlato",
|
|
473
|
+
"Nederlands": "Parelmoeroranje"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"RAL": "RAL 3000",
|
|
477
|
+
"RGB": "175-043-030",
|
|
478
|
+
"HEX": "#AF2B1E",
|
|
479
|
+
"German": "Feuerrot",
|
|
480
|
+
"English": "Flame red",
|
|
481
|
+
"French": "Rouge feu",
|
|
482
|
+
"Spanish": "Rojo vivo",
|
|
483
|
+
"Italian": "Rosso fuoco",
|
|
484
|
+
"Nederlands": "Vuurrood"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"RAL": "RAL 3001",
|
|
488
|
+
"RGB": "165-032-025",
|
|
489
|
+
"HEX": "#A52019",
|
|
490
|
+
"German": "Signalrot",
|
|
491
|
+
"English": "Signal red",
|
|
492
|
+
"French": "Rouge de sécurité",
|
|
493
|
+
"Spanish": "Rojo señales",
|
|
494
|
+
"Italian": "Rosso segnale",
|
|
495
|
+
"Nederlands": "Signaalrood"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"RAL": "RAL 3002",
|
|
499
|
+
"RGB": "162-035-029",
|
|
500
|
+
"HEX": "#A2231D",
|
|
501
|
+
"German": "Karminrot",
|
|
502
|
+
"English": "Carmine red",
|
|
503
|
+
"French": "Rouge carmin",
|
|
504
|
+
"Spanish": "Rojo carmin",
|
|
505
|
+
"Italian": "Rosso carminio",
|
|
506
|
+
"Nederlands": "Karmijnrood"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"RAL": "RAL 3003",
|
|
510
|
+
"RGB": "155-017-030",
|
|
511
|
+
"HEX": "#9B111E",
|
|
512
|
+
"German": "Rubinrot",
|
|
513
|
+
"English": "Ruby red",
|
|
514
|
+
"French": "Rouge rubis",
|
|
515
|
+
"Spanish": "Rojo rubí",
|
|
516
|
+
"Italian": "Rosso rubino",
|
|
517
|
+
"Nederlands": "Robijnrood"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"RAL": "RAL 3004",
|
|
521
|
+
"RGB": "117-021-030",
|
|
522
|
+
"HEX": "#75151E",
|
|
523
|
+
"German": "Purpurrot",
|
|
524
|
+
"English": "Purple red",
|
|
525
|
+
"French": "Rouge pourpre",
|
|
526
|
+
"Spanish": "Rojo purpura",
|
|
527
|
+
"Italian": "Rosso porpora",
|
|
528
|
+
"Nederlands": "Purperrood"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"RAL": "RAL 3005",
|
|
532
|
+
"RGB": "094-033-041",
|
|
533
|
+
"HEX": "#5E2129",
|
|
534
|
+
"German": "Weinrot",
|
|
535
|
+
"English": "Wine red",
|
|
536
|
+
"French": "Rouge vin",
|
|
537
|
+
"Spanish": "Rojo vino",
|
|
538
|
+
"Italian": "Rosso vino",
|
|
539
|
+
"Nederlands": "Wijnrood"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"RAL": "RAL 3007",
|
|
543
|
+
"RGB": "065-034-039",
|
|
544
|
+
"HEX": "#412227",
|
|
545
|
+
"German": "Schwarzrot",
|
|
546
|
+
"English": "Black red",
|
|
547
|
+
"French": "Rouge noir",
|
|
548
|
+
"Spanish": "Rojo negruzco",
|
|
549
|
+
"Italian": "Rosso nerastro",
|
|
550
|
+
"Nederlands": "Zwartrood"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"RAL": "RAL 3009",
|
|
554
|
+
"RGB": "100-036-036",
|
|
555
|
+
"HEX": "#642424",
|
|
556
|
+
"German": "Oxidrot",
|
|
557
|
+
"English": "Oxide red",
|
|
558
|
+
"French": "Rouge oxyde",
|
|
559
|
+
"Spanish": "Rojo óxido",
|
|
560
|
+
"Italian": "Rosso ossido",
|
|
561
|
+
"Nederlands": "Oxyderood"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"RAL": "RAL 3011",
|
|
565
|
+
"RGB": "120-031-025",
|
|
566
|
+
"HEX": "#781F19",
|
|
567
|
+
"German": "Braunrot",
|
|
568
|
+
"English": "Brown red",
|
|
569
|
+
"French": "Rouge brun",
|
|
570
|
+
"Spanish": "Rojo pardo",
|
|
571
|
+
"Italian": "Rosso marrone",
|
|
572
|
+
"Nederlands": "Bruinrood"
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"RAL": "RAL 3012",
|
|
576
|
+
"RGB": "193-135-107",
|
|
577
|
+
"HEX": "#C1876B",
|
|
578
|
+
"German": "Beigerot",
|
|
579
|
+
"English": "Beige red",
|
|
580
|
+
"French": "Rouge beige",
|
|
581
|
+
"Spanish": "Rojo beige",
|
|
582
|
+
"Italian": "Rosso beige",
|
|
583
|
+
"Nederlands": "Beigerood"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"RAL": "RAL 3013",
|
|
587
|
+
"RGB": "161-035-018",
|
|
588
|
+
"HEX": "#A12312",
|
|
589
|
+
"German": "Tomatenrot",
|
|
590
|
+
"English": "Tomato red",
|
|
591
|
+
"French": "Rouge tomate",
|
|
592
|
+
"Spanish": "Rojo tomate",
|
|
593
|
+
"Italian": "Rosso pomodoro",
|
|
594
|
+
"Nederlands": "Tomaatrood"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"RAL": "RAL 3014",
|
|
598
|
+
"RGB": "211-110-112",
|
|
599
|
+
"HEX": "#D36E70",
|
|
600
|
+
"German": "Altrosa",
|
|
601
|
+
"English": "Antique pink",
|
|
602
|
+
"French": "Vieux rose",
|
|
603
|
+
"Spanish": "Rojo viejo",
|
|
604
|
+
"Italian": "Rosa antico",
|
|
605
|
+
"Nederlands": "Oudroze"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"RAL": "RAL 3015",
|
|
609
|
+
"RGB": "234-137-154",
|
|
610
|
+
"HEX": "#EA899A",
|
|
611
|
+
"German": "Hellrosa",
|
|
612
|
+
"English": "Light pink",
|
|
613
|
+
"French": "Rose clair",
|
|
614
|
+
"Spanish": "Rosa claro",
|
|
615
|
+
"Italian": "Rosa chiaro",
|
|
616
|
+
"Nederlands": "Lichtroze"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"RAL": "RAL 3016",
|
|
620
|
+
"RGB": "179-040-033",
|
|
621
|
+
"HEX": "#B32821",
|
|
622
|
+
"German": "Korallenrot",
|
|
623
|
+
"English": "Coral red",
|
|
624
|
+
"French": "Rouge corail",
|
|
625
|
+
"Spanish": "Rojo coral",
|
|
626
|
+
"Italian": "Rosso corallo",
|
|
627
|
+
"Nederlands": "Koraalrood"
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"RAL": "RAL 3017",
|
|
631
|
+
"RGB": "230-050-068",
|
|
632
|
+
"HEX": "#E63244",
|
|
633
|
+
"German": "Rosé",
|
|
634
|
+
"English": "Rose",
|
|
635
|
+
"French": "Rosé",
|
|
636
|
+
"Spanish": "Rosa",
|
|
637
|
+
"Italian": "Rosato",
|
|
638
|
+
"Nederlands": "Bleekrood"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"RAL": "RAL 3018",
|
|
642
|
+
"RGB": "213-048-050",
|
|
643
|
+
"HEX": "#D53032",
|
|
644
|
+
"German": "Erdbeerrot",
|
|
645
|
+
"English": "Strawberry red",
|
|
646
|
+
"French": "Rouge fraise",
|
|
647
|
+
"Spanish": "Rojo fresa",
|
|
648
|
+
"Italian": "Rosso fragola",
|
|
649
|
+
"Nederlands": "Aardbeirood"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"RAL": "RAL 3020",
|
|
653
|
+
"RGB": "204-006-005",
|
|
654
|
+
"HEX": "#CC0605",
|
|
655
|
+
"German": "Verkehrsrot",
|
|
656
|
+
"English": "Traffic red",
|
|
657
|
+
"French": "Rouge signalisation",
|
|
658
|
+
"Spanish": "Rojo tráfico",
|
|
659
|
+
"Italian": "Rosso traffico",
|
|
660
|
+
"Nederlands": "Verkeersrood"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"RAL": "RAL 3022",
|
|
664
|
+
"RGB": "217-080-048",
|
|
665
|
+
"HEX": "#D95030",
|
|
666
|
+
"German": "Lachsrot",
|
|
667
|
+
"English": "Salmon pink",
|
|
668
|
+
"French": "Rouge saumon",
|
|
669
|
+
"Spanish": "Rojo salmón",
|
|
670
|
+
"Italian": "Rosso salmone",
|
|
671
|
+
"Nederlands": "Zalmrood"
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"RAL": "RAL 3024",
|
|
675
|
+
"RGB": "248-000-000",
|
|
676
|
+
"HEX": "#F80000",
|
|
677
|
+
"German": "Leuchtrot",
|
|
678
|
+
"English": "Luminous red",
|
|
679
|
+
"French": "Rouge brillant",
|
|
680
|
+
"Spanish": "Rojo brillante",
|
|
681
|
+
"Italian": "Rosso brillante",
|
|
682
|
+
"Nederlands": "Briljantrood"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"RAL": "RAL 3026",
|
|
686
|
+
"RGB": "254-000-000",
|
|
687
|
+
"HEX": "#FE0000",
|
|
688
|
+
"German": "Leuchthellrot",
|
|
689
|
+
"English": "Luminous bright red",
|
|
690
|
+
"French": "Rouge clair brillant",
|
|
691
|
+
"Spanish": "Rojo claro brillante",
|
|
692
|
+
"Italian": "Rosso chiaro brillante",
|
|
693
|
+
"Nederlands": "Briljant lichtrood"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"RAL": "RAL 3027",
|
|
697
|
+
"RGB": "197-029-052",
|
|
698
|
+
"HEX": "#C51D34",
|
|
699
|
+
"German": "Himbeerrot",
|
|
700
|
+
"English": "Raspberry red",
|
|
701
|
+
"French": "Rouge framboise",
|
|
702
|
+
"Spanish": "Rojo frambuesa",
|
|
703
|
+
"Italian": "Rosso lampone",
|
|
704
|
+
"Nederlands": "Framboosrood"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"RAL": "RAL 3028",
|
|
708
|
+
"RGB": "203-050-052",
|
|
709
|
+
"HEX": "#CB3234",
|
|
710
|
+
"German": "Reinrot",
|
|
711
|
+
"English": "Pure red",
|
|
712
|
+
"French": "Rouge puro",
|
|
713
|
+
"Spanish": "Rojo puro",
|
|
714
|
+
"Italian": "Rosso puro",
|
|
715
|
+
"Nederlands": "Zuiverrood"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"RAL": "RAL 3031",
|
|
719
|
+
"RGB": "179-036-040",
|
|
720
|
+
"HEX": "#B32428",
|
|
721
|
+
"German": "Orientrot",
|
|
722
|
+
"English": "Orient red",
|
|
723
|
+
"French": "Rouge oriental",
|
|
724
|
+
"Spanish": "Rojo oriente",
|
|
725
|
+
"Italian": "Rosso oriente",
|
|
726
|
+
"Nederlands": "Oriëntrood"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"RAL": "RAL 3032",
|
|
730
|
+
"RGB": "114-020-034",
|
|
731
|
+
"HEX": "#721422",
|
|
732
|
+
"German": "Perlrubinrot",
|
|
733
|
+
"English": "Pearl ruby red",
|
|
734
|
+
"French": "Rouge rubis nacré",
|
|
735
|
+
"Spanish": "Rojo rubí perlado",
|
|
736
|
+
"Italian": "Rosso rubino perlato",
|
|
737
|
+
"Nederlands": "Parelmoer-donkerrood"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"RAL": "RAL 3033",
|
|
741
|
+
"RGB": "180-076-067",
|
|
742
|
+
"HEX": "#B44C43",
|
|
743
|
+
"German": "Perlrosa",
|
|
744
|
+
"English": "Pearl pink",
|
|
745
|
+
"French": "Rose nacré",
|
|
746
|
+
"Spanish": "Rosa perlado",
|
|
747
|
+
"Italian": "Rosa perlato",
|
|
748
|
+
"Nederlands": "Parelmoer-lichtrood"
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"RAL": "RAL 4001",
|
|
752
|
+
"RGB": "222-076-138",
|
|
753
|
+
"HEX": "#6D3F5B",
|
|
754
|
+
"German": "Rotlila",
|
|
755
|
+
"English": "Red lilac",
|
|
756
|
+
"French": "Lilas rouge",
|
|
757
|
+
"Spanish": "Rojo lila",
|
|
758
|
+
"Italian": "Lilla rossastro",
|
|
759
|
+
"Nederlands": "Roodlila"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"RAL": "RAL 4002",
|
|
763
|
+
"RGB": "146-043-062",
|
|
764
|
+
"HEX": "#922B3E",
|
|
765
|
+
"German": "Rotviolett",
|
|
766
|
+
"English": "Red violet",
|
|
767
|
+
"French": "Violet rouge",
|
|
768
|
+
"Spanish": "Rojo violeta",
|
|
769
|
+
"Italian": "Viola rossastro",
|
|
770
|
+
"Nederlands": "Roodpaars"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"RAL": "RAL 4003",
|
|
774
|
+
"RGB": "222-076-138",
|
|
775
|
+
"HEX": "#DE4C8A",
|
|
776
|
+
"German": "Erikaviolett",
|
|
777
|
+
"English": "Heather violet",
|
|
778
|
+
"French": "Violet bruyère",
|
|
779
|
+
"Spanish": "Violeta érica",
|
|
780
|
+
"Italian": "Viola erica",
|
|
781
|
+
"Nederlands": "Heidepaars"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"RAL": "RAL 4004",
|
|
785
|
+
"RGB": "110-028-052",
|
|
786
|
+
"HEX": "#641C34",
|
|
787
|
+
"German": "Bordeauxviolett",
|
|
788
|
+
"English": "Claret violet",
|
|
789
|
+
"French": "Violet bordeaux",
|
|
790
|
+
"Spanish": "Burdeos",
|
|
791
|
+
"Italian": "Viola bordeaux",
|
|
792
|
+
"Nederlands": "Bordeauxpaars"
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"RAL": "RAL 4005",
|
|
796
|
+
"RGB": "108-070-117",
|
|
797
|
+
"HEX": "#6C4675",
|
|
798
|
+
"German": "Blaulila",
|
|
799
|
+
"English": "Blue lilac",
|
|
800
|
+
"French": "Lilas bleu",
|
|
801
|
+
"Spanish": "Lila azulado",
|
|
802
|
+
"Italian": "Lilla bluastro",
|
|
803
|
+
"Nederlands": "Blauwlila"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"RAL": "RAL 4006",
|
|
807
|
+
"RGB": "160-052-114",
|
|
808
|
+
"HEX": "#A03472",
|
|
809
|
+
"German": "Verkehrspurpur",
|
|
810
|
+
"English": "Traffic purple",
|
|
811
|
+
"French": "Pourpre signalisation",
|
|
812
|
+
"Spanish": "Púrpurá tráfico",
|
|
813
|
+
"Italian": "Porpora traffico",
|
|
814
|
+
"Nederlands": "Verkeerspurper"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"RAL": "RAL 4007",
|
|
818
|
+
"RGB": "074-025-044",
|
|
819
|
+
"HEX": "#4A192C",
|
|
820
|
+
"German": "Purpurviolett",
|
|
821
|
+
"English": "Purple violet",
|
|
822
|
+
"French": "Violet pourpre",
|
|
823
|
+
"Spanish": "Violeta púrpura",
|
|
824
|
+
"Italian": "Porpora violetto",
|
|
825
|
+
"Nederlands": "Purperviolet"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"RAL": "RAL 4008",
|
|
829
|
+
"RGB": "144-070-132",
|
|
830
|
+
"HEX": "#924E7D",
|
|
831
|
+
"German": "Signalviolett",
|
|
832
|
+
"English": "Signal violet",
|
|
833
|
+
"French": "Violet de sécurité",
|
|
834
|
+
"Spanish": "Violeta señales",
|
|
835
|
+
"Italian": "Violetto segnale",
|
|
836
|
+
"Nederlands": "Signaalviolet"
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"RAL": "RAL 4009",
|
|
840
|
+
"RGB": "164-125-144",
|
|
841
|
+
"HEX": "#A18594",
|
|
842
|
+
"German": "Pastellviolett",
|
|
843
|
+
"English": "Pastel violet",
|
|
844
|
+
"French": "Violet pastel",
|
|
845
|
+
"Spanish": "Violeta pastel",
|
|
846
|
+
"Italian": "Violetto pastello",
|
|
847
|
+
"Nederlands": "Pastelviolet"
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"RAL": "RAL 4010",
|
|
851
|
+
"RGB": "215-045-109",
|
|
852
|
+
"HEX": "#CF3476",
|
|
853
|
+
"German": "Telemagenta",
|
|
854
|
+
"English": "Telemagenta",
|
|
855
|
+
"French": "Telemagenta",
|
|
856
|
+
"Spanish": "Magenta tele",
|
|
857
|
+
"Italian": "Tele Magenta",
|
|
858
|
+
"Nederlands": "Telemagenta"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"RAL": "RAL 4011",
|
|
862
|
+
"RGB": "134-115-161",
|
|
863
|
+
"HEX": "#8673A1",
|
|
864
|
+
"German": "Perlviolett",
|
|
865
|
+
"English": "Pearl violet",
|
|
866
|
+
"French": "Violet nacré",
|
|
867
|
+
"Spanish": "Violeta perlado",
|
|
868
|
+
"Italian": "Violetto perlato",
|
|
869
|
+
"Nederlands": "Parelmoer-donkerviolet"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"RAL": "RAL 4012",
|
|
873
|
+
"RGB": "108-104-129",
|
|
874
|
+
"HEX": "#6C6874",
|
|
875
|
+
"German": "Perlbrombeer",
|
|
876
|
+
"English": "Pearl black berry",
|
|
877
|
+
"French": "Mûre nacré",
|
|
878
|
+
"Spanish": "Morado perlado",
|
|
879
|
+
"Italian": "Mora perlato",
|
|
880
|
+
"Nederlands": "Parelmoer-lichtviolet"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"RAL": "RAL 5000",
|
|
884
|
+
"RGB": "042-046-075",
|
|
885
|
+
"HEX": "#354D73",
|
|
886
|
+
"German": "Violettblau",
|
|
887
|
+
"English": "Violet blue",
|
|
888
|
+
"French": "Bleu violet",
|
|
889
|
+
"Spanish": "Azul violeta",
|
|
890
|
+
"Italian": "Blu violaceo",
|
|
891
|
+
"Nederlands": "Paarsblauw"
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"RAL": "RAL 5001",
|
|
895
|
+
"RGB": "031-052-056",
|
|
896
|
+
"HEX": "#1F3438",
|
|
897
|
+
"German": "Grünblau",
|
|
898
|
+
"English": "Green blue",
|
|
899
|
+
"French": "Bleu vert",
|
|
900
|
+
"Spanish": "Azul verdoso",
|
|
901
|
+
"Italian": "Blu verdastro",
|
|
902
|
+
"Nederlands": "Groenblauw"
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"RAL": "RAL 5002",
|
|
906
|
+
"RGB": "032-033-079",
|
|
907
|
+
"HEX": "#20214F",
|
|
908
|
+
"German": "Ultramarinblau",
|
|
909
|
+
"English": "Ultramarine blue",
|
|
910
|
+
"French": "Bleu outremer",
|
|
911
|
+
"Spanish": "Azul ultramar",
|
|
912
|
+
"Italian": "Blu oltremare",
|
|
913
|
+
"Nederlands": "Ultramarijnblauw"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"RAL": "RAL 5003",
|
|
917
|
+
"RGB": "029-030-051",
|
|
918
|
+
"HEX": "#1D1E33",
|
|
919
|
+
"German": "Saphirblau",
|
|
920
|
+
"English": "Saphire blue",
|
|
921
|
+
"French": "Bleu saphir",
|
|
922
|
+
"Spanish": "Azul zafiro",
|
|
923
|
+
"Italian": "Blu zaffiro",
|
|
924
|
+
"Nederlands": "Saffierblauw"
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
"RAL": "RAL 5004",
|
|
928
|
+
"RGB": "032-033-079",
|
|
929
|
+
"HEX": "#18171C",
|
|
930
|
+
"German": "Schwarzblau",
|
|
931
|
+
"English": "Black blue",
|
|
932
|
+
"French": "Bleu noir",
|
|
933
|
+
"Spanish": "Azul negruzco",
|
|
934
|
+
"Italian": "Blu nerastro",
|
|
935
|
+
"Nederlands": "Zwartblauw"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"RAL": "RAL 5005",
|
|
939
|
+
"RGB": "030-045-110",
|
|
940
|
+
"HEX": "#1E2460",
|
|
941
|
+
"German": "Signalblau",
|
|
942
|
+
"English": "Signal blue",
|
|
943
|
+
"French": "Bleu de sécurité",
|
|
944
|
+
"Spanish": "Azul señales",
|
|
945
|
+
"Italian": "Blu segnale",
|
|
946
|
+
"Nederlands": "Signaalblauw"
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"RAL": "RAL 5007",
|
|
950
|
+
"RGB": "062-095-138",
|
|
951
|
+
"HEX": "#3E5F8A",
|
|
952
|
+
"German": "Brillantblau",
|
|
953
|
+
"English": "Brillant blue",
|
|
954
|
+
"French": "Bleu brillant",
|
|
955
|
+
"Spanish": "Azul brillante",
|
|
956
|
+
"Italian": "Blu brillante",
|
|
957
|
+
"Nederlands": "Briljantblauw"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"RAL": "RAL 5008",
|
|
961
|
+
"RGB": "038-037-045",
|
|
962
|
+
"HEX": "#26252D",
|
|
963
|
+
"German": "Graublau",
|
|
964
|
+
"English": "Grey blue",
|
|
965
|
+
"French": "Bleu gris",
|
|
966
|
+
"Spanish": "Azul grisáceo",
|
|
967
|
+
"Italian": "Blu grigiastro",
|
|
968
|
+
"Nederlands": "Grijsblauw"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"RAL": "RAL 5009",
|
|
972
|
+
"RGB": "002-086-105",
|
|
973
|
+
"HEX": "#025669",
|
|
974
|
+
"German": "Azurblau",
|
|
975
|
+
"English": "Azure blue",
|
|
976
|
+
"French": "Bleu azur",
|
|
977
|
+
"Spanish": "Azul azur",
|
|
978
|
+
"Italian": "Blu azzurro",
|
|
979
|
+
"Nederlands": "Azuurblauw"
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"RAL": "RAL 5010",
|
|
983
|
+
"RGB": "014-041-075",
|
|
984
|
+
"HEX": "#0E294B",
|
|
985
|
+
"German": "Enzianblau",
|
|
986
|
+
"English": "Gentian blue",
|
|
987
|
+
"French": "Bleu gentiane",
|
|
988
|
+
"Spanish": "Azul genciana",
|
|
989
|
+
"Italian": "Blu genziana",
|
|
990
|
+
"Nederlands": "Gentiaanblauw"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"RAL": "RAL 5011",
|
|
994
|
+
"RGB": "035-026-036",
|
|
995
|
+
"HEX": "#231A24",
|
|
996
|
+
"German": "Stahlblau",
|
|
997
|
+
"English": "Steel blue",
|
|
998
|
+
"French": "Bleu acier",
|
|
999
|
+
"Spanish": "Azul acero",
|
|
1000
|
+
"Italian": "Blu acciaio",
|
|
1001
|
+
"Nederlands": "Staalblauw"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"RAL": "RAL 5012",
|
|
1005
|
+
"RGB": "059-131-189",
|
|
1006
|
+
"HEX": "#3B83BD",
|
|
1007
|
+
"German": "Lichtblau",
|
|
1008
|
+
"English": "Light blue",
|
|
1009
|
+
"French": "Bleu clair",
|
|
1010
|
+
"Spanish": "Azul luminoso",
|
|
1011
|
+
"Italian": "Blu luce",
|
|
1012
|
+
"Nederlands": "Lichtblauw"
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"RAL": "RAL 5013",
|
|
1016
|
+
"RGB": "037-041-074",
|
|
1017
|
+
"HEX": "#1E213D",
|
|
1018
|
+
"German": "Kobaltblau",
|
|
1019
|
+
"English": "Cobalt blue",
|
|
1020
|
+
"French": "Bleu cobalt",
|
|
1021
|
+
"Spanish": "Azul cobalto",
|
|
1022
|
+
"Italian": "Blu cobalto",
|
|
1023
|
+
"Nederlands": "Kobaltblauw"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"RAL": "RAL 5014",
|
|
1027
|
+
"RGB": "096-111-140",
|
|
1028
|
+
"HEX": "#606E8C",
|
|
1029
|
+
"German": "Taubenblau",
|
|
1030
|
+
"English": "Pigeon blue",
|
|
1031
|
+
"French": "Bleu pigeon",
|
|
1032
|
+
"Spanish": "Azul olombino",
|
|
1033
|
+
"Italian": "Blu colomba",
|
|
1034
|
+
"Nederlands": "Duifblauw"
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"RAL": "RAL 5015",
|
|
1038
|
+
"RGB": "034-113-179",
|
|
1039
|
+
"HEX": "#2271B3",
|
|
1040
|
+
"German": "Himmelblau",
|
|
1041
|
+
"English": "Sky blue",
|
|
1042
|
+
"French": "Bleu ciel",
|
|
1043
|
+
"Spanish": "Azul celeste",
|
|
1044
|
+
"Italian": "Blu cielo",
|
|
1045
|
+
"Nederlands": "Hemelsblauw"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"RAL": "RAL 5017",
|
|
1049
|
+
"RGB": "006-057-113",
|
|
1050
|
+
"HEX": "#063971",
|
|
1051
|
+
"German": "Verkehrsblau",
|
|
1052
|
+
"English": "Traffic blue",
|
|
1053
|
+
"French": "Bleu signalisation",
|
|
1054
|
+
"Spanish": "Azul tráfico",
|
|
1055
|
+
"Italian": "Blu traffico",
|
|
1056
|
+
"Nederlands": "Verkeersblauw"
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"RAL": "RAL 5018",
|
|
1060
|
+
"RGB": "063-136-143",
|
|
1061
|
+
"HEX": "#3F888F",
|
|
1062
|
+
"German": "Türkisblau",
|
|
1063
|
+
"English": "Turquoise blue",
|
|
1064
|
+
"French": "Bleu turquoise",
|
|
1065
|
+
"Spanish": "Azul turquesa",
|
|
1066
|
+
"Italian": "Blu turchese",
|
|
1067
|
+
"Nederlands": "Turkooisblauw"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"RAL": "RAL 5019",
|
|
1071
|
+
"RGB": "027-085-131",
|
|
1072
|
+
"HEX": "#1B5583",
|
|
1073
|
+
"German": "Capriblau",
|
|
1074
|
+
"English": "Capri blue",
|
|
1075
|
+
"French": "Bleu capri",
|
|
1076
|
+
"Spanish": "Azul capri",
|
|
1077
|
+
"Italian": "Blu capri",
|
|
1078
|
+
"Nederlands": "Capriblauw"
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"RAL": "RAL 5020",
|
|
1082
|
+
"RGB": "029-051-074",
|
|
1083
|
+
"HEX": "#1D334A",
|
|
1084
|
+
"German": "Ozeanblau",
|
|
1085
|
+
"English": "Ocean blue",
|
|
1086
|
+
"French": "Bleu océan",
|
|
1087
|
+
"Spanish": "Azul oceano",
|
|
1088
|
+
"Italian": "Blu oceano",
|
|
1089
|
+
"Nederlands": "Oceaanblauw"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"RAL": "RAL 5021",
|
|
1093
|
+
"RGB": "037-109-123",
|
|
1094
|
+
"HEX": "#256D7B",
|
|
1095
|
+
"German": "Wasserblau",
|
|
1096
|
+
"English": "Water blue",
|
|
1097
|
+
"French": "Bleu d’eau",
|
|
1098
|
+
"Spanish": "Azul agua",
|
|
1099
|
+
"Italian": "Blu acqua",
|
|
1100
|
+
"Nederlands": "Waterblauw"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"RAL": "RAL 5022",
|
|
1104
|
+
"RGB": "037-040-080",
|
|
1105
|
+
"HEX": "#252850",
|
|
1106
|
+
"German": "Nachtblau",
|
|
1107
|
+
"English": "Night blue",
|
|
1108
|
+
"French": "Bleu nocturne",
|
|
1109
|
+
"Spanish": "Azul noche",
|
|
1110
|
+
"Italian": "Blu notte",
|
|
1111
|
+
"Nederlands": "Nachtblauw"
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"RAL": "RAL 5023",
|
|
1115
|
+
"RGB": "073-103-141",
|
|
1116
|
+
"HEX": "#49678D",
|
|
1117
|
+
"German": "Fernblau",
|
|
1118
|
+
"English": "Distant blue",
|
|
1119
|
+
"French": "Bleu distant",
|
|
1120
|
+
"Spanish": "Azul lejanía",
|
|
1121
|
+
"Italian": "Blu distante",
|
|
1122
|
+
"Nederlands": "Verblauw"
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"RAL": "RAL 5024",
|
|
1126
|
+
"RGB": "093-155-155",
|
|
1127
|
+
"HEX": "#5D9B9B",
|
|
1128
|
+
"German": "Pastellblau",
|
|
1129
|
+
"English": "Pastel blue",
|
|
1130
|
+
"French": "Bleu pastel",
|
|
1131
|
+
"Spanish": "Azul pastel",
|
|
1132
|
+
"Italian": "Blu pastello",
|
|
1133
|
+
"Nederlands": "Pastelblauw"
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"RAL": "RAL 5025",
|
|
1137
|
+
"RGB": "042-100-120",
|
|
1138
|
+
"HEX": "#2A6478",
|
|
1139
|
+
"German": "Perlenzian",
|
|
1140
|
+
"English": "Pearl gentian blue",
|
|
1141
|
+
"French": "Gentiane nacré",
|
|
1142
|
+
"Spanish": "Gencian perlado",
|
|
1143
|
+
"Italian": "Blu genziana perlato",
|
|
1144
|
+
"Nederlands": "Parelmoerblauw"
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"RAL": "RAL 5026",
|
|
1148
|
+
"RGB": "016-044-084",
|
|
1149
|
+
"HEX": "#102C54",
|
|
1150
|
+
"German": "Perlnachtblau",
|
|
1151
|
+
"English": "Pearl night blue",
|
|
1152
|
+
"French": "Bleu nuit nacré",
|
|
1153
|
+
"Spanish": "Azul noche perlado",
|
|
1154
|
+
"Italian": "Blu notte perlato",
|
|
1155
|
+
"Nederlands": "Parelmoer-nachtblauw"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"RAL": "RAL 6000",
|
|
1159
|
+
"RGB": "049-102-080",
|
|
1160
|
+
"HEX": "#316650",
|
|
1161
|
+
"German": "Patinagrün",
|
|
1162
|
+
"English": "Patina green",
|
|
1163
|
+
"French": "Vert patine",
|
|
1164
|
+
"Spanish": "Verde patina",
|
|
1165
|
+
"Italian": "Verde patina",
|
|
1166
|
+
"Nederlands": "Patinagroen"
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
"RAL": "RAL 6001",
|
|
1170
|
+
"RGB": "040-114-051",
|
|
1171
|
+
"HEX": "#287233",
|
|
1172
|
+
"German": "Smaragdgrün",
|
|
1173
|
+
"English": "Emerald green",
|
|
1174
|
+
"French": "Vert émeraude",
|
|
1175
|
+
"Spanish": "Verde esmeralda",
|
|
1176
|
+
"Italian": "Verde smeraldo",
|
|
1177
|
+
"Nederlands": "Smaragdgroen"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"RAL": "RAL 6002",
|
|
1181
|
+
"RGB": "045-087-044",
|
|
1182
|
+
"HEX": "#2D572C",
|
|
1183
|
+
"German": "Laubgrün",
|
|
1184
|
+
"English": "Leaf green",
|
|
1185
|
+
"French": "Vert feuillage",
|
|
1186
|
+
"Spanish": "Verde hoja",
|
|
1187
|
+
"Italian": "Verde foglia",
|
|
1188
|
+
"Nederlands": "Loofgroen"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"RAL": "RAL 6003",
|
|
1192
|
+
"RGB": "066-070-050",
|
|
1193
|
+
"HEX": "#424632",
|
|
1194
|
+
"German": "Olivgrün",
|
|
1195
|
+
"English": "Olive green",
|
|
1196
|
+
"French": "Vert olive",
|
|
1197
|
+
"Spanish": "Verde oliva",
|
|
1198
|
+
"Italian": "Verde oliva",
|
|
1199
|
+
"Nederlands": "Olijfgroen"
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"RAL": "RAL 6004",
|
|
1203
|
+
"RGB": "031-058-061",
|
|
1204
|
+
"HEX": "#1F3A3D",
|
|
1205
|
+
"German": "Blaugrün",
|
|
1206
|
+
"English": "Blue green",
|
|
1207
|
+
"French": "Vert bleu",
|
|
1208
|
+
"Spanish": "Verde azulado",
|
|
1209
|
+
"Italian": "Verde bluastro",
|
|
1210
|
+
"Nederlands": "Blauwgroen"
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
"RAL": "RAL 6005",
|
|
1214
|
+
"RGB": "047-069-056",
|
|
1215
|
+
"HEX": "#2F4538",
|
|
1216
|
+
"German": "Moosgrün",
|
|
1217
|
+
"English": "Moss green",
|
|
1218
|
+
"French": "Vert mousse",
|
|
1219
|
+
"Spanish": "Verde musgo",
|
|
1220
|
+
"Italian": "Verde muschio",
|
|
1221
|
+
"Nederlands": "Mosgroen"
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"RAL": "RAL 6006",
|
|
1225
|
+
"RGB": "062-059-050",
|
|
1226
|
+
"HEX": "#3E3B32",
|
|
1227
|
+
"German": "Grauoliv",
|
|
1228
|
+
"English": "Grey olive",
|
|
1229
|
+
"French": "Olive gris",
|
|
1230
|
+
"Spanish": "Oliva grisáceo",
|
|
1231
|
+
"Italian": "Oliva grigiastro",
|
|
1232
|
+
"Nederlands": "Grijs olijfgroen"
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"RAL": "RAL 6007",
|
|
1236
|
+
"RGB": "052-059-041",
|
|
1237
|
+
"HEX": "#343B29",
|
|
1238
|
+
"German": "Flaschengrün",
|
|
1239
|
+
"English": "Bottle green",
|
|
1240
|
+
"French": "Vert bouteille",
|
|
1241
|
+
"Spanish": "Verde botella",
|
|
1242
|
+
"Italian": "Verde bottiglia",
|
|
1243
|
+
"Nederlands": "Flessegroen"
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"RAL": "RAL 6008",
|
|
1247
|
+
"RGB": "057-053-042",
|
|
1248
|
+
"HEX": "#39352A",
|
|
1249
|
+
"German": "Braungrün",
|
|
1250
|
+
"English": "Brown green",
|
|
1251
|
+
"French": "Vert brun",
|
|
1252
|
+
"Spanish": "Verde parduzco",
|
|
1253
|
+
"Italian": "Verde brunastro",
|
|
1254
|
+
"Nederlands": "Bruingroen"
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
"RAL": "RAL 6009",
|
|
1258
|
+
"RGB": "049-055-043",
|
|
1259
|
+
"HEX": "#31372B",
|
|
1260
|
+
"German": "Tannengrün",
|
|
1261
|
+
"English": "Fir green",
|
|
1262
|
+
"French": "Vert sapin",
|
|
1263
|
+
"Spanish": "Verde abeto",
|
|
1264
|
+
"Italian": "Verde abete",
|
|
1265
|
+
"Nederlands": "Dennegroen"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"RAL": "RAL 6010",
|
|
1269
|
+
"RGB": "053-104-045",
|
|
1270
|
+
"HEX": "#35682D",
|
|
1271
|
+
"German": "Grasgrün",
|
|
1272
|
+
"English": "Grass green",
|
|
1273
|
+
"French": "Vert herbe",
|
|
1274
|
+
"Spanish": "Verde hierba",
|
|
1275
|
+
"Italian": "Verde erba",
|
|
1276
|
+
"Nederlands": "Grasgroen"
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
"RAL": "RAL 6011",
|
|
1280
|
+
"RGB": "088-114-070",
|
|
1281
|
+
"HEX": "#587246",
|
|
1282
|
+
"German": "Resedagrün",
|
|
1283
|
+
"English": "Reseda green",
|
|
1284
|
+
"French": "Vert réséda",
|
|
1285
|
+
"Spanish": "Verde reseda",
|
|
1286
|
+
"Italian": "Verde reseda",
|
|
1287
|
+
"Nederlands": "Resedagroen"
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
"RAL": "RAL 6012",
|
|
1291
|
+
"RGB": "052-062-064",
|
|
1292
|
+
"HEX": "#343E40",
|
|
1293
|
+
"German": "Schwarzgrün",
|
|
1294
|
+
"English": "Black green",
|
|
1295
|
+
"French": "Vert noir",
|
|
1296
|
+
"Spanish": "Verde negruzco",
|
|
1297
|
+
"Italian": "Verde nerastro",
|
|
1298
|
+
"Nederlands": "Zwartgroen"
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"RAL": "RAL 6013",
|
|
1302
|
+
"RGB": "108-113-086",
|
|
1303
|
+
"HEX": "#6C7156",
|
|
1304
|
+
"German": "Schilfgrün",
|
|
1305
|
+
"English": "Reed green",
|
|
1306
|
+
"French": "Vert jonc",
|
|
1307
|
+
"Spanish": "Verde caña",
|
|
1308
|
+
"Italian": "Verde canna",
|
|
1309
|
+
"Nederlands": "Rietgroen"
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"RAL": "RAL 6014",
|
|
1313
|
+
"RGB": "071-064-046",
|
|
1314
|
+
"HEX": "#47402E",
|
|
1315
|
+
"German": "Gelboliv",
|
|
1316
|
+
"English": "Yellow olive",
|
|
1317
|
+
"French": "Olive jaune",
|
|
1318
|
+
"Spanish": "Amarillo oliva",
|
|
1319
|
+
"Italian": "Oliva giallastro",
|
|
1320
|
+
"Nederlands": "Geel olijfgroen"
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"RAL": "RAL 6015",
|
|
1324
|
+
"RGB": "059-060-054",
|
|
1325
|
+
"HEX": "#3B3C36",
|
|
1326
|
+
"German": "Schwarzoliv",
|
|
1327
|
+
"English": "Black olive",
|
|
1328
|
+
"French": "Olive noir",
|
|
1329
|
+
"Spanish": "Oliva negruzco",
|
|
1330
|
+
"Italian": "Oliva nerastro",
|
|
1331
|
+
"Nederlands": "Zwart olijfgroen"
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"RAL": "RAL 6016",
|
|
1335
|
+
"RGB": "030-089-069",
|
|
1336
|
+
"HEX": "#1E5945",
|
|
1337
|
+
"German": "Türkisgrün",
|
|
1338
|
+
"English": "Turquoise green",
|
|
1339
|
+
"French": "Vert turquoise",
|
|
1340
|
+
"Spanish": "Verde turquesa",
|
|
1341
|
+
"Italian": "Verde turchese",
|
|
1342
|
+
"Nederlands": "Turkooisgroen"
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"RAL": "RAL 6017",
|
|
1346
|
+
"RGB": "076-145-065",
|
|
1347
|
+
"HEX": "#4C9141",
|
|
1348
|
+
"German": "Maigrün",
|
|
1349
|
+
"English": "May green",
|
|
1350
|
+
"French": "Vert mai",
|
|
1351
|
+
"Spanish": "Verde mayo",
|
|
1352
|
+
"Italian": "Verde maggio",
|
|
1353
|
+
"Nederlands": "Meigroen"
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
"RAL": "RAL 6018",
|
|
1357
|
+
"RGB": "087-166-057",
|
|
1358
|
+
"HEX": "#57A639",
|
|
1359
|
+
"German": "Gelbgrün",
|
|
1360
|
+
"English": "Yellow green",
|
|
1361
|
+
"French": "Vert jaune",
|
|
1362
|
+
"Spanish": "Verde amarillento",
|
|
1363
|
+
"Italian": "Verde giallastro",
|
|
1364
|
+
"Nederlands": "Geelgroen"
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
"RAL": "RAL 6019",
|
|
1368
|
+
"RGB": "189-236-182",
|
|
1369
|
+
"HEX": "#BDECB6",
|
|
1370
|
+
"German": "Weißgrün",
|
|
1371
|
+
"English": "Pastel green",
|
|
1372
|
+
"French": "Vert blanc",
|
|
1373
|
+
"Spanish": "Verde lanquecino",
|
|
1374
|
+
"Italian": "Verde biancastro",
|
|
1375
|
+
"Nederlands": "Witgroen"
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"RAL": "RAL 6020",
|
|
1379
|
+
"RGB": "046-058-035",
|
|
1380
|
+
"HEX": "#2E3A23",
|
|
1381
|
+
"German": "Chromoxidgrün",
|
|
1382
|
+
"English": "Chrome green",
|
|
1383
|
+
"French": "Vert oxyde chromique",
|
|
1384
|
+
"Spanish": "Verde cromo",
|
|
1385
|
+
"Italian": "Verde cromo",
|
|
1386
|
+
"Nederlands": "Chroom-oxydegroen"
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
"RAL": "RAL 6021",
|
|
1390
|
+
"RGB": "137-172-118",
|
|
1391
|
+
"HEX": "#89AC76",
|
|
1392
|
+
"German": "Blassgrün",
|
|
1393
|
+
"English": "Pale green",
|
|
1394
|
+
"French": "Vert pâle",
|
|
1395
|
+
"Spanish": "Verde pálido",
|
|
1396
|
+
"Italian": "Verde pallido",
|
|
1397
|
+
"Nederlands": "Bleekgroen"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"RAL": "RAL 6022",
|
|
1401
|
+
"RGB": "037-034-027",
|
|
1402
|
+
"HEX": "#25221B",
|
|
1403
|
+
"German": "Braunoliv",
|
|
1404
|
+
"English": "Olive drab",
|
|
1405
|
+
"French": "Olive brun",
|
|
1406
|
+
"Spanish": "Oliva parduzco",
|
|
1407
|
+
"Italian": "Oliva brunastro",
|
|
1408
|
+
"Nederlands": "Bruin olijfgroen"
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
"RAL": "RAL 6024",
|
|
1412
|
+
"RGB": "048-132-070",
|
|
1413
|
+
"HEX": "#308446",
|
|
1414
|
+
"German": "Verkehrsgrün",
|
|
1415
|
+
"English": "Traffic green",
|
|
1416
|
+
"French": "Vert signalisation",
|
|
1417
|
+
"Spanish": "Verde tráfico",
|
|
1418
|
+
"Italian": "Verde traffico",
|
|
1419
|
+
"Nederlands": "Verkeersgroen"
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
"RAL": "RAL 6025",
|
|
1423
|
+
"RGB": "061-100-045",
|
|
1424
|
+
"HEX": "#3D642D",
|
|
1425
|
+
"German": "Farngrün",
|
|
1426
|
+
"English": "Fern green",
|
|
1427
|
+
"French": "Vert fougère",
|
|
1428
|
+
"Spanish": "Verde helecho",
|
|
1429
|
+
"Italian": "Verde felce",
|
|
1430
|
+
"Nederlands": "Varengroen"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"RAL": "RAL 6026",
|
|
1434
|
+
"RGB": "001-093-082",
|
|
1435
|
+
"HEX": "#015D52",
|
|
1436
|
+
"German": "Opalgrün",
|
|
1437
|
+
"English": "Opal green",
|
|
1438
|
+
"French": "Vert opale",
|
|
1439
|
+
"Spanish": "Verde opalo",
|
|
1440
|
+
"Italian": "Verde opale",
|
|
1441
|
+
"Nederlands": "Opaalgroen"
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"RAL": "RAL 6027",
|
|
1445
|
+
"RGB": "132-195-190",
|
|
1446
|
+
"HEX": "#84C3BE",
|
|
1447
|
+
"German": "Lichtgrün",
|
|
1448
|
+
"English": "Light green",
|
|
1449
|
+
"French": "Vert clair",
|
|
1450
|
+
"Spanish": "Verde luminoso",
|
|
1451
|
+
"Italian": "Verde chiaro",
|
|
1452
|
+
"Nederlands": "Lichtgroen"
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
"RAL": "RAL 6028",
|
|
1456
|
+
"RGB": "044-085-069",
|
|
1457
|
+
"HEX": "#2C5545",
|
|
1458
|
+
"German": "Kieferngrün",
|
|
1459
|
+
"English": "Pine green",
|
|
1460
|
+
"French": "Vert pin",
|
|
1461
|
+
"Spanish": "Verde pino",
|
|
1462
|
+
"Italian": "Verde pino",
|
|
1463
|
+
"Nederlands": "Pijnboomgroen"
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"RAL": "RAL 6029",
|
|
1467
|
+
"RGB": "032-096-061",
|
|
1468
|
+
"HEX": "#20603D",
|
|
1469
|
+
"German": "Minzgrün",
|
|
1470
|
+
"English": "Mint green",
|
|
1471
|
+
"French": "Vert menthe",
|
|
1472
|
+
"Spanish": "Verde menta",
|
|
1473
|
+
"Italian": "Verde menta",
|
|
1474
|
+
"Nederlands": "Mintgroen"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"RAL": "RAL 6032",
|
|
1478
|
+
"RGB": "049-127-067",
|
|
1479
|
+
"HEX": "#317F43",
|
|
1480
|
+
"German": "Signalgrün",
|
|
1481
|
+
"English": "Signal green",
|
|
1482
|
+
"French": "Vert de sécurité",
|
|
1483
|
+
"Spanish": "Verde señales",
|
|
1484
|
+
"Italian": "Verde segnale",
|
|
1485
|
+
"Nederlands": "Signaalgroen"
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"RAL": "RAL 6033",
|
|
1489
|
+
"RGB": "073-126-118",
|
|
1490
|
+
"HEX": "#497E76",
|
|
1491
|
+
"German": "Minttürkis",
|
|
1492
|
+
"English": "Mint turquoise",
|
|
1493
|
+
"French": "Turquoise menthe",
|
|
1494
|
+
"Spanish": "Turquesa menta",
|
|
1495
|
+
"Italian": "Turchese menta",
|
|
1496
|
+
"Nederlands": "Mintturquoise"
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"RAL": "RAL 6034",
|
|
1500
|
+
"RGB": "127-181-181",
|
|
1501
|
+
"HEX": "#7FB5B5",
|
|
1502
|
+
"German": "Pastelltürkis",
|
|
1503
|
+
"English": "Pastel turquoise",
|
|
1504
|
+
"French": "Turquoise pastel",
|
|
1505
|
+
"Spanish": "Turquesa pastel",
|
|
1506
|
+
"Italian": "Turchese pastello",
|
|
1507
|
+
"Nederlands": "Pastelturquoise"
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"RAL": "RAL 6035",
|
|
1511
|
+
"RGB": "028-084-045",
|
|
1512
|
+
"HEX": "#1C542D",
|
|
1513
|
+
"German": "Perlgrün",
|
|
1514
|
+
"English": "Pearl green",
|
|
1515
|
+
"French": "Vert nacré",
|
|
1516
|
+
"Spanish": "Verde perlado",
|
|
1517
|
+
"Italian": "Verde perlato",
|
|
1518
|
+
"Nederlands": "Parelmoer-donkergroen"
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"RAL": "RAL 6036",
|
|
1522
|
+
"RGB": "022-053-055",
|
|
1523
|
+
"HEX": "#193737",
|
|
1524
|
+
"German": "Perlopalgrün",
|
|
1525
|
+
"English": "Pearl opal green",
|
|
1526
|
+
"French": "Vert opal nacré",
|
|
1527
|
+
"Spanish": "Verde ópalo perlado",
|
|
1528
|
+
"Italian": "Verde opalo perlato",
|
|
1529
|
+
"Nederlands": "Parelmoer-lichtgroen"
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
"RAL": "RAL 6037",
|
|
1533
|
+
"RGB": "000-143-057",
|
|
1534
|
+
"HEX": "#008F39",
|
|
1535
|
+
"German": "Reingrün",
|
|
1536
|
+
"English": "Pure green",
|
|
1537
|
+
"French": "Vert pur",
|
|
1538
|
+
"Spanish": "Verde puro",
|
|
1539
|
+
"Italian": "Verde puro",
|
|
1540
|
+
"Nederlands": "Zuivergroen"
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"RAL": "RAL 6038",
|
|
1544
|
+
"RGB": "000-187-045",
|
|
1545
|
+
"HEX": "#00BB2D",
|
|
1546
|
+
"German": "Leuchtgrün",
|
|
1547
|
+
"English": "Luminous green",
|
|
1548
|
+
"French": "Vert brillant",
|
|
1549
|
+
"Spanish": "Verde brillante",
|
|
1550
|
+
"Italian": "Verde brillante",
|
|
1551
|
+
"Nederlands": "Briljantgroen"
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
"RAL": "RAL 7000",
|
|
1555
|
+
"RGB": "120-133-139",
|
|
1556
|
+
"HEX": "#78858B",
|
|
1557
|
+
"German": "Fehgrau",
|
|
1558
|
+
"English": "Squirrel grey",
|
|
1559
|
+
"French": "Gris petit-gris",
|
|
1560
|
+
"Spanish": "Gris ardilla",
|
|
1561
|
+
"Italian": "Grigio vaio",
|
|
1562
|
+
"Nederlands": "Pelsgrijs"
|
|
1563
|
+
},
|
|
1564
|
+
{
|
|
1565
|
+
"RAL": "RAL 7001",
|
|
1566
|
+
"RGB": "138-149-151",
|
|
1567
|
+
"HEX": "#8A9597",
|
|
1568
|
+
"German": "Silbergrau",
|
|
1569
|
+
"English": "Silver grey",
|
|
1570
|
+
"French": "Gris argent",
|
|
1571
|
+
"Spanish": "Gris plata",
|
|
1572
|
+
"Italian": "Grigio argento",
|
|
1573
|
+
"Nederlands": "Zilvergrijs"
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"RAL": "RAL 7002",
|
|
1577
|
+
"RGB": "126-123-082",
|
|
1578
|
+
"HEX": "#7E7B52",
|
|
1579
|
+
"German": "Olivgrau",
|
|
1580
|
+
"English": "Olive grey",
|
|
1581
|
+
"French": "Gris olive",
|
|
1582
|
+
"Spanish": "Gris oliva",
|
|
1583
|
+
"Italian": "Grigio olivastro",
|
|
1584
|
+
"Nederlands": "Olijfgrijs"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
"RAL": "RAL 7003",
|
|
1588
|
+
"RGB": "108-112-089",
|
|
1589
|
+
"HEX": "#6C7059",
|
|
1590
|
+
"German": "Moosgrau",
|
|
1591
|
+
"English": "Moss grey",
|
|
1592
|
+
"French": "Gris mousse",
|
|
1593
|
+
"Spanish": "Gris musgo",
|
|
1594
|
+
"Italian": "Grigio muschio",
|
|
1595
|
+
"Nederlands": "Mosgrijs"
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
"RAL": "RAL 7004",
|
|
1599
|
+
"RGB": "150-153-146",
|
|
1600
|
+
"HEX": "#969992",
|
|
1601
|
+
"German": "Signalgrau",
|
|
1602
|
+
"English": "Signal grey",
|
|
1603
|
+
"French": "Gris de sécurité",
|
|
1604
|
+
"Spanish": "Gris señales",
|
|
1605
|
+
"Italian": "Grigio segnale",
|
|
1606
|
+
"Nederlands": "Signaalgrijs"
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
"RAL": "RAL 7005",
|
|
1610
|
+
"RGB": "100-107-099",
|
|
1611
|
+
"HEX": "#646B63",
|
|
1612
|
+
"German": "Mausgrau",
|
|
1613
|
+
"English": "Mouse grey",
|
|
1614
|
+
"French": "Gris souris",
|
|
1615
|
+
"Spanish": "Gris ratón",
|
|
1616
|
+
"Italian": "Grigio topo",
|
|
1617
|
+
"Nederlands": "Muisgrijs"
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
"RAL": "RAL 7006",
|
|
1621
|
+
"RGB": "109-101-082",
|
|
1622
|
+
"HEX": "#6D6552",
|
|
1623
|
+
"German": "Beigegrau",
|
|
1624
|
+
"English": "Beige grey",
|
|
1625
|
+
"French": "Gris beige",
|
|
1626
|
+
"Spanish": "Gris beige",
|
|
1627
|
+
"Italian": "Grigio beige",
|
|
1628
|
+
"Nederlands": "Beigegrijs"
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
"RAL": "RAL 7008",
|
|
1632
|
+
"RGB": "106-095-049",
|
|
1633
|
+
"HEX": "#6A5F31",
|
|
1634
|
+
"German": "Khakigrau",
|
|
1635
|
+
"English": "Khaki grey",
|
|
1636
|
+
"French": "Gris kaki",
|
|
1637
|
+
"Spanish": "Gris caqui",
|
|
1638
|
+
"Italian": "Grigio kaki",
|
|
1639
|
+
"Nederlands": "Kakigrijs"
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
"RAL": "RAL 7009",
|
|
1643
|
+
"RGB": "077-086-069",
|
|
1644
|
+
"HEX": "#4D5645",
|
|
1645
|
+
"German": "Grüngrau",
|
|
1646
|
+
"English": "Green grey",
|
|
1647
|
+
"French": "Gris vert",
|
|
1648
|
+
"Spanish": "Gris verdoso",
|
|
1649
|
+
"Italian": "Grigio verdastro",
|
|
1650
|
+
"Nederlands": "Groengrijs"
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
"RAL": "RAL 7010",
|
|
1654
|
+
"RGB": "076-081-074",
|
|
1655
|
+
"HEX": "#4C514A",
|
|
1656
|
+
"German": "Zeltgrau",
|
|
1657
|
+
"English": "Tarpaulin grey",
|
|
1658
|
+
"French": "Gris tente",
|
|
1659
|
+
"Spanish": "Gris lona",
|
|
1660
|
+
"Italian": "Grigio tenda",
|
|
1661
|
+
"Nederlands": "Zeildoekgrijs"
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
"RAL": "RAL 7011",
|
|
1665
|
+
"RGB": "067-075-077",
|
|
1666
|
+
"HEX": "#434B4D",
|
|
1667
|
+
"German": "Eisengrau",
|
|
1668
|
+
"English": "Iron grey",
|
|
1669
|
+
"French": "Gris fer",
|
|
1670
|
+
"Spanish": "Gris hierro",
|
|
1671
|
+
"Italian": "Grigio ferro",
|
|
1672
|
+
"Nederlands": "IJzergrijs"
|
|
1673
|
+
},
|
|
1674
|
+
{
|
|
1675
|
+
"RAL": "RAL 7012",
|
|
1676
|
+
"RGB": "078-087-084",
|
|
1677
|
+
"HEX": "#4E5754",
|
|
1678
|
+
"German": "Basaltgrau",
|
|
1679
|
+
"English": "Basalt grey",
|
|
1680
|
+
"French": "Gris basalte",
|
|
1681
|
+
"Spanish": "Gris basalto",
|
|
1682
|
+
"Italian": "Grigio basalto",
|
|
1683
|
+
"Nederlands": "Bazaltgrijs"
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
"RAL": "RAL 7013",
|
|
1687
|
+
"RGB": "070-069-049",
|
|
1688
|
+
"HEX": "#464531",
|
|
1689
|
+
"German": "Braungrau",
|
|
1690
|
+
"English": "Brown grey",
|
|
1691
|
+
"French": "Gris brun",
|
|
1692
|
+
"Spanish": "Gris parduzco",
|
|
1693
|
+
"Italian": "Grigio brunastro",
|
|
1694
|
+
"Nederlands": "Bruingrijs"
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
"RAL": "RAL 7015",
|
|
1698
|
+
"RGB": "067-071-080",
|
|
1699
|
+
"HEX": "#434750",
|
|
1700
|
+
"German": "Schiefergrau",
|
|
1701
|
+
"English": "Slate grey",
|
|
1702
|
+
"French": "Gris ardoise",
|
|
1703
|
+
"Spanish": "Gris pizarra",
|
|
1704
|
+
"Italian": "Grigio ardesia",
|
|
1705
|
+
"Nederlands": "Leigrijs"
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"RAL": "RAL 7016",
|
|
1709
|
+
"RGB": "041-049-051",
|
|
1710
|
+
"HEX": "#293133",
|
|
1711
|
+
"German": "Anthrazitgrau",
|
|
1712
|
+
"English": "Anthracite grey",
|
|
1713
|
+
"French": "Gris anthracite",
|
|
1714
|
+
"Spanish": "Gris antracita",
|
|
1715
|
+
"Italian": "Grigio antracite",
|
|
1716
|
+
"Nederlands": "Antracietgrijs"
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"RAL": "RAL 7021",
|
|
1720
|
+
"RGB": "035-040-043",
|
|
1721
|
+
"HEX": "#23282B",
|
|
1722
|
+
"German": "Schwarzgrau",
|
|
1723
|
+
"English": "Black grey",
|
|
1724
|
+
"French": "Gris noir",
|
|
1725
|
+
"Spanish": "Gris negruzco",
|
|
1726
|
+
"Italian": "Grigio nerastro",
|
|
1727
|
+
"Nederlands": "Zwartgrijs"
|
|
1728
|
+
},
|
|
1729
|
+
{
|
|
1730
|
+
"RAL": "RAL 7022",
|
|
1731
|
+
"RGB": "051-047-044",
|
|
1732
|
+
"HEX": "#332F2C",
|
|
1733
|
+
"German": "Umbragrau",
|
|
1734
|
+
"English": "Umbra grey",
|
|
1735
|
+
"French": "Gris terre d’ombre",
|
|
1736
|
+
"Spanish": "Gris sombra",
|
|
1737
|
+
"Italian": "Grigio ombra",
|
|
1738
|
+
"Nederlands": "Ombergrijs"
|
|
1739
|
+
},
|
|
1740
|
+
{
|
|
1741
|
+
"RAL": "RAL 7023",
|
|
1742
|
+
"RGB": "104-108-094",
|
|
1743
|
+
"HEX": "#686C5E",
|
|
1744
|
+
"German": "Betongrau",
|
|
1745
|
+
"English": "Concrete grey",
|
|
1746
|
+
"French": "Gris béton",
|
|
1747
|
+
"Spanish": "Gris hormigón",
|
|
1748
|
+
"Italian": "Grigio calcestruzzo",
|
|
1749
|
+
"Nederlands": "Betongrijs"
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
"RAL": "RAL 7024",
|
|
1753
|
+
"RGB": "071-074-081",
|
|
1754
|
+
"HEX": "#474A51",
|
|
1755
|
+
"German": "Graphitgrau",
|
|
1756
|
+
"English": "Graphite grey",
|
|
1757
|
+
"French": "Gris graphite",
|
|
1758
|
+
"Spanish": "Gris grafita",
|
|
1759
|
+
"Italian": "Grigio grafite",
|
|
1760
|
+
"Nederlands": "Grafietgrijs"
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
"RAL": "RAL 7026",
|
|
1764
|
+
"RGB": "047-053-059",
|
|
1765
|
+
"HEX": "#2F353B",
|
|
1766
|
+
"German": "Granitgrau",
|
|
1767
|
+
"English": "Granite grey",
|
|
1768
|
+
"French": "Gris granit",
|
|
1769
|
+
"Spanish": "Gris granito",
|
|
1770
|
+
"Italian": "Grigio granito",
|
|
1771
|
+
"Nederlands": "Granietgrijs"
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
"RAL": "RAL 7030",
|
|
1775
|
+
"RGB": "139-140-122",
|
|
1776
|
+
"HEX": "#8B8C7A",
|
|
1777
|
+
"German": "Steingrau",
|
|
1778
|
+
"English": "Stone grey",
|
|
1779
|
+
"French": "Gris pierre",
|
|
1780
|
+
"Spanish": "Gris piedra",
|
|
1781
|
+
"Italian": "Grigio pietra",
|
|
1782
|
+
"Nederlands": "Steengrijs"
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
"RAL": "RAL 7031",
|
|
1786
|
+
"RGB": "071-075-078",
|
|
1787
|
+
"HEX": "#474B4E",
|
|
1788
|
+
"German": "Blaugrau",
|
|
1789
|
+
"English": "Blue grey",
|
|
1790
|
+
"French": "Gris bleu",
|
|
1791
|
+
"Spanish": "Gris azulado",
|
|
1792
|
+
"Italian": "Grigio bluastro",
|
|
1793
|
+
"Nederlands": "Blauwgrijs"
|
|
1794
|
+
},
|
|
1795
|
+
{
|
|
1796
|
+
"RAL": "RAL 7032",
|
|
1797
|
+
"RGB": "184-183-153",
|
|
1798
|
+
"HEX": "#B8B799",
|
|
1799
|
+
"German": "Kieselgrau",
|
|
1800
|
+
"English": "Pebble grey",
|
|
1801
|
+
"French": "Gris silex",
|
|
1802
|
+
"Spanish": "Gris guijarro",
|
|
1803
|
+
"Italian": "Grigio ghiaia",
|
|
1804
|
+
"Nederlands": "Kiezelgrijs"
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
"RAL": "RAL 7033",
|
|
1808
|
+
"RGB": "125-132-113",
|
|
1809
|
+
"HEX": "#7D8471",
|
|
1810
|
+
"German": "Zementgrau",
|
|
1811
|
+
"English": "Cement grey",
|
|
1812
|
+
"French": "Gris ciment",
|
|
1813
|
+
"Spanish": "Gris cemento",
|
|
1814
|
+
"Italian": "Grigio cemento",
|
|
1815
|
+
"Nederlands": "Cementgrijs"
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
"RAL": "RAL 7034",
|
|
1819
|
+
"RGB": "143-139-102",
|
|
1820
|
+
"HEX": "#8F8B66",
|
|
1821
|
+
"German": "Gelbgrau",
|
|
1822
|
+
"English": "Yellow grey",
|
|
1823
|
+
"French": "Gris jaune",
|
|
1824
|
+
"Spanish": "Gris amarillento",
|
|
1825
|
+
"Italian": "Grigio giallastro",
|
|
1826
|
+
"Nederlands": "Geelgrijs"
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"RAL": "RAL 7035",
|
|
1830
|
+
"RGB": "197-199-196",
|
|
1831
|
+
"HEX": "#c5c7c4",
|
|
1832
|
+
"German": "Lichtgrau",
|
|
1833
|
+
"English": "Light grey",
|
|
1834
|
+
"French": "Gris clair",
|
|
1835
|
+
"Spanish": "Gris luminoso",
|
|
1836
|
+
"Italian": "Grigio luce",
|
|
1837
|
+
"Nederlands": "Lichtgrijs"
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"RAL": "RAL 7036",
|
|
1841
|
+
"RGB": "127-118-121",
|
|
1842
|
+
"HEX": "#7F7679",
|
|
1843
|
+
"German": "Platingrau",
|
|
1844
|
+
"English": "Platinum grey",
|
|
1845
|
+
"French": "Gris platine",
|
|
1846
|
+
"Spanish": "Gris platino",
|
|
1847
|
+
"Italian": "Grigio platino",
|
|
1848
|
+
"Nederlands": "Platinagrijs"
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
"RAL": "RAL 7037",
|
|
1852
|
+
"RGB": "125-127-120",
|
|
1853
|
+
"HEX": "#7D7F7D",
|
|
1854
|
+
"German": "Staubgrau",
|
|
1855
|
+
"English": "Dusty grey",
|
|
1856
|
+
"French": "Gris poussière",
|
|
1857
|
+
"Spanish": "Gris polvo",
|
|
1858
|
+
"Italian": "Grigio polvere",
|
|
1859
|
+
"Nederlands": "Stofgrijs"
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
"RAL": "RAL 7038",
|
|
1863
|
+
"RGB": "195-195-195",
|
|
1864
|
+
"HEX": "#B5B8B1",
|
|
1865
|
+
"German": "Achatgrau",
|
|
1866
|
+
"English": "Agate grey",
|
|
1867
|
+
"French": "Gris agate",
|
|
1868
|
+
"Spanish": "Gris ágata",
|
|
1869
|
+
"Italian": "Grigio agata",
|
|
1870
|
+
"Nederlands": "Agaatgrijs"
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
"RAL": "RAL 7039",
|
|
1874
|
+
"RGB": "108-105-096",
|
|
1875
|
+
"HEX": "#6C6960",
|
|
1876
|
+
"German": "Quarzgrau",
|
|
1877
|
+
"English": "Quartz grey",
|
|
1878
|
+
"French": "Gris quartz",
|
|
1879
|
+
"Spanish": "Gris cuarzo",
|
|
1880
|
+
"Italian": "Grigio quarzo",
|
|
1881
|
+
"Nederlands": "Kwartsgrijs"
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"RAL": "RAL 7040",
|
|
1885
|
+
"RGB": "157-161-170",
|
|
1886
|
+
"HEX": "#9DA1AA",
|
|
1887
|
+
"German": "Fenstergrau",
|
|
1888
|
+
"English": "Window grey",
|
|
1889
|
+
"French": "Gris fenêtre",
|
|
1890
|
+
"Spanish": "Gris ventana",
|
|
1891
|
+
"Italian": "Grigio finestra",
|
|
1892
|
+
"Nederlands": "Venstergrijs"
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
"RAL": "RAL 7042",
|
|
1896
|
+
"RGB": "141-148-141",
|
|
1897
|
+
"HEX": "#8D948D",
|
|
1898
|
+
"German": "Verkehrsgrau A",
|
|
1899
|
+
"English": "Traffic grey A",
|
|
1900
|
+
"French": "Gris signalisation A",
|
|
1901
|
+
"Spanish": "Gris tráfico A",
|
|
1902
|
+
"Italian": "Grigio traffico A",
|
|
1903
|
+
"Nederlands": "Verkeesgrijs A"
|
|
1904
|
+
},
|
|
1905
|
+
{
|
|
1906
|
+
"RAL": "RAL 7043",
|
|
1907
|
+
"RGB": "078-084-082",
|
|
1908
|
+
"HEX": "#4E5452",
|
|
1909
|
+
"German": "Verkehrsgrau B",
|
|
1910
|
+
"English": "Traffic grey B",
|
|
1911
|
+
"French": "Gris signalisation B",
|
|
1912
|
+
"Spanish": "Gris tráfico B",
|
|
1913
|
+
"Italian": "Grigio traffico B",
|
|
1914
|
+
"Nederlands": "Verkeersgrijs B"
|
|
1915
|
+
},
|
|
1916
|
+
{
|
|
1917
|
+
"RAL": "RAL 7044",
|
|
1918
|
+
"RGB": "202-196-176",
|
|
1919
|
+
"HEX": "#CAC4B0",
|
|
1920
|
+
"German": "Seidengrau",
|
|
1921
|
+
"English": "Silk grey",
|
|
1922
|
+
"French": "Gris soie",
|
|
1923
|
+
"Spanish": "Gris seda",
|
|
1924
|
+
"Italian": "Grigio seta",
|
|
1925
|
+
"Nederlands": "Zijdegrijs"
|
|
1926
|
+
},
|
|
1927
|
+
{
|
|
1928
|
+
"RAL": "RAL 7045",
|
|
1929
|
+
"RGB": "144-144-144",
|
|
1930
|
+
"HEX": "#909090",
|
|
1931
|
+
"German": "Telegrau 1",
|
|
1932
|
+
"English": "Telegrey 1",
|
|
1933
|
+
"French": "Telegris 1",
|
|
1934
|
+
"Spanish": "Gris tele 1",
|
|
1935
|
+
"Italian": "Tele grigio 1",
|
|
1936
|
+
"Nederlands": "Telegrijs 1"
|
|
1937
|
+
},
|
|
1938
|
+
{
|
|
1939
|
+
"RAL": "RAL 7046",
|
|
1940
|
+
"RGB": "130-137-143",
|
|
1941
|
+
"HEX": "#82898F",
|
|
1942
|
+
"German": "Telegrau 2",
|
|
1943
|
+
"English": "Telegrey 2",
|
|
1944
|
+
"French": "Telegris 2",
|
|
1945
|
+
"Spanish": "Gris tele 2",
|
|
1946
|
+
"Italian": "Tele grigio 2",
|
|
1947
|
+
"Nederlands": "Telegrijs 2"
|
|
1948
|
+
},
|
|
1949
|
+
{
|
|
1950
|
+
"RAL": "RAL 7047",
|
|
1951
|
+
"RGB": "208-208-208",
|
|
1952
|
+
"HEX": "#D0D0D0",
|
|
1953
|
+
"German": "Telegrau 4",
|
|
1954
|
+
"English": "Telegrey 4",
|
|
1955
|
+
"French": "Telegris 4",
|
|
1956
|
+
"Spanish": "Gris tele 4",
|
|
1957
|
+
"Italian": "Tele grigio 4",
|
|
1958
|
+
"Nederlands": "Telegrijs 4"
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
"RAL": "RAL 7048",
|
|
1962
|
+
"RGB": "137-129-118",
|
|
1963
|
+
"HEX": "#898176",
|
|
1964
|
+
"German": "Perlmausgrau",
|
|
1965
|
+
"English": "Pearl mouse grey",
|
|
1966
|
+
"French": "Gris souris nacré",
|
|
1967
|
+
"Spanish": "Gris musgo perlado",
|
|
1968
|
+
"Italian": "Grigio topo perlato",
|
|
1969
|
+
"Nederlands": "Parelmoer-muisgrijs"
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"RAL": "RAL 8000",
|
|
1973
|
+
"RGB": "130-108-052",
|
|
1974
|
+
"HEX": "#826C34",
|
|
1975
|
+
"German": "Grünbraun",
|
|
1976
|
+
"English": "Green brown",
|
|
1977
|
+
"French": "Brun vert",
|
|
1978
|
+
"Spanish": "Pardo verdoso",
|
|
1979
|
+
"Italian": "Marrone verdastro",
|
|
1980
|
+
"Nederlands": "Groenbruin"
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
"RAL": "RAL 8001",
|
|
1984
|
+
"RGB": "149-095-032",
|
|
1985
|
+
"HEX": "#955F20",
|
|
1986
|
+
"German": "Ockerbraun",
|
|
1987
|
+
"English": "Ochre brown",
|
|
1988
|
+
"French": "Brun terre de Sienne",
|
|
1989
|
+
"Spanish": "Pardo ocre",
|
|
1990
|
+
"Italian": "Marrone ocra",
|
|
1991
|
+
"Nederlands": "Okerbruin"
|
|
1992
|
+
},
|
|
1993
|
+
{
|
|
1994
|
+
"RAL": "RAL 8002",
|
|
1995
|
+
"RGB": "108-059-042",
|
|
1996
|
+
"HEX": "#6C3B2A",
|
|
1997
|
+
"German": "Signalbraun",
|
|
1998
|
+
"English": "Signal brown",
|
|
1999
|
+
"French": "Brun de sécurité",
|
|
2000
|
+
"Spanish": "Marrón señales",
|
|
2001
|
+
"Italian": "Marrone segnale",
|
|
2002
|
+
"Nederlands": "Signaalbruin"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"RAL": "RAL 8003",
|
|
2006
|
+
"RGB": "115-066-034",
|
|
2007
|
+
"HEX": "#734222",
|
|
2008
|
+
"German": "Lehmbraun",
|
|
2009
|
+
"English": "Clay brown",
|
|
2010
|
+
"French": "Brun argile",
|
|
2011
|
+
"Spanish": "Pardo arcilla",
|
|
2012
|
+
"Italian": "Marrone fango",
|
|
2013
|
+
"Nederlands": "Leembruin"
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"RAL": "RAL 8004",
|
|
2017
|
+
"RGB": "142-064-042",
|
|
2018
|
+
"HEX": "#8E402A",
|
|
2019
|
+
"German": "Kupferbraun",
|
|
2020
|
+
"English": "Copper brown",
|
|
2021
|
+
"French": "Brun cuivré",
|
|
2022
|
+
"Spanish": "Pardo cobre",
|
|
2023
|
+
"Italian": "Marrone rame",
|
|
2024
|
+
"Nederlands": "Koperbruin"
|
|
2025
|
+
},
|
|
2026
|
+
{
|
|
2027
|
+
"RAL": "RAL 8007",
|
|
2028
|
+
"RGB": "089-053-031",
|
|
2029
|
+
"HEX": "#59351F",
|
|
2030
|
+
"German": "Rehbraun",
|
|
2031
|
+
"English": "Fawn brown",
|
|
2032
|
+
"French": "Brun fauve",
|
|
2033
|
+
"Spanish": "Pardo corzo",
|
|
2034
|
+
"Italian": "Marrone capriolo",
|
|
2035
|
+
"Nederlands": "Reebruin"
|
|
2036
|
+
},
|
|
2037
|
+
{
|
|
2038
|
+
"RAL": "RAL 8008",
|
|
2039
|
+
"RGB": "111-079-040",
|
|
2040
|
+
"HEX": "#6F4F28",
|
|
2041
|
+
"German": "Olivbraun",
|
|
2042
|
+
"English": "Olive brown",
|
|
2043
|
+
"French": "Brun olive",
|
|
2044
|
+
"Spanish": "Pardo oliva",
|
|
2045
|
+
"Italian": "Marrone oliva",
|
|
2046
|
+
"Nederlands": "Olijfbruin"
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
"RAL": "RAL 8011",
|
|
2050
|
+
"RGB": "091-058-041",
|
|
2051
|
+
"HEX": "#5B3A29",
|
|
2052
|
+
"German": "Nussbraun",
|
|
2053
|
+
"English": "Nut brown",
|
|
2054
|
+
"French": "Brun noisette",
|
|
2055
|
+
"Spanish": "Pardo nuez",
|
|
2056
|
+
"Italian": "Marrone noce",
|
|
2057
|
+
"Nederlands": "Notebruin"
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
"RAL": "RAL 8012",
|
|
2061
|
+
"RGB": "089-035-033",
|
|
2062
|
+
"HEX": "#592321",
|
|
2063
|
+
"German": "Rotbraun",
|
|
2064
|
+
"English": "Red brown",
|
|
2065
|
+
"French": "Brun rouge",
|
|
2066
|
+
"Spanish": "Pardo rojo",
|
|
2067
|
+
"Italian": "Marrone rossiccio",
|
|
2068
|
+
"Nederlands": "Roodbruin"
|
|
2069
|
+
},
|
|
2070
|
+
{
|
|
2071
|
+
"RAL": "RAL 8014",
|
|
2072
|
+
"RGB": "056-044-030",
|
|
2073
|
+
"HEX": "#382C1E",
|
|
2074
|
+
"German": "Sepiabraun",
|
|
2075
|
+
"English": "Sepia brown",
|
|
2076
|
+
"French": "Brun sépia",
|
|
2077
|
+
"Spanish": "Sepia",
|
|
2078
|
+
"Italian": "Marrone seppia",
|
|
2079
|
+
"Nederlands": "Sepiabruin"
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
"RAL": "RAL 8015",
|
|
2083
|
+
"RGB": "099-058-052",
|
|
2084
|
+
"HEX": "#633A34",
|
|
2085
|
+
"German": "Kastanienbraun",
|
|
2086
|
+
"English": "Chestnut brown",
|
|
2087
|
+
"French": "Marron",
|
|
2088
|
+
"Spanish": "Castaño",
|
|
2089
|
+
"Italian": "Marrone castagna",
|
|
2090
|
+
"Nederlands": "Kastanjebruin"
|
|
2091
|
+
},
|
|
2092
|
+
{
|
|
2093
|
+
"RAL": "RAL 8016",
|
|
2094
|
+
"RGB": "076-047-039",
|
|
2095
|
+
"HEX": "#4C2F27",
|
|
2096
|
+
"German": "Mahagonibraun",
|
|
2097
|
+
"English": "Mahogany brown",
|
|
2098
|
+
"French": "Brun acajou",
|
|
2099
|
+
"Spanish": "Caoba",
|
|
2100
|
+
"Italian": "Marrone mogano",
|
|
2101
|
+
"Nederlands": "Mahoniebruin"
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
"RAL": "RAL 8017",
|
|
2105
|
+
"RGB": "069-050-046",
|
|
2106
|
+
"HEX": "#45322E",
|
|
2107
|
+
"German": "Schokoladen-braun",
|
|
2108
|
+
"English": "Chocolate brown",
|
|
2109
|
+
"French": "Brun chocolat",
|
|
2110
|
+
"Spanish": "Chocolate",
|
|
2111
|
+
"Italian": "Marrone cioccolata",
|
|
2112
|
+
"Nederlands": "Chocoladebruin"
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
"RAL": "RAL 8019",
|
|
2116
|
+
"RGB": "064-058-058",
|
|
2117
|
+
"HEX": "#403A3A",
|
|
2118
|
+
"German": "Graubraun",
|
|
2119
|
+
"English": "Grey brown",
|
|
2120
|
+
"French": "Brun gris",
|
|
2121
|
+
"Spanish": "Pardo grisáceo",
|
|
2122
|
+
"Italian": "Marrone grigiastro",
|
|
2123
|
+
"Nederlands": "Grijsbruin"
|
|
2124
|
+
},
|
|
2125
|
+
{
|
|
2126
|
+
"RAL": "RAL 8022",
|
|
2127
|
+
"RGB": "033-033-033",
|
|
2128
|
+
"HEX": "#212121",
|
|
2129
|
+
"German": "Schwarzbraun",
|
|
2130
|
+
"English": "Black brown",
|
|
2131
|
+
"French": "Brun noir",
|
|
2132
|
+
"Spanish": "Pardo negruzco",
|
|
2133
|
+
"Italian": "Marrone nerastro",
|
|
2134
|
+
"Nederlands": "Zwartbruin"
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
"RAL": "RAL 8023",
|
|
2138
|
+
"RGB": "166-094-046",
|
|
2139
|
+
"HEX": "#A65E2E",
|
|
2140
|
+
"German": "Orangebraun",
|
|
2141
|
+
"English": "Orange brown",
|
|
2142
|
+
"French": "Brun orangé",
|
|
2143
|
+
"Spanish": "Pardo anaranjado",
|
|
2144
|
+
"Italian": "Marrone arancio",
|
|
2145
|
+
"Nederlands": "Oranjebruin"
|
|
2146
|
+
},
|
|
2147
|
+
{
|
|
2148
|
+
"RAL": "RAL 8024",
|
|
2149
|
+
"RGB": "121-085-061",
|
|
2150
|
+
"HEX": "#79553D",
|
|
2151
|
+
"German": "Beigebraun",
|
|
2152
|
+
"English": "Beige brown",
|
|
2153
|
+
"French": "Brun beige",
|
|
2154
|
+
"Spanish": "Pardo beige",
|
|
2155
|
+
"Italian": "Marrone beige",
|
|
2156
|
+
"Nederlands": "Beigebruin"
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
"RAL": "RAL 8025",
|
|
2160
|
+
"RGB": "117-092-072",
|
|
2161
|
+
"HEX": "#755C48",
|
|
2162
|
+
"German": "Blassbraun",
|
|
2163
|
+
"English": "Pale brown",
|
|
2164
|
+
"French": "Brun pâle",
|
|
2165
|
+
"Spanish": "Pardo pálido",
|
|
2166
|
+
"Italian": "Marrone pallido",
|
|
2167
|
+
"Nederlands": "Bleekbruin"
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
"RAL": "RAL 8028",
|
|
2171
|
+
"RGB": "078-059-049",
|
|
2172
|
+
"HEX": "#4E3B31",
|
|
2173
|
+
"German": "Terrabraun",
|
|
2174
|
+
"English": "Terra brown",
|
|
2175
|
+
"French": "Brun terre",
|
|
2176
|
+
"Spanish": "Marrón tierra",
|
|
2177
|
+
"Italian": "Marrone terra",
|
|
2178
|
+
"Nederlands": "Terrabruin"
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
"RAL": "RAL 8029",
|
|
2182
|
+
"RGB": "118-060-040",
|
|
2183
|
+
"HEX": "#763C28",
|
|
2184
|
+
"German": "Perlkupfer",
|
|
2185
|
+
"English": "Pearl copper",
|
|
2186
|
+
"French": "Cuivre nacré",
|
|
2187
|
+
"Spanish": "Cobre perlado",
|
|
2188
|
+
"Italian": "Rame perlato",
|
|
2189
|
+
"Nederlands": "Parelmoerkoper"
|
|
2190
|
+
},
|
|
2191
|
+
{
|
|
2192
|
+
"RAL": "RAL 9001",
|
|
2193
|
+
"RGB": "250-244-227",
|
|
2194
|
+
"HEX": "#FDF4E3",
|
|
2195
|
+
"German": "Cremeweiß",
|
|
2196
|
+
"English": "Cream",
|
|
2197
|
+
"French": "Blanc crème",
|
|
2198
|
+
"Spanish": "Blanco crema",
|
|
2199
|
+
"Italian": "Bianco crema",
|
|
2200
|
+
"Nederlands": "Crèmewit"
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
"RAL": "RAL 9002",
|
|
2204
|
+
"RGB": "231-235-218",
|
|
2205
|
+
"HEX": "#E7EBDA",
|
|
2206
|
+
"German": "Grauweiß",
|
|
2207
|
+
"English": "Grey white",
|
|
2208
|
+
"French": "Blanc gris",
|
|
2209
|
+
"Spanish": "Blanco grisáceo",
|
|
2210
|
+
"Italian": "Bianco grigiastro",
|
|
2211
|
+
"Nederlands": "Grijswit"
|
|
2212
|
+
},
|
|
2213
|
+
{
|
|
2214
|
+
"RAL": "RAL 9003",
|
|
2215
|
+
"RGB": "244-244-244",
|
|
2216
|
+
"HEX": "#F4F4F4",
|
|
2217
|
+
"German": "Signalweiß",
|
|
2218
|
+
"English": "Signal white",
|
|
2219
|
+
"French": "Blanc de sécurité",
|
|
2220
|
+
"Spanish": "Blanco señales",
|
|
2221
|
+
"Italian": "Bianco segnale",
|
|
2222
|
+
"Nederlands": "Signaalwit"
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
"RAL": "RAL 9004",
|
|
2226
|
+
"RGB": "040-040-040",
|
|
2227
|
+
"HEX": "#282828",
|
|
2228
|
+
"German": "Signalschwarz",
|
|
2229
|
+
"English": "Signal black",
|
|
2230
|
+
"French": "Noir de sécurité",
|
|
2231
|
+
"Spanish": "Negro señales",
|
|
2232
|
+
"Italian": "Nero segnale",
|
|
2233
|
+
"Nederlands": "Signaalzwart"
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"RAL": "RAL 9005",
|
|
2237
|
+
"RGB": "010-010-013",
|
|
2238
|
+
"HEX": "#0A0A0A",
|
|
2239
|
+
"German": "Tiefschwarz",
|
|
2240
|
+
"English": "Jet black",
|
|
2241
|
+
"French": "Noir foncé",
|
|
2242
|
+
"Spanish": "Negro intenso",
|
|
2243
|
+
"Italian": "Nero intenso",
|
|
2244
|
+
"Nederlands": "Gitzwart"
|
|
2245
|
+
},
|
|
2246
|
+
{
|
|
2247
|
+
"RAL": "RAL 9006",
|
|
2248
|
+
"RGB": "165-165-165",
|
|
2249
|
+
"HEX": "#A5A5A5",
|
|
2250
|
+
"German": "Weißaluminium",
|
|
2251
|
+
"English": "White aluminium",
|
|
2252
|
+
"French": "Aluminium blanc",
|
|
2253
|
+
"Spanish": "Aluminio blanco",
|
|
2254
|
+
"Italian": "Aluminio brillante",
|
|
2255
|
+
"Nederlands": "Blank aluminiumkleurig"
|
|
2256
|
+
},
|
|
2257
|
+
{
|
|
2258
|
+
"RAL": "RAL 9007",
|
|
2259
|
+
"RGB": "143-143-143",
|
|
2260
|
+
"HEX": "#8F8F8F",
|
|
2261
|
+
"German": "Graualuminium",
|
|
2262
|
+
"English": "Grey aluminium",
|
|
2263
|
+
"French": "Aluminium gris",
|
|
2264
|
+
"Spanish": "Aluminio gris",
|
|
2265
|
+
"Italian": "Aluminio grigiastro",
|
|
2266
|
+
"Nederlands": "Grijs aluminiumkleurig"
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
"RAL": "RAL 9010",
|
|
2270
|
+
"RGB": "255-255-255",
|
|
2271
|
+
"HEX": "#FFFFFF",
|
|
2272
|
+
"German": "Reinweiß",
|
|
2273
|
+
"English": "Pure white",
|
|
2274
|
+
"French": "Blanc pur",
|
|
2275
|
+
"Spanish": "Blanco puro",
|
|
2276
|
+
"Italian": "Bianco puro",
|
|
2277
|
+
"Nederlands": "Zuiverwit"
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
"RAL": "RAL 9011",
|
|
2281
|
+
"RGB": "028-028-028",
|
|
2282
|
+
"HEX": "#1C1C1C",
|
|
2283
|
+
"German": "Graphitschwarz",
|
|
2284
|
+
"English": "Graphite black",
|
|
2285
|
+
"French": "Noir graphite",
|
|
2286
|
+
"Spanish": "Negro grafito",
|
|
2287
|
+
"Italian": "Nero grafite",
|
|
2288
|
+
"Nederlands": "Grafietzwart"
|
|
2289
|
+
},
|
|
2290
|
+
{
|
|
2291
|
+
"RAL": "RAL 9016",
|
|
2292
|
+
"RGB": "246-246-246",
|
|
2293
|
+
"HEX": "#F6F6F6",
|
|
2294
|
+
"German": "Verkehrsweiß",
|
|
2295
|
+
"English": "Traffic white",
|
|
2296
|
+
"French": "Blanc signalisation",
|
|
2297
|
+
"Spanish": "Blanco tráfico",
|
|
2298
|
+
"Italian": "Bianco traffico",
|
|
2299
|
+
"Nederlands": "Verkeerswit"
|
|
2300
|
+
},
|
|
2301
|
+
{
|
|
2302
|
+
"RAL": "RAL 9017",
|
|
2303
|
+
"RGB": "030-030-030",
|
|
2304
|
+
"HEX": "#1E1E1E",
|
|
2305
|
+
"German": "Verkehrs-schwarz",
|
|
2306
|
+
"English": "Traffic black",
|
|
2307
|
+
"French": "Noir signalisation",
|
|
2308
|
+
"Spanish": "Negro tráfico",
|
|
2309
|
+
"Italian": "Nero traffico",
|
|
2310
|
+
"Nederlands": "Verkeerszwart"
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
"RAL": "RAL 9018",
|
|
2314
|
+
"RGB": "200-203-196",
|
|
2315
|
+
"HEX": "#c8cbc4",
|
|
2316
|
+
"German": "Papyrusweiß",
|
|
2317
|
+
"English": "Papyrus white",
|
|
2318
|
+
"French": "Blanc papyrus",
|
|
2319
|
+
"Spanish": "Blanco papiro",
|
|
2320
|
+
"Italian": "Bianco papiro",
|
|
2321
|
+
"Nederlands": "Papyruswit"
|
|
2322
|
+
},
|
|
2323
|
+
{
|
|
2324
|
+
"RAL": "RAL 9022",
|
|
2325
|
+
"RGB": "156-156-156",
|
|
2326
|
+
"HEX": "#9C9C9C",
|
|
2327
|
+
"German": "Perlhellgrau",
|
|
2328
|
+
"English": "Pearl light grey",
|
|
2329
|
+
"French": "Gris clair nacré",
|
|
2330
|
+
"Spanish": "Gris claro perlado",
|
|
2331
|
+
"Italian": "Grigio chiaro perlato",
|
|
2332
|
+
"Nederlands": "Parelmoer-lichtgrijs"
|
|
2333
|
+
},
|
|
2334
|
+
{
|
|
2335
|
+
"RAL": "RAL 9023",
|
|
2336
|
+
"RGB": "130-130-130",
|
|
2337
|
+
"HEX": "#828282",
|
|
2338
|
+
"German": "Perldunkelgrau",
|
|
2339
|
+
"English": "Pearl dark grey",
|
|
2340
|
+
"French": "Gris fonçé nacré",
|
|
2341
|
+
"Spanish": "Gris oscuro perlado",
|
|
2342
|
+
"Italian": "Grigio scuro perlato",
|
|
2343
|
+
"Nederlands": "Parelmoer-donkergrijs"
|
|
2344
|
+
}
|
|
2345
|
+
]
|