From f45c971b1cd944298819a31df7dc55c6a81db669 Mon Sep 17 00:00:00 2001 From: Fladson Gomes Date: Sat, 9 Jan 2021 00:58:02 +0100 Subject: [PATCH 1/4] Update cursor values Having the cell values is very helpful for the vim mode. --- dracula.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dracula.yml b/dracula.yml index 187dbd3..43fe529 100644 --- a/dracula.yml +++ b/dracula.yml @@ -20,8 +20,8 @@ colors: # Colors which should be used to draw the terminal cursor. If these are unset, # the cursor color will be the inverse of the cell color. cursor: - text: '0x44475a' - cursor: '0xf8f8f2' + text: CellBackground + cursor: CellForeground # Selection colors # From d84507a34a82108ab9b97fa068dd1b029d2fc227 Mon Sep 17 00:00:00 2001 From: Fladson Gomes Date: Sat, 9 Jan 2021 00:59:40 +0100 Subject: [PATCH 2/4] Add new color options The newest versions of Alacritty introduced new color options. --- dracula.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/dracula.yml b/dracula.yml index 43fe529..d67ce33 100644 --- a/dracula.yml +++ b/dracula.yml @@ -22,7 +22,22 @@ colors: cursor: text: CellBackground cursor: CellForeground - + vi_mode_cursor: + text: CellBackground + cursor: CellForeground + search: + matches: + foreground: '0x44475a' + background: '0x50fa7b' + focused_match: + foreground: '0x44475a' + background: '0xffb86c' + bar: + background: '0x282a36' + foreground: '0xf8f8f2' + line_indicator: + foreground: None + background: None # Selection colors # # Colors which should be used to draw the selection area. If selection From 2bbc66b2fd5d086b4dca82ebcb9141f636bb9c9e Mon Sep 17 00:00:00 2001 From: Fladson Gomes Date: Sat, 9 Jan 2021 01:00:47 +0100 Subject: [PATCH 3/4] Update selection text value --- dracula.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dracula.yml b/dracula.yml index d67ce33..4d78f78 100644 --- a/dracula.yml +++ b/dracula.yml @@ -44,7 +44,7 @@ colors: # background is unset, selection color will be the inverse of the cell colors. # If only text is unset the cell text color will remain the same. selection: - text: '0xf8f8f2' + text: CellForeground background: '0x44475a' # Normal colors From bbd1fdd4898ddaba4bd89b9aed40d28eb0e3f50f Mon Sep 17 00:00:00 2001 From: Fladson Gomes Date: Sat, 9 Jan 2021 01:02:13 +0100 Subject: [PATCH 4/4] Comments cleanup I don't see much value of having comments in a file that will be imported in the general config. --- dracula.yml | 44 -------------------------------------------- 1 file changed, 44 deletions(-) diff --git a/dracula.yml b/dracula.yml index 4d78f78..e128f82 100644 --- a/dracula.yml +++ b/dracula.yml @@ -1,24 +1,7 @@ -# ... - -# Colors (Dracula) colors: - # Default colors primary: background: '0x282a36' foreground: '0xf8f8f2' - - # Bright and dim foreground colors - # - # The dimmed foreground color is calculated automatically if it is not present. - # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors` - # is `false`, the normal foreground color will be used. - #dim_foreground: '0x9a9a9a' - #bright_foreground: '0xffffff' - - # Cursor colors - # - # Colors which should be used to draw the terminal cursor. If these are unset, - # the cursor color will be the inverse of the cell color. cursor: text: CellBackground cursor: CellForeground @@ -38,16 +21,9 @@ colors: line_indicator: foreground: None background: None - # Selection colors - # - # Colors which should be used to draw the selection area. If selection - # background is unset, selection color will be the inverse of the cell colors. - # If only text is unset the cell text color will remain the same. selection: text: CellForeground background: '0x44475a' - - # Normal colors normal: black: '0x000000' red: '0xff5555' @@ -57,8 +33,6 @@ colors: magenta: '0xff79c6' cyan: '0x8be9fd' white: '0xbfbfbf' - - # Bright colors bright: black: '0x4d4d4d' red: '0xff6e67' @@ -68,11 +42,6 @@ colors: magenta: '0xff92d0' cyan: '0x9aedfe' white: '0xe6e6e6' - - # Dim colors - # - # If the dim colors are not set, they will be calculated automatically based - # on the `normal` colors. dim: black: '0x14151b' red: '0xff2222' @@ -82,16 +51,3 @@ colors: magenta: '0xff46b0' cyan: '0x59dffc' white: '0xe6e6d1' - - # Indexed Colors - # - # The indexed colors include all colors from 16 to 256. - # When these are not set, they're filled with sensible defaults. - # - # Example: - # `- { index: 16, color: '0xff00ff' }` - # - indexed_colors: [] - -# Visual Bell -# ...