diff options
| author | Blista Kanjo | 2022-04-25 00:43:51 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2022-04-25 00:43:51 -0400 |
| commit | 88a4fcc5db0ba4ab630e95bbe72a570dc98427d3 (patch) | |
| tree | a4ea7b958dcb97b821f29b6733f5e1030fd98b61 | |
| parent | cc3563980eeababae5331beaa3518589ba289555 (diff) | |
emulated the DarkPastels color scheme from qterminal
| -rw-r--r-- | alacritty.yml | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/alacritty.yml b/alacritty.yml index fcdd54d..790526f 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -358,7 +358,8 @@ font: # # Window opacity as a floating point number from `0.0` to `1.0`. # The value `0.0` is completely transparent and `1.0` is opaque. -background_opacity: 0.7 +window: + opacity: 0.9 #selection: # This string contains all characters that are used as separators for @@ -801,7 +802,7 @@ key_bindings: - { key: Insert, mods: Shift, action: PasteSelection } - { key: Key0, mods: Control, action: ResetFontSize } - { key: Equals, mods: Control, action: IncreaseFontSize } - - { key: Plus, mods: Control, action: IncreaseFontSize } + - { key: Plus, mods: Control|Shift, action: IncreaseFontSize } - { key: NumpadAdd, mods: Control, action: IncreaseFontSize } - { key: Minus, mods: Control, action: DecreaseFontSize } - { key: NumpadSubtract, mods: Control, action: DecreaseFontSize } @@ -861,32 +862,32 @@ key_bindings: colors: # Default colors primary: - background: '0x000000' - foreground: '0xffffff' + background: '0x2c2c2c' + foreground: '0xdcdcdc' cursor: text: '0xF81CE5' cursor: '0xffffff' # Normal colors normal: - black: '0x000000' - red: '0xfe0100' - green: '0x33ff00' - yellow: '0xfeff00' - blue: '0x0066ff' - magenta: '0xcc00ff' - cyan: '0x00ffff' - white: '0xd0d0d0' + black: '0x3f3f3f' + red: '0x705050' + green: '0x60b48a' + yellow: '0xdfaf8f' + blue: '0x9ab8d7' + magenta: '0xdc8cc3' + cyan: '0x8cd0d3' + white: '0xdcdcdc' # Bright colors bright: - black: '0x808080' - red: '0xfe0100' - green: '0x33ff00' - yellow: '0xfeff00' - blue: '0x0066ff' - magenta: '0xcc00ff' - cyan: '0x00ffff' + black: '0x709080' + red: '0xDCA3A3' + green: '0x72D5A3' + yellow: '0xF0DFAF' + blue: '0x94BFF3' + magenta: '0xEC93D3' + cyan: '0x93E0E3' white: '0xFFFFFF' |
