├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question-or-comment.md ├── .gitignore ├── CNAME ├── CSS ├── MyndexbDark.css ├── ReadMe.md ├── index.html ├── new-stylesM.css └── style.0.1.2-gM.css ├── LICENSE.md ├── README.md ├── WEBTOOLS ├── APCA │ ├── index.htm │ └── readme.md └── README.md ├── WhyAPCA.md ├── _config.yml ├── _includes ├── head-custom-google-analytics.html └── head-custom.html ├── _layouts ├── default.html ├── repoRoot.html ├── repoSubfolder.html └── simple.html ├── documentation ├── APCA-W3-LaTeX.md ├── APCA_FAQ.md ├── APCA_in_a_Nutshell.md ├── APCAeasyIntro.md ├── CONTRIBUTING.md ├── ImportantChangeNotices.md ├── LICENSE.md ├── README.md ├── StandardObserverModel.md ├── WhyAPCA.md ├── accessibilitystatement.md ├── color-vision-links.md ├── independent-review.md ├── index.md ├── minimum_compliance.md ├── referenceFont.md ├── regardingexponents.md ├── repoList.md └── thirdpartytools.md ├── favicon.ico └── images ├── APCA0.1.17_0.0.98GmathML.html ├── APCAFontSelect.png ├── APCA_0.0.98G4g+3.svg ├── APCAcolor4.png ├── APCAcolor4SQUARE.png ├── APCAlatex019df.png ├── APCAlatex019dr.png ├── APCAlogo.png ├── APCAlookupByContrast.jpeg ├── APCAlookupByContrastMay2022.png ├── APCAlookupByFont.jpeg ├── APCAlookupByFontMay2022.png ├── APCAtableLegend.jpeg ├── APCAtableLegendMay2022.png ├── APCAw3_0.1.17_APCA0.0.98G.svg ├── ColumnCompareAll400.png ├── DarkModeComparev2_2022.png ├── Eye Strain.png ├── Myndex_eye_cielab.jpg ├── Myndex_eye_cielabWide.png ├── YellowDotCheckboardAsmallChecker.png ├── YellowDotCheckboardDarkestShadow.png ├── buttons and colors.png └── contrastSensitivityGraph5sameColor.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: "(Bug Report Title)" 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | Please enter a descriptive title. 11 | 12 | **Does this relate to a web app or tool (i.e. you're an end user) OR is this about code or code integration (you're a developer).** 13 | 14 | **Describe the bug** 15 | What happened? 16 | 17 | **To Reproduce** 18 | Steps so we can reproduce the behavior: 19 | 20 | **Expected behavior** 21 | What were you expecting as correct behavior? 22 | 23 | **Screenshots** 24 | Add screenshots or code snippets to help explain your problem. 25 | 26 | **System or device information (please complete the following):** 27 | - Device: [e.g. iPhone6 or iMac] 28 | - OS: [e.g. MacOS] 29 | - OS version 30 | - Browser [e.g. chrome, safari] 31 | - Version [e.g. 22] 32 | 33 | **Additional context** 34 | Add any other context about the problem here. 35 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an enhancement or a specific feature for this project 4 | title: 'Feature Request:' 5 | labels: enhancement, Tool Features 6 | assignees: '' 7 | 8 | --- 9 | 10 | # Please enter a descriptive title! 11 | 12 | **Is this about a tool (you're an end user) or about a code library (you're a developer)?** 13 | Please discuss the context of where the feature is needed. 14 | 15 | **Does this relate to a problem with using a tool or implementing code? Or is this something that would help expand use and application?.** 16 | *Ex. I'm always frustrated when [...]* OR 17 | *Ex. a button that makes the sky bluer would be neat!* 18 | 19 | **How do you think it would be best implemented?** 20 | A clear and concise description of what you want to happen. 21 | 22 | **Have you considered other alternatives?** 23 | Alternative solutions or features you've considered might help us better understand what you are looking for. 24 | 25 | 26 | **Additional context** 27 | Add any other context or screenshots about the feature request here. 28 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-or-comment.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: QUESTION or COMMENT 3 | about: 'Please post all questions & comments in the discussions tab. ' 4 | title: 'Please post all questions & comments in the discussions tab. ' 5 | labels: question 6 | assignees: '' 7 | 8 | --- 9 | 10 | # Please post all questions & comments in the discussions tab. 11 | 12 | ## https://github.com/Myndex/SAPC-APCA/discussions 13 | 14 | Thank you!! 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # OLD 5 | old*/ 6 | XX_* 7 | *.*OLD 8 | 9 | # DEPRECATED 10 | DEPRECIATED/ 11 | DEPRECATED/ 12 | OBSOLETE/ 13 | PendingDelete/ 14 | IGNORE/ 15 | 16 | # macOS DS file 17 | .DS_Store 18 | 19 | # Log file 20 | *.log 21 | 22 | # BlueJ files 23 | *.ctxt 24 | 25 | # Mobile Tools for Java (J2ME) 26 | .mtj.tmp/ 27 | 28 | # Package Files # 29 | *.jar 30 | *.war 31 | *.nar 32 | *.ear 33 | *.zip 34 | *.tar.gz 35 | *.rar 36 | 37 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 38 | hs_err_pid* 39 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | git.apcacontrast.com -------------------------------------------------------------------------------- /CSS/ReadMe.md: -------------------------------------------------------------------------------- 1 | Hi There! 2 | 3 | These are just some style sheets for some of the documentation and so forth. 4 | -------------------------------------------------------------------------------- /CSS/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |![]() |
27 |
35 |
36 | Authorization Failure, IP Logged38 |Click Here To Continue39 | 40 | |
52 |
53 | Copyright © 1997-2018 by MTI, all rights 56 | reserved57 | 58 |62 | 63 | 64 | -- Server.06 HTML okay -- 65 | 66 | |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
85 |
86 |
87 |
Myndex and Inclusive Reading Technologies are the only authoritative reference for APCA and related contrast guidelines.
17 |If you came here via the link from the xi repository, please be aware that repository is not authorized, and includes a substantial amount of misleading, incorrect, and or simply bizarre material that has little relationship to the reality of human perception of contrast.
18 |We were concerned regarding the potential confusion and furtherance of misunderstandings in a field that's already difficult to grasp, we analyzed and provided a corrected version, as well as rebuttals, to that very poorly conceived collection.
19 |If you are interested in seeing how math was being used to mislead, please see our fork
20 | 21 |
116 |
117 |
118 |
164 |
165 |
166 |
Il 400 & IcyATOMsizedgap Arial
209 |Il 300 & IcyATOMsizedgap Raleway
210 | 211 |Il 400 & IcyATOMsizedgap Arial
212 |Il 400 & IcyATOMsizedgap Raleway
213 | 214 |Il 400 & IcyATOMsizedgap Arial
215 |Il 500 & IcyATOMsizedgap Raleway
216 | 217 |Il 400 & IcyATOMsizedgap Arial
218 |Il 520 & IcyATOMsizedgap Raleway
219 | 220 |Il 400 & IcyATOMsizedgap Arial
221 |Il 600 & IcyATOMsizedgap Raleway
222 |Il 700 & IcyATOMsizedgap Arial
224 |Il 600 & IcyATOMsizedgap Raleway
225 | 226 |Il 700 & IcyATOMsizedgap Arial
227 |Il 700 & IcyATOMsizedgap Raleway
228 | 229 |Il 700 & IcyATOMsizedgap Arial
230 |Il 730 & IcyATOMsizedgap Raleway
231 | 232 |Il 700 & IcyATOMsizedgap Arial
233 |Il 800 & IcyATOMsizedgap Raleway
234 | 235 |400 & IcyATOMsizedgap Arial lI
242 |300 & IcyATOMsizedgap Raleway lI
243 | 244 |400 & IcyATOMsizedgap Arial lI
245 |400 & IcyATOMsizedgap Raleway lI
246 | 247 |400 & IcyATOMsizedgap Arial lI
248 |500 & IcyATOMsizedgap Raleway lI
249 | 250 |400 & IcyATOMsizedgap Arial lI
251 |520 & IcyATOMsizedgap Raleway lI
252 | 253 |400 & IcyATOMsizedgap Arial lI
254 |600 & IcyATOMsizedgap Raleway lI
255 |700 & IcyATOMsizedgap Arial lI
257 |600 & IcyATOMsizedgap Raleway lI
258 | 259 |700 & IcyATOMsizedgap Arial lI
260 |700 & IcyATOMsizedgap Raleway lI
261 | 262 |700 & IcyATOMsizedgap Arial lI
263 |730 & IcyATOMsizedgap Raleway lI
264 | 265 |700 & IcyATOMsizedgap Arial lI
266 |800 & IcyATOMsizedgap Raleway lI
267 | 268 |