Add Last Horizon theme by HANCORE

This commit is contained in:
David Heinemeier Hansson
2026-05-09 22:05:54 +02:00
parent 676a278653
commit b2fb238453
17 changed files with 205 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 475 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 688 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

+70
View File
@@ -0,0 +1,70 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#0c0b0c"
# Main text color
theme[main_fg]="#e2dddc"
# Title color for boxes
theme[title]="#b59790"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#87a9b0"
# Background color of selected item in processes box
theme[selected_bg]="#e2dddc"
# Foreground color of selected item in processes box
theme[selected_fg]="#33241f"
# Color of inactive/disabled text
theme[inactive_fg]="#1e1d1e"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#934e39"
# Box outline and divider line color
theme[cpu_box]="#e2dddc"
theme[mem_box]="#e2dddc"
theme[net_box]="#e2dddc"
theme[proc_box]="#e2dddc"
theme[div_line]="#a5a0b6"
# Gradient for all meters and graphs
theme[temp_start]="#e2dddc"
theme[temp_mid]="#b59790"
theme[temp_end]="#934e39"
theme[cpu_start]="#e2dddc"
theme[cpu_mid]="#b59790"
theme[cpu_end]="#a5a0b6"
theme[free_start]="#e2dddc"
theme[free_mid]="#b59790"
theme[free_end]="#a5a0b6"
theme[cached_start]="#e2dddc"
theme[cached_mid]="#b59790"
theme[cached_end]="#a5a0b6"
theme[available_start]="#e2dddc"
theme[available_mid]="#b59790"
theme[available_end]="#a5a0b6"
theme[used_start]="#e2dddc"
theme[used_mid]="#b59790"
theme[used_end]="#a5a0b6"
theme[download_start]="#e2dddc"
theme[download_mid]="#b59790"
theme[download_end]="#a5a0b6"
theme[upload_start]="#e2dddc"
theme[upload_mid]="#b59790"
theme[upload_end]="#a5a0b6"
+1
View File
@@ -0,0 +1 @@
12,11,12
+35
View File
@@ -0,0 +1,35 @@
# Accent and UI colors
accent = "#b59790"
active_border_color = "#d6d3de"
active_tab_background = "#a5a0b6"
# Cursor colors
cursor = "#e2dddc"
# Primary colors
foreground = "#FAFCFB"
background = "#0c0b0c"
# Selection colors
selection_foreground = "#0c0b0c"
selection_background = "#FAFCFB"
# Normal colors (ANSI 0-7)
color0 = "#0c0b0c"
color1 = "#c38b7b"
color2 = "#87a9b0"
color3 = "#6B5E73"
color4 = "#b59790"
color5 = "#c4d8e2"
color6 = "#a5a0b6"
color7 = "#cfd3cd"
# Bright colors (ANSI 8-15)
color8 = "#584e51"
color9 = "#c38b7b"
color10 = "#87a9b0"
color11 = "#6B5E73"
color12 = "#b59790"
color13 = "#c4d8e2"
color14 = "#a5a0b6"
color15 = "#e2dddc"
+15
View File
@@ -0,0 +1,15 @@
general {
col.active_border = rgba(8a8588ee) rgba(e2dddcee)
}
decoration {
rounding = 3
rounding_power = 3
shadow {
enabled = yes
render_power = 3
range = 16
color = rgba(00000052)
}
}
+6
View File
@@ -0,0 +1,6 @@
$color = rgba(12, 11, 12, 1)
$inner_color = rgba(12, 11, 12, 0.66)
$outer_color = rgba(195, 139, 123, 1)
$font_color = rgba(226, 221, 220, 1)
$placeholder_color = rgba(255, 255, 255, 0.7)
$check_color = rgba(181, 151, 144, 1)
+1
View File
@@ -0,0 +1 @@
Yaru-purple
+41
View File
@@ -0,0 +1,41 @@
return {
{
"bjarneo/aether.nvim",
branch = "v2",
name = "aether",
priority = 1000,
opts = {
transparent = false,
colors = {
bg = "#0c0b0c",
bg_dark = "#0c0b0c",
bg_highlight = "#716661", -- still only change to bg_highlight
-- Foregrounds
fg = "#f1f1ef",
fg_dark = "#e0dbd9",
comment = "#94918c",
red = "#e36a58",
orange = "#c38d72",
yellow = "#c8a88a",
green = "#a4dded",
cyan = "#725379",
blue = "#4691a1",
purple = "#c9a3c9",
magenta = "#b9a0d1",
},
},
config = function(_, opts)
require("aether").setup(opts)
vim.cmd.colorscheme("aether")
require("aether.hotreload").setup()
end,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "aether",
},
},
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 652 KiB

+30
View File
@@ -0,0 +1,30 @@
@define-color background-color #0c0b0c;
@define-color border-color #b59790;
@define-color label #e2dddc;
@define-color image #b59790;
@define-color progress #e2dddc;
/* Cancel out Omarchy settings */
window:not(:backdrop),
window:backdrop {
border: none;
border-width: 0;
border-radius: 4px;
background-color: transparent;
box-shadow: none;
padding: 12px;
}
/* Draw a new background */
window:not(:backdrop) #container,
window:backdrop #container {
border: 2px solid @border-color;
border-radius: 4px;
background-color: @background-color;
padding: 12px;
background-clip: padding-box;
box-shadow: 2px 2px 9px 0px rgba(22, 22, 22, 1);
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

+4
View File
@@ -0,0 +1,4 @@
{
"name": "Ship at Sea",
"extension": "rikkarth.ship-at-sea"
}
+2
View File
@@ -0,0 +1,2 @@
@define-color background #0c0b0c;
@define-color foreground #FAFCFB;