mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-28 11:54:57 -04:00
initial commit
This commit is contained in:
commit
c4ff3550e4
36 changed files with 2380 additions and 0 deletions
60
.config/alacritty/themes/dracula.toml
Normal file
60
.config/alacritty/themes/dracula.toml
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
[colors.bright]
|
||||
black = "#6272a4"
|
||||
blue = "#d6acff"
|
||||
cyan = "#a4ffff"
|
||||
green = "#69ff94"
|
||||
magenta = "#ff92df"
|
||||
red = "#ff6e6e"
|
||||
white = "#ffffff"
|
||||
yellow = "#ffffa5"
|
||||
|
||||
[colors.cursor]
|
||||
cursor = "CellForeground"
|
||||
text = "CellBackground"
|
||||
|
||||
[colors.footer_bar]
|
||||
background = "#282a36"
|
||||
foreground = "#f8f8f2"
|
||||
|
||||
[colors.hints.end]
|
||||
background = "#282a36"
|
||||
foreground = "#f1fa8c"
|
||||
|
||||
[colors.hints.start]
|
||||
background = "#f1fa8c"
|
||||
foreground = "#282a36"
|
||||
|
||||
[colors.line_indicator]
|
||||
background = "None"
|
||||
foreground = "None"
|
||||
|
||||
[colors.normal]
|
||||
black = "#21222c"
|
||||
blue = "#bd93f9"
|
||||
cyan = "#8be9fd"
|
||||
green = "#50fa7b"
|
||||
magenta = "#ff79c6"
|
||||
red = "#ff5555"
|
||||
white = "#f8f8f2"
|
||||
yellow = "#f1fa8c"
|
||||
|
||||
[colors.primary]
|
||||
background = "#282a36"
|
||||
bright_foreground = "#ffffff"
|
||||
foreground = "#f8f8f2"
|
||||
|
||||
[colors.search.focused_match]
|
||||
background = "#ffb86c"
|
||||
foreground = "#44475a"
|
||||
|
||||
[colors.search.matches]
|
||||
background = "#50fa7b"
|
||||
foreground = "#44475a"
|
||||
|
||||
[colors.selection]
|
||||
background = "#44475a"
|
||||
text = "CellForeground"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
cursor = "CellForeground"
|
||||
text = "CellBackground"
|
||||
61
.config/alacritty/themes/dracula.yml
Normal file
61
.config/alacritty/themes/dracula.yml
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
# Dracula theme for Alacritty
|
||||
# https://draculatheme.com/alacritty
|
||||
#
|
||||
# Color palette
|
||||
# https://spec.draculatheme.com
|
||||
#
|
||||
# Template
|
||||
# https://github.com/alacritty/alacritty/blob/master/alacritty.yml
|
||||
|
||||
colors:
|
||||
primary:
|
||||
background: '#282a36'
|
||||
foreground: '#f8f8f2'
|
||||
bright_foreground: '#ffffff'
|
||||
cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
vi_mode_cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
search:
|
||||
matches:
|
||||
foreground: '#44475a'
|
||||
background: '#50fa7b'
|
||||
focused_match:
|
||||
foreground: '#44475a'
|
||||
background: '#ffb86c'
|
||||
footer_bar:
|
||||
background: '#282a36'
|
||||
foreground: '#f8f8f2'
|
||||
hints:
|
||||
start:
|
||||
foreground: '#282a36'
|
||||
background: '#f1fa8c'
|
||||
end:
|
||||
foreground: '#f1fa8c'
|
||||
background: '#282a36'
|
||||
line_indicator:
|
||||
foreground: None
|
||||
background: None
|
||||
selection:
|
||||
text: CellForeground
|
||||
background: '#44475a'
|
||||
normal:
|
||||
black: '#21222c'
|
||||
red: '#ff5555'
|
||||
green: '#50fa7b'
|
||||
yellow: '#f1fa8c'
|
||||
blue: '#bd93f9'
|
||||
magenta: '#ff79c6'
|
||||
cyan: '#8be9fd'
|
||||
white: '#f8f8f2'
|
||||
bright:
|
||||
black: '#6272a4'
|
||||
red: '#ff6e6e'
|
||||
green: '#69ff94'
|
||||
yellow: '#ffffa5'
|
||||
blue: '#d6acff'
|
||||
magenta: '#ff92df'
|
||||
cyan: '#a4ffff'
|
||||
white: '#ffffff'
|
||||
34
.config/alacritty/themes/hardhacker.toml
Normal file
34
.config/alacritty/themes/hardhacker.toml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# hardhacker colorscheme for alacritty
|
||||
# by xin wu, https//github.com/hardhackerlabs/theme-alacritty
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#282433'
|
||||
foreground = '#eee9fc'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#eee9fc'
|
||||
cursor = '#eee9fc'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#282433'
|
||||
red = '#e965a5'
|
||||
green = '#b1f2a7'
|
||||
yellow = '#ebde76'
|
||||
blue = '#b1baf4'
|
||||
magenta = '#e192ef'
|
||||
cyan = '#b3f4f3'
|
||||
white = '#eee9fc'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#3f3951'
|
||||
red = '#e965a5'
|
||||
green = '#b1f2a7'
|
||||
yellow = '#ebde76'
|
||||
blue = '#b1baf4'
|
||||
magenta = '#e192ef'
|
||||
cyan = '#b3f4f3'
|
||||
white = '#eee9fc'
|
||||
|
||||
34
.config/alacritty/themes/hardhacker.yml
Normal file
34
.config/alacritty/themes/hardhacker.yml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# hardhacker colorscheme for alacritty
|
||||
# by xin wu, https://github.com/hardhackerlabs/theme-alacritty
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x282433'
|
||||
foreground: '0xeee9fc'
|
||||
|
||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
||||
cursor:
|
||||
text: '0xeee9fc'
|
||||
cursor: '0xeee9fc'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0x282433'
|
||||
red: '0xe965a5'
|
||||
green: '0xb1f2a7'
|
||||
yellow: '0xebde76'
|
||||
blue: '0xb1baf4'
|
||||
magenta: '0xe192ef'
|
||||
cyan: '0xb3f4f3'
|
||||
white: '0xeee9fc'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x3f3951'
|
||||
red: '0xe965a5'
|
||||
green: '0xb1f2a7'
|
||||
yellow: '0xebde76'
|
||||
blue: '0xb1baf4'
|
||||
magenta: '0xe192ef'
|
||||
cyan: '0xb3f4f3'
|
||||
white: '0xeee9fc'
|
||||
34
.config/alacritty/themes/twdark.toml
Normal file
34
.config/alacritty/themes/twdark.toml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# hardhacker colorscheme for alacritty
|
||||
# by xin wu, https//github.com/hardhackerlabs/theme-alacritty
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#282433'
|
||||
foreground = '#eee9fc'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#eee9fc'
|
||||
cursor = '#eee9fc'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#282433'
|
||||
red = '#ff5452'
|
||||
green = '#bdde6e'
|
||||
yellow = '#ffff00'
|
||||
blue = '#5509ab'
|
||||
magenta = '#9147ff'
|
||||
cyan = '#6fc9ff'
|
||||
white = '#eee9fc'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#3f3951'
|
||||
red = '#ff5452'
|
||||
green = '#bdde6e'
|
||||
yellow = '#ffff00'
|
||||
blue = '#5509ab'
|
||||
magenta = '#9147ff'
|
||||
cyan = '#6fc9ff'
|
||||
white = '#eee9fc'
|
||||
|
||||
Loading…
Reference in a new issue