switched to rose-pine theme
This commit is contained in:
parent
5af23c52bc
commit
574f6a928a
@ -94,3 +94,76 @@ opacity = 0.8
|
|||||||
[window.padding]
|
[window.padding]
|
||||||
x = 32
|
x = 32
|
||||||
y = 32
|
y = 32
|
||||||
|
|
||||||
|
[colors.primary]
|
||||||
|
foreground = "#e0def4"
|
||||||
|
background = "#191724"
|
||||||
|
dim_foreground = "#908caa"
|
||||||
|
bright_foreground = "#e0def4"
|
||||||
|
|
||||||
|
[colors.cursor]
|
||||||
|
text = "#e0def4"
|
||||||
|
cursor = "#524f67"
|
||||||
|
|
||||||
|
[colors.vi_mode_cursor]
|
||||||
|
text = "#e0def4"
|
||||||
|
cursor = "#524f67"
|
||||||
|
|
||||||
|
[colors.search.matches]
|
||||||
|
foreground = "#908caa"
|
||||||
|
background = "#26233a"
|
||||||
|
|
||||||
|
[colors.search.focused_match]
|
||||||
|
foreground = "#191724"
|
||||||
|
background = "#ebbcba"
|
||||||
|
|
||||||
|
[colors.hints.start]
|
||||||
|
foreground = "#908caa"
|
||||||
|
background = "#1f1d2e"
|
||||||
|
|
||||||
|
[colors.hints.end]
|
||||||
|
foreground = "#6e6a86"
|
||||||
|
background = "#1f1d2e"
|
||||||
|
|
||||||
|
[colors.line_indicator]
|
||||||
|
foreground = "None"
|
||||||
|
background = "None"
|
||||||
|
|
||||||
|
[colors.footer_bar]
|
||||||
|
foreground = "#e0def4"
|
||||||
|
background = "#1f1d2e"
|
||||||
|
|
||||||
|
[colors.selection]
|
||||||
|
text = "#e0def4"
|
||||||
|
background = "#403d52"
|
||||||
|
|
||||||
|
[colors.normal]
|
||||||
|
black = "#26233a"
|
||||||
|
red = "#eb6f92"
|
||||||
|
green = "#31748f"
|
||||||
|
yellow = "#f6c177"
|
||||||
|
blue = "#9ccfd8"
|
||||||
|
magenta = "#c4a7e7"
|
||||||
|
cyan = "#ebbcba"
|
||||||
|
white = "#e0def4"
|
||||||
|
|
||||||
|
[colors.bright]
|
||||||
|
black = "#6e6a86"
|
||||||
|
red = "#eb6f92"
|
||||||
|
green = "#31748f"
|
||||||
|
yellow = "#f6c177"
|
||||||
|
blue = "#9ccfd8"
|
||||||
|
magenta = "#c4a7e7"
|
||||||
|
cyan = "#ebbcba"
|
||||||
|
white = "#e0def4"
|
||||||
|
|
||||||
|
[colors.dim]
|
||||||
|
black = "#6e6a86"
|
||||||
|
red = "#eb6f92"
|
||||||
|
green = "#31748f"
|
||||||
|
yellow = "#f6c177"
|
||||||
|
blue = "#9ccfd8"
|
||||||
|
magenta = "#c4a7e7"
|
||||||
|
cyan = "#ebbcba"
|
||||||
|
white = "#e0def4"
|
||||||
|
|
||||||
|
@ -58,3 +58,45 @@ live_config_reload: true
|
|||||||
shell:
|
shell:
|
||||||
program: /bin/zsh
|
program: /bin/zsh
|
||||||
|
|
||||||
|
colors:
|
||||||
|
primary:
|
||||||
|
background: "0x191724"
|
||||||
|
foreground: "0xe0def4"
|
||||||
|
cursor:
|
||||||
|
text: "0xe0def4"
|
||||||
|
cursor: "0x524f67"
|
||||||
|
vi_mode_cursor:
|
||||||
|
text: "0xe0def4"
|
||||||
|
cursor: "0x524f67"
|
||||||
|
line_indicator:
|
||||||
|
foreground: None
|
||||||
|
background: None
|
||||||
|
selection:
|
||||||
|
text: "0xe0def4"
|
||||||
|
background: "0x403d52"
|
||||||
|
normal:
|
||||||
|
black: "0x26233a"
|
||||||
|
red: "0xeb6f92"
|
||||||
|
green: "0x31748f"
|
||||||
|
yellow: "0xf6c177"
|
||||||
|
blue: "0x9ccfd8"
|
||||||
|
magenta: "0xc4a7e7"
|
||||||
|
cyan: "0xebbcba"
|
||||||
|
white: "0xe0def4"
|
||||||
|
bright:
|
||||||
|
black: "0x6e6a86"
|
||||||
|
red: "0xeb6f92"
|
||||||
|
green: "0x31748f"
|
||||||
|
yellow: "0xf6c177"
|
||||||
|
blue: "0x9ccfd8"
|
||||||
|
magenta: "0xc4a7e7"
|
||||||
|
cyan: "0xebbcba"
|
||||||
|
white: "0xe0def4"
|
||||||
|
hints:
|
||||||
|
start:
|
||||||
|
foreground: "#908caa"
|
||||||
|
background: "#1f1d2e"
|
||||||
|
end:
|
||||||
|
foreground: "#6e6a86"
|
||||||
|
background: "#1f1d2e"
|
||||||
|
|
||||||
|
@ -1,3 +1,22 @@
|
|||||||
|
@define-color base #191724;
|
||||||
|
@define-color surface #1f1d2e;
|
||||||
|
@define-color overlay #26233a;
|
||||||
|
|
||||||
|
@define-color muted #6e6a86;
|
||||||
|
@define-color subtle #908caa;
|
||||||
|
@define-color text #e0def4;
|
||||||
|
|
||||||
|
@define-color love #eb6f92;
|
||||||
|
@define-color gold #f6c177;
|
||||||
|
@define-color rose #ebbcba;
|
||||||
|
@define-color pine #31748f;
|
||||||
|
@define-color foam #9ccfd8;
|
||||||
|
@define-color iris #c4a7e7;
|
||||||
|
|
||||||
|
@define-color highlightLow #21202e;
|
||||||
|
@define-color highlightMed #403d52;
|
||||||
|
@define-color highlightHigh #524f67;
|
||||||
|
|
||||||
* {
|
* {
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
@ -9,17 +28,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
background: #000;
|
background: @base;
|
||||||
color: #b0bec5;
|
color: @text;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button {
|
#workspaces button {
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
color: #b0bec5;
|
color: @text;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.focused {
|
#workspaces button.focused {
|
||||||
background-color: #0a0a0a;
|
background-color: @overlay;
|
||||||
}
|
}
|
||||||
|
|
||||||
#battery {
|
#battery {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user