Can I get Desktop background to be plain white or black?

I'm sure this is already in the forum(s) somewhere, but my searches haven't found exactly what I'm looking for. Is there a way to have my Desktop color just plain black (as I can do in Windows?). The "Solid Colors" in the Prefs doesn't seem to have it. I did figure out how to get white-- kind of stupid the way they have the white square "hidden" in the set of color boxes, though! But I'd like to just get a black background. I'm not afraid of using the terminal if that would do it. Thanks in advance.

You could do this to add black to your choices:
1. Navigate to "/Library/Desktop Pictures/Solid Colors"
2. Double click the Solid Gray Dark.png file to open it in Preview
3. From Tools select Image Correct and drag the Exposure all the way to the left so that the image becomes black
4. Go File menu Save As and rename the file Sold Black and click the Save button
When you open System Prefs Desktop you will now have Solid Black as one of the choices.
If you have an image editing program you can add any color your little heart desires. Just create a 128x128 file, fill it with the color of your choice, then save it to the above folder as a png file.
Francine
Schwieder

Similar Messages

  • Can't get desktop background to display

    I don't know if this is HW or SW, but I'll start here.
    I have a brand-new MBP (early 2011). I can't get it to display a desktop background for love nor money, i.e. going into System Preferences, Desktop/Screen Save, and choosing a background, I get nothing but a light blue screen. It doesn't matter if I choose one of the pictures that comes with OS X or one of the pictures from my iPhoto library, it won't display them. It displays them in System Pref with no problem, and it doesn't give an error when choosing, it just doesn't change the desktop background.
    For the iPhoto library (although, remember, it doesn't work with the OS X pictures, either, i.e. Desktop Pictures, Plants, etc.), it works fine in both iPhoto and in Screen Saver, i.e. the Screen Saver displays photos without a problem.
    The problem survives a reboot, fixing permissions, and the 10.6.7 upgrade, i.e. it was happening on 10.6.6, and it's still happening after the 10.6.7 upgrade.
    Any ideas?

    I just tried the top from Linc Davis and it didn't work for me. I have a MBP bought in may 2010 i Sweden which is where I live. 
    After upgrading today to 10.6.7 I notice the desktop background is replaced by a completely white background. Quoting vr8ce since this is the same for me: "It displays them in System Pref with no problem, and it doesn't give an error when choosing, it just doesn't change the desktop background." Unlike vr8ce, it was not happening in 10.6.6 for me. And unlike vr8ce my background is not blue but white.
    I haven't tried using anything from iPhoto etc - I'm just using the images in System Pref.
    I have upgraded to 10.6.7 (today), rebooted, run Repair Disk on the Install DVD (from another tip). I don't actually remember "fixing permissions".
    As I said, the tip from Linc Davis  didn't work for me. I'm not using a Screen Saver and never have, instead I prefer to close the lid, but not sure if this is the best thing to do.

  • After 10.6.7 can't get desktop background to display

    This problem is similar to Linc Davis problem solved in this thread: https://discussions.apple.com/thread/2795229
    In that thread I write: "I tried the [] from Linc Davis and it didn't work for me. I have a MBP bought in may 2010 i Sweden which is where I live. "  When I never got replies I figured it was because Lincs thread was marked as solved (green text). So I created my own discussion (this thread).
    After upgrading today to 10.6.7 I notice the desktop background is replaced by a completely white background. Quoting vr8ce since this is the same for me: "It displays them in System Pref with no problem, and it doesn't give an error when choosing, it just doesn't change the desktop background." Unlike vr8ce, it was not happening in 10.6.6 for me. And unlike vr8ce my background is not blue but white.
    I haven't tried using anything from iPhoto etc - I'm just using the images in System Pref.
    I have upgraded to 10.6.7 (today), rebooted, run Repair Disk on the Install DVD (from another tip). I don't actually remember "fixing permissions".
    As I said, the tip from Linc Davis - https://discussions.apple.com/thread/2795229 - didn't work for me. I'm not using a Screen Saver and never have, instead I prefer to close the lid, but not sure if this is the best thing to do.

    Time for the OnyX "nuke em from orbit" approach then.
    Run ALL of the free OnyX cleaning and
    maintainence features and reboot.
    Also run the Verify>Preferences and write down
    any corrupted ones, move these files to your
    desktop (out of yourLibrary/Preferences folder)
    and reboot, they get rebuilt automatically.
    VLC (plays anything)
    Perian (installs additionalQuicktimecodecs)
    FlipForMac (Windows media in Quicktime)
    TheUnarchiver(unpacks just about everything)
    Carbon Copy Cloner (clonesbootdrive to another HFS+j drive, hold option bootable)
    2 free 3D games - NexiuZClassic and Cube 2 Sauerbraten
    LibreOffice (freeofficesuit, reads/writes Office files
    Gimp (free image editor)
    OnyX (free maintainenceandcleaning)
    Pacifist (opens DMG filesforextraction)
    Mactracker (inforonApple products)
    NTFS Mounter (for WindowsNTFSdrives)
    EasyFind(deep search)
    TimeMachineEditor
    TinkerTool
    ClamXav (free anti-virus)
    Caffine (keeps yourMacawake)
    Browswerplug-in check (especially for Flash!)

  • How can I get Gray background instead of White in Photoshop CC 2014 after rendering 3D ? I've seen this in many tutorials. Plz help me.

    How can I get Gray background instead of White in Photoshop CC 2014 after rendering 3D ? I've seen this in many tutorials. Plz help me.

    Brother, when I am rendering any 3D text in photoshop, then it shows white backgroung instead of Gray.
    See White backhround is of mine and gray is on tutorials.

  • Can I get different background colors on menu items?

    I've been trying to get different background colors on my menu (Quick launch) items for a while, without success. What I want is the even numbered items (the second, fourth, sixth...) to have a different background color than the uneven ones (first, third,
    fifth...).
    Anyone knows if this can be done?
    Thanks, guys!

    Can you do something in the javascript code where you have given specific IDs to each buttons in your menu? It could end up in something like "$('#menu_id').css('background-color', '#1B3E70');"
    Or, let say you have controls defined like thie:
    <body>
    <ul class="menu">
    <li class="menu-item"><a>item 1</a></li>
    <li class="menu-item"><a>item 2</a></li>
    <li class="menu-item"><a>item 3</a></li>
    </ul>
    </body>
    Can't you write at render stage this kind of actions by index:
    var i = $("li").index( $(this).parent() );
    if ( i === 1 ) {
    $('body').css('background', 'red');
    } else if ( i === 2 ) {
    $('body').css('background', 'green');
    } else {
    $('body').css('background', 'brown');

  • Can't get Transparent background in Adobe Flash Professional CS4

    I'm wanting to create a moving object that will be exported into a tv commercial.
    Object has already been created in Adobe Illustrator, and now will be dropped into flash for adding movement.
    The destination commercial will be created in Sony Vegas, with the settings of (Australian) PAL television (25 fps, 576x720 pixels, lower field first).
    Thus keeping it simple, I want to set Adobe flash with the same output format, meaning that the canvas will have to be 576x720 pixels at 25 fps.  So far this seems to have worked okay.
    Now I'm wanting to get rid of the canvas colour, just like I have here in this photoshop screen shot.
    Judging by the colour palette in Flash Professional, it looks like it can't be done.  I've checked "transparent palette" through yahoo and google, and had no results.  The adobe documentation only details how to remove a background in Photoshop.
    Can someone please inform me how to get transparent background in Adobe Flash Professional CS4.  Thanks

    As far as I know there is no option to set up a file with a transparent background in design mode.  A transparent background is normally realized in the embedding code of an html web page that displays the Flash file (using wmode="transparent" as a parameter).

  • How can I get desktop 3070AOI to work on laptop with windows 8.1

    I have HP Desktop 3070A e-ALL-IN-ONE Series Printer but changed computer to laptop with Windows 8.1 can I get some download or upgrade so it will be compatible with 8.1

    Hi ReganGler,
    Thank you for visiting the HP Support Forums and Welcome. I have read your thread on your HP Deskjet 3070A Printer and Windows 8.1. Here is a link to the HP Print and Scan Doctor. The HP Print and Scan Doctor will help you resolve most issues with printing.
    Hope this is helpful.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Can't change desktop background OS 10.5.6

    Hi,
    I'm on a Macbook 2.0Ghz-4 gig Ram-OS 10.5.6
    When I go into preferences and attempt to change my desktop/background it freezes and crashes system preferences. If I double-click on the desktop the same thing happens. I read on an answered question that I might be able to trash "com.apple.systempreferences.plist" file from my ~/Library/Preferences/ folder. I tried that but it didn't work. Does anybody know what is going on? What can I do to fix this? Thanks in advance for any help.

    It should allow you to just drag the User preference folder to the desktop. When you reboot, it creates a new one. If you can copy the folder to the desktop, try dragging the original to the trash and reboot. Then test.
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Creator of 'Mac611 - Mobile Mac Support' (designed exclusively for an iPhone/iPod touch)

  • Can't change desktop background

    I can't change the desktop background on my primary display. My second display works fine, but my primary display stays solid gray no matter what I choose. It looks a little washed out.
    I've deleted my com.apple.desktop.plist but that obviously didn't help.
    thanks for any other advice.

    Remove the com.apple.preference.desktopscreeneffect.plist, log out, and back in.

  • Why PhotoBooth can't get the background images to work properly on the picture

    Why PhotoBooth can get the background images to work properly on the picture, is it because too much luminosity in the environment or too little? I have tried everything and nothing works.
    <Re-Titled By Host>

    Might try this...
    Go to System Preferences > Universal Access and down in the Display: section make sure that the Enhance contrast: slider is all the way to left to Normal, or more to the right for less Contrast.
    Go to System Preferences > Accessibility in 10.8.x,and down in the Display: section make sure that the Enhance contrast: slider is all the way to left to Normal, or more to the right for less Contrast.

  • Can't change Desktop background in System Preferences

    Hi. When I try to change my desktop background, either by right-clicking on the desktop or by opening System Preferences, the screen for Desktop options is blank. None of the options show up, grayed out or otherwise. While in System Preferences, if I click on Screen Saver, everything there works fine. But the button for Desktop becomes grey and I can't click on it.
    I've tried Repair Permissions and this didn't work. I've seen similar posts here, but they don't seem to have the same problem I do, nothing freezes up, the Desktop screen is just blank. Do you have any ideas?
    Thanks!
      Mac OS X (10.4.6)  

    1. OK, let's try some more trashing: 1. Quit System Preferences if it is open.
    2. Open your Home > Library > Caches folder, then trash the following two files therein:
    - com.apple.preferencepanes.cache
    - com.apple.preferencepanes.searchindexcache
    3. Trash the file
    com.apple.systempreferences.plist
    in your Home > Library > Preferences folder.
    4. Trash the file
    com.apple.systempreferences.xxx.plist
    in your Home > Library > Preferences > ByHost folder, where xxx is an alphanumeric string.
    5. Empty Trash.
    6. Launch System Preferences and see if the problem is resolved.2. You wrote"I still have my Desktop Pictures folder."I presume you mean the Macintosh HD > Library > Desktop Pictures folder I cited previously. How about the contents of that folder? It should contain five folders:• Abstract
    • Black & White
    • Nature
    • Plants
    • Solid Colorsand a collection of .jpg images for a total of 28 objects.
    3. I know you earlier said you ran Repair Permissions. I presume the permissions on Macintosh HD > Library > Desktop Pictures are:You can: Read & Write
    Owner: system
    Access: Read & Write
    Group: admin
    Access: Read & Write
    Others: Read OnlyYes?
    4. If none of the above sorts it out, let's see if it's isolated to your account. Do you have a second user account defined on your system? If so, log in to it and see if the problem happens there. If it does, it is probably a system-wide problem. If not, it is something with your user account. If you don't have a second account on your system, you can create a new one using System Preferences > Accounts. See "Mac OS X 10.4 Help: Adding a new user account to your computer."
    5. Immediately after the problem occurs — i.e. you open Desktop & Screen Saver preferences and either cannot select Desktop or Desktop is blank — check the ends of these Console logs for clues. Let's see if console can tell us if the Desktop preference pane is corrupted.
    6. Do you have any personal Web space? If so, can you take a screen shot of the problem and upload it to your personal Web space? If so, post a link back here to the image. It may help if I can see what you're seeing, though I think I understand it from your description, "a picture is worth..." etc.
    7. As a general check, run the procedure specified in my "Resolving Disk, Permission, and Cache Corruption" FAQ. Perform the steps therein in the order specified.
    8. To what was / is your Desktop image presently set? One of the Apple collections or images? Something from your iPhoto Library?
    FYI: I number my points so you can respond by number.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Can you get a Mac book pro in white

    Can you get a Mac book pro in white

    Nope. The MacBooks are only in black and aluminum. Try iCarbons.com for a skin to make your MacBook white as you wish it to be.

  • How can i get my ipod toout of the white screen

    how can i get my ipod off the white screen

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              

  • How can I get the background music from iMovie trailer, "Romance"to be used in another imovie?

    Is there any way to download the background music from the  iMovie trailer template "Romance" to be used in another iMovie of greater length than that of a trailer?

    In addition to Tom's good advice, another method is to access the audio file in iMovie's package contents folder.
    In Finder, in the Applications folder, right-click (or control-click) on iMovie.app and select Show Package Contents from the pop-up menu. Open the folder Contents>Resources. In that folder you will find components for each Trailer, including the soundtrack. The file you are seeking is named "SoundTrack - Romance.m4a".
    Copy then paste the file to your Desktop (don't otherwise mess with items in package contents folders!). Open the file in QuickTime - it is titled "Love Story FC2". Opening the Inspector in QuickTime (Window>Show Movie Inspector) reveals it as AAC format. If you wish, as Tom indicated, you can Export the file from QuickTime in other sound formats, such as AIFF. If preferred, you can import either the AAC file or the converted file to iTunes (or other audio apps) for use as required.
    John

  • How can I get the background image of my website to cycle on a timer?

    I'm afraid my experience with Javascript (Which I'm certain this will require) is fairly limited and I'm still quite new to Dreamweaver, so I'm posing this question to you guys.
    I'd like the background image of my website to change every five minutes or so, however I'm unsure of how to accomplish this. For those of you with Windows 7, you can set the background of your desktop to cycle through a folder of images every ten minutes or so. I'd like something similar for this website.
    Thanks in advance.

    Supersized can do this for you with very less need for code.
    http://www.buildinternet.com/project/supersized/ - Take a look at their demo. It's also a lightweight plug-in and it has a lot of great effects you could use. Also x-browser friendly.

Maybe you are looking for

  • I have an unlocked iPhone 5 purchased from Europe and would like to use it on AT

    Hello- I purchased an iPhone 5 in Denmark where I live.  It works fine here and when roaming.  I travel to the US every month and therefore have a post-paid full AT&T account.   In fact it is a shared data plan and I spend about $700 per month just f

  • ID CS5.5 or CS6 to Epub Question

    I have a client who has an IdCS6 file he wants to have made into an epub. When doing an Id file from scratch and then converting to E pub is one thing but this id file has a lot of text and I see a lot of fonts as well which is probably why my ID6 cr

  • Oracle Text Search Problem

    hi, we have implemented oracle text search. When trying to search a keyword contains in Adobe Reader 7.0 pdf version no search result is showing while the same keyword search is showing the pdf file which is in Adobe Reader 6.0. Can any one please he

  • Grey dotted circle on phone in itunes

    i why are the songs like that i just restored through icloud on my iphone 5 and they are like that? how do i get rid of it

  • DRM Integration with Shared services

    Hi, Could someone help me how to integrate DRM with Shared services? Is there any document which helps me with the same? Thanks Arathi.