Change alacritty theme to iTerm 2

This commit is contained in:
Dave Gallant
2020-11-20 22:41:32 -05:00
parent 8cc80da814
commit f335ba220f

View File

@@ -26,83 +26,34 @@ font:
size: 11.0 size: 11.0
# Colors (Dracula) # Colors (iTerm 2 default theme)
colors: colors:
# Default colors # Default colors
primary: primary:
background: '0x282a36' background: '0x101421'
foreground: '0xf8f8f2' foreground: '0xfffbf6'
# 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: '0x44475a'
cursor: '0xf8f8f2'
# 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: '0xf8f8f2'
background: '0x44475a'
# Normal colors # Normal colors
normal: normal:
black: '0x000000' black: '0x2e2e2e'
red: '0xff5555' red: '0xeb4129'
green: '0x50fa7b' green: '0xabe047'
yellow: '0xf1fa8c' yellow: '0xf6c744'
blue: '0xbd93f9' blue: '0x47a0f3'
magenta: '0xff79c6' magenta: '0x7b5cb0'
cyan: '0x8be9fd' cyan: '0x64dbed'
white: '0xbfbfbf' white: '0xe5e9f0'
# Bright colors # Bright colors
bright: bright:
black: '0x4d4d4d' black: '0x565656'
red: '0xff6e67' red: '0xec5357'
green: '0x5af78e' green: '0xc0e17d'
yellow: '0xf4f99d' yellow: '0xf9da6a'
blue: '0xcaa9fa' blue: '0x49a4f8'
magenta: '0xff92d0' magenta: '0xa47de9'
cyan: '0x9aedfe' cyan: '0x99faf2'
white: '0xe6e6e6' white: '0xffffff'
# Dim colors
#
# If the dim colors are not set, they will be calculated automatically based
# on the `normal` colors.
dim:
black: '0x14151b'
red: '0xff2222'
green: '0x1ef956'
yellow: '0xebf85b'
blue: '0x4d5b86'
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: []
custom_cursor_colors: true custom_cursor_colors: true