BkgDrop is a simple C# console application that allows you to customize the background color, text color, and choose whether to display randomized ASCII art. It provides a visually appealing and interactive experience where you can refresh the ASCII art or quit the program.
-
Clone or download this repository to your local machine.
-
Compile and run the
BkgDrop.cs
file using your preferred C# development environment (e.g., Visual Studio, Visual Studio Code, or command line). -
Follow the on-screen instructions to customize the program:
- Choose a background color by entering the name of a ConsoleColor (e.g., DarkBlue, Red) or accept the default by pressing Enter.
- Choose a text color in the same way.
-
Enjoy the randomized ASCII art! You can press 'Enter' to refresh the art or 'Q' to quit the program.
-
Customizable Colors: You can choose your preferred background and text colors to create a visually appealing display.
-
Interactive: The program prompts you for input, making it easy to configure the settings.
The BkgOptions
class is used to manage the background color, text color, and art text (description) for the ASCII art. It provides methods for setting and getting these properties.
BackgroundColor
: The background color for the ASCII art.TextColor
: The text color for the ASCII art.ArtText
: A description of the ASCII art.
SetBackgroundColor(ConsoleColor color)
: Set the background color.SetTextColor(ConsoleColor color)
: Set the text color.SetArtText(string text)
: Set the art text.GetBackgroundColor()
: Get the background color.GetTextColor()
: Get the text color.GetArtText()
: Get the art text.
This project is licensed under the MIT License. See the LICENSE file for details.
Feel free to explore, modify, and use this program for your own entertainment or educational purposes! If you have any questions or feedback, please don't hesitate to reach out.