-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
539fbdb
commit be463c5
Showing
21 changed files
with
4,747 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# PastelNight Alacritty Colors | ||
colors: | ||
# Default colors | ||
primary: | ||
background: '0x292b3c' | ||
foreground: '0xf9fbff' | ||
|
||
# Normal colors | ||
normal: | ||
black: '0x212230' | ||
red: '0xff3d3d' | ||
green: '0x56fe86' | ||
yellow: '0xfec456' | ||
blue: '0x709dff' | ||
magenta: '0xad80d4' | ||
cyan: '0x70e4ff' | ||
white: '0xe6e7e9' | ||
|
||
# Bright colors | ||
bright: | ||
black: '0xa8a9b2' | ||
red: '0xff3d3d' | ||
green: '0x56fe86' | ||
yellow: '0xfec456' | ||
blue: '0x709dff' | ||
magenta: '${magenta}' | ||
cyan: '${cyan}' | ||
white: '0xf9fbff' | ||
|
||
indexed_colors: | ||
- { index: 16, color: '0xff7a3d' } | ||
- { index: 17, color: '0xff8484' } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[delta] | ||
minus-style = syntax "#ff8484" | ||
minus-non-emph-style = syntax "#ff8484" | ||
minus-emph-style = syntax "#ff3d3d" | ||
minus-empty-line-marker-style = syntax "#ff8484" | ||
line-numbers-minus-style = "#dd4040" | ||
plus-style = syntax "#9effb9" | ||
plus-non-emph-style = syntax "#9effb9" | ||
plus-emph-style = syntax "#56fe86" | ||
plus-empty-line-marker-style = syntax "#9effb9" | ||
line-numbers-plus-style = "#58de7e" | ||
line-numbers-zero-style = "#b9bac0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# PastelNight colors for dunst | ||
# For more configuraion options see https://github.com/dunst-project/dunst/blob/master/dunstrc | ||
|
||
[urgency_low] | ||
background = "#1a1c27" | ||
foreground = "#f9fbff" | ||
frame_color = "#9effb9" | ||
|
||
[urgency_normal] | ||
background = "#292b3c" | ||
foreground = "#f9fbff" | ||
frame_color = "#ffdb99" | ||
|
||
[urgency_critical] | ||
background = "#292b3c" | ||
foreground = "#ff3d3d" | ||
frame_color = "#ff8484" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# PastelNight Color Palette | ||
set -l foreground f9fbff | ||
set -l selection 4b4c58 | ||
set -l comment 6a6c7a | ||
set -l red ff3d3d | ||
set -l orange ff7a3d | ||
set -l yellow fec456 | ||
set -l green 56fe86 | ||
set -l purple ad80d4 | ||
set -l sky 70e4ff | ||
set -l pink ff89db | ||
|
||
# Syntax Highlighting Colors | ||
set -g fish_color_normal $foreground | ||
set -g fish_color_command $sky | ||
set -g fish_color_keyword $pink | ||
set -g fish_color_quote $yellow | ||
set -g fish_color_redirection $foreground | ||
set -g fish_color_end $orange | ||
set -g fish_color_error $red | ||
set -g fish_color_param $purple | ||
set -g fish_color_comment $comment | ||
set -g fish_color_selection --background=$selection | ||
set -g fish_color_search_match --background=$selection | ||
set -g fish_color_operator $green | ||
set -g fish_color_escape $pink | ||
set -g fish_color_autosuggestion $comment | ||
|
||
# Completion Pager Colors | ||
set -g fish_pager_color_progress $comment | ||
set -g fish_pager_color_prefix $sky | ||
set -g fish_pager_color_completion $foreground | ||
set -g fish_pager_color_description $comment | ||
set -g fish_pager_color_selected_background --background=$selection | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# PastelNight | ||
|
||
# Syntax Highlighting Colors | ||
fish_color_normal f9fbff | ||
fish_color_command 70e4ff | ||
fish_color_keyword ff89db | ||
fish_color_quote fec456 | ||
fish_color_redirection f9fbff | ||
fish_color_end ff7a3d | ||
fish_color_error ff3d3d | ||
fish_color_param ad80d4 | ||
fish_color_comment 6a6c7a | ||
fish_color_selection --background=4b4c58 | ||
fish_color_search_match --background=4b4c58 | ||
fish_color_operator 56fe86 | ||
fish_color_escape ff89db | ||
fish_color_autosuggestion 6a6c7a | ||
|
||
# Completion Pager Colors | ||
fish_pager_color_progress 6a6c7a | ||
fish_pager_color_prefix 70e4ff | ||
fish_pager_color_completion f9fbff | ||
fish_pager_color_description 6a6c7a | ||
fish_pager_color_selected_background --background=4b4c58 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[cursor] | ||
color=f9fbff 4b4c58 | ||
|
||
[colors] | ||
foreground=f9fbff | ||
background=292b3c | ||
selection-foreground=f9fbff | ||
selection-background=4b4c58 | ||
urls=9effb9 | ||
|
||
regular0=212230 | ||
regular1=ff3d3d | ||
regular2=56fe86 | ||
regular3=fec456 | ||
regular4=709dff | ||
regular5=ad80d4 | ||
regular6=70e4ff | ||
regular7=e6e7e9 | ||
|
||
bright0=a8a9b2 | ||
bright1=ff3d3d | ||
bright2=56fe86 | ||
bright3=fec456 | ||
bright4=709dff | ||
bright5=ad80d4 | ||
bright6=70e4ff | ||
bright7=f9fbff | ||
|
||
16=ff7a3d | ||
17=ff8484 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
( | ||
selected_tab: Rgb(173,128,212), // purple #ad80d4 | ||
command_fg: Rgb(106,108,122), // base300 #6a6c7a | ||
selection_bg: Rgb(75,76,88), // base400 #4b4c58 | ||
selection_fg: Rgb(112,228,255), // sky #70e4ff | ||
cmdbar_bg: Rgb(41,43,60), // bg #292b3c | ||
cmdbar_extra_lines_bg: Rgb(41,43,60), // bg #292b3c | ||
disabled_fg: Rgb(106,108,122), // base300 #6a6c7a | ||
diff_line_add: Rgb(86,254,134), // green #56fe86 | ||
diff_line_delete: Rgb(255,61,61), // red #ff3d3d | ||
diff_file_added: Rgb(158,255,185), // green100 #9effb9 | ||
diff_file_removed: Rgb(255,132,132), // red100 #ff8484 | ||
diff_file_moved: Rgb(255,137,219), // pink200 #ff89db | ||
diff_file_modified: Rgb(254,196,86), // yellow #fec456 | ||
commit_hash: Rgb(173,128,212), // purple #ad80d4 | ||
commit_time: Rgb(112,157,255), // blue #709dff | ||
commit_author: Rgb(86,254,134), // green #56fe86 | ||
danger_fg: Rgb(255,61,61), // red #ff3d3d | ||
push_gauge_bg: Rgb(41,43,60), // bg #292b3c | ||
push_gauge_fg: Rgb(249,251,255), // fg #f9fbff | ||
tag_fg: Rgb(255,137,219), // pink200 #ff89db | ||
branch_fg: Rgb(254,196,86), // yellow #fec456 | ||
) |
Oops, something went wrong.