Photoshop :: How Do I Change A Line Color To Brown

Feb 6, 2009

I need to change some lines that are in a layer from a black/gray to brown. So I tried to change it by right clicking (PS 7.0) and blending options then tried a bunch of stuff and nothing seems to work: color overlay, blend mode, blend if... but I can't get the color.

I would greatly appreciate it if someone tell me how to do this? The color I need is somewhere between #734002 and #B16203.

View 2 Replies


ADVERTISEMENT

Photoshop :: Gray Color Prints As Brown Using CS6

Feb 8, 2013

I reformatted my computer and installed a fresh copy of Windows 7 service pack 1 and installed Photoshop CS6 and when I print my work the color gray prints as brown and the yellow green has a shade of brown in it as well so its darker. I did calibrate my monitor, I use sRGB IEC61966-2.1 as ICC profile and RGB in working spaces, and US Web Coated v2 as CMYK. I changed the mode to CMYK 16 bit and proof setup to Working CMYK. In printer setting I set the color handling to Photoshop manages colors and set it to hardproofing. I did match it with the color management in display settings.

I think my Epson T1100 printers are fine because they both print the same color gray as brown so it must be in Photoshop where the problem is.

This is frustrating..Before I reformatted I was using Photoshop CS5 and my prints are fine but when I reformatted and installed a fresh copy of Windows 7 and Photoshop CS6 the printing problems starts, I reinstalled Photoshop CS5 but the print outs still has problems, color gray prints as brown..By the way, I print on white bond papers and white box boards, so color blending is not the case I'm sure..

View 30 Replies View Related

GIMP :: Unable To Change Line Color In Line Nova

Oct 23, 2012

I found out that you can't change line color in the line nova because a fix to prevent white on white or something like that. Is there another way to change the line color.

View 6 Replies View Related

CorelDRAW X5 :: Add Some White To Square Of Brown Color

Mar 20, 2012

I have a square of a bown color. I would like the same brown but mixed with white (I just want it more pale, 50% more) how can I do that? CorelDraw X5 v. 15.2.0.686 Hot Fix 4 - Windows 7-64

View 10 Replies View Related

Illustrator :: Black And Grey Color Look Like Brown?

Apr 10, 2013

I'm using Ai CS6 64bit now on windows 8, and I have a problem with the black and grey colors, because they look like brown variations...In the past I hadn't similar problems, but recently I changed my notebook to an Asus KB56, from Acer.

I attached the 1st picture to show exactly what is the problem, the colors should to be all black, but they are brown...The second picture shows them in paint, which works perfect...

View 7 Replies View Related

Paint Shop Pro :: Change Gray Area To Brown

Jan 6, 2012

