<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How can we ban yellow color on autocad for good? in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210312#M5172</link>
    <description>&lt;P&gt;Thank you for your reply. I tried that but still hard to work on it, especially with long working hours.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Dec 2024 16:28:57 GMT</pubDate>
    <dc:creator>behzatyaras</dc:creator>
    <dc:date>2024-12-13T16:28:57Z</dc:date>
    <item>
      <title>How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207287#M5162</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a furniture manufacturer, we are collaborating with a project company on a project. In all the files sent by the project company, the most critical points are always drawn in yellow. It’s not feasible for us to manually open each file and change the yellow-colored objects or layers to another color, as the total number of files is in the thousands. Is there a way to ensure that whenever we open a file, yellow appears as black in the model or layout views? I've tried many methods but haven’t succeeded. If it were up to me, I would ban yellow from AutoCAD entirely! &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt; Does anyone have a solution?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 11:44:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207287#M5162</guid>
      <dc:creator>behzatyaras</dc:creator>
      <dc:date>2024-12-12T11:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207301#M5163</link>
      <description>&lt;P&gt;&lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7290817"&gt;@behzatyaras&lt;/a&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Welcome to the Community. I've moved your post to this forum for better visibility. This MAY be possible with some programming, the gurus in here may have a better answer. &amp;nbsp;Good luck!&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 11:54:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207301#M5163</guid>
      <dc:creator>CGBenner</dc:creator>
      <dc:date>2024-12-12T11:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207313#M5164</link>
      <description>&lt;P&gt;You could simply change your background color to black [I run that way all the time, partly for the specific reason that yellow is so hard to see against a white background].&amp;nbsp; You would need to do it only once -- it's not something that's saved separately in each drawing file.&amp;nbsp; There could be other colors that would then be harder to see [blue color 5 is somewhat, though not as hard as yellow on white], but that depends on what other colors they use.&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;EDIT:&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp; The other reason for using a black background is that so many other colors in the darker range of things, while perfectly&amp;nbsp;&lt;EM&gt;visible&lt;/EM&gt; on a white background, are nearly impossible to distinguish &lt;EM&gt;from each other&lt;/EM&gt;, but much easier to on a black background.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 17:15:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207313#M5164</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2024-12-13T17:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207447#M5165</link>
      <description>&lt;P&gt;This is possible with LISP, and here's an outline of how:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Create a function that selects/changes all objects bycolor "Yellow" and all layers with color "Yellow" to "Black".&lt;/LI&gt;&lt;LI&gt;Set up an acaddoc.lsp so it loads and runs the above function when each drawing is opened.&lt;/LI&gt;&lt;LI&gt;The acaddoc.lsp file must reside in a support/trusted path.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could add a switch to turn it on and off as well.&lt;/P&gt;&lt;P&gt;..or just have a function ready to call if needed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, I agree yellow lines/text on a white paper background es no bueno, but banning a color? lol I have a similar situation with this outlier of a hue, but still need the color to be shown, so I went with more of a mustard tint.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 13:03:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207447#M5165</guid>
      <dc:creator>DGCSCAD</dc:creator>
      <dc:date>2024-12-12T13:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207455#M5166</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7290817"&gt;@behzatyaras&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;SPAN&gt;...we are collaborating with a project company on a project. In all the files sent by the project company...&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Why not just ask the other company to "not do that"?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 13:04:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207455#M5166</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2024-12-12T13:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207497#M5167</link>
      <description>&lt;P&gt;Our pc3 (s) are all set to turn the yellow to another color, considering the problem is for printed things...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not, a vast vlax-for yellow kille ... for entities and layers would be a solution.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 13:20:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207497#M5167</guid>
      <dc:creator>tramber</dc:creator>
      <dc:date>2024-12-12T13:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207932#M5168</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14461688"&gt;@DGCSCAD&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Create a function that selects/changes all objects bycolor "Yellow" and all layers with color "Yellow" to "Black".&amp;nbsp;&lt;SPAN&gt;....&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Ideally, that should also include finding objects &lt;EM&gt;nested in Blocks,&lt;/EM&gt; and also&amp;nbsp;&lt;EM&gt;parts in Dimension and Multiline Style definitions&lt;/EM&gt; that have yellow color assigned.&amp;nbsp; Neither category would be affected by just changing the color of Layers and selectable objects.&amp;nbsp; And then there's internal Mtext formatting, and maybe some other possibilities....&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 16:08:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207932#M5168</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2024-12-12T16:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207951#M5169</link>
      <description>&lt;P&gt;Yes sir. Down the rabbit hole.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Explode and Unformat "all". Ban anything associated with #2. lol&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 16:15:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13207951#M5169</guid>
      <dc:creator>DGCSCAD</dc:creator>
      <dc:date>2024-12-12T16:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13208567#M5170</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7290817"&gt;@behzatyaras&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With the help from other members in this forum, the following routine&lt;/P&gt;&lt;P&gt;will toggle both the model space and paper space backgrounds between&lt;/P&gt;&lt;P&gt;black and white.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"Toggle Background Color"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;;;  Toggle Model Space / Paper Space Background Color  ;8-27-2020
