Skip to content

Commit

Permalink
Extract color schma into another file
Browse files Browse the repository at this point in the history
The comment has been removed in TOML migration #390
  • Loading branch information
kachick committed Feb 14, 2024
1 parent 753718c commit 18c2c5d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 31 deletions.
32 changes: 1 addition & 31 deletions config/alacritty/common.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,4 @@
[colors.bright]
black = "#6b7089"
blue = "#91acd1"
cyan = "#95c4ce"
green = "#c0ca8e"
magenta = "#ada0d3"
red = "#e98989"
white = "#d2d4de"
yellow = "#e9b189"

[colors.cursor]
cursor = "#c6c8d1"
text = "#161821"

[colors.normal]
black = "#1e2132"
blue = "#84a0c6"
cyan = "#89b8c2"
green = "#b4be82"
magenta = "#a093c7"
red = "#e27878"
white = "#c6c8d1"
yellow = "#e2a478"

[colors.primary]
background = "#161821"
foreground = "#c6c8d1"

[colors.selection]
background = "#c6c8d1"
text = "#161821"
import = ["~/.config/alacritty/iceberg-dark.toml"]

[font.normal]
family = "PlemolJP Console NF"
Expand Down
33 changes: 33 additions & 0 deletions config/alacritty/iceberg-dark.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# https://github.com/mbadolato/iTerm2-Color-Schemes/blob/64184d90e6377dd5dc3902057aff867ad8750bed/alacritty/iceberg-dark.yml#L4

[colors.bright]
black = "#6b7089"
blue = "#91acd1"
cyan = "#95c4ce"
green = "#c0ca8e"
magenta = "#ada0d3"
red = "#e98989"
white = "#d2d4de"
yellow = "#e9b189"

[colors.cursor]
cursor = "#c6c8d1"
text = "#161821"

[colors.normal]
black = "#1e2132"
blue = "#84a0c6"
cyan = "#89b8c2"
green = "#b4be82"
magenta = "#a093c7"
red = "#e27878"
white = "#c6c8d1"
yellow = "#e2a478"

[colors.primary]
background = "#161821"
foreground = "#c6c8d1"

[colors.selection]
background = "#c6c8d1"
text = "#161821"

0 comments on commit 18c2c5d

Please sign in to comment.