thuli 1.0.0

A quiet little REPL for exploring Farben markup.
Output demo.gif

# --- Rendering ---
Set Shell "bash"
Set FontSize 32
Set Width 1200
Set Height 900
Set Padding 50
Set WindowBar Colorful
Set Theme "Catppuccin Mocha"
Set TypingSpeed 75ms

# --- Setup Phase (Hidden from recording) ---
Hide
Type "alias thuli='./target/debug/thuli'"
Enter
Type "clear"
Enter
Show
# --------------------------------------------

# Start the application using the alias
Type "thuli"
Enter
Sleep 1.5s

# 1. Show an error
Type "[bold red]Error:[/] something broke"
Enter
Sleep 1.5s

# 2. Define a style
Type "/style ok [bold green]"
Enter
Sleep 1s

# 3. Use the new style
Type "[ok]all good"
Enter
Sleep 1.5s

# 4. Show color tokens and ANSI
Type "/show [rgb(255,100,50)]warm"
Enter
Sleep 2s

# 5. Demonstrate the syntax error and "tip"
Type "[bold red unkn]oops"
Enter
Sleep 3s

# 6. Exit
Type "/quit"
Enter
Sleep 1.5s