Programa que te muestra un menú y te pide elegir un color de texto u de fondo para visualizarlo en línea dentro de la consola, escribiendo el número y pulsando enter.
Ejemplo:
Los colores que se pueden visualizar son:
Código:
Ejemplo:
Los colores que se pueden visualizar son:
0 | |
1 | |
2 | |
3 | |
4 | |
5 | |
6 | |
7 | |
8 | |
9 | |
A | |
B | |
C | |
D | |
E | |
F |
Código:
#include <conio.h> #include <stdio.h> #include <windows.h> int main() { int opcion; do { system("color 1e"); system("cls"); printf("\n SELECCIONA UNA OPCION DEL MENU PARA CAMBIAR LOS COLORES DE LA CONSOLA"); printf("\n ---------------------------------------------------------------------"); printf("\n\n\n\t COLOR DE TEXTO COLOR DE FONDO"); printf("\n\t -------------- --------------"); printf("\n\n\n\t 01. NEGRO 15. NEGRO"); printf("\n\t 02. VERDE 16. VERDE"); printf("\n\t 03. AGUAMARINA 17. AGUAMARINA"); printf("\n\t 04. MARRON 18. MARRON"); printf("\n\t 05. PURPURA 19. PURPURA"); printf("\n\t 06. OLIVA 20. OLIVA"); printf("\n\t 07. BLANCO 21. BLANCO"); printf("\n\t 08. GRIS 22. GRIS"); printf("\n\t 09. AZUL 23. AZUL"); printf("\n\t 10. VERDE LIMON 24. VERDE LIMON"); printf("\n\t 11. AGUAMARINA CLARO 25. AGUAMARINA CLARO"); printf("\n\t 12. ROJO 26. ROJO"); printf("\n\t 13. ROSA 27. ROSA"); printf("\n\t 14. BLANCO BRILLANTE 28. BLANCO BRILLANTE"); printf("\n\t 29. SALIR DEL PROGRAMA \xdd "); scanf("%i",&opcion); switch(opcion) { case 1: printf("\n"); system("color 10"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 2: printf("\n"); system("color 12"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 3: printf("\n"); system("color 13"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 4: printf("\n"); system("color 14"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 5: printf("\n"); system("color 15"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 6: printf("\n"); system("color 16"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 7: printf("\n"); system("color 17"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 8: printf("\n"); system("color 18"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 9: printf("\n"); system("color 19"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 10: printf("\n"); system("color 1a"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 11: printf("\n"); system("color 1b"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 12: printf("\n"); system("color 1c"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 13: printf("\n"); system("color 1d"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 14: printf("\n"); system("color 1f"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 15: printf("\n"); system("color 0e"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 16: printf("\n"); system("color 2e"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 17: printf("\n"); system("color 3e"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 18: printf("\n"); system("color 4e"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 19: printf("\n"); system("color 5e"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 20: printf("\n"); system("color 6e"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 21: printf("\n"); system("color 7e"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 22: printf("\n"); system("color 8e"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 23: printf("\n"); system("color 9e"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 24: printf("\n"); system("color ae"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 25: printf("\n"); system("color be"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 26: printf("\n"); system("color ce"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 27: printf("\n"); system("color de"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; case 28: printf("\n"); system("color fe"); printf("\n\n\t PULSA UNA TECLA PARA VOLVER AL MENU PRINCIPAL"); getch(); break; } } while (opcion!=29); }