<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing any discussions tagged with Accessibility sorted by active.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3641221" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3582507" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3016653" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3531253" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3503134" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3500169" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3379935" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/756309" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3057413" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3021201" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2103748" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2963751" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2962536" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2963560" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2930944" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2926319" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2748278" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2837847" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1313456" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1634439" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3641221">
    <title>[WELP25] Modeling below-the-knee prosthetics using FEM and SLIP dynamics</title>
    <link>https://community.wolfram.com/groups/-/m/t/3641221</link>
    <description>![Modeling Below-the-Knee Prosthetics using FEM and SLIP Dynamics][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=5977image.png&amp;amp;userId=911151&#xD;
  [2]: https://www.wolframcloud.com/obj/d0eba471-b424-4c38-a404-ed4e94a5dd7b</description>
    <dc:creator>Wolfram Education Programs</dc:creator>
    <dc:date>2026-02-17T15:45:48Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3582507">
    <title>Notebook fills screen and resize arrows are not visible</title>
    <link>https://community.wolfram.com/groups/-/m/t/3582507</link>
    <description>The following notebook fills my monitor screen.  Resize arrows on margins don&amp;#039;t appear, and MMA taskbar has disappeared.  So, I can find no way to resize the notebook so I can minimize or shut down.  When I restart the computer, the MMA notebook again fills the screen and I can do nothing but run MMA.  How do I exit this mode?&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
 [1]: https://www.wolframcloud.com/obj/6e83f271-46f9-4b28-a152-bfdf8690ffc5</description>
    <dc:creator>Mark Harder</dc:creator>
    <dc:date>2025-11-27T00:57:23Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3016653">
    <title>Mathematica  and Arduino  device does not capture the serial stream under dynamic</title>
    <link>https://community.wolfram.com/groups/-/m/t/3016653</link>
    <description>I have set up the following sketch to capture a serial feed from an arduino. But the Dynamic command only pick up 4 feeds and dies.  .&#xD;
&#xD;
he Arduino sketch is &#xD;
&#xD;
//*************************** // Credit original code to //  Aleksandr Berezutskii  //***************************&#xD;
&#xD;
    int raw1 = 0, raw2 = 0, raw3 = 0;&#xD;
    int x = 0, y1 = 0, y2 = 0, y3 = 0;&#xD;
    #define APin1 A11&#xD;
    #define APin2 A12&#xD;
    #define APin3 A13&#xD;
    void setup() &#xD;
    {&#xD;
    Serial.begin(9600);&#xD;
    pinMode( APin1, INPUT );&#xD;
    pinMode( APin2, INPUT );&#xD;
    pinMode( APin3, INPUT );&#xD;
    analogReference(DEFAULT);&#xD;
    }&#xD;
    &#xD;
    void loop() &#xD;
    {&#xD;
    while (x&amp;lt;=6000)&#xD;
    { &#xD;
    raw1 = analogRead( APin1 );&#xD;
    y1=raw1;&#xD;
    raw2 = analogRead( APin2 );&#xD;
    y2=raw2;&#xD;
    raw3 = analogRead( APin3 );&#xD;
    y3=raw3;&#xD;
    x++;               &#xD;
    Serial.print( y1 );&#xD;
    Serial.print(&amp;#034;\t&amp;#034;); &#xD;
    Serial.print( y2 );&#xD;
    Serial.print(&amp;#034;\t&amp;#034;);                &#xD;
    Serial.print( y3 );&#xD;
    Serial.println();&#xD;
    delay(400);&#xD;
    }&#xD;
    }&#xD;
&#xD;
The notepad is included here.&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/138756c1-8684-4ff5-841c-24dd2348e551</description>
    <dc:creator>Jose Calderon</dc:creator>
    <dc:date>2023-09-20T00:59:13Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3531253">
    <title>How to change the default magnification of new notebooks in the front end?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3531253</link>
    <description>I&amp;#039;m running *Mathematica* 14.0 on Windows:&#xD;
&#xD;
    $Version&#xD;
    (* OUTPUT: *)&#xD;
    (* 14.0.0 for Microsoft Windows (64-bit) (December 13, 2023) *)&#xD;
&#xD;
When I create a new notebook (`File -&amp;gt; New -&amp;gt; Notebook`) in the front end, the magnification is set to 100% by default, as indicated in the bottom right-hand corner of the notebook window. &#xD;
&#xD;
**I&amp;#039;d like the magnification of new notebooks to instead be set to 75% by default.** Should I do this using the Options Inspector in the front end?  For example, should I do the following steps (referenced [here][1]) in the Options Inspector in the front end?&#xD;
&#xD;
 1. In the front end, choose `Format -&amp;gt; Options Inspector...`&#xD;
 2. Set `Show option values` to `Global Preferences`.&#xD;
 3. Go to `Notebook Options -&amp;gt; Display Options` in the left-hand pane.&#xD;
 4. In the right-hand pane, change the value of `Magnification` from `1.0` to `0.75`.&#xD;
&#xD;
**Or is there another approach I should take?**&#xD;
&#xD;
&#xD;
  [1]: https://mathematica.stackexchange.com/a/1311/</description>
    <dc:creator>Andrew D</dc:creator>
    <dc:date>2025-08-15T20:58:16Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3503134">
    <title>[WSRP25] Helping hand to Africa:prosthetic hand&amp;#039;s kinetic movement &amp;amp; force-closure grasping analysis</title>
    <link>https://community.wolfram.com/groups/-/m/t/3503134</link>
    <description>![Helping hand to Africa:prosthetic hand&amp;#039;s kinetic movement &amp;amp; force-closure grasping analysis][1]&#xD;
&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-07-10at4.09.36%E2%80%AFPM.png&amp;amp;userId=3501263&#xD;
  [2]: https://www.wolframcloud.com/obj/b1e5f73f-31a2-405b-96fa-122564a24619</description>
    <dc:creator>Eunchan Hwang</dc:creator>
    <dc:date>2025-07-10T22:07:54Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3500169">
    <title>[WSRP25] Audio visualization of images for blind people</title>
    <link>https://community.wolfram.com/groups/-/m/t/3500169</link>
    <description>![Audio visualization of images for blind people][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-07-10at2.29.13%E2%80%AFPM.png&amp;amp;userId=3499784&#xD;
  [2]: https://www.wolframcloud.com/obj/51440c16-cd18-41cb-8e6d-7e74a658976f</description>
    <dc:creator>Neha Rao</dc:creator>
    <dc:date>2025-07-10T18:35:10Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3379935">
    <title>[WELP24] Scoring walkability of cities around the world using OSM</title>
    <link>https://community.wolfram.com/groups/-/m/t/3379935</link>
    <description>![walkability score][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=proj-4-cover.jpeg&amp;amp;userId=911151&#xD;
  [2]: https://www.wolframcloud.com/obj/8f26469c-3ce8-4609-bb3d-666cf8c9b1d8</description>
    <dc:creator>Wolfram Education Programs</dc:creator>
    <dc:date>2025-02-04T15:05:08Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/756309">
    <title>Color blind test using Mathematica?</title>
    <link>https://community.wolfram.com/groups/-/m/t/756309</link>
    <description>In the test books, there is nothing special about the paper or the inks.  I know this because scanned versions print just fine using toner or ink.&#xD;
&#xD;
Seems like it would be a really neat project!</description>
    <dc:creator>Douglas Youvan</dc:creator>
    <dc:date>2015-12-11T15:55:30Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3057413">
    <title>Trouble using Wolfram notebooks with a screen reader on Windows</title>
    <link>https://community.wolfram.com/groups/-/m/t/3057413</link>
    <description>Hello,  &#xD;
I&amp;#039;m using screen reading software packages such as JAWS For Windows or NVDA. For that reason, I have to do everything via my PC keyboard, without using the mouse. This means that I can only read text, not graphics, and that graphics are only accessible to me if they have a meaningful &amp;#034;alt&amp;#034; tag attached to them.  &#xD;
Even though Wolfram Alpha&amp;#039;s accessibility has improved over the past couple of years and I can use it to some extent, I think Wolfram notebooks must either be totally inaccessible for people who use a screen reader or I have no idea how I&amp;#039;m supposed to work with them when I can&amp;#039;t use the mouse and when I can&amp;#039;t read graphics.&#xD;
&#xD;
I have set up a basic account on Wolfram Cloud.  &#xD;
I want to evaluate the entire contents of the file downloaded from a particular webpage (I can post the link later if someone&amp;#039;s interested). It&amp;#039;s a file with an &amp;#034;.m&amp;#034; extension.  &#xD;
This means that when I open a new notebook, I&amp;#039;m supposed to copy the contents of the whole file into my new notebook and then choose &amp;#034;Evaluate all cells&amp;#034;.  &#xD;
I logged into my Wolfram Cloud account and I chose the button labeled &amp;#034;New computational notebook&amp;#034;.  &#xD;
I thought I was supposed to reach an edit field where I would paste the contents of the &amp;#034;main.m&amp;#034; file. But I did not find any such thing on the webpage. And if it&amp;#039;s something other than a conventional edit field of the kind that I would fill in on a web form, then I don&amp;#039;t know where I&amp;#039;m supposed to paste the contents of the &amp;#034;.m&amp;#034; file.&#xD;
&#xD;
I had a very long conversation with someone from the Wolfram support. The support person told me that they could only suggest me to read the Wolfram tutorial webpage called &amp;#034;Keyboard shortcut listing&amp;#034;.  &#xD;
But on that webpage, I&amp;#039;m unable to find anything that would help me to reach the field I&amp;#039;m looking for. And if I&amp;#039;m supposed to paste the text into something other than an edit field, then I have no idea what that would be.&#xD;
&#xD;
My question is simple:  &#xD;
Is there anyone here who might be able to describe to me what I should be trying to find, avoiding phrases like &amp;#034;click the red button&amp;#034; or &amp;#034;click the blue icon&amp;#034; or similar? Those won&amp;#039;t help me. I&amp;#039;m currently absolutely stuck.&#xD;
&#xD;
Thank you in advance.&#xD;
&#xD;
- Petr</description>
    <dc:creator>Petr Pařízek</dc:creator>
    <dc:date>2023-10-28T22:26:55Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3021201">
    <title>Issue with Windows screen scale and Wolfram Mathematica scale since v. 13.0</title>
    <link>https://community.wolfram.com/groups/-/m/t/3021201</link>
    <description>More than year I am trying to resolve the following issue. My laptop has screen resolution 1920*1080 and I use Windows with setting 125% display scale in all applications. Wolfram Mathematica 12 works perfectly with option &amp;#034;screen resolution compatibility&amp;#034; and all the elements of interface are fine. However, it it almost impossible to use WM 13 because the application window and all elements of interface are huge. It seems that WM picks up 125% scaling from the global display settings in Windows.&#xD;
&#xD;
What should I do to keep WM using 100% scale in order to make the interface elements normal sized instead of huge?</description>
    <dc:creator>Artem Alexandrov</dc:creator>
    <dc:date>2023-09-25T17:09:52Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2103748">
    <title>Can Mathematica support a quadriplegic teenager in his learning journey?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2103748</link>
    <description>My 14-year-old son is medically complex, including being a quadriplegic.  He currently uses software (Grid 3) to communicate ideas and an eye tracker (Tobii) with software that allows him to &amp;#034;type&amp;#034; using his eyes.&#xD;
&#xD;
I am looking for tools that will allow him to work out a math problem through its various steps (since he cannot hold a pencil and write on paper to show his work), and I thought Mathematica might be a tool that could help.&#xD;
&#xD;
Has anybody successfully used Mathematica using mouse movements alone and not typing anything on the keyboard?&#xD;
&#xD;
Thanks.</description>
    <dc:creator>Myles Dear</dc:creator>
    <dc:date>2020-10-28T18:37:55Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2963751">
    <title>[WSRP23] Mapping the motion of hands between ASL alphabet signs</title>
    <link>https://community.wolfram.com/groups/-/m/t/2963751</link>
    <description>![graph of ASL sign for A][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2023-07-13at4.37.22PM.png&amp;amp;userId=2962956&#xD;
  [2]: https://www.wolframcloud.com/obj/a7e807b8-cb2b-49f1-96d4-780754ad07c5</description>
    <dc:creator>Jenny Wang</dc:creator>
    <dc:date>2023-07-13T20:38:11Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2962536">
    <title>[WSRP23] Create a synesthesia simulator</title>
    <link>https://community.wolfram.com/groups/-/m/t/2962536</link>
    <description>![Chromaticity Plot for synesthestes][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=colorChanu.png&amp;amp;userId=2961269&#xD;
  [2]: https://www.wolframcloud.com/obj/60028dc7-90ac-49f1-a38b-83aa113f3c47</description>
    <dc:creator>Chanu Yang</dc:creator>
    <dc:date>2023-07-13T19:15:14Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2963560">
    <title>[WSRP23] Function that turns any image into an Ishihara&amp;#039;s test for color deficiency</title>
    <link>https://community.wolfram.com/groups/-/m/t/2963560</link>
    <description>![enter image description here][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Picture2.png&amp;amp;userId=2963219&#xD;
  [2]: https://www.wolframcloud.com/obj/97636af9-ab7c-4778-9de9-4ad3148c6c30</description>
    <dc:creator>Aishwarya Main</dc:creator>
    <dc:date>2023-07-13T20:27:06Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2930944">
    <title>Wolfram Alpha step-by-step solution into LaTeX or MathML format(s)</title>
    <link>https://community.wolfram.com/groups/-/m/t/2930944</link>
    <description>To convert mathematical step-by-step solutions into either LaTeX or MathML so that a student I am mentoring at Ohio State School for the Blind can access step-by-step solutions and learn from them.&#xD;
&#xD;
IMPORTANT:  &#xD;
If anyone is so motivated, I&amp;#039;d really enjoy talking with a subject-matter expert in this field.&#xD;
&#xD;
Is there anyone out there that might be willing to reach their hand out to meet mine in the spirit of making Alpha pro accessible to students with disabilities?&#xD;
&#xD;
Thank you, in advance, for any consideration given to this request.</description>
    <dc:creator>Steve Jacobs</dc:creator>
    <dc:date>2023-06-04T20:09:55Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2926319">
    <title>Color accessible front-end appearance</title>
    <link>https://community.wolfram.com/groups/-/m/t/2926319</link>
    <description>Since this community encourages discussions, I post this in hopes of furthering the occasional interest shown in color accessibility.  There were two WSS22 projects on it [[(1)](https://community.wolfram.com/groups/-/m/t/2581021), [(2)](https://community.wolfram.com/groups/-/m/t/2580694)], and there&amp;#039;s [old 2017 post](https://community.wolfram.com/groups/-/m/t/1278303) that contains code for analyzing color accessibility that unfortunately relies on internal data that is no longer present in Mathematica.  &#xD;
&#xD;
Some time ago I had a color-blind student, and it made me think about producing color-accessible notebooks for class. Somewhere I found the Okabe-Ito color scheme among other things.  I copy-pasted the table below from some web site, long-forgotten I&amp;#039;m sorry to say.  In any case, from time to time, such at the beginning of the COVID pandemic, I&amp;#039;d look further into color accessibility. I usually ended somewhat frustrated. There are a number of tools for simulating and measuring color accessibility.  Unfortunately they tend to disagree.  One is warned how difficult it is and of mistakes commonly made.  Web sites tend not to be dated or have a log of when they are updated.  Almost everyone says, in effect, &amp;#034;I know what I&amp;#039;m doing. Others might, or might not; so just believe me.&amp;#034; But which one do you choose.  So I find it difficult to find authoritative and reliable information.  I hope it&amp;#039;s out there, and I hope someone knows it.  I&amp;#039;m sure it&amp;#039;s simple once you have a trustworthy source.&#xD;
&#xD;
I don&amp;#039;t know what I&amp;#039;m doing really. I&amp;#039;m sort of a weekend hobbyist. I&amp;#039;m sure someone with background in design and color accessibility could do a much better job much more quickly.  I put together a color scheme for the items in the Appearance panel of the Preferences dialog.  It&amp;#039;s easy to load.  It&amp;#039;s easy to reset (there&amp;#039;s a reset button in the Preferences dialog).  Or you could save your current preferences  and use them to reset.  See below for more.&#xD;
&#xD;
I based the colors on the Okabe-Ito palette:&#xD;
&#xD;
    $okabeItoData = Internal`PartitionRagged[#, {3, 3, 1, 4}] &amp;amp; /@&#xD;
       Partition[&#xD;
        {&amp;#034;R,G,B (0-255)&amp;#034;, , , &amp;#034;R,G,B (0-1)&amp;#034;, , , &amp;#034;Hex&amp;#034;, &amp;#034;C,M,Y,K (%)&amp;#034;, , , ,&#xD;
         0, 0, 0, 0, 0, 0 , &amp;#034;#000000&amp;#034;, 0, 0, 0, 100,&#xD;
         230, 159, 0, 0.902, 0.624, 0, &amp;#034;#E69F00&amp;#034; , 0, 50, 100, 0,&#xD;
         86, 180, 233, 0.337, 0.706, 0.914, &amp;#034;#56B4E9&amp;#034;, 80, 0, 0, 0,&#xD;
         0, 158, 115, 0, 0.620, 0.451 , &amp;#034;#009E73&amp;#034;, 97, 0, 75, 0,&#xD;
         240, 228, 66, 0.941, 0.894, 0.259, &amp;#034;#F0E442&amp;#034;, 10, 5, 90, 0,&#xD;
         0, 114, 178, 0, 0.447, 0.698, &amp;#034;#0072B2&amp;#034; , 100, 50, 0, 0,&#xD;
         213, 94, 0, 0.835, 0.369, 0, &amp;#034;#D55E00&amp;#034;, 0, 80, 100, 0,&#xD;
         204, 121, 167, 0.8, 0.475, 0.655, &amp;#034;#CC79A7&amp;#034;, 10, 70, 0, 0},&#xD;
        11];&#xD;
    $okabeItoColors = RGBColor @@@ $okabeItoData[[2 ;;, 2]]; (* Drop Black *)&#xD;
    &#xD;
    $okabeItoColorsDiverging = $okabeItoColors[[{1, 4, 6, 3, 5, 2, 7, 8}]]&#xD;
&#xD;
    {RGBColor[0, 0, 0], RGBColor[0, 0.62`, 0.451`],&#xD;
     RGBColor[0, 0.447`, 0.698`], RGBColor[0.337`, 0.706`, 0.914`],&#xD;
     RGBColor[0.941`, 0.894`, 0.259`], RGBColor[0.902`, 0.624`, 0],&#xD;
     RGBColor[0.835`, 0.369`, 0], RGBColor[0.8`, 0.475`, 0.655`]}&#xD;
&#xD;
I tweaked some of them as I built the color scheme.  I used [Color Oracle](https://colororacle.org) to evaluate a scheme under the different types of colorblindness. As I said above, I don&amp;#039;t know how reliable this tool is, but it is semi-easy to use.  At some point, my sensibilities get burned out and I think any difference in color is a good difference. Later I&amp;#039;ll wonder, why did I think that would be acceptable.  There are lots of combinations that could be checked, and I don&amp;#039;t have a good plan for systematically evaluating a change. I&amp;#039;m sharing here in case someone wants to pick up the ball and run with it.  I don&amp;#039;t think I can get a good result by myself.&#xD;
&#xD;
Deuteranopia (a form of red-green) colorblindness is the most common.  So one should avoid red and green meaning different things (see the default debugger highlighting for the worst possible example).  Red is used extensively, since it is a traditional warning signal; however, it is not a particularly good color-accessible one. `Magenta` seems better to me, but I don&amp;#039;t know how it appears to a colorblind person used to seeing red warnings and dealing with the world 24/7, year-in and year-out, in their normal way.&#xD;
&#xD;
I substituted the red-brown Okabe-Ito color for the red in many of the Wolfram-Language preferences. Because I&amp;#039;m not red-green colorblind and that seemed a natural choice to. But it might not seem a good choice to a colorblind person.  In one case, `&amp;#034;SyntaxErrorStyle&amp;#034;`, I used magenta, just to see and to show it.  I rather liked the magenta instead of red, but, as I said, I&amp;#039;m not colorblind.&#xD;
&#xD;
Here are the colors for reference, including an image of them under the deuteranopia filter of Color Oracle.&#xD;
&#xD;
    Append[$okabeItoColorsDiverging, RGBColor[1, 0.2, 1]]&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
Here is a preference set for colors that seem to show differences for all three types of colorblindness, where there are significant differences in the defaults. Many of the default preference colors are are the same or nearly the same.&#xD;
&#xD;
    cvdpreferences = {&#xD;
       AutoStyleOptions -&amp;gt; {&#xD;
         &amp;#034;EmphasizedSyntaxErrorStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.936263065537499, 0.7788662546730755, 0.42481116960402837`], &#xD;
           Background -&amp;gt; RGBColor[1, 0.86, 0.86]},&#xD;
         &amp;#034;ExcessArgumentStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.7864194705119402, 0.28537422751201647`, 0.02021820401312276]},&#xD;
         &amp;#034;FunctionLocalVariableStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.24643320363164722`, 0.5645075150682841, 0.7797360189211872]},&#xD;
         &amp;#034;GlobalToLocalScopeConflictStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.7864194705119402, 0.28537422751201647`, 0.02021820401312276]},&#xD;
         &amp;#034;GraphicsCompatibilityProblemStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.7864194705119402, 0.28537422751201647`, 0.02021820401312276]},&#xD;
         &amp;#034;HighlightSyntaxErrors&amp;#034; -&amp;gt; True,&#xD;
         &amp;#034;LocalScopeConflictStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.7864194705119402, 0.28537422751201647`, 0.02021820401312276]},&#xD;
         &amp;#034;LocalVariableStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.07412832837415122, 0.5640497444113832, 0.37123674372472726`]},&#xD;
         &amp;#034;MissingArgumentStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.7864194705119402, 0.28537422751201647`, 0.02021820401312276]},&#xD;
         &amp;#034;MisspelledWordStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[0.76, 0.33, 0.8]},(*?*)&#xD;
         &amp;#034;NoKernelPresentStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[0., 0., 0.4]},(*?*)&#xD;
         &amp;#034;OrderOfEvaluationConflictStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.7864194705119402, 0.28537422751201647`, 0.02021820401312276]}, &#xD;
         &amp;#034;PatternVariableStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.26300450141145953`, 0.5369954985885405, 0.3450064850843061], &#xD;
           FontSlant -&amp;gt; &amp;#034;Italic&amp;#034;},&#xD;
         &amp;#034;StringStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; GrayLevel[0.4],(*?*)&#xD;
           ShowAutoStyles -&amp;gt; False, ShowSyntaxStyles -&amp;gt; False, &#xD;
           AutoNumberFormatting -&amp;gt; False, &#xD;
           TranslationOptions -&amp;gt; {&amp;#034;Enabled&amp;#034; -&amp;gt; False}}, &#xD;
         &amp;#034;StructureOperatorStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; GrayLevel[0.6]},(*?*)&#xD;
         &amp;#034;SymbolShadowingStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.7864194705119402, 0.28537422751201647`, 0.02021820401312276]},&#xD;
         &amp;#034;SyntaxErrorStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt;(**)RGBColor[1, 0.2, 1]},&#xD;
         &amp;#034;UndefinedSymbolStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.04228274967574579, 0.36310368505378804`, 0.637293049515526]},&#xD;
         &amp;#034;UnknownOptionStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.7864194705119402, 0.28537422751201647`, 0.02021820401312276]},&#xD;
         &amp;#034;UnwantedAssignmentStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.7520408941786831, 0.7086594949263753, 0.15410086213473717`]}},&#xD;
       CodeAssistOptions -&amp;gt; {&#xD;
         &amp;#034;HeadHighlightStyle&amp;#034; -&amp;gt; {Background -&amp;gt; RGBColor[&#xD;
            0.9600366216525521, 0.9452811474784466, 0.5678950179293507]},&#xD;
         &amp;#034;MatchHighlightStyle&amp;#034; -&amp;gt; {Background -&amp;gt; RGBColor[&#xD;
            0.936263065537499, 0.7788662546730755, 0.42481116960402837`]}},&#xD;
       DebuggerSettings -&amp;gt; {&#xD;
         &amp;#034;BreakpointStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.7864194705119402, 0.28537422751201647`, 0.02021820401312276]},&#xD;
         &amp;#034;EvaluatorPositionHighlightStyle&amp;#034; -&amp;gt; {Background -&amp;gt; RGBColor[&#xD;
            0.27710383764400703`, 0.6434729533836882, 0.8960097657740139]},&#xD;
         &amp;#034;StackHighlightStyle&amp;#034; -&amp;gt; {FontColor -&amp;gt; RGBColor[&#xD;
            0.27710383764400703`, 0.6434729533836882, 0.8960097657740139]}}&#xD;
       };&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
Here&amp;#039;s how to set the preferences:&#xD;
&#xD;
    SetOptions[$FrontEnd, cvdpreferences]&#xD;
&#xD;
If you have made changes to your own preferences, they will show up in `Options[$FrontEnd]`. To get back your own preferences, save them (`myopts = Options[$FrontEnd]`), reset the preferences in the Appearance panel of the Preferences dialog, and then restore your preferences `SetOptions[$FrontEnd, myopts`.  &#xD;
&#xD;
If someone knows whether these options can be controlled through a stylesheet, that would give an alternative method for implementation.&#xD;
&#xD;
I had thought that maybe by now &amp;#x2014; maybe soon &amp;#x2014; support for color accessibility would be built into Mathematica and WL.  Highlighting in the Front End is just a piece of it.  As you can tell, I offer my color scheme tentatively.  If I&amp;#039;ve done it all wrong, I hope someone will do it all right.&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=7349Untitled.png&amp;amp;userId=53587&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=4280Untitled.png&amp;amp;userId=53587</description>
    <dc:creator>Michael Rogers</dc:creator>
    <dc:date>2023-05-27T02:25:30Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2748278">
    <title>Changing the font size of a notebook?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2748278</link>
    <description>Hello,  &#xD;
For the nth time, I accidentally changed (I don&amp;#039;t know how) the size of characters of a large notebook, which is now illegible!&#xD;
&#xD;
&#xD;
How can I restore it?  &#xD;
Thanks, Claude</description>
    <dc:creator>Claude Mante</dc:creator>
    <dc:date>2022-12-27T17:32:31Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2837847">
    <title>Unfriendly UI in Wolfram|Alpha online for the visually impaired</title>
    <link>https://community.wolfram.com/groups/-/m/t/2837847</link>
    <description>Hello,&#xD;
&#xD;
I should begin by stating that this may not be the correct group to post in, I couldn&amp;#039;t find a more suitable one but am open to suggestions for correcting this.&#xD;
&#xD;
I am making this discussion to talk about the &amp;#034;enlarge&amp;#034; feature for certain output fields in the Wolfram|Alpha online tool being locked behind a paywall. Not only that, but when manually zooming in, the text will not upscale in resolution to make it more readable. I understand that every business has a bottom line and that in order to continue to provide a fantastic service, some features must locked behind a paywall, but I feel as though doing this to the &amp;#034;enlarge&amp;#034; feature is a clear oversight to the visually impaired. I understand that for some output fields, this feature provides more than just the ability to zoom in, so I feel as though an appropriate resolution to make the UI more user friendly would be to ensure that text in output fields will upscale when zoomed into, just like text in any other field does.&#xD;
&#xD;
Feedback on my suggestion is much appreciated, hopefully this post meets the right people.</description>
    <dc:creator>Samuel Leo</dc:creator>
    <dc:date>2023-02-24T12:57:25Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1313456">
    <title>NotebookTranslate: Translating only the relevant text cells</title>
    <link>https://community.wolfram.com/groups/-/m/t/1313456</link>
    <description>Many fine *Mathematica* notebooks in English are inaccessible to users of other languages, especially to young people growing up in other languages. Translating a *Mathematica* notebook - conventionally from English into another language - involves mainly text. It better does not involve Input and Output cells that should remain in English. One obvious reason is that the program uses English. The other obvious reason is that we want students to learn to use the program (in English). The routine **NotebookTranslate** distinguishes what to translate and what not. Since translation comes with a cost, the routine also supports the prudent use of Service Credits. Educators are advised to create repositories per language for such translated notebooks, to reduce costs and to allow ease of access and version management, e.g. also when an automated translation is improved upon manually.&#xD;
&#xD;
 [BackupDeadLink]: https://www.wolframcloud.com/objects/thomas-cool/Utilities/2018-04-02-NotebookTranslate.nb</description>
    <dc:creator>Thomas Colignatus</dc:creator>
    <dc:date>2018-04-02T13:26:39Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1634439">
    <title>Increase Mathematica&amp;#039;s menu font size?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1634439</link>
    <description>Hello, I have vision issues &amp;amp; need to increase the size of the font in my menu. Can someone tell me how to do this?  Thanks, Jeffrey</description>
    <dc:creator>Jeffrey Denison</dc:creator>
    <dc:date>2019-03-16T19:30:11Z</dc:date>
  </item>
</rdf:RDF>

