57 lines
1.3 KiB
TOML
57 lines
1.3 KiB
TOML
# ===========================================
|
|
# IBM Terminal Style — Modernized Alacritty
|
|
# ===========================================
|
|
|
|
[colors.primary]
|
|
background = "0x000000" # Pitch black
|
|
foreground = "0xD0D0D0" # Soft bright IBM-gray (not pure white)
|
|
|
|
[colors.normal]
|
|
black = "0x000000"
|
|
red = "0xCC0000" # IBM red
|
|
green = "0x00CC00" # IBM phosphor green tone
|
|
yellow = "0xCCCC00" # IBM amber
|
|
blue = "0x4C82FF" # Readable bright IBM blue (not navy)
|
|
magenta = "0xCC00CC" # IBM magenta/pink
|
|
cyan = "0x00CCCC" # Cyan
|
|
white = "0xD0D0D0" # Light gray (foreground match)
|
|
|
|
[colors.bright]
|
|
black = "0x4D4D4D"
|
|
red = "0xFF3333"
|
|
green = "0x33FF33"
|
|
yellow = "0xFFFF66"
|
|
blue = "0x79A6FF" # Even brighter blue, visible on black
|
|
magenta = "0xFF33FF"
|
|
cyan = "0x33FFFF"
|
|
white = "0xFFFFFF"
|
|
|
|
[colors.cursor]
|
|
cursor = "0xFFFFFF" # White block cursor
|
|
text = "0x000000" # Invert on black background
|
|
|
|
[colors.selection]
|
|
background = "0x333333"
|
|
text = "0xFFFFFF"
|
|
|
|
[cursor]
|
|
style = "Block"
|
|
vi_mode_style = "Block"
|
|
|
|
[scrolling]
|
|
history = 10000
|
|
|
|
[window]
|
|
decorations = "full"
|
|
dynamic_padding = false
|
|
dynamic_title = true
|
|
opacity = 1.0
|
|
|
|
[window.padding]
|
|
x = 6
|
|
y = 4
|
|
|
|
[font]
|
|
size = 12.0
|
|
normal = { family = "monospace", style = "Regular" }
|
|
|