mordant

Full-featured text styling for Kotlin command-line applications

License

License

Categories

Categories

Ant Build Tools
GroupId

GroupId

com.github.ajalt
ArtifactId

ArtifactId

mordant
Last Version

Last Version

1.2.1
Release Date

Release Date

Type

Type

jar
Description

Description

mordant
Full-featured text styling for Kotlin command-line applications
Project URL

Project URL

https://github.com/ajalt/mordant
Source Code Management

Source Code Management

https://github.com/ajalt/mordant

Download mordant

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.ajalt/mordant/ -->
<dependency>
    <groupId>com.github.ajalt</groupId>
    <artifactId>mordant</artifactId>
    <version>1.2.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.ajalt/mordant/
implementation 'com.github.ajalt:mordant:1.2.1'
// https://jarcasting.com/artifacts/com.github.ajalt/mordant/
implementation ("com.github.ajalt:mordant:1.2.1")
'com.github.ajalt:mordant:jar:1.2.1'
<dependency org="com.github.ajalt" name="mordant" rev="1.2.1">
  <artifact name="mordant" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.ajalt', module='mordant', version='1.2.1')
)
libraryDependencies += "com.github.ajalt" % "mordant" % "1.2.1"
[com.github.ajalt/mordant "1.2.1"]

Dependencies

compile (2)

Group / Artifact Type Version
org.jetbrains.kotlin : kotlin-stdlib jar 1.3.21
com.github.ajalt : colormath jar 1.2.0

test (2)

Group / Artifact Type Version
junit : junit jar 4.12
io.kotlintest : kotlintest-assertions jar 3.3.1

Project Modules

There are no modules declared in this project.

Mordant

Colorful styling for command-line applications

/mɔː(ɹ)dənt/ A substance used to set (i.e. bind) colored dyes on fabrics 1

Mordant has:

  • Easy colorful ANSI output with automatic detection of terminal capabilities
  • Markdown rendering directly to the terminal
  • Components for laying out our terminal output, including lists, tables, panels, and more
  • Support for animating anything you can render, like progress bars and dashboards
This README documents Mordant 2.0, which is in alpha. You can read the docs for Mordant 1.0 here.

Usage

Create a Terminal instance, and import any enum entries you want from TextColors and TextStyles. The println function on your Terminal will detect your current terminal capabilities and automatically downsample ANSI codes if necessary.

import com.github.ajalt.mordant.terminal.TextColors.*
import com.github.ajalt.mordant.terminal.TextStyles.*

val t = Terminal()
t.println(red("This text will be red on terminals that support color"))

Multiple styles

import com.github.ajalt.mordant.terminal.TextColors.*
val t = Terminal()
t.println("${red("red")} ${white("white")} and ${blue("blue")}")

Foreground and background colors

t.println((yellow on brightGreen)("this is easy to read, right?"))

Background color alone

t.println("The foreground ${brightBlue.bg("color will stay the")} same")

Combine styles and colors

val style = (bold + white + underline)
t.println(style("You can save styles"))
t.println(style("to reuse"))

Nest styles and colors

t.println(white("You ${(blue on yellow)("can ${(black + strikethrough)("nest")} styles")} arbitrarily"))

True color and other color spaces

import com.github.ajalt.mordant.terminal.TextColors.Companion.rgb

t.println(rgb("#b4eeb4")("This will get downsampled on terminals that don't support truecolor"))

for (v in 0..100 step 4) {
    for (h in 0..360 step 4) {
        t.print(hsv(h, 100, 100 - v).bg(" "))
    }
    t.println()
}

Terminal color support detection

By default, Terminal() will try to detect ANSI support in the current stdout stream. If you'd like to override the detection, you can pass a specific value to the Terminal constructor.

For example, to always output ANSI RGB color codes, even if stdout is currently directed to a file, you can do this:

Terminal(AnsiLevel.TRUECOLOR)

Tables

Use the table DSL to quickly create tables. Mordant handles ANSI styles and wide characters like CJK and emojii.

val t = Terminal()
t.println(table {
    header { row("CJK", "Emojis") }
    body { row("모ㄹ단ㅌ", "🙊🙉🙈") }
})

Mordant gives you lots of customization for your tables, including striped row styles, row and column spans, and different border styles.

table {
    borderStyle = SQUARE_DOUBLE_SECTION_SEPARATOR
    align = RIGHT
    outerBorder = false
    column(0) {
        align = LEFT
        borders = ALL
        style = magenta
    }
    column(3) {
        borders = ALL
        style = magenta
    }
    header {
        style(magenta, bold = true)
        row("", "Projected Cost", "Actual Cost", "Difference")
    }
    body {
        rowStyles(blue, brightBlue)
        borders = TOM_BOTTOM
        row("Food", "$400", "$200", "$200")
        row("Data", "$100", "$150", "-$50")
        row("Rent", "$800", "$800", "$0")
        row("Candles", "$0", "$3,600", "-$3,600")
        row("Utility", "$145", "$150", "-$5")
    }
    footer {
        style(bold = true)
        row {
            cell("Subtotal")
            cell("$-3,455") { columnSpan = 3 }
        }
    }
    captionBottom("Budget courtesy @dril", TextStyle(dim = true))
}

Markdown

Mordant can render GitHub Flavored Markdown. Hyperlinks will even be clickable if you're on a terminal that supports it, like recent versions of iTerm or Windows Terminal.

val t = Terminal()
t.printMarkdown(File("README.md").readText())

Controlling the cursor

You can show and hide the cursor, move it around, and clear parts of the screen with the cursor property on Terminal. If your terminal doesn't support cursor movements (like when output is redirected to a file) these commands are no-ops.

val t = Terminal()
t.cursor.up(3)
t.cursor.startOfLine()
t.cursor.clearScreenAfterCursor()
t.cursor.hide(showOnExit = true)

Animations

You can animate any renderable component like a table with Terminal.animation, or any regular string with Terminal.textAnimation.

val t = Terminal()
val a = t.textAnimation<Int> { frame ->
    (1..50).joinToString("") {
        val hue = (frame + it) * 3 % 360
        t.colors.hsv(hue, 100, 100)("━")
    }
}

t.cursor.hide(showOnExit = true)
repeat(120) {
    a.update(it)
    Thread.sleep(25)
}

Installation

Mordant is distributed through Maven Central.

dependencies {
   implementation("com.github.ajalt.mordant:mordant:2.0.0-alpha1")
}
In version 2.0, the maven coordinates changed. Make sure you're using the new coordinates if you're updating from an older version.

License

Copyright 2018-2020 AJ Alt

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Versions

Version
1.2.1
1.2.0
1.1.0