mirror of
https://github.com/pnx/dotfiles
synced 2026-07-03 15:03:40 +02:00
alacritty
This commit is contained in:
parent
67cf366bf5
commit
0e4992682b
2 changed files with 69 additions and 36 deletions
|
|
@ -1,13 +1,14 @@
|
||||||
[general]
|
[general]
|
||||||
ipc_socket = false
|
ipc_socket = false
|
||||||
|
import = [ "colorscheme.toml" ]
|
||||||
|
|
||||||
[font]
|
[font]
|
||||||
normal = { family = "IosevkaCustomNerdFont" }
|
normal = { family = "IosevkaCustomNerdFont" }
|
||||||
bold = { style = "SemiBold" }
|
bold = { style = "SemiBold" }
|
||||||
size = 15.0
|
size = 15.0
|
||||||
|
|
||||||
offset = { x = 0, y = 6 }
|
offset = { x = 0, y = 8 }
|
||||||
glyph_offset = { x = 0, y = 3 }
|
glyph_offset = { x = 0, y = 4 }
|
||||||
|
|
||||||
[window]
|
[window]
|
||||||
decorations_theme_variant = "Dark"
|
decorations_theme_variant = "Dark"
|
||||||
|
|
@ -20,37 +21,3 @@ hide_when_typing = false
|
||||||
[selection]
|
[selection]
|
||||||
save_to_clipboard = true
|
save_to_clipboard = true
|
||||||
|
|
||||||
[colors]
|
|
||||||
transparent_background_colors = false
|
|
||||||
cursor = { text = "#eceef4", cursor = "#767BA0" }
|
|
||||||
selection = { text = "CellForeground", background = "#343959" }
|
|
||||||
footer_bar = { foreground = "#eceef4", background = "#0C0D14" }
|
|
||||||
line_indicator = { foreground = "#eceef4", background = "#0E1019" }
|
|
||||||
|
|
||||||
[colors.primary]
|
|
||||||
foreground = "#eceef4"
|
|
||||||
background = "#0E1019"
|
|
||||||
|
|
||||||
[colors.normal]
|
|
||||||
black = "#45475A"
|
|
||||||
red = "#F38BA8"
|
|
||||||
green = "#A6E3A1"
|
|
||||||
yellow = "#F9E2AF"
|
|
||||||
blue = "#89B4FA"
|
|
||||||
magenta = "#F5C2E7"
|
|
||||||
cyan = "#94E2D5"
|
|
||||||
white = "#eceef4"
|
|
||||||
|
|
||||||
[colors.bright]
|
|
||||||
black = "#585B70"
|
|
||||||
red = "#F38BA8"
|
|
||||||
green = "#A6E3A1"
|
|
||||||
yellow = "#F9E2AF"
|
|
||||||
blue = "#89B4FA"
|
|
||||||
magenta = "#F5C2E7"
|
|
||||||
cyan = "#94E2D5"
|
|
||||||
white = "#A6ADC8"
|
|
||||||
|
|
||||||
[colors.search]
|
|
||||||
matches = { foreground = "#0E1019", background = "#767BA0" }
|
|
||||||
focused_match = { foreground = "#0E1019", background = "#F9E2AF" }
|
|
||||||
|
|
|
||||||
66
alacritty/colorscheme.toml
Normal file
66
alacritty/colorscheme.toml
Normal file
|
|
@ -0,0 +1,66 @@
|
||||||
|
[colors.primary]
|
||||||
|
|
||||||
|
foreground = "#eceef4"
|
||||||
|
background = "#0E1019"
|
||||||
|
dim_foreground = "#7f849c"
|
||||||
|
bright_foreground = "#cdd6f4"
|
||||||
|
|
||||||
|
[colors.normal]
|
||||||
|
black = "#45475A"
|
||||||
|
red = "#F38BA8"
|
||||||
|
green = "#A6E3A1"
|
||||||
|
yellow = "#F9E2AF"
|
||||||
|
blue = "#89B4FA"
|
||||||
|
magenta = "#F5C2E7"
|
||||||
|
cyan = "#94E2D5"
|
||||||
|
white = "#eceef4"
|
||||||
|
|
||||||
|
[colors.bright]
|
||||||
|
black = "#585B70"
|
||||||
|
red = "#F38BA8"
|
||||||
|
green = "#A6E3A1"
|
||||||
|
yellow = "#F9E2AF"
|
||||||
|
blue = "#89B4FA"
|
||||||
|
magenta = "#F5C2E7"
|
||||||
|
cyan = "#94E2D5"
|
||||||
|
white = "#A6ADC8"
|
||||||
|
|
||||||
|
[colors.cursor]
|
||||||
|
text = "#eceef4"
|
||||||
|
cursor = "#767BA0"
|
||||||
|
|
||||||
|
[colors.vi_mode_cursor]
|
||||||
|
text = "#eceef4"
|
||||||
|
cursor = "#b4befe"
|
||||||
|
|
||||||
|
[colors.search.matches]
|
||||||
|
foreground = "#eceef4"
|
||||||
|
background = "#a6adc8"
|
||||||
|
|
||||||
|
[colors.search.focused_match]
|
||||||
|
foreground = "#eceef4"
|
||||||
|
background = "#A6E3A1"
|
||||||
|
|
||||||
|
[colors.footer_bar]
|
||||||
|
foreground = "#eceef4"
|
||||||
|
background = "#0C0D14"
|
||||||
|
|
||||||
|
[colors.hints.start]
|
||||||
|
foreground = "#eceef4"
|
||||||
|
background = "#F9E2AF"
|
||||||
|
|
||||||
|
[colors.hints.end]
|
||||||
|
foreground = "#eceef4"
|
||||||
|
background = "#a6adc8"
|
||||||
|
|
||||||
|
[colors.selection]
|
||||||
|
text = "CellForeground"
|
||||||
|
background = "#343959"
|
||||||
|
|
||||||
|
[[colors.indexed_colors]]
|
||||||
|
index = 16
|
||||||
|
color = "#fab387"
|
||||||
|
|
||||||
|
[[colors.indexed_colors]]
|
||||||
|
index = 17
|
||||||
|
color = "#f5e0dc"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue