Skip to content

Commit d0974f2

Browse files
committed
Add back all missing templates for custom overrides
1 parent c484a2b commit d0974f2

13 files changed

Lines changed: 244 additions & 0 deletions

templates/alacritty.toml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[colors]
2+
[colors.primary]
3+
background = "{background}"
4+
foreground = "{foreground}"
5+
6+
[colors.normal]
7+
black = "{black}"
8+
red = "{red}"
9+
green = "{green}"
10+
yellow = "{yellow}"
11+
blue = "{blue}"
12+
magenta = "{magenta}"
13+
cyan = "{cyan}"
14+
white = "{white}"
15+
16+
[colors.bright]
17+
black = "{bright_black}"
18+
red = "{bright_red}"
19+
green = "{bright_green}"
20+
yellow = "{bright_yellow}"
21+
blue = "{bright_blue}"
22+
magenta = "{bright_magenta}"
23+
cyan = "{bright_cyan}"
24+
white = "{bright_white}"
25+
26+
[colors.cursor]
27+
text = "{background}"
28+
cursor = "{foreground}"

templates/chromium.theme

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{background.rgb}

templates/ghostty.conf

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Background and foreground colors
2+
background = {background}
3+
foreground = {foreground}
4+
5+
# Standard colors
6+
palette = 0={black}
7+
palette = 1={red}
8+
palette = 2={green}
9+
palette = 3={yellow}
10+
palette = 4={blue}
11+
palette = 5={magenta}
12+
palette = 6={cyan}
13+
palette = 7={white}
14+
15+
# Bright colors
16+
palette = 8={bright_black}
17+
palette = 9={bright_red}
18+
palette = 10={bright_green}
19+
palette = 11={bright_yellow}
20+
palette = 12={bright_blue}
21+
palette = 13={bright_magenta}
22+
palette = 14={bright_cyan}
23+
palette = 15={bright_white}

templates/hyprland.conf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file is not a full hyprland configuration.
2+
# It is intended to be included in your main hyprland.conf.
3+
4+
$activeBorderColor = rgb({blue.strip})
5+
6+
general {
7+
col.active_border = $activeBorderColor
8+
}
9+
10+
group {
11+
col.border_active = $activeBorderColor
12+
}

templates/hyprlock.conf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
$color = {background.rgba}
2+
$inner_color = {background.rgba:0.66}
3+
$outer_color = {magenta.rgba}
4+
$font_color = {foreground.rgba}
5+
$placeholder_color = {foreground.rgba:0.7}
6+
$check_color = {cyan.rgba}

templates/kitty.conf

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
background {background}
2+
foreground {foreground}
3+
4+
# black
5+
color0 {black}
6+
color8 {bright_black}
7+
8+
# red
9+
color1 {red}
10+
color9 {bright_red}
11+
12+
# green
13+
color2 {green}
14+
color10 {bright_green}
15+
16+
# yellow
17+
color3 {yellow}
18+
color11 {bright_yellow}
19+
20+
# blue
21+
color4 {blue}
22+
color12 {bright_blue}
23+
24+
# magenta
25+
color5 {magenta}
26+
color13 {bright_magenta}
27+
28+
#cyan
29+
color6 {cyan}
30+
color14 {bright_cyan}
31+
32+
#white
33+
color7 {white}
34+
color15 {bright_white}
35+
36+

templates/mako.ini

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
text-color={foreground}
2+
border-color={magenta}
3+
background-color={background}
4+
width=420
5+
height=110
6+
padding=10
7+
border-size=2
8+
font=Liberation Sans 11
9+
anchor=top-right
10+
outer-margin=20
11+
default-timeout=5000
12+
max-icon-size=32
13+
14+
[app-name=Spotify]
15+
invisible=1
16+
17+
[mode=do-not-disturb]
18+
invisible=true
19+
20+
[mode=do-not-disturb app-name=notify-send]
21+
invisible=false

templates/swayosd.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@define-color background-color {background};
2+
@define-color border-color {bright_black};
3+
@define-color label {foreground};
4+
@define-color image {foreground};
5+
@define-color progress {yellow};

templates/vencord.theme.css

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/**
2+
* @name base16 Discord
3+
* @author @bypass_
4+
* @version 0.1.0
5+
* @description Built using Aether and Pywal
6+
* @source https://github.com/imbypass/base16-Discord
7+
**/
8+
9+
/* import the parent */
10+
@import url('https://imbypass.github.io/base16-discord/omarchy-discord.theme.css');
11+
12+
:root {
13+
--color00: {black};
14+
--color01: {red};
15+
--color02: {green};
16+
--color03: {yellow};
17+
--color04: {blue};
18+
--color05: {magenta};
19+
--color06: {cyan};
20+
--color07: {white};
21+
--color08: {bright_black};
22+
--color09: {bright_red};
23+
--color10: {bright_green};
24+
--color11: {bright_yellow};
25+
--color12: {bright_blue};
26+
--color13: {bright_magenta};
27+
--color14: {bright_cyan};
28+
--color15: {bright_white};
29+
}

templates/walker.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@define-color selected-text {blue};
2+
@define-color text {foreground};
3+
@define-color base {background};
4+
@define-color border {bright_black};
5+
@define-color foreground {foreground};
6+
@define-color background {background};

0 commit comments

Comments
 (0)