Batch File Color Changer

by Raven Codes in Circuits > Tools

1940 Views, 5 Favorites, 0 Comments

Batch File Color Changer

2015_02_18_10_14_24_1280x800.bmp

made by be me raven codes @ youtube.com

Open Notetepad

open notpad

How to Make Program

2015_02_18_10_17_36_1280x800.bmp

Type this (this does not need spaces)

@echo off

:color

mode 50,30

%colorcho%

title %colorcho%

cls

echo.
echo What would you like to change the color to?

echo 0 = Black 8 = Gray
echo 1 = Blue 9 = Light Blue

echo 2 = Green A = Light Green
echo 3 = Aqua B = Light Aqua

echo 4 = Red C = Light Red
echo 5 = Purple D = Light Purple

echo 6 = Yellow E = Light Yellow
echo 7 = White F = Bright White

echo.
echo Type the color combination you would like, or type "exit" to exit.

echo (example: 0f)
echo.

set /p colorcho=
if %colorcho% EQU exit goto settings

color %colorcho%
goto color

How to Save Your Program

save as color.bat or use for your personal program