;;   Switches from a black background to a white background.
(defun c:TBGC (/ prefDisplay c)
 (vl-load-com)
 (setq prefDisplay (vla-get-Display (vla-get-Preferences (vlax-get-acad-object)))
       c (vlax-variant-value (vlax-variant-change-type (vla-get-GraphicsWinModelBackgrndColor prefDisplay) vlax-vbLong))
 )
 (vla-put-GraphicsWinModelBackgrndColor prefDisplay (vlax-make-variant (if (= c 0) 16777215 0) vlax-vbLong))
 (vla-put-GraphicsWinLayoutBackgrndColor prefDisplay (vlax-make-variant (if (= c 0) 16777215 0) vlax-vbLong))
 (princ)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I employ this almost on a daily basis as part of my job description is to "redline" PDF underlays.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The icon I use for the CUI command is:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="scot65_0-1734037441246.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1445218iD6A98230F68670D6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="scot65_0-1734037441246.png" alt="scot65_0-1734037441246.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 21:09:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13208567#M5170</guid>
      <dc:creator>scot-65</dc:creator>
      <dc:date>2024-12-12T21:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13208750#M5171</link>
      <description>&lt;P&gt;I agree with others just set the background color, if black is a bit harsh try using a grey background. We had our default CTB as 1st seven colors as black so yellow would plot black. I could not work with white background. Hint OPTIONS DISPLAY. Set once.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 23:01:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13208750#M5171</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2024-12-12T23:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210312#M5172</link>
      <description>&lt;P&gt;Thank you for your reply. I tried that but still hard to work on it, especially with long working hours.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 16:28:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210312#M5172</guid>
      <dc:creator>behzatyaras</dc:creator>
      <dc:date>2024-12-13T16:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210320#M5173</link>
      <description>&lt;P&gt;Thank you for your reply. I tried to use lisp file with the help of chatgpt but still no use..&lt;BR /&gt;Here is what i used, maybe somebody else will use it.&lt;BR /&gt;&lt;BR /&gt;(defun c:grayscale ()&lt;BR /&gt;(setq allObjects (ssget "X")) ; Tüm nesneleri seç&lt;BR /&gt;(if allObjects&lt;BR /&gt;(progn&lt;BR /&gt;(repeat (sslength allObjects)&lt;BR /&gt;(setq obj (vlax-ename-&amp;gt;vla-object (ssname allObjects 0)))&lt;BR /&gt;(vla-put-TrueColor obj 8421504) ; Gri (RGB 128,128,128)&lt;BR /&gt;)&lt;BR /&gt;(princ "\nTüm nesneler grayscale olarak ayarlandı.")&lt;BR /&gt;)&lt;BR /&gt;(princ "\nÇizimde nesne bulunamadı.")&lt;BR /&gt;)&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 16:31:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210320#M5173</guid>
      <dc:creator>behzatyaras</dc:creator>
      <dc:date>2024-12-13T16:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210324#M5174</link>
      <description>&lt;P&gt;Smart move. However, we have already thousands of dwg files.&lt;BR /&gt;Thank you for your reply.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 16:33:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210324#M5174</guid>
      <dc:creator>behzatyaras</dc:creator>
      <dc:date>2024-12-13T16:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210325#M5175</link>
      <description>&lt;P&gt;Thank you for your reply but i do not understand what you mean.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 16:33:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210325#M5175</guid>
      <dc:creator>behzatyaras</dc:creator>
      <dc:date>2024-12-13T16:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210329#M5176</link>
      <description>&lt;P&gt;Thank you for your reply but thousands of dwg files, hundreds of layers... hard to manage.. I think we need permanent and swift solution.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 16:35:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210329#M5176</guid>
      <dc:creator>behzatyaras</dc:creator>
      <dc:date>2024-12-13T16:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210331#M5177</link>
      <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt; thank you for your reply.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 16:35:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210331#M5177</guid>
      <dc:creator>behzatyaras</dc:creator>
      <dc:date>2024-12-13T16:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210337#M5178</link>
      <description>&lt;P&gt;Thank you for your reply. Changing background color is not the solution i am looking for. It is still hard to work on it.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 16:38:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210337#M5178</guid>
      <dc:creator>behzatyaras</dc:creator>
      <dc:date>2024-12-13T16:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210343#M5179</link>
      <description>&lt;P&gt;Thank you for your reply. Plotting is another issue. A grayscale print out is okay for us but working on a project like this so hard and exhausting.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 16:40:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210343#M5179</guid>
      <dc:creator>behzatyaras</dc:creator>
      <dc:date>2024-12-13T16:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210363#M5180</link>
      <description>&lt;P&gt;You might need to buy a better monitor. Or calibrate the colors on the current one, or adjust contrast and brightness.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On the ACAD side, if you have trouble with vision, you can try adjusting the line weight setting to have bolder lines.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="eekeeCZ_1-1734108327127.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1445656i8FC3D9E2B067198A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="eekeeCZ_1-1734108327127.png" alt="eekeeCZ_1-1734108327127.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 16:45:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210363#M5180</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2024-12-13T16:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: How can we ban yellow color on autocad for good?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210406#M5181</link>
      <description>&lt;P&gt;I found a solution and it is a little interesting. I have searched web like pretending a color blind person.&amp;nbsp;&lt;BR /&gt;As i found, windows has a lot of accessibility features. You can easily change your color filters under windows accessibility section. When you activated it, default shortcut is "ctrl+windows+c" I choose "protanopy" mode for best result.&lt;BR /&gt;I hope it will be helpful for other people suffer from "yellow" color.&lt;BR /&gt;You can check the attachment below for result.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="autodesk forum.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1445680iD603BBAD95B43D36/image-size/large?v=v2&amp;amp;px=999" role="button" title="autodesk forum.jpg" alt="autodesk forum.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 16:56:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-can-we-ban-yellow-color-on-autocad-for-good/m-p/13210406#M5181</guid>
      <dc:creator>behzatyaras</dc:creator>
      <dc:date>2024-12-13T16:56:19Z</dc:date>
    </item>
  </channel>
</rss>