I have a small grey 'play' icon which I want to change the grey area to brown. (Looks like I can't paste it here). It isn't just one color and has a side of ridge that shows an outline you'd press.Can I use PSP7 somehow to make the colour change?

View 1 Replies View Related

Illustrator :: AI File From CS3 To CC / Color Black Turns Into Brown

Sep 3, 2013

Im having a really bad day working on CC Illustrator, i copied a .ai file and a .eps file from my old computer to continue working on a logo. And everythings works well, without the colors.
 
I want it BLACK, 000000, but the Illustrator turns it into differnt blacks and brown! Never seen this before.
 
When I copy my work back on the old computer and open it on CS3 it shows that it is black, but when i copy it on my CC Photoshop it shows up brown?

I tired making a new file, copying things over, making a new project writing randoms things but its all brown, and i tired to change both CMYK and RBG, and ofcourse the color! It worked fine if I wanted blue or red, but not BLACK.

View 5 Replies View Related

Photoshop :: Change The Color Of Paths Line?

Sep 15, 2008

I'm using Photoshop CS2. When I use pen tool to draw paths line, the line is in gray,which is hard to see some sometimes. I have seen path line in other colors before, however, I really don't know how to change the color.

View 1 Replies View Related

Photoshop :: Change Line Color Of A Shape

Nov 2, 2005

How can i change i line color of a shape (Rectangle, ellipse, etc)? I mean the Border color of a shape?

View 5 Replies View Related

Photoshop :: Change Color Of Outer Line Of A Shape

Sep 4, 2012

I'm trying to create a rectangle with a red border and no inside fill. It's only to highlight some text of a bank form.
 
I know i have to right click the layer and choose blending options and stroke. But I've tried to change the color so many times and no matter what I do, the outer line remains gray and with rounded corners.
 
I want the corners of the rectangle to be squared, not rounded but I'm having a hard time changing this.

I'm using Photoshop CS3

show a picture of where to change the color of the outer line? I've tried everything.

View 7 Replies View Related

Photoshop :: Line Drawing - Change Background To A Color

Aug 23, 2005

I have a black and white line drawing (jpeg or bmp) that I need to modify. A section of it needs to have the white background changed to a color background.

View 2 Replies View Related

AutoCAD 2010 :: Can't Change Line Color

Aug 31, 2012

Been using ACAD for 20+years...AutoCAD 2012/Civil 3D 2012 is driving me nuts. Simple question I am sure. I created a new layer with green as its color. It is showing up as yellow in my viewport. I checked my plot style(ctb), and is same as I have used for many years....prints black(pen 7). Typically shows green on screen and plots black.  Looking in the Layer Properties Manager, I noticed that on the far right, there is a column labeled 'VP Plot Syle'. It has Color 2(yellow) shown.  How do I change this as I am guessing this is causing issue. 

View 6 Replies View Related

CorelDRAW Graphics Suite X5 :: Change Line Color

Apr 13, 2012

How do I change the properties of a line? I can do it before drawing. What if I want to change after drawing in PhotoPaint?

View 7 Replies View Related

CorelDRAW X5 :: How To Change Horizontal Line Color Of A Table

Sep 16, 2011

How can I change the horizontal line color of a table (not the border line color)? I would like the border to be black, but the horizontal lines to be gray.

View 9 Replies View Related

Revit :: Section Line Change Color And Pattern?

Jul 18, 2011

I would like the section line to have a special line type and color. How can this be changed?

View 1 Replies View Related

Illustrator Scripting :: Change Color And Line Weight

Jun 6, 2012

I am trying to create a script who could act as an Autocad plot (ie convert each color to black, with a different line weight). 
 
Here is the first script I melted, who create my Black swatch

if ( app.documents.length > 0 ) {
var myDoc = app.activeDocument;
//add Black swatch
var newSwatch = app.activeDocument.swatches.add()
var newColor = new GrayColor();
newColor.gray = 100;
[Code] ......... 
 
And here is the second one, who replace one color by Black (it don't change the text, nor the lineweight yet…
 
if ( app.documents.length > 0 ) {
//test de dialogue
function csDialog() {
var fabGroup = app.activeDocument.swatchGroups.getByName('Fabrics');
var allFabs = fabGroup.getAllSwatches();
var fabNames = Array();

[Code] ........

View 2 Replies View Related

AutoCAD 2013 :: Change The Cursor Color In Command Line?

Mar 5, 2013

Is there a way to change the cursor color in the command line in AutoCAD 2013?

When I change the background (active command) to black, the cursor blends into it and not visible. Can’t see where is my current position when editing coordinates. The command background was black and text white for the last 10 years for 20 drafters; we would like to keep it this way 

View 8 Replies View Related

AutoCAD Architecture :: Change A Line Color With Display Configurations

Mar 7, 2011

Is it possible to change the color of a line by changing the display configuration? If so, how?

View 3 Replies View Related

AutoCad 2D :: Make A Leader Line Change Color With Per The Layer

Nov 17, 2011

In AutoCAD 2009 is there a way to make a leader line change color with per the layer it is on?

View 3 Replies View Related

GIMP :: How To Change Color Of Specific Characters In A Line Of Text

Jul 24, 2011

I'm currently trying to use the text tool so I can color a line of text in two differing colors. However when I highlight the characters I want to change the whole line changes.

How do I change the color of specific characters in a line of text?

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Change Color / Line Weight

Sep 21, 2012

I was trying to do one that can change color and line weight using a number provided by user. What i want to do is to ask a number to the user, 5 for example, and then change the color to 5, and the lw to .5. I was starting with this:

(defun c:ccv (/ eco lun ob cc clw)
(setq eco (getvar "cmdecho"))
(setq lun (getvar "lunits"))
(setvar "lunits" 2)
[code]......

but is not working, it has a bug with the clw variable.

View 9 Replies View Related

AutoCAD Architecture :: Modify Line Type / Weight - Change Color?

May 12, 2011

How can I modify the line type/weight? How can I change the color?  Where are my object properties?

I have seen a few threads with variations of these questions.  I had the same ones, until now.  I did some serious messing around and came up with this, I thought it may be useful:

To get the AutoCAD 2012 "Properties" panel in ACA 2012:

Disclaimer:  This procedure involves modifying your software's configuration file(s).  If you choose to follow it, you do so at your own risk.

1.   Open the "Customize User Interface" dialog by a familiar method (I like the keyboard, the command is "CUI").
2.   Switch to the "Transfer" tab.
a. If you can't see it, expand the dialog to 2-columns by clicking the ">" button in the lower right corner. 

3.  Set the left-hand column to "acad.cuix", I'll call this the "source file".
a.  If you can not see the file, click the "Open" button and navigate to your "Application Data" folder.

i.  Win7:  {userProfile}AppDataRoaming
ii. WinXP:  {userProfile}Application Data

b. Navigate further to the Autodesk Support folder:

i. {Application Data}AutodeskACA 2012enuSupport

4.   Set the right-hand column to "Main Customization File", or another customization file you intend to use, the "destination file".
5.   Expand both files' "Ribbon->Panels" nodes.
6.   Locate the "Home - Properties" panel in the source file.
7.   Right-click the panel and select "Copy" from the context menu.
8.   Right-click the destination file's "Panels" node and select "Paste" from the context menu, it will be added to the end of the panel list.

a.  NOTE: You may get a warning that the panel already exists. If you do, click the "Rename" button.  The new panel will most likely show up as "Copy Of Home - Properties" 
b.  Right-Click the new panel and select "Rename".  Set the name to "Home - ACADProperties"

9.   Click the destination file's "Save" button.
10. Switch back to the dialog's "Customize" tab.
11. Using the drop-down, select your destination file as the file to customize.
12. Expand the (a) "Ribbon -> Tabs -> Home-ACA"  and (b) "Ribbon -> Panels" nodes in the "Customizations…" (top-left) section.
13. Select the "Ribbon -> Panels -> Home-ACADProperties" panel, a preview will appear and the "Properties" section will populate.
14. Edit the panel's "Display Text" property, change it to "Properties"  (this is the name that will appear on the panel once it's added to the UI).
15. Right-click the "Home-ACADProperties" panel in the "Customizations…" section and select "Copy" from the context menu.
16. Right-click the "Ribbon -> Tabs -> Home-ACA" node and select "Paste" from the context menu.
17. Click the "Save" button.
18. Click the "OK" button.
19. Observe your UI, the new Properties panel will appear at the right end of the "Home" tab.
20. Drag the panel to the location you would like it.

a.  NOTE: Adding this panel to the tab causes the other panels to resize so the ribbon fits the screen/UI width.  If there are any panels that you aren't using, turn them off to allow more room for the other panels.  (I turned off the "Transparency" panel, the new "Properties" panel includes those commands in the slide-out, making it redundant.)

b.  To turn a panel off, right-click a panel title, select Show Panels, then uncheck any panel you don't want displayed.

Now, my ribbon looks like this:

View 9 Replies View Related

AutoCAD Civil 3D :: Select Line Or Piece Of Text And Change Color

Jul 5, 2012

Just installed service pack 2 on Civil 3d 2012...

I go to open a drawing; drawing opens fine and views fine for a second, but then everything changes to viewing Color 9.... I am able to select a line or a piece of text and change it to any color imaginable but it always stays color 9. Although I am able to create a line and have it the correct color, it is just everything that had been existing in the current drawing at the time...

I have tried shademode, which if I put it into a 3d wireframe views fine in modelspace... but it always is going back to the 2d wireframe visual style that is the problem...

I cannot seem to find any problems with the drawing... I have run audit and purge all, I open backed up files and autosaves, all doing the same thing... I even had someone else open the drawing with the same occurence... 

View 3 Replies View Related

AutoCad :: Change Color / Line Type / Width / Layer Of All Blocks In Drawing

Aug 15, 2011

I want to change the color, line type, width and layer of all my blocks in my drawing. is there a way to do this with out opening all the blocks for editing? I am using AutoCAD 2009.

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Copy Text Or Line Then Change Its Color To Green

Mar 29, 2013

I'm looking for a way to copy a text or a simple line, circle... ; after I copied it, the last entity change its color to green.

View 3 Replies View Related

AutoCAD 2010 :: Drawings Diagonal Lines Plot Gray Didn't Change Line Color

Apr 2, 2013

Lately when I plot my drawings the diagonal lines plot gray. I didn't change the line color. Can't figure it out.

View 1 Replies View Related

Photoshop :: Everything Is Tints Of Brown

Dec 30, 2005

Everything is brown. It goes from white to brown to dark brown to black.

Here is an image I got by screenshooting twice.

View 4 Replies View Related

Photoshop :: White In PS Is Brown?

Apr 8, 2008

I have plain old Photoshop CS and recently when I opened it to use it all my white went tan/brown almost like a light sepia toning. I've tried changing the color preferences to no avail. Anyone have any suggestions how to get white to be white again?

View 6 Replies View Related

Photoshop :: Brown To Black

Aug 29, 2006

I have a pen and ink image that is black and white. I want to make the black .. brown. I did that no problem. When I move this image onto a blank document, it goes back to brown. How do I maintain my brown image on a new document?

View 2 Replies View Related

CorelDRAW Graphics Suite X5 :: Line Tool Can Change A Line To Dashes

Aug 15, 2011

I would like to add the effect of hand stitched thread around some of my designs. The line tool can change a line to dashes but this is a bit too uniform for hand stitching. I have seen a tutorial on doing this in Photoshop where a brush is made with a few small different length strokes. this is then spaced out and made to follow a path. how to create a hand stitch effect using X5 that looks like natural hand stitching...

View 4 Replies View Related

AutoCAD Inventor :: Cursor Change To Draw Line But Line Doesn't Appear

Dec 5, 2011

I have a problem with a recently downloaded version of Inventor.  When I start a new drawing all I get is a blank blue screen instead of one with a grid display.  If I start a line I can see the cursor change to draw the line but a line does not appear.  I don't know if it something with how I installed the program or just system settings.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved