summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan <me@jordan.im>2020-11-13 21:49:03 -0700
committerJordan <me@jordan.im>2020-11-13 21:49:03 -0700
commitc2a74225b161f256924811735bb6e43f9e7a7cbc (patch)
tree47902e1362daec4f7a0f53572054551fe82735df
parent61f90603687c5d10da6c65185d4422d44afbe9c0 (diff)
downloaddotfiles-c2a74225b161f256924811735bb6e43f9e7a7cbc.tar.gz
dotfiles-c2a74225b161f256924811735bb6e43f9e7a7cbc.zip
x220 alacritty config; monospace family, 8-point font
-rw-r--r--.config/alacritty/x220/alacritty.yml55
1 files changed, 55 insertions, 0 deletions
diff --git a/.config/alacritty/x220/alacritty.yml b/.config/alacritty/x220/alacritty.yml
new file mode 100644
index 0000000..406c18f
--- /dev/null
+++ b/.config/alacritty/x220/alacritty.yml
@@ -0,0 +1,55 @@
+font:
+ # Normal (roman) font face
+ size: 8
+ normal:
+ # Font family
+ #
+ # Default:
+ # - (macOS) Menlo
+ # - (Linux) monospace
+ # - (Windows) Consolas
+ family: monospace
+
+ # The `style` can be specified to pick a specific face.
+ # style: Regular
+
+ ## Offset is the extra space around each character. `offset.y` can be thought of
+ ## as modifying the line spacing, and `offset.x` as modifying the letter spacing.
+ #offset:
+ # x: 0.0
+ # y: 0.0
+
+ ## Glyph offset determines the locations of the glyphs within their cells with
+ ## the default being at the bottom. Increasing `x` moves the glyph to the right,
+ ## increasing `y` moves the glyph upwards.
+ #glyph_offset:
+ # x: 0.0
+ # y: 0.0
+
+colors:
+ # Default colors
+ primary:
+ background: '0x0A0E14'
+ foreground: '0xB3B1AD'
+
+ # Normal colors
+ normal:
+ black: '0x01060E'
+ red: '0xEA6C73'
+ green: '0x91B362'
+ yellow: '0xF9AF4F'
+ blue: '0x53BDFA'
+ magenta: '0xFAE994'
+ cyan: '0x90E1C6'
+ white: '0xC7C7C7'
+
+ # Bright colors
+ bright:
+ black: '0x686868'
+ red: '0xF07178'
+ green: '0xC2D94C'
+ yellow: '0xFFB454'
+ blue: '0x59C2FF'
+ magenta: '0xFFEE99'
+ cyan: '0x95E6CB'
+ white: '0xFFFFFF'