Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dahlia-lib/dahlia-gleam

Dahlia — a simple text formatting package, inspired by the game Minecraft.
https://github.com/dahlia-lib/dahlia-gleam

ansi cli color dahlia gleam terminal text-formatting

Last synced: about 2 months ago
JSON representation

Dahlia — a simple text formatting package, inspired by the game Minecraft.

Awesome Lists containing this project

README

        

[![Package Version](https://img.shields.io/hexpm/v/dahlia)](https://hex.pm/packages/dahlia)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/dahlia/)

# Dahlia.gleam

A Gleam port of [Dahlia](https://github.com/dahlia-lib/Dahlia) — a simple text formatting package, inspired by the game Minecraft.

## Exmaple

```gleam
dahlia.new()
|> dahlia.print("&aHello World")
```

## Installation

If available on Hex this package can be added to your Gleam project:

```sh
gleam add dahlia
```

and its documentation can be found at .

# Color Codes

You can find a list of color codes on [the minecraft wiki](https://minecraft.fandom.com/wiki/Formatting_codes).

| Command | Description |
| ----------- | ----------- |
| `&n` | Change the color to `n` |
| `&~n` | Change the background color to `n` |
| `&[#HEXNUM]` | Change the color to `#HEXNUM` |
| `&~[#HEXNUM]` | Change the background color to `#HEXNUM` |
| `\\&` | Display an & |