You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.3 KiB

## ascii-art-color
### Objectives
3 years ago
You must follow the same [instructions](../README.md) as in the first subject but this time with colors.
3 years ago
The output should manipulate colors using the **flag** `--color=<color>`, in which `--color` is the flag and `<color>` is the color desired by the user. These colors can be achieved using different notations (color code systems, like `RGB`, `hsl`, `ANSI`...), it is up to you to choose which one you want to use.
3 years ago
- You should be able to choose between coloring a single letter or a set of letters (use your imagination for this one).
3 years ago
- If the letter is not specified, the whole `string` should be colored.
3 years ago
- The flag must have exactly the same format as above, any other formats must return the following usage message:
```console
Usage: go run . [STRING] [OPTION]
3 years ago
EX: go run . something --color=<color>
3 years ago
```
### Instructions
- Your project must be written in **Go**.
3 years ago
- The code must respect the [**good practices**](../../good-practices/README.md).
- It is recommended to have **test files** for [unit testing](https://go.dev/doc/tutorial/add-a-test).
### Allowed packages
3 years ago
- Only the [standard Go](https://golang.org/pkg/) packages are allowed
This project will help you learn about :
- The Go file system(**fs**) API
- Color converters
- Data manipulation
- Terminal display