feat(everforest): move to everforest
This commit is contained in:
parent
bb630128de
commit
38774cc02d
11 changed files with 287 additions and 2959 deletions
|
@ -333,24 +333,24 @@
|
|||
[urgency_low]
|
||||
# IMPORTANT: colors have to be defined in quotation marks.
|
||||
# Otherwise the "#" and following would be interpreted as a comment.
|
||||
background = "#3b4252"
|
||||
foreground = "#4c566a"
|
||||
background = "#2b3339"
|
||||
foreground = "#d3c6aa"
|
||||
timeout = 10
|
||||
# Icon for notifications with low urgency
|
||||
default_icon = dialog-information
|
||||
|
||||
[urgency_normal]
|
||||
background = "#434c5e"
|
||||
foreground = "#e5e9f0"
|
||||
background = "#343f44"
|
||||
foreground = "#d3c6aa"
|
||||
timeout = 10
|
||||
override_pause_level = 30
|
||||
# Icon for notifications with normal urgency
|
||||
default_icon = dialog-information
|
||||
|
||||
[urgency_critical]
|
||||
background = "#bf616a"
|
||||
foreground = "#eceff4"
|
||||
frame_color = "#eceff4"
|
||||
background = "#543a48"
|
||||
foreground = "#d3c6aa"
|
||||
frame_color = "#d3c6aa"
|
||||
timeout = 0
|
||||
override_pause_level = 60
|
||||
# Icon for notifications with critical urgency
|
||||
|
|
|
@ -155,10 +155,10 @@ layout {
|
|||
// - CSS-like notation: "rgb(255, 127, 0)", rgba(), hsl() and a few others.
|
||||
|
||||
// Color of the ring on the active monitor.
|
||||
active-color "#88C0D0"
|
||||
active-color "#a7c080"
|
||||
|
||||
// Color of the ring on inactive monitors.
|
||||
inactive-color "#5E81AC"
|
||||
inactive-color "#d3c6aa"
|
||||
|
||||
// You can also use gradients. They take precedence over solid colors.
|
||||
// Gradients are rendered the same as CSS linear-gradient(angle, from, to).
|
||||
|
|
|
@ -2,44 +2,26 @@ from theme import load_theme
|
|||
|
||||
config.load_autoconfig()
|
||||
|
||||
# carbonfox = {
|
||||
# "base00": "#161616",
|
||||
# "base01": "#252525",
|
||||
# "base02": "#353535",
|
||||
# "base03": "#484848",
|
||||
# "base04": "#7b7c7e",
|
||||
# "base05": "#f2f4f8",
|
||||
# "base06": "#b6b8bb",
|
||||
# "base07": "#e4e4e5",
|
||||
# "base08": "#ee5396",
|
||||
# "base09": "#3ddbd9",
|
||||
# "base0A": "#08bdba",
|
||||
# "base0B": "#25be6a",
|
||||
# "base0C": "#33b1ff",
|
||||
# "base0D": "#78a9ff",
|
||||
# "base0E": "#be95ff",
|
||||
# "base0F": "#ff7eb6",
|
||||
# }
|
||||
nord = {
|
||||
"base00": "#2E3440",
|
||||
"base01": "#3B4252",
|
||||
"base02": "#434C5E",
|
||||
"base03": "#4C566A",
|
||||
"base04": "#D8DEE9",
|
||||
"base05": "#E5E9F0",
|
||||
"base06": "#ECEFF4",
|
||||
"base07": "#8FBCBB",
|
||||
"base08": "#BF616A",
|
||||
"base09": "#D08770",
|
||||
"base0A": "#EBCB8B",
|
||||
"base0B": "#A3BE8C",
|
||||
"base0C": "#88C0D0",
|
||||
"base0D": "#81A1C1",
|
||||
"base0E": "#B48EAD",
|
||||
"base0F": "#5E81AC",
|
||||
everforest = {
|
||||
"base00": "#2b3339",
|
||||
"base01": "#323c41",
|
||||
"base02": "#503946",
|
||||
"base03": "#868d80",
|
||||
"base04": "#d3c6aa",
|
||||
"base05": "#d3c6aa",
|
||||
"base06": "#e9e8d2",
|
||||
"base07": "#fff9e8",
|
||||
"base08": "#7fbbb3",
|
||||
"base09": "#d699b6",
|
||||
"base0A": "#83c092",
|
||||
"base0B": "#dbbc7f",
|
||||
"base0C": "#e69875",
|
||||
"base0D": "#a7c080",
|
||||
"base0E": "#e67e80",
|
||||
"base0F": "#d699b6",
|
||||
}
|
||||
|
||||
load_theme(c, nord)
|
||||
load_theme(c, everforest)
|
||||
|
||||
c.colors.webpage.preferred_color_scheme = "dark"
|
||||
c.tabs.position = "top"
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
* {
|
||||
bg-col: #2E3440;
|
||||
bg-col-light: #343a46;
|
||||
border-col: #343a46;
|
||||
selected-col: #343a46;
|
||||
blue: #81A1C1;
|
||||
fg-col: #b4bbc8;
|
||||
fg-col2: #BF616A;
|
||||
grey: #646a76;
|
||||
bg-col: #2D353B;
|
||||
bg-col-light: #343F44;
|
||||
border-col: #343F44;
|
||||
selected-col: #343F44;
|
||||
blue: #7FBBB3;
|
||||
fg-col: #D3C6AA;
|
||||
fg-col2: #D3C6AA;
|
||||
grey: #7A8478;
|
||||
width: 600;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue