mirror of
https://github.com/catppuccin/nim.git
synced 2024-11-09 19:33:15 -06:00
11 lines
201 B
Nim
11 lines
201 B
Nim
{.define: inheritChroma.}
|
|
|
|
import std/[strutils]
|
|
|
|
import catppuccin
|
|
|
|
|
|
when isMainModule:
|
|
echo "Mocha colors as CMYK"
|
|
for n, c in mocha.fieldPairs():
|
|
echo alignLeft(n, 9) & " -> " & $c.asCmyk()
|