-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
2734 lines (1813 loc) · 134 KB
/
index.html
1
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H77JCN2GW4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-H77JCN2GW4');
</script>
<meta charset="UTF-8">
<title>APCA Readability Criterion (ARC)</title>
<meta name="generator" content="ReSpec 32.7.0">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="readtech" content="manual Mar 17 2023">
<meta name="description" content="APCA Readability Criterion (ARC) provide recommendations for making visual content on illuminated displays more accessible to all users, especially with visual impairments.">
<meta name="keywords" content="APCA, Readabiliy, ARC, visual content, contrast, color, colour, self illuminated displays, accessibility, accessible, text, web design, a11y, Color blind, color vision deficiency, visual impairments">
<link rel="canonical" href="https://www.readtech.org/ARC/" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://www.readtech.org/ico/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="https://www.readtech.org/ico/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="https://www.readtech.org/ico/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="https://www.readtech.org/ico/favicon-16x16.png" sizes="16x16" />
<meta name="application-name" content="Inclusive Reading Technologies"/>
<meta name="msapplication-TileColor" content="#6600aa;" />
<meta name="msapplication-TileImage" content="https://www.readtech.org/ico/mstile-144x144.png" />
<meta property="fb:app_id" content="227594707878157" />
<meta property="og:title" content="APCA Readability Criterion • Contrast" />
<meta property="og:description" content="The APCA Readability Criterion (ARC) provides a range of recommendations for making visual content on illuminated displays more accessible to all users, especially with visual impairments" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.readtech.org/ARC/" />
<meta property="og:site_name" content="Inclusive Reading Technologies" />
<meta name="twitter:image" content="https://www.readtech.org/img/ogimage.png">
<meta property="og:image" content="https://www.readtech.org/img/ogimage.png"/>
<meta property="og:image:alt" content="APCA The Revolution Will Be Readable"/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1500" />
<meta property="og:image:height" content="850" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon.png">
<meta name="msapplication-TileColor" content="#3300aa">
<meta name="theme-color" content="#3300aa">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=Exo:ital,wght@0,600;0,700;1,600;1,700&display=swap" rel="stylesheet">
<style>
.issue-label{text-transform:initial}
.warning>p:first-child{margin-top:0}
.warning{padding:.5em;border-left-width:.5em;border-left-style:solid}
span.warning{padding:.1em .5em .15em}
.issue.closed span.issue-number{text-decoration:line-through}
.issue.closed span.issue-number::after{content:" (Closed)";font-size:smaller}
.warning{border-color:#f11;border-width:.2em;border-style:solid;background:#fbe9e9}
.warning-title:before{content:"⚠";font-size:1.3em;float:left;padding-right:.3em;margin-top:-.3em}
li.task-list-item{list-style:none}
input.task-list-item-checkbox{margin:0 .35em .25em -1.6em;vertical-align:middle}
.issue a.respec-gh-label{padding:5px;margin:0 2px 0 2px;font-size:10px;text-transform:none;text-decoration:none;font-weight:700;border-radius:4px;position:relative;bottom:2px;border:none;display:inline-block}
dfn{cursor:pointer}
.dfn-panel{position:absolute;z-index:35;min-width:300px;max-width:500px;padding:0.5em .75em;margin-top:.6em;font-family:"Helvetica Neue",sans-serif;font-size:small;background:#fff;color:#000;box-shadow:0 1em 3em -.4em rgba(0,0,0,.3),0 0 1px 1px rgba(0,0,0,.05);border-radius:2px}
.dfn-panel:not(.docked)>.caret{position:absolute;top:-9px}
.dfn-panel:not(.docked)>.caret::after,.dfn-panel:not(.docked)>.caret::before{content:"";position:absolute;border:10px solid transparent;border-top:0;border-bottom:10px solid #fff;top:0}
.dfn-panel:not(.docked)>.caret::before{border-bottom:9px solid #a2a9b1}
.dfn-panel *{margin:0}
.dfn-panel b{display:block;color:#000;margin-top:.25em}
.dfn-panel ul a[href]{color:#333}
.dfn-panel>div{display:flex}
.dfn-panel a.self-link{font-weight:700;margin-right:auto}
.dfn-panel .marker{padding:.1em;margin-left:.5em;border-radius:.2em;text-align:center;white-space:nowrap;font-size:90%;color:#040b1c}
.dfn-panel .marker.dfn-exported{background:#d1edfd;box-shadow:0 0 0 .125em #1ca5f940}
.dfn-panel .marker.idl-block{background:#8ccbf2;box-shadow:0 0 0 .125em #0670b161}
.dfn-panel a:not(:hover){text-decoration:none!important;border-bottom:none!important}
.dfn-panel a[href]:hover{border-bottom-width:1px}
.dfn-panel ul{padding:0}
.dfn-panel li{margin-left:1em}
.dfn-panel.docked{position:fixed;left:.5em;top:unset;bottom:2em;margin:0 auto;max-width:calc(100vw - .75em * 2 - .5em - .2em * 2);max-height:30vh;overflow:auto}
</style>
<style id="respec-mainstyle">
@keyframes pop {
0% {transform:scale(1,1)}
25% {transform:scale(1.25,1.25);opacity:.75}
100% {transform:scale(1,1)}
}
:is(h1,h2,h3,h4,h5,h6,a) abbr{border:none}
dfn{font-weight:700}
a.internalDFN{color:inherit;border-bottom:1px solid #99c; text-decoration:none}
a.externalDFN{color:inherit;border-bottom:1px dotted #ccc; text-decoration:none}
a.bibref{text-decoration:none}
.respec-offending-element:target{animation:pop .25s ease-in-out 0s 1}
.respec-offending-element,a[href].respec-offending-element{text-decoration:red wavy underline}
@supports not ( text-decoration: red wavy underline ) {
.respec-offending-element:not(pre){display:inline-block}
.respec-offending-element{ background: url(data:image/gif;base64,R0lGODdhBAADAPEAANv///8AAP///wAAACwAAAAABAADAEACBZQjmIAFADs=) bottom repeat-x
}
}
#references :target{background:#eaf3ff;animation:pop .4s ease-in-out 0s 1}
cite .bibref{font-style:normal}
a[href].orcid{padding-left:4px;padding-right:4px}
a[href].orcid>svg{margin-bottom:-2px}
.toc a,.tof a{text-decoration:none}
a .figno,a .secno{color:#000}
ol.tof,ul.tof{list-style:none outside none}
.caption{margin-top:.5em;font-style:italic}
table.simple{border-spacing:0;border-collapse:collapse;border-bottom:3px solid #005a9c}
.simple th{background:#005a9c;color:#fff;padding:3px 5px;text-align:left}
.simple th a{color:#fff;padding:3px 5px;text-align:left}
.simple th[scope=row]{background:inherit;color:inherit;border-top:1px solid #ddd}
.simple td{padding:3px 10px;border-top:1px solid #ddd}
.simple tr:nth-child(even){background:#f0f6ff}
.section dd>p:first-child{margin-top:0}
.section dd>p:last-child{margin-bottom:0}
.section dd{margin-bottom:1em}
.section dl.attrs dd,.section dl.eldef dd{margin-bottom:0}
#issue-summary>ul{column-count:2}
#issue-summary li{list-style:none;display:inline-block}
details.respec-tests-details{margin-left:1em;display:inline-block;vertical-align:top}
details.respec-tests-details>*{padding-right:2em}
details.respec-tests-details[open]{z-index:999999;position:absolute;border:thin solid #cad3e2;border-radius:.3em;background-color:#fff;padding-bottom:.5em}
details.respec-tests-details[open]>summary{border-bottom:thin solid #cad3e2;padding-left:1em;margin-bottom:1em;line-height:2em}
details.respec-tests-details>ul{width:100%;margin-top:-.3em}
details.respec-tests-details>li{padding-left:1em}
.self-link:hover{
opacity:1;
text-decoration:none;
background-color:transparent;
}
aside.example .marker>a.self-link{ color:inherit; }
.header-wrapper{ display:flex; align-items: baseline; clear: both;}
:is(h2,h3,h4,h5,h6):not(#toc>h2,#abstract>h2,#sotd>h2,.head>h2) {
position: relative;
left: -0.5em;
}
:is(h2,h3,h4,h5,h6):not(#toc>h2)+a.self-link{
color:inherit;
order:-1;
position:relative;
left:-1.1em;
font-size: 1em;
opacity:0.5;
}
:is(h2,h3,h4,h5,h6) + a.self-link::before {
content: "§";
text-decoration: none;
color: var(--heading-text);
}
:is(h2,h3) + a.self-link { top: -0.2em }
:is(h4,h5,h6) + a.self-link::before { color:#000 }
:is(h2,h3,h4,h5,h6):not(#toc>h2,#abstract>h2,#sotd>h2,.head>h2).objective-header {
position: relative;
left: -2.3em;
}
@media (max-width:47.49em) {
dd{margin-left:0}
}/* CLOSE MEDIA QUERY */
@media print{
.removeOnSave{ display:none }
}/* CLOSE MEDIA QUERY */
</style>
<script src="./js/statusFilter.js"></script>
<link rel="stylesheet" href="./css/base.css">
<link rel="stylesheet" href="./css/criterion.css">
<link rel="stylesheet" href="./css/mobilefix.css">
<style>
var{position:relative;cursor:pointer}
var[data-type]::after,var[data-type]::before{ position:absolute;left:50%;top:-6px;opacity:0;transition:opacity .4s;pointer-events:none}
var[data-type]::before{ content:"";transform:translateX(-50%); border-width:4px 6px 0 6px; border-style:solid;border-color:transparent;border-top-color:#000}
var[data-type]::after{ content:attr(data-type);transform:translateX(-50%) translateY(-100%);background:#000;text-align:center;font-family:"Fira Code",monospace;font-style:normal;padding:6px;border-radius:3px;color:#daca88;text-indent:0;font-weight:400}
var[data-type]:hover::after,
var[data-type]:hover::before{opacity:1}
</style>
<script id="initialUserConfig" type="application/json">
{
"trace": true,
"doRDFa": "1.1",
"includePermalinks": true,
"permalinkEdge": true,
"permalinkHide": false,
"specStatus": "ED",
"shortName": "arg",
"copyrightStart": "2021",
"edDraftURI": "https://A11yReadTech.github.io/ARC/",
"authors": [
{
"name": "Andrew Somers",
"mailto": "[email protected]",
"company": "IRT",
"companyURI": "https://www.readtech.org/",
"url": "mailto:[email protected]"
}
],
"github": "A11yReadTech/ARC",
"maxTocLevel": 4,
"preProcess": [
null
],
"postProcess": [
null
],
"lint": false,
"publishISODate": "2023-02-28T00:00:00.000Z",
"generatedSubtitle": "IRT Editor's Draft 28 February 2023"
}
</script>
<style>
div.upR p.info {
max-width: calc(100% - 5.5em);
}
div.upR {
width: 70%;
}
@media (max-width:39.99em){
div.upR {
width: 100%;
margin: 0 0 3em;
}
}/* CLOSE MEDIA QUERY */
</style>
</head>
<!-- ***** START BODY HERE ***** -->
<!-- ***** START BODY HERE ***** -->
<!-- ***** START BODY HERE ***** -->
<!-- ***** START BODY HERE ***** -->
<!-- ***** START BODY HERE ***** -->
<!-- ***** START BODY HERE ***** -->
<!-- ***** START BODY HERE ***** -->
<!-- ***** START BODY HERE ***** -->
<!-- ***** START BODY HERE ***** -->
<!-- ***** START BODY HERE ***** -->
<body class="h-entry">
<main class="wrapper">
<div class="head">
<h1 id="title" class="title headerPlus">APCA Readability Criterion</h1>
<p id="irt-state"><a href="https://www.readtech.org/ARC/">ARC Public Beta Draft</a> <time class="dt-published" datetime="2023-03-12">12 March 2023</time></p>
<div class="upR"><p class="info" style="">Content in this resource is still under active development and should be considered beta. It may change, move, antecede, or be deleted with or without notice.</p><img style="" src="./img/safetyManSMALL.png" height="150"></div>
<!--
<div style="position: relative; margin: 0; top:0px; float: right; width: 65%;"><p class="info" style="max-width: 70%; padding-left: 1.5em;">Content in this resource is still under active development and should be considered beta. It may change, move, antecede, or be deleted with or without notice.</p><img style="position: relative; margin: -2em -2em 0; top:0px; float: right; filter: drop-shadow(0.5em 0.3em 0.5em #5678);" src="./img/safetyManSMALL.png" height="160">
</div>
-->
<p><button id="quickstart" onclick="window.location.href='./tests/visual-readability-contrast/'" ><div>JUMP TO</div>VISUAL CONTRAST QUICK START</button></p>
<hr title="Separator for header" style="clear:both;">
</div> <!-- close div head -->
<section id="abstract" class="introductory">
<h2 class="headerPlus">EXECUTIVE SUMMARY</h2>
<img src="./img/IRT/IRTtextPaths_v03.svg" alt="IRT logo" style="position: relative; margin: 1em 1.5em; top:0px; float: right; width: 40%;">
<p>The APCA™ Readabiliy Criterion (ARC™) provides a range of evidence-based recommendations for making visual content on self-illuminated displays more accessible to all users, especially users with visual impairments. These guidelines are developed with a thorough understanding and reference to modern peer-reviewed research and scientific consensus in the areas of visual perception and visual reading.</p>
<p>Following these guidelines will address many of the needs of users with low vision, color vision deficiency, and other visual impairments; certain cognitive and learning disabilities; and combinations of these. These guidelines address visual accessibility of applications and content on desktops, laptops, tablets, mobile devices, kiosks, point of sale, and embedded systems.</p>
<p>This specification is expected to be updated regularly to keep pace with changing technology by updating and adding design guides, test-methods, objectives, and guidelines to address new needs as technologies evolve. Several levels of conformance are available to address the diverse nature of digital content, and the specific goals of entities that wish to make formal claims of <a href="#dfn-conformance" class="internalDFN" data-link-type="dfn" id="ref-for-dfn-conformance-1"> conformance</a> to these guidelines.</p>
<section id="background" class="introductory"><h2 class="headerPlus3">History and Purpose</h2>
<p>APCA Readability Criterion (ARC) began as a project to correct well known problems with <abbr title="Web Content Accessibility Guidelines 2">"WCAG 2.x</abbr> contrast specifications, and subsequently evolving into draft guidance for the future <abbr title="World Wide Web Consortium (W3C) Accessibility Guidelines 3">WCAG 3</abbr>. APCA and ARC are intended to integrate with these and other relevant standards. To that end, ARC is designed to follow the general form of WCAG 3 as it develops. This also means ARC includes additional tests and different scoring mechanisms than used previously. As a result, ARC is not backwards compatible with WCAG 2.x.
<p>ARC is an alternative, independent set of guidelines as embodied herein. The expected release date of WCAG 3 is several years in the future, but there is a pressing need today for a perceptually uniform contrast measure. The design community requires a useful contrast guideline capable of calculating for modern design needs, such as dark mode. These APCA Readability Criterion are presented here to bridge this gap, with the aim of improving <em>actual</em> accessibility.</p>
</section>
<hr>
<!-- ***** TABLE OF CONTENTS ***** -->
<!-- ***** TABLE OF CONTENTS ***** -->
<!-- ***** TABLE OF CONTENTS ***** -->
<!-- ***** TABLE OF CONTENTS ***** -->
<!-- ***** TABLE OF CONTENTS ***** -->
<!-- table of contents -->
<nav id="toc"><h2 class="introductory headerPlus1" id="table-of-contents">Table of Contents</h2>
<p><button id="status-filter-toc" data-status-filter="research,placeholder,deprecated" style="/* padding: 0.5em 1em; font-size: 1.3em; font-weight:700; background: #FF6; border-radius: 0.75em */">Show Hidden</button></p>
<ol class="toc"><li class="tocline"><a class="tocxref abstract" href="#abstract"> Executive Summary</a>
<ol class="toc"><li class="tocline"><a class="tocxref abstract" href="#background">History and Purpose</a></li>
<li class="tocline"><a class="tocxref abstract" href="#sotd">Status of This Document</a></li>
</ol></li>
<li class="tocline"><a class="tocxref" href="#introduction"><bdi class="secno">1. </bdi>Introduction</a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#about-apca-readability-criterion"><bdi class="secno">1.1 </bdi>About APCA & ARC</a></li>
<li class="tocline"><a class="tocxref" href="#section-status-levels"><bdi class="secno">1.2 </bdi>Section Status</a></li>
<li class="tocline"><a class="tocxref" href="#goals-and-requirements"><bdi class="secno">1.3 </bdi>Objectives</a></li>
</ol></li>
<li class="tocline"><a class="tocxref" href="#normative-requirements"><bdi class="secno">2. </bdi>Normative</a></li>
<li class="tocline"><a class="tocxref" href="#criterion"><bdi class="secno">3. </bdi>Summary<div>Visual Presentation</div> </a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#visual-contrast-map"><bdi class="secno">3.1 </bdi>Visual Contrast<div>Guidelines Map</div></a></li>
</ol></li></li>
<li class="tocline"><a class="tocxref" href="#visual-contrast-text"><bdi class="secno">4. </bdi>Visual Contrast<div>Text & Fonts </div></a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#objective-lightness"><bdi class="secno">4.1 </bdi>Objective: <div>Text Lightness Contrast</div></a></li>
</ol></li>
<li class="tocline"><a class="tocxref" href="#nontext-contrast"><bdi class="secno">5. </bdi>Visual Contrast<div>Non-Text & DataViz</div></a></li>
<li class="tocline"><a class="tocxref" href="#user-integration"><bdi class="secno">6. </bdi>User Integration<div>Visual UX</div></a></li>
<li class="tocline"><a class="tocxref" href="#conformance"><bdi class="secno">7. </bdi>Conformance</a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#conformance-levels"><bdi class="secno">7.1 </bdi>Conform Levels</a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#bronze"><bdi class="secno">7.1.1 </bdi>Bronze</a></li>
<li class="tocline"><a class="tocxref" href="#silver"><bdi class="secno">7.1.2 </bdi>Silver</a></li>
<li class="tocline"><a class="tocxref" href="#gold"><bdi class="secno">7.1.3 </bdi>Gold</a></li>
</ol></li>
<li class="tocline"><a class="tocxref" href="#use-cases-levels"><bdi class="secno">7.2 </bdi>Use Cases & Levels</a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#text-use-cases"><bdi class="secno">7.2.1 </bdi>Text Use Cases</a></li>
<li class="tocline"><a class="tocxref" href="#non-text-use-cases"><bdi class="secno">7.2.2 </bdi>Non-Text Use Cases</a></li>
<li class="tocline"><a class="tocxref" href="#mode-use-cases"><bdi class="secno">7.2.3 </bdi>Mode Use Cases</a></li>
</ol></li>
<li class="tocline"><a class="tocxref" href="#defining-conformance-scope"><bdi class="secno">7.3 </bdi>Conformance Scope</a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#top-down-scope"><bdi class="secno">7.3.1 </bdi>Top Down Scope</a></li>
<li class="tocline"><a class="tocxref" href="#bottom-up-scope"><bdi class="secno">7.3.2 </bdi>Bottom Up Scope</a></li>
<li class="tocline"><a class="tocxref" href="#middle-out-scope"><bdi class="secno">7.3.3 </bdi>Middle Out Scope</a></li>
</ol></li>
<li class="tocline"><a class="tocxref" href="#conformance-requirements"><bdi class="secno">7.4 </bdi>Requirements</a></li>
<li class="tocline"><a class="tocxref" href="#conformance-certification"><bdi class="secno">7.5 </bdi>Certification</a></li>
</ol>
</li>
<li class="tocline"><a class="tocxref" href="#glossary"><bdi class="secno">8. </bdi>Glossary</a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#glossary-apca-vision"><bdi class="secno">8.1 </bdi>APCA & Vision Terminology</a></li>
<li class="tocline"><a class="tocxref" href="#glossary-specs"><bdi class="secno">8.2 </bdi>Specification Terms</a></li>
</ol> </li>
<li class="tocline"><a class="tocxref" href="#references"><bdi class="secno">9. </bdi>References</a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#normative-references"><bdi class="secno">9.1 </bdi> Normative</a></li>
<li class="tocline"><a class="tocxref" href="#supporting-references"><bdi class="secno">9.2 </bdi> Supporting</a></li>
<li class="tocline"><a class="tocxref" href="#informative-references"><bdi class="secno">9.3 </bdi> Informative</a></li>
<li class="tocline"><a class="tocxref" href="#perspective-references"><bdi class="secno">9.4 </bdi> Perspective</a></li>
</ol>
</li>
<li class="tocline"><a class="tocxref" href="#guidelines-development-methodology"><bdi class="secno">A. </bdi>Guidelines <div>Development</div></a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#guidelines-research"><bdi class="secno">A.1 </bdi>Methodology</a></li>
</ol>
</li>
<li class="tocline"><a class="tocxref" href="#differences-from-wcag-2-x"><bdi class="secno">B. </bdi>Differences from WCAG 2.x</a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#objectives"><bdi class="secno">B.1 </bdi>Objective Model</a></li>
</ol>
</li>
<li class="tocline"><a class="tocxref" href="#change-log"><bdi class="secno">C. </bdi>Change log</a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#change-lego"><bdi class="secno">C.1 </bdi>Change lego</a></li>
</ol>
</li>
<li class="tocline"><a class="tocxref" href="#acknowledgements"><bdi class="secno">D. </bdi>Acknowledgements</a>
<ol class="toc">
<li class="tocline"><a class="tocxref" href="#special-thanks"><bdi class="secno">D.1 </bdi> Special thanks </a></li>
</ol>
</li>
</ol>
<hr>
</nav> <!-- close table of contents -->
<!-- ***** STATUS OF THIS DOCUMENT ***** -->
<!-- ***** STATUS OF THIS DOCUMENT ***** -->
<!-- ***** STATUS OF THIS DOCUMENT ***** -->
<!-- ***** STATUS OF THIS DOCUMENT ***** -->
<!-- ***** STATUS OF THIS DOCUMENT ***** -->
<section id="sotd" class="introductory"><h2 class="headerPlus3">Status of This Document</h2>
<p>This is a draft document and may be updated, replaced, or superseded by other documents at any time. This document should only be referred to as a work in progress.
</p>
<p>To comment, <a href="https://github.com/Myndex/SAPC-APCA/discussions/new/choose"> start a discussion in the SAPC-APCA GitHub repository</a>.
It is free to create a GitHub account to start discussions and file issues.</p>
<p>Publication as an Editor's Draft does not imply endorsement by <abbr title="Inclusive Reading Technologies">IRT</abbr>.</p>
</section>
<details>
<summary>More details about this document</summary>
<dl>
<dt>Current unpublished draft version:</dt>
<dd>
<a class="u-url" href="https://A11yReadTech.github.io/ARC/">A11yReadTech.github.io/ARC/</a>
</dd>
<dt>Latest published working draft:</dt>
<dd>
<a href="https://www.readtech.org/ARC/">www.readtech.org/ARC/</a>
</dd>
<!--
<dt>Editor:</dt><dd class="editor p-author h-card vcard">
<a class="ed_mailto u-email email p-name" href="mailto:[email protected]">Andrew Somers</a> (<span class="p-org org h-org">IRT</span>)
</dd>
-->
<dt>Project Manager:</dt>
<dd class="editor p-author h-card vcard">
<a class="ed_mailto u-email email p-name" href="mailto:[email protected]">Mike Anderson</a> (<span class="p-org org h-org">IRT</span>)
</dd>
<dt>ARC (Readability Guidelines) Feedback:</dt>
<dd>
<a href="https://github.com/A11yReadTech/ARC/">GitHub A11yReadTech/ARC</a>
(<a href="https://github.com/A11yReadTech/ARC/discussions/">ARC open discussions</a>,
<a href="https://github.com/A11yReadTech/ARC/issues/">ARC beta issues</a>)
</dd>
<dt>APCA Algorithm Feedback:</dt>
<dd>
<a href="https://github.com/Myndex/SAPC-APCA/">GitHub Myndex/SAPC-APCA</a>
(<a href="https://github.com/Myndex/SAPC-APCA/discussions/">APCA open discussions</a>,
<a href="https://github.com/Myndex/SAPC-APCA/issues/">APCA beta issues</a>)
</dd>
</dl>
</details>
<p class="copyright">
<a href="/LGL/?tn=copyright">Copyright</a> © 2021-2023 by <a href="https://www.readtech.org/"><abbr title="Inclusive Reading Technologies">IRT</abbr></a><sup>™</sup>. All Rights Reserved.<br>
<a href="/LGL/">Legal:</a> <a href="/LGL/?tn=disclaimers">Liability</a>, <a href="/LGL/?tn=trademarks">Trademarks</a>, <a href="/LGL/?tn=patents">Patents</a>, <a href="/LGL/?tn=license">License & Use</a>
</p>
</section><!-- close abstract section -->
<!-- ***** 1. INTRODUCTION ***** -->
<!-- ***** 1. INTRODUCTION ***** -->
<!-- ***** 1. INTRODUCTION ***** -->
<!-- ***** 1. INTRODUCTION ***** -->
<!-- ***** 1. INTRODUCTION ***** -->
<!-- ***** 1. INTRODUCTION ***** -->
<!-- ***** 1. INTRODUCTION ***** -->
<!-- ***** 1. INTRODUCTION ***** -->
<!-- ***** 1. INTRODUCTION ***** -->
<!-- ***** 1. INTRODUCTION ***** -->
<section class="informative" id="introduction">
<div class="addition statusStatic floatAddition review"><a href="#section-status-levels" class="status-link"><strong>Review</strong></a></div>
<div class="header-wrapper "><h2 id="x1-introduction" class="headerPlus"><bdi class="secno">1. </bdi>INTRODUCTION</h2><a class="self-link" href="#introduction" aria-label="Permalink for Section 1."></a></div>
<p class="informative-statement"><em>This section is advisory only, meaning it is <a href="#dfn-informative" class="internalDFN" data-link-type="dfn">informative</a> and non-normative.</em></p>
<div class="note" id="issue-container-generatedID"><div role="heading" class="ednote-title marker" id="h-ednote" aria-level="3"><span class="noteHeading">Development Note</span><a class="self-link" aria-label="§" href="#issue-container-generatedID"></a></div><div class="">
<p>The current proposal for APCA and ARC is made up of several divisions, including:</p>
<ul><li>APCA Based Tools • provide perceptually uniform, objective assessment of contrast</li>
<li>How-tos • Tutorial guides for planning and implementing design strategies</li>
<li>Objectives • Target accommodation goals, serving user needs</li>
<li>Tests • Specific test methods, techniques, and defined criterion for measuring and conforming to guidance</li>
</ul>
</div>
</div>
<details class="summary">
<summary>Plain language summary of <q>Introduction</q></summary>
<p>The APCA Readability Criterion (ARC) is a newer standard based on the Accessible Perceptual Contrast Algorithm, which provides significant improvements over the older Web Content Accessibility Guidelines (WCAG) 2.2. ARC is intended to eventually integrate into other standards such as ISO and WCAG 3.</p>
<p>What’s new in APCA/ARC?</p>
<ul>
<li>APCA/ARC includes math that provides results in accordance with human vision, and better accommodates visual impairments.</li>
<li>It includes mobile and desktop applications, along with web content.</li>
<li>It has new guidelines and new tests that improve readability but also improve design flexibility.</li>
<li>It has new scoring with use cases to define critical content vs unimportant content.</li>
</ul>
</details>
<section id="about-apca-readability-criterion"><div class="header-wrapper marker"><h3 id="x1-1-about-apca-readability-criterion" class="headerPlus3 "><bdi class="secno">1.1 </bdi>About APCA Readability Criterion </h3><a class="self-link" href="#about-apca-readability-criterion" aria-label="Permalink for Section 1.1"></a></div>
<p>The APCA Readability Criterion (ARC) is a modern set of design guidelines or visual content utilizing the Accessible Perceptual Contrast Algorithm (APCA), which is tuned for perceptual uniformity of text and non-text elements, as displayed on a self-illuminated monitor or device.</p>
<p>APCA&ARC provide significant improvements over older methods and guidelines such as the Web Content Accessibility Guidelines (WCAG) 2.x. and other similar standards. The improvements include more robust readability in a wider variety of environments, and on a wider variety of displays and devices. Also, while other methods fail to calculate for dark mode correctly, APCA is well-able to calculate reasonable values here.</p>
<p>These improvements are achieved by referencing and implementing the very latest peer-reviewed vision science, as well as integrating with modern, scientific-consensus readability research. Please see the bibliography for references.</p>
<p>ARC is intended to eventually integrate into other standards such as ISO and the future WCAG 3. As such, you may notice that some aspects of the documents here are presented similarly to those in the emerging WCAG 3. This should come as no surprise, as the authors of ARC are also actively working as part of the task force&subgroups developing WCAG 3. However we want to stress that the ARC are a separate, independent set of guidelines, and are not presently an official recommendation, and should be referenced only as a work in progress.</p>
</section>
<section id="section-status-levels"><div class="header-wrapper"><h3 id="x1-2-section-status-levels" class="headerPlus3 marker"><bdi class="secno">1.2 </bdi>Section status levels</h3><a class="self-link" href="#section-status-levels" aria-label="Permalink for Section 1.2"></a></div>
<p>Sections of this document are assigned a status, <em>approximately</em> following the present, draft patterns of WCAG 3. This status is used to indicate what stage of development the section is at present.</p>
<ul id="status-levels" class="nobull">
<li><strong id="status-deprecated">Deprecated</strong> : Obsolete and no longer supported ••• <em>hidden</em>.</li>
<li><strong id="status-placeholder">Placeholder</strong> : Future content will be here ••• <em>hidden</em>.</li>
<li><strong id="status-research">Research</strong> : Early due-diligence & research phase <em></em>.</li>
<li><strong id="status-development">Development</strong> : An active developing draft, subject to revision.</li>
<li><strong id="status-review">Review</strong> : Public beta ready for broad public review.</li>
<li><strong id="status-mature">Mature</strong> : Ready for adoption or integration into other standards.</li>
</ul>
<p>The research and development sections are visible during the present development cycle. Deprecated & placeholder sections are hidden when this page loads, but you may toggle the visibility for these sections with the button the top of the table of contents or the button below:</p>
<p><button id="status-filter" data-status-filter="placeholder,deprecated" style="/*padding: 0.5em; font-size: 1.3em; font-weight:700; background: #FF6; border-radius: 0.5em */">Reveal Placeholder & Deprecated Sections</button></p>
</section>
<section id="goals-and-requirements">
<div class="header-wrapper">
<h3 id="x1-3-goals-and-requirements" class="headerPlus3 marker"><bdi class="secno">1.3 </bdi>Goals and Objectives</h3><a class="self-link" href="#goals-and-requirements" aria-label="Permalink for Section 1.3"></a></div>
<p>The goal of the APCA Readability Criterion (ARC) and supporting documents is to make digital products including web, ePub, PDF, applications, mobile apps, and other emerging technologies, more readable, accessible, and usable for all people, including those with visual impairments. This goal will be met through evidence-based science and responding to changing technologies.</p>
<p>Research and development work beginning in early 2019, identified issues with the existing WCAG 2.x contrast success criterion. Correcting these issues shaped the guidelines contained herein.</p>
<p>ARC embodies a much wider scope, and is not confined merely to contrast, but to the entire visual presentation of text and non-text content. The reality is that the very context-sensitive nature of the human vision system requires this more complete, holistic approach to visual perception design guidelines.</p>
</section>
</section><!-- close intro section 1 -->
<!-- ***** 2. NORMATIVE REQUIREMENTS ***** -->
<!-- ***** 2. NORMATIVE REQUIREMENTS ***** -->
<!-- ***** 2. NORMATIVE REQUIREMENTS ***** -->
<!-- ***** 2. NORMATIVE REQUIREMENTS ***** -->
<!-- ***** 2. NORMATIVE REQUIREMENTS ***** -->
<section id="normative-requirements">
<div class="addition statusStatic floatAddition review"><a href="#section-status-levels" class="status-link"><strong>Review</strong></a></div>
<div class="header-wrapper"><h2 id="x2-normative-requirements" class="headerPlus marker"><bdi class="secno">2. </bdi>NORMATIVE REQUIREMENTS</h2><a class="self-link" href="#normative-requirements" aria-label="Permalink for Section 2."></a></div>
<p class="normative-statement"><em>This section provides requirements which must be followed for <a>conformance</a>, meaning it is <a href="#dfn-normative" class="internalDFN" data-link-type="dfn">normative</a>.</em></p>
<details class="summary">
<summary>Plain language summary of <q>Normative requirements</q></summary>
<p>There are two types of content in this document:</p>
<ul>
<li><strong>Normative:</strong> what you must do to meet the guidelines.</li>
<li><strong>Non-normative:</strong> advice to help you meet the guidelines. This is also called <q>Informative</q>.</li>
</ul>
</details>
<p>In addition to this section, the <a href="#criterion">Visual Presentation</a>, <a href="#visual-contrast">Visual Contrast</a>, <a href="#nontext-contrast-">Nontext Contrast</a>, <a href="#user-integration">User Integration</a>, and <a href="#conformance">Conformance</a> sections in APCA provide <a href="#dfn-normative" class="internalDFN" data-link-type="dfn" id="ref-for-dfn-normative-1">normative</a> content and define requirements that impact conformance claims. Introductory material, appendices, sections marked as <q>non-normative</q>, diagrams, examples, and notes are <a href="#dfn-informative" class="internalDFN" data-link-type="dfn" id="ref-for-dfn-informative-1">informative</a> (non-normative). Non-normative material provides advisory information to help interpret the guidelines but does not create requirements that impact a conformance claim.</p>
<p>The key words <em class="rfc2119" title="MAY"><em class="rfc2119">MAY</em></em>, <em class="rfc2119" title="MUST"><em class="rfc2119">MUST</em></em>, <em class="rfc2119" title="MUST NOT"><em class="rfc2119">MUST NOT</em></em>, <em class="rfc2119" title="NOT RECOMMENDED"><em class="rfc2119">NOT RECOMMENDED</em></em>, <em class="rfc2119" title="RECOMMENDED"><em class="rfc2119">RECOMMENDED</em></em>, <em class="rfc2119" title="SHOULD"><em class="rfc2119">SHOULD</em></em>, and <em class="rfc2119" title="SHOULD NOT"><em class="rfc2119">SHOULD NOT</em></em> are to be interpreted as described in [<cite><a class="bibref" data-link-type="biblio" href="#bib-rfc2119" title="Key words for use in RFCs to Indicate Requirement Levels">RFC2119</a></cite>].</p>
<div class="note" id="issue-container-generatedID-0"><div role="heading" class="ednote-title marker" id="h-ednote-0" aria-level="3"><span class="noteHeading">Development Note</span><a class="self-link" aria-label="§" href="#issue-container-generatedID-0"></a></div><p class="">Objectives and critical errors are normative. Guidelines, test methods, and design guides are informative.</p></div>
</section><!-- close norm section 2 -->
<!-- ***** 3. SUMMARY: Visual Presentation ***** -->
<!-- ***** 3. SUMMARY: Visual Presentation ***** -->
<!-- ***** 3. SUMMARY: Visual Presentation ***** -->
<!-- ***** 3. SUMMARY: Visual Presentation ***** -->
<!-- ***** 3. SUMMARY: Visual Presentation ***** -->
<section id="criterion">
<div class="addition statusStatic floatAddition review"><a href="#section-status-levels" class="status-link"><strong>Review</strong></a></div>
<div class="header-wrapper"><h2 id="x3-criterion" class="headerPlus"><bdi class="secno">3. </bdi>SUMMARY: Visual Presentation</h2><a class="self-link" href="#criterion" aria-label="Permalink for Section 3."></a></div>
<div style="position: relative; margin: 1em auto; padding: 0.3em 0 1em; background:#fed; border: 1px dotted #246c;/*border-color: #aac6 #55d4 #55d4 #aac6 ;*/border-radius:2em;
/*box-shadow: inset 0.1em 0.1em 0.1em #5672,inset 0.2em 0.2em 0.3em #defc, inset 0.4em 0.4em 0.8em #7895,
inset -0.2em -0.2em 0.6em 0.12em #2367, inset -0.4em -0.4em 0.8em 0.12em #defb, inset -0.5em -0.5em 1em #1236,
0 0 0.2em 0.1em #e4f8ffb0,0.2em 0.2em 0.7em #432b,0.3em 0.3em 0.6em 0.3em #cefa;
box-shadow: inset 6px 6px 14px 2px #1636,
inset 2px 2px 9px 2px #,
2px 2px 6px #2648; */">
<div class="h3 headerPlus2t" style="position: relative; padding: 0; text-align: center; margin: 0 ;">Visual Contrast & Design Guidance<br>
<img src="./img/APCAlogov2bugonly.png" alt="APCA logo" style="position: relative; margin: 0 auto; top:12px; width: 33%;"> <img src="./img/ARCtextPaths_v01.svg" alt="IRT logo" style="position: relative; margin: 0 auto; top:12px; width: 50%;">
</div>
</div>
<p class="normative-statement"><em>This section provides requirements which must be followed for <a>conformance</a>, meaning it is <a href="#dfn-normative" class="internalDFN" data-link-type="dfn">normative</a>.</em></p>
<details class="summary">
<summary>Plain language summary of <q>Guidelines</q></summary>
<ul>
<li>Visual contrast (lightness contrast)</li>
<ul><li>Use Cases (primary content, sub-fluent)</li>
<li>Text contrasts</li>
<li>Font characteristics</li>
</ul>
<li>Color contrast (hue contrast)</li>
<ul><li>Use of color (hue and colorfulness)</li>
<li>Non-text contrasts</li>
<li>Dataviz characteristics</li>
</ul>
<li>User integration</li>
<ul><li>Visual modes (dark, light, dalton) </li>
<li>Visual hierarchy </li>
<li>Interactive (links, forms, navigation) </li>
</ul></ul>
</details>
<hr>
<h2 id="visual-contrast" class="headerPlus2 clb">Visual Contrast</h2>
<h4 class="headerZero4i">Designing for Readability, Understandability, and Accessibility</h4>
<p>This section illuminates the APCA Readability Criterion's comprehensive coverage of visual presentation. Depending on application, ARC is usable as a stand-alone suite for design guidance. While the eventual goal is integration into relevant standards such as ISO, WCAG, or ADA, the current conformance testing as described herein is independent. Further, these guidelines are a living work-in-progress, is in development, and not yet a part of any other final published standard or guideline.</p>
<h4 id="platform" class="headerPlus4">Platforms</h4>
<ul>
<li>All desktop & mobile platforms including, but not limited to, Android, iOS, MacOS, Linux, Windows.</li>
<li>Interactive embedded systems with self-illuminated display technologies, including point-of-sale kiosks, ATMs, parking meters.</li>
<li>Passive public display systems including digital restaurant menus, dynamic billboards, self-illuminated business signage which conveys a message or meaning.</li>
</ul>
<h3 id="medium" class="headerMinus4">Mediums</h3>
<ul>
<li>Web pages and web applications</li>
<li>Visually readable documents including PDF, word processing documents, ePub, and slideware.</li>
<li>Live action and animated, video, film, virtual reality, games, and including menus and controls for interaction.</li>
</ul>
<h4 id="technology" class="headerMinus4">Technologies</h4>
<ul>
<li>Self-illuminated display technologies, including, but not limited to, OLED, back-lit emissive or transmissive LCD, discrete LED, plasma, florescent, CRT, rear-projection, front-projection. </li>
<li>Including form factors for desktop, laptop, tablet, smart phone, VR headset, point-of-sale kiosk, billboards, menus, and other signage.</li>
</ul>
<h4 id="development-environment" class="headerMinus4">Development Environments</h4>
<ul>
<li>Content authoring applications for visually readable content which can specify the font-size & weight, and the text and background colors. </li>
<li>Presentation related coding languages including HTML, CSS, Javascript, Postscript, PHP, Python, etc.</li>
<li>Video editing, titling, color grading, game development, and related temporal authoring systems.</li>
</ul>
<hr>
<h2 id="visual-contrast-map" class="headerPlus2t clb">Visual Contrast</h2>
<h3 class="headerZero4">Guidelines Map</h3>
<ol class="roman">
<li><strong>Text contrasts</strong> • understanding the need for luminance
<ul>
<li>Font characteristics • weight, size, and glyph design</li>
<li>Use Cases • primary content vs sub-fluent vs spot readable</li>
<li>White space • line&letter spacing, element padding</li>
</ul></li>
<li><strong>Non-text contrasts</strong> • semantic and non-semantic elements
<ul>
<li>Use of color (hue and colorfulness) – Hue and colorfulness to augment </li>
<li>Other forms of contrast • shape, size, distance, motion</li>
<li>Dataviz characteristics • unique needs of dataviz</li>
<li>Interactive • links, forms, navigation, and controls</li>
<li>Visual hierarchy • semantic layouts and organizing information</li>
</ul></li>
<li><strong>User integration</strong> • personalization and environment
<ul>
<li>Visual modes • dark, light, dalton, alternate color schemes </li>
<li>Zooming text or view, and text reflow</li>
<li>User adjustable properties and style sheets</li>
<li>Workspace and environmental illumination</li>
<li>Visual fatigue and ocular health</li>
</ul></li>
</ol>
</section><!-- close sum section 3 -->
<!-- ***** 4. VISUAL CONTRAST • TEXT ***** -->
<!-- ***** 4. VISUAL CONTRAST • TEXT ***** -->
<!-- ***** 4. VISUAL CONTRAST • TEXT ***** -->
<!-- ***** 4. VISUAL CONTRAST • TEXT ***** -->
<!-- ***** 4. VISUAL CONTRAST • TEXT ***** -->
<section class="criterion" id="visual-contrast-text">
<div class="addition sticky floatAddition development"><a href="#section-status-levels" class="status-link">Section status: <strong>Development</strong></a></div>
<div class="header-wrapper"><h2 id="x4-visual-contrast-text" class="headerPlus"><bdi class="secno">4. </bdi>VISUAL CONTRAST • TEXT</h2><a class="self-link" href="#visual-contrast-text" aria-label="Permalink for Section 4."></a></div>
<p class="normative-statement"><em>This section provides requirements which must be followed for <a>conformance</a>, meaning it is <a href="#dfn-normative" class="internalDFN" data-link-type="dfn">normative</a>.</em></p>
<div class="header-wrapper"><h3 id="x4-1-luminance-contrast" class="headerPlus3"><bdi class="secno">4.1 </bdi>Guideline: Luminance Contrast</h3><a class="self-link" href="#luminance-contrast" aria-label="Permalink for Section 4.1"></a></div>
<p class="">Provide sufficient lightness/darkness contrast between foreground and background.</p>
<details class="categories">
<summary>Functional categories for <q>Lightness contrast between text and background</q></summary>
<p>This objective relates to the following functional categories:</p>
<ul>
<li>Sensory - Light, Contrast</li>
<li>Sensory - Vision, Color</li>
<li>Psychophysical - Discernment, Recognition</li>
<li>Cognitive - Language, Comprehension</li>
<li>Cognitive - Tasks, Instructions</li>
</ul>
</details>
<section>
<h3 id="objective-lightness" class="objective-header"><div>Objective:</div> Ample Lightness Contrast Between Text and Background</h3>
<p style="position: relative; float:right; margin:0; transform: scale(-1, 1);"><img src="./img/ReadingOrangeMan.png" height="240" alt="a little orange man reading a magenta book"id="" /></p>
<p class="objective" status="position: relative; clear: left;">Provides adequate luminance contrast (lightness/darkness difference) between background and text or non-text colors in order to read the text easily, or discern non-text meaning and function easily.</p>
<p>Set the lightness contrast as appropriate for a font family, font weight, x-height, and the use-case of the text.</p>
<ul>
<li>Font weight has a substantial effect on visual contrast</li>
<li>Font size substantially affects readability for various acuity impairments</li>
<li>All sighted users require ample lightness/darkness contrast for best readability</li>
</ul>
<h3 id="objective-" class="objective-header"><div>Objective:</div> Multiple User Selectable Modes or Color Schemes</h3>
<p style="position: relative; float:right; margin:0; transform: scale(-1, 1);"><img src="./img/matrix-1013612gradeSMALL.png" height="240" alt="Matrix of cubes"id="" /></p>
<p class="objective" status="position: relative; clear: left;">Provides at a minimum a light mode and a dark mode, switchable using the <code>prefers-color-scheme</code> media query.</p>
<p>Create two or more color schemes using the visual contrast conformance specifications, and allow switching between them by the user, either through the use of media queries, or through the use of a user interface, such as radio buttons in the header.</p>
<ul>
<li>Some users need a dark mode while others prefer a light mode.</li>
<li>Other possible modes include low contrast, high contrast, and Daltonization.</li>
</ul>
<h3 id="objective-" class="objective-header"><div>Objective:</div> Reduce glare and eye fatigue when reading columns of body text.</h3>
<p style="position: relative; float:right; margin:0; transform: scale(-1, 1);"><img src="./img/readpaperSMALL.png" height="240" alt="a little yellow man reading a paper while sitting at a table with a cup of coffee" id="" /></p>
<p class="objective" status="position: relative; clear: left;"> Use psychophysical design techniques to anchor the adaptation point above the text background to prevent eye fatigue or strain from excess luminance. </p>
<p>As an example, in the document you are reading right now, there is a white border around the text background, and this background is at a reduced luminance. The white border anchors the adaptation state, and the reduced luminance behind this text is closer to the equivalent of reading dark text printed on diffuse, light paper.</p>
<ul>
<li>Excess luminance can be a problem for all users, depending on certain factors.</li>
<li>Long periods of focused reading requires an optimum luminance that is neither too dim nor too bright.</li>
<li>In order to facilitate this, the adaptation state needs to be controlled with something to anchor it at a position that is brighter than the text area.</li>
</ul>
<hr class="abstract">
<h2 class="tests-header">Testing Criterion, Conformance, and Methods</h2>
<ul class="tests-list">
<li><a class="tests-link" href="./tests/visual-readability-contrast/">Visual Readability Contrast Test Methods.</a><br>Here are the technical details for the readability criterion, in terms of conformance, testing, techniques, and resources relating to setting the lightness contrast as appropriate for a font family, font weight, and x-height. (CSS)</li>
<li><a class="tests-link" href="./tests/bronze-simple-mode/">Bronze Simple Mode Contrast Test Methods.</a><br>Simple mode is a more basic way to conform a website for readability. Intended as an easier point of entry to APCA methods and guidelines.</li>
<li><a class="tests-link" href="./tests/multi-mode/">Multiple Color Scheme Contrast Test Methods.</a><br>Technical details for implementing user selectable, multiple color schemes and multiple contrast modes.</li>
</ul>
<hr>
<h2 class="guide-header">Helpful Planning & Design Guides</h2>
<ul class="guide-list">
<li><a class="guide-link" href="./guides/designing-with-visual-contrast/">Designing With Visual Contrast <span>How-To Guide</span></a><br>Here are guides for planning, designing, and implementing accessible visual contrast in your content. Different guides for different audiences from a bird's-eye-view, to more design oriented. </li>
<li><a class="guide-link" href="./guides/paper-reading-experience/">Designing for the Paper Reading Experience</a><br> the paper reading experience is a helpful set of design considerations for reducing eyestrain and eye fatigue.</li>
</ul>
</section>
<div class="note" id="issue-container-generatedID-2">
<div role="heading" class="ednote-title marker" id="h-ednote-2" aria-level="4"><span class="noteHeading">Development Note</span><a class="self-link" aria-label="§" href="#issue-container-generatedID-2"></a></div>
<div class="">
<p>Visual Contrast is a paradigm shift from WCAG 2.x contrast in terms of methodology and scope:</p>
<ul>
<li>New contrast calculations based on modern research into visual perception and visual reading, provide a perceptually uniform result which extends the useable range allowing for automated color selection and calculating for special modes such as dark mode.</li>
<li>Revising and merging the 1.4.x criteria into fewer and more comprehensive guidelines.</li>
<li>New tests for text and non-text contrast that consider important spatial effects. </li>
</ul>
<p>This is a significant change from the WCAG 2.x <q>1.4.3 Contrast (Minimum)</q> and <q>1.4.6 Contrast (Enhanced)</q>. The reason for this change is that the understanding of contrast has matured and the available research and body of knowledge has made breakthroughs in advancing the understanding of <q>visual contrast</q>.</p>
<p>This new guidance more accurately models human visual perception of contrast of high spatial frequency stimuli, such as text and non-text elements, presented on self-illuminated displays. </p>
<p>The goal is to improve understanding of the functional needs of all users, and more effectively match the needs of those who face barriers accessing content. This new perception-based model is more context dependent than a strict light-ratio measurement.</p>
<p>This model is more responsive to user needs and allows designers more choice in visual presentation. It does this by including multi-factor assessment tests which integrate contrast with inter-related elements of visual readability, such as font features. It includes tests to determine an upper limit of contrast, where elevated contrast may impact usability.</p>
</div>