1
0
Fork 0
forked from ahurac/dotfiles

alacritty : migration vers la config en TOML

This commit is contained in:
Ahurac 2023-12-28 13:46:37 +01:00
parent 9a67a7b5cd
commit 8e82fc3584
4 changed files with 29 additions and 33 deletions

View file

@ -0,0 +1,7 @@
import = ["/home/ahurac/.config/alacritty/theme.toml"]
[font]
size = 11.5
[window]
opacity = 0.5

View file

@ -1,9 +0,0 @@
window:
opacity: 0.5
font:
size: 11.5
import:
- ~/.config/alacritty/theme.yml

View file

@ -0,0 +1,22 @@
[colors.bright]
blue = "0xb399ff"
cyan = "0x99e6ff"
green = "0x89f5a4"
magenta = "0xe699ff"
red = "0xff809f"
white = "0xffffff"
yellow = "0xffffb3"
[colors.normal]
black = "0x000000"
blue = "0x794dff"
cyan = "0x33ccff"
green = "0x13ec49"
magenta = "0xcc33ff"
red = "0xff0040"
white = "0xffffff"
yellow = "0xffff4d"
[colors.primary]
background = "0x000000"
foreground = "0xffffff"

View file

@ -1,24 +0,0 @@
colors:
primary:
background: '0x000000'
foreground: '0xffffff'
normal:
black: '0x000000'
red: '0xff0040'
green: '0x13ec49'
yellow: '0xffff4d'
blue: '0x794dff'
magenta: '0xcc33ff'
cyan: '0x33ccff'
white: '0xffffff'
bright:
red: '0xff809f'
green: '0x89f5a4'
yellow: '0xffffb3'
blue: '0xb399ff'
magenta: '0xe699ff'
cyan: '0x99e6ff'
white: '0xffffff'