52 lines
825 B
TOML
52 lines
825 B
TOML
[font]
|
|
size = 9.0
|
|
#offset = { x = 0, y = 2 }
|
|
|
|
#[font.bold]
|
|
#family = "Terminus"
|
|
#style = "Bold"
|
|
#
|
|
#[font.bold_italic]
|
|
#family = "Terminus"
|
|
#style = "Bold Italic"
|
|
#
|
|
#[font.italic]
|
|
#family = "Terminus"
|
|
#style = "Italic"
|
|
#
|
|
#[font.normal]
|
|
#family = "Terminus"
|
|
#style = "Regular"
|
|
#
|
|
# Default colors
|
|
[colors.primary]
|
|
background = '#FFFFFF'
|
|
foreground = '#000000'
|
|
|
|
# Colors the cursor will use if `custom_cursor_colors` is true
|
|
[colors.cursor]
|
|
text = '#232936'
|
|
cursor = '#51617d'
|
|
|
|
# Normal colors
|
|
[colors.normal]
|
|
black = '#242829'
|
|
red = '#df2683'
|
|
green = '#13868c'
|
|
yellow = '#acac4f'
|
|
blue = '#1a86b9'
|
|
magenta = '#bc7fd2'
|
|
cyan = '#5f9ca8'
|
|
white = '#000000'
|
|
|
|
# Bright colors
|
|
[colors.bright]
|
|
black = '#242829'
|
|
red = '#df2683'
|
|
green = '#13868c'
|
|
yellow = '#acac4f'
|
|
blue = '#1a86b9'
|
|
magenta = '#bc7fd2'
|
|
cyan = '#5f9ca8'
|
|
white = '#000000'
|