├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── documentation-report.md └── workflows │ ├── build-test.yml │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── docs ├── docs │ └── api │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── allclasses-index.html │ │ ├── allclasses.html │ │ ├── allpackages-index.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── element-list │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── jquery │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ ├── images │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-3.5.1.js │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ ├── jszip-utils │ │ │ └── dist │ │ │ │ ├── jszip-utils-ie.js │ │ │ │ ├── jszip-utils-ie.min.js │ │ │ │ ├── jszip-utils.js │ │ │ │ └── jszip-utils.min.js │ │ └── jszip │ │ │ └── dist │ │ │ ├── jszip.js │ │ │ └── jszip.min.js │ │ ├── member-search-index.js │ │ ├── member-search-index.zip │ │ ├── mil │ │ └── nga │ │ │ └── color │ │ │ ├── Color.html │ │ │ ├── ColorConstants.html │ │ │ ├── ColorUtils.html │ │ │ ├── class-use │ │ │ ├── Color.html │ │ │ ├── ColorConstants.html │ │ │ └── ColorUtils.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── overview-tree.html │ │ ├── package-search-index.js │ │ ├── package-search-index.zip │ │ ├── resources │ │ ├── glass.png │ │ └── x.png │ │ ├── script.js │ │ ├── search.js │ │ ├── stylesheet.css │ │ ├── type-search-index.js │ │ └── type-search-index.zip ├── index.html └── stylesheets │ ├── github-light.css │ ├── normalize.css │ └── stylesheet.css ├── pom.xml └── src ├── main └── java │ └── mil │ └── nga │ └── color │ ├── Color.java │ ├── ColorConstants.java │ └── ColorUtils.java └── test └── java └── mil └── nga └── color ├── ColorTest.java ├── ColorUtilsTest.java └── ReadmeTest.java /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/.github/ISSUE_TEMPLATE/documentation-report.md -------------------------------------------------------------------------------- /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/README.md -------------------------------------------------------------------------------- /docs/docs/api/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Created-By: Maven Javadoc Plugin 3.4.0 3 | Build-Jdk-Spec: 11 4 | 5 | -------------------------------------------------------------------------------- /docs/docs/api/allclasses-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/allclasses-index.html -------------------------------------------------------------------------------- /docs/docs/api/allclasses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/allclasses.html -------------------------------------------------------------------------------- /docs/docs/api/allpackages-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/allpackages-index.html -------------------------------------------------------------------------------- /docs/docs/api/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/constant-values.html -------------------------------------------------------------------------------- /docs/docs/api/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/deprecated-list.html -------------------------------------------------------------------------------- /docs/docs/api/element-list: -------------------------------------------------------------------------------- 1 | mil.nga.color 2 | -------------------------------------------------------------------------------- /docs/docs/api/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/help-doc.html -------------------------------------------------------------------------------- /docs/docs/api/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/index-all.html -------------------------------------------------------------------------------- /docs/docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/index.html -------------------------------------------------------------------------------- /docs/docs/api/jquery/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/external/jquery/jquery.js -------------------------------------------------------------------------------- /docs/docs/api/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /docs/docs/api/jquery/images/ui-bg_glass_65_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/images/ui-bg_glass_65_dadada_1x400.png -------------------------------------------------------------------------------- /docs/docs/api/jquery/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /docs/docs/api/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /docs/docs/api/jquery/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /docs/docs/api/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /docs/docs/api/jquery/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /docs/docs/api/jquery/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /docs/docs/api/jquery/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /docs/docs/api/jquery/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /docs/docs/api/jquery/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /docs/docs/api/jquery/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/docs/api/jquery/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jquery-ui.css -------------------------------------------------------------------------------- /docs/docs/api/jquery/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jquery-ui.js -------------------------------------------------------------------------------- /docs/docs/api/jquery/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jquery-ui.min.css -------------------------------------------------------------------------------- /docs/docs/api/jquery/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jquery-ui.min.js -------------------------------------------------------------------------------- /docs/docs/api/jquery/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jquery-ui.structure.css -------------------------------------------------------------------------------- /docs/docs/api/jquery/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /docs/docs/api/jquery/jszip-utils/dist/jszip-utils-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jszip-utils/dist/jszip-utils-ie.js -------------------------------------------------------------------------------- /docs/docs/api/jquery/jszip-utils/dist/jszip-utils-ie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jszip-utils/dist/jszip-utils-ie.min.js -------------------------------------------------------------------------------- /docs/docs/api/jquery/jszip-utils/dist/jszip-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jszip-utils/dist/jszip-utils.js -------------------------------------------------------------------------------- /docs/docs/api/jquery/jszip-utils/dist/jszip-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jszip-utils/dist/jszip-utils.min.js -------------------------------------------------------------------------------- /docs/docs/api/jquery/jszip/dist/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jszip/dist/jszip.js -------------------------------------------------------------------------------- /docs/docs/api/jquery/jszip/dist/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/jquery/jszip/dist/jszip.min.js -------------------------------------------------------------------------------- /docs/docs/api/member-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/member-search-index.js -------------------------------------------------------------------------------- /docs/docs/api/member-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/member-search-index.zip -------------------------------------------------------------------------------- /docs/docs/api/mil/nga/color/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/mil/nga/color/Color.html -------------------------------------------------------------------------------- /docs/docs/api/mil/nga/color/ColorConstants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/mil/nga/color/ColorConstants.html -------------------------------------------------------------------------------- /docs/docs/api/mil/nga/color/ColorUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/mil/nga/color/ColorUtils.html -------------------------------------------------------------------------------- /docs/docs/api/mil/nga/color/class-use/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/mil/nga/color/class-use/Color.html -------------------------------------------------------------------------------- /docs/docs/api/mil/nga/color/class-use/ColorConstants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/mil/nga/color/class-use/ColorConstants.html -------------------------------------------------------------------------------- /docs/docs/api/mil/nga/color/class-use/ColorUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/mil/nga/color/class-use/ColorUtils.html -------------------------------------------------------------------------------- /docs/docs/api/mil/nga/color/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/mil/nga/color/package-summary.html -------------------------------------------------------------------------------- /docs/docs/api/mil/nga/color/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/mil/nga/color/package-tree.html -------------------------------------------------------------------------------- /docs/docs/api/mil/nga/color/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/mil/nga/color/package-use.html -------------------------------------------------------------------------------- /docs/docs/api/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/overview-tree.html -------------------------------------------------------------------------------- /docs/docs/api/package-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/package-search-index.js -------------------------------------------------------------------------------- /docs/docs/api/package-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/package-search-index.zip -------------------------------------------------------------------------------- /docs/docs/api/resources/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/resources/glass.png -------------------------------------------------------------------------------- /docs/docs/api/resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/resources/x.png -------------------------------------------------------------------------------- /docs/docs/api/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/script.js -------------------------------------------------------------------------------- /docs/docs/api/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/search.js -------------------------------------------------------------------------------- /docs/docs/api/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/stylesheet.css -------------------------------------------------------------------------------- /docs/docs/api/type-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/type-search-index.js -------------------------------------------------------------------------------- /docs/docs/api/type-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/docs/api/type-search-index.zip -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/stylesheets/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/stylesheets/github-light.css -------------------------------------------------------------------------------- /docs/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/stylesheets/normalize.css -------------------------------------------------------------------------------- /docs/stylesheets/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/docs/stylesheets/stylesheet.css -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/mil/nga/color/Color.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/src/main/java/mil/nga/color/Color.java -------------------------------------------------------------------------------- /src/main/java/mil/nga/color/ColorConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/src/main/java/mil/nga/color/ColorConstants.java -------------------------------------------------------------------------------- /src/main/java/mil/nga/color/ColorUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/src/main/java/mil/nga/color/ColorUtils.java -------------------------------------------------------------------------------- /src/test/java/mil/nga/color/ColorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/src/test/java/mil/nga/color/ColorTest.java -------------------------------------------------------------------------------- /src/test/java/mil/nga/color/ColorUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/src/test/java/mil/nga/color/ColorUtilsTest.java -------------------------------------------------------------------------------- /src/test/java/mil/nga/color/ReadmeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/color-java/HEAD/src/test/java/mil/nga/color/ReadmeTest.java --------------------------------------------------------------------------------