answersLogoWhite

0

You cannot change the color of the font on windows notepad but if you click Format then you click Font... you can change the Font Font Style and the Size. If you really want to change the color try Windows WordPad or Microsoft-Word.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

In gaia how do you change text color?

In Gaia, you can change text color by using HTML/CSS. You would use the style attribute within the text element and set the color property to the desired color value. For example: Text here will change the text color to red.


What WordPad can do but Notepad not?

WordPad is a very basic word processor whereas Notepad is a text editor. So it can do things like change the colour of text, format paragraphs for indentation and alignment, use bullets and tabs and insert various objects, none of which can be done in Notepad.


Can you use wordpad as compiler?

No. Notepad is a text editor.


Name four examples of text documents?

wordpad


How can I change text color in After Effects?

To change text color in After Effects, select the text layer, then go to the Character panel and choose a new color from the color picker.


How do you take overwrite off using WordPad?

Jus hit the insert key....it toggles back and forth from insert text to overwrite.


How do you change the color of credit text on Windows Movie Maker?

To change the credit text color in Windows Movie Maker:> Once you've got your credit text placed, click on change the text font and color> Click the 'A' button below the word Color> A color menu appears. Choose a color, then click Ok.


Sample text color in C language?

printf("%c[%d;%dmHello World%c[%dm\n",27,1,33,27,0);


How do you change the colors of the letters on a computer?

To change the colours of typed text you need to find the Fonts section of the software you are using which will usually have an option to change the colors.For example: Using TextEdit on a Mac you select the text you want to change. From the Format menu select Font and then Show Colors. Select the color you want to use.


What kind of file ends in txt?

Files that end in txt are text or plain text files. These are commonly opened in Notepad or Wordpad and have nothing but words. Meaning no special effects such as images, animations, or sounds.


How do you change the text color in darkbasic?

To change the text color in DarkBASIC, you can use the Ink command followed by the RGB color values. For example, to set the text color to red, you would use Ink RGB(255,0,0). Then, any text printed after this command will display in the specified color.


How do you change the color of every first letter of a word using CSS?

This cannot be done using CSS.However, you can change the font color of the first letter of a paragraph in CSS, like this:p:first-letter {color:(color);}Alternatives:span {color: #XXXXXX; /* Hex Color */}Then: The "t" will have a color and so will this one.Bad thing with this is you may be using the span tags for other things. Then you may want to use a class:span.first_letter {color: #XXXXXX; /* Hex Color */}Then: The "t" will have a color and so will this one.You can carry either method out for every first letter. There are some free online text generators that generate Rainbow Text